*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --crimson: #8B2332;
      --crimson-light: #A83245;
      --crimson-dark: #6B1A26;
      --crimson-soft: rgba(139, 35, 50, 0.08);
      --teal: #01BFBF;
      --teal-light: #33CCCC;
      --teal-dark: #019E9E;
      --teal-soft: rgba(1, 191, 191, 0.08);
      --teal-muted: rgba(1, 191, 191, 0.15);
      --olive: #7D8340;
      --olive-light: #9AA04F;
      --olive-dark: #636833;
      --olive-soft: rgba(125, 131, 64, 0.08);
      --ink: #1A1A1A;
      --ink-soft: #2D2D2D;
      --charcoal: #444444;
      --slate: #666666;
      --gray: #888888;
      --silver: #B0B0B0;
      --mist: #E0E0E0;
      --cloud: #F0EFEB;
      --cream: #F8F5F0;
      --warm-white: #FDFCFA;
      --white: #FFFFFF;
      --logo-red: #E63946;
      --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-accent: 'Playfair Display', Georgia, 'Times New Roman', serif;
      --space-xs: 4px;
      --space-sm: 8px;
      --space-md: 16px;
      --space-lg: 24px;
      --space-xl: 32px;
      --space-2xl: 48px;
      --space-3xl: 64px;
      --space-4xl: 96px;
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --radius-xl: 16px;
      --radius-2xl: 24px;
      --radius-pill: 100px;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font); color: var(--ink); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }

    /* Nav — Floating Glassmorphism */
    .nav {
      position: fixed; top: 16px; left: 24px; right: 24px; z-index: 100;
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: var(--radius-xl);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    }
    .nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; max-width: 100%; padding: 0 var(--space-lg); }
    .nav-logo { display: flex; align-items: center; text-decoration: none; font-size: 24px; font-weight: 700; letter-spacing: -0.5px; }
    .nav-logo .infra { color: var(--ink); }
    .nav-logo .red { color: var(--logo-red); }
    .nav-links { display: flex; gap: var(--space-xl); list-style: none; align-items: center; }
    .nav-links a { text-decoration: none; color: var(--charcoal); font-size: 14px; font-weight: 500; transition: color 0.2s; }
    .nav-links a:visited { color: var(--charcoal); }
    .nav-links a:hover, .nav-links a.active { color: var(--teal); }
    .nav-links a.active:visited { color: var(--teal); }
    .nav-cta {
      background: var(--crimson); color: var(--white) !important;
      padding: 10px 24px; border-radius: var(--radius-pill);
      font-weight: 600; font-size: 14px; transition: all 0.25s;
    }
    .nav-cta:hover { background: var(--crimson-light); transform: translateY(-1px); }
    .nav-cta .cta-short { display: none; }

    /* Mobile Menu Toggle — hidden on desktop */
    .mobile-menu-toggle {
      display: none; align-items: center; gap: 6px;
      background: none; border: none; cursor: pointer;
      font-family: var(--font); font-size: 13px; font-weight: 600;
      color: var(--charcoal); padding: 6px 10px;
    }
    .mobile-menu-toggle .close-icon { display: none; }
    .mobile-menu-toggle.open .hamburger-icon { display: none; }
    .mobile-menu-toggle.open .close-icon { display: block; }
    .mobile-menu-toggle.open .mobile-menu-label::after { content: ''; }

    .mobile-menu-overlay {
      display: none; position: fixed; inset: 0; z-index: 99;
      background: rgba(0,0,0,0.3); backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .mobile-menu-overlay.open { display: block; }
    .mobile-menu-panel {
      position: absolute; top: 72px; left: 8px; right: 8px;
      background: var(--white); border-radius: var(--radius-xl);
      box-shadow: 0 8px 40px rgba(0,0,0,0.12);
      padding: var(--space-lg) 0;
    }
    .mobile-menu-links {
      list-style: none; padding: 0; margin: 0;
    }
    .mobile-menu-links li { border-bottom: 1px solid var(--cloud); }
    .mobile-menu-links li:last-child { border-bottom: none; }
    .mobile-menu-links a {
      display: block; padding: var(--space-md) var(--space-xl);
      text-decoration: none; color: var(--charcoal);
      font-size: 16px; font-weight: 500; transition: background 0.15s;
    }
    .mobile-menu-links a:hover, .mobile-menu-links a.active { color: var(--teal); background: var(--cream); }

    /* Global link colors */
    a { color: var(--teal); }
    a:visited { color: var(--teal); }
    a:hover { color: var(--crimson); }

    /* Page Content */
    .page-content {
      padding: 140px 0 80px;
      max-width: 800px;
      margin: 0 auto;
    }
    .page-content h1 {
      font-size: clamp(36px, 4vw, 48px);
      font-weight: 600; color: var(--ink);
      margin-bottom: var(--space-md); line-height: 1.15;
    }
    .page-content h1 em, .page-content h2 em {
      font-family: var(--font-accent);
      font-style: italic; font-weight: 400;
      color: var(--crimson);
    }
    .page-content h2 {
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 600; color: var(--ink);
      margin: var(--space-3xl) 0 var(--space-md);
      line-height: 1.25;
    }
    .page-content h3 {
      font-size: 20px; font-weight: 600; color: var(--ink);
      margin: var(--space-xl) 0 var(--space-sm);
    }
    .page-content h4 {
      font-size: 17px; font-weight: 600; color: var(--ink);
      margin: var(--space-lg) 0 var(--space-sm);
    }
    .page-content p {
      font-size: 17px; color: var(--slate);
      line-height: 1.8; margin-bottom: var(--space-lg);
    }
    .page-content ul, .page-content ol {
      margin-bottom: var(--space-lg); padding-left: 0; list-style: none;
    }
    .page-content li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 16px; color: var(--charcoal); line-height: 1.7;
      padding: 6px 0;
    }
    .page-content li::before {
      content: ''; flex-shrink: 0; width: 8px; height: 8px;
      border-radius: 50%; background: var(--teal); margin-top: 9px;
    }
    .page-content ol { counter-reset: ol-counter; }
    .page-content ol li { counter-increment: ol-counter; }
    .page-content ol li::before {
      content: counter(ol-counter); width: 28px; height: 28px;
      border-radius: 50%; background: var(--teal-soft); color: var(--teal);
      font-size: 13px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      margin-top: 2px;
    }
    .page-content hr {
      border: none; border-top: 1px solid var(--mist);
      margin: var(--space-3xl) 0;
    }
    .page-content strong { color: var(--ink); }
    .page-content a { color: var(--teal); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
    .page-content a:hover { border-bottom-color: var(--teal); }
    .page-content blockquote {
      border-left: 4px solid var(--teal); padding: var(--space-lg) var(--space-xl);
      margin: var(--space-xl) 0; background: var(--cream);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
    }
    .page-content blockquote p { font-size: 18px; font-style: italic; color: var(--ink); margin-bottom: 0; }
    .page-content img { max-width: 100%; height: auto; border-radius: var(--radius-lg); margin: var(--space-xl) 0; }
    .page-content .full-width { width: 100vw; max-width: 100vw; margin-left: calc(-50vw + 50%); border-radius: 0; }

    /* Buttons in page content */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 32px;
      border-radius: var(--radius-pill);
      font-family: var(--font); font-size: 15px; font-weight: 600;
      text-decoration: none !important; cursor: pointer; border: 2px solid transparent;
      transition: all 0.25s;
    }
    .btn-crimson { background: var(--crimson); color: var(--white) !important; }
    .btn-crimson:hover { background: var(--crimson-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(139,35,50,0.25); }
    .btn-teal { background: var(--teal); color: var(--white) !important; }
    .btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(1,191,191,0.25); }
    .btn-outline { background: transparent; color: var(--ink) !important; border-color: var(--mist); }
    .btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white) !important; }
    .btn-dark { background: var(--ink); color: var(--white) !important; }
    .btn-dark:hover { background: var(--charcoal); transform: translateY(-1px); }
    .btn-white { background: var(--white); color: var(--ink) !important; }
    .btn-white:hover { background: var(--cream); transform: translateY(-1px); }
    .btn-sm { padding: 10px 24px; font-size: 14px; }

    /* Tiers in page context */
    .tiers-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg); margin: var(--space-xl) 0;
    }
    .tier-card {
      border: 1px solid var(--mist); border-radius: var(--radius-xl);
      padding: var(--space-2xl); position: relative;
      background: var(--white); transition: all 0.3s;
    }
    .tier-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-2px); }
    .tier-card.featured { border-color: var(--teal); border-width: 2px; }
    .tier-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--teal); color: var(--white);
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
      padding: 6px 20px; border-radius: var(--radius-pill);
    }

    /* Video Embed */
    .video-embed {
      position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
      border-radius: var(--radius-xl); margin: var(--space-lg) 0; background: var(--ink);
    }
    .video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .video-caption { text-align: center; font-size: 14px; color: var(--gray); margin-top: var(--space-sm); }

    /* Callouts */
    .callout { padding: 20px 24px; border-radius: var(--radius-md); margin: var(--space-lg) 0; }
    .callout-note { background: var(--cream); border: 1px solid var(--mist); }
    .callout-highlight { background: var(--teal-soft); border: 1px solid var(--teal); }
    .callout-warning { background: #FFF3E0; border: 1px solid #FF9800; }

    /* Access Gate */
    .access-gate { text-align: center; padding: var(--space-2xl) var(--space-lg); background: var(--cream); border-radius: var(--radius-xl); margin: var(--space-xl) 0; }
    .access-form { display: flex; gap: var(--space-sm); justify-content: center; margin: var(--space-lg) 0; flex-wrap: wrap; }
    .access-form input[type="email"] {
      padding: 14px 20px; border: 2px solid var(--mist); border-radius: var(--radius-pill);
      font-family: var(--font); font-size: 16px; min-width: 300px;
    }
    .access-form input[type="email"]:focus { outline: none; border-color: var(--teal); }
    .access-note { font-size: 13px; color: var(--gray); }

    /* Contact Form */
    .contact-form { max-width: 600px; margin: 0 auto; }
    .contact-form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
    .contact-form input, .contact-form select, .contact-form textarea {
      width: 100%; padding: 14px var(--space-md);
      border: 2px solid var(--mist); border-radius: var(--radius-md);
      font-family: var(--font); font-size: 15px; margin-bottom: var(--space-lg);
      transition: border-color 0.2s;
    }
    .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--teal); }
    .contact-form textarea { min-height: 120px; resize: vertical; }
    .form-note { font-size: 13px; color: var(--gray); text-align: center; margin-top: var(--space-sm); }

    /* About Page — Team Avatars */
    .about-hero { padding: 140px var(--space-lg) 40px; max-width: 800px; margin: 0 auto; }
    .about-hero h1 { font-size: clamp(36px, 4vw, 48px); font-weight: 600; color: var(--ink); margin-bottom: var(--space-xl); line-height: 1.15; text-align: center; }
    .about-hero h1 em { font-family: var(--font-accent); font-style: italic; font-weight: 400; color: var(--crimson); display: block; }
    .about-hero .team-illustration { display: block; margin: var(--space-xl) auto; }
    .about-hero p { font-size: 17px; color: var(--slate); line-height: 1.8; }

    .about-section { padding: var(--space-3xl) 0; }
    .about-section .container { max-width: 800px; }
    .about-section-wide .container { max-width: 1152px; }
    .about-section h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 600; color: var(--ink); margin-bottom: var(--space-md); line-height: 1.25; }
    .about-section h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 400; color: var(--crimson); }
    .about-section p { font-size: 17px; color: var(--slate); line-height: 1.8; margin-bottom: var(--space-lg); }
    .about-section strong { color: var(--ink); }
    .about-section a { color: var(--teal); text-decoration: none; }
    .about-section a:hover { text-decoration: underline; }

    .team-illustration { max-width: 100%; margin: var(--space-xl) auto; display: block; }

    .team-avatars {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg) var(--space-xl); margin: var(--space-2xl) auto;
      max-width: 560px;
    }
    .avatar-card { text-align: center; }
    .avatar-img {
      width: 88px; height: 88px; border-radius: 50%;
      margin: 0 auto var(--space-sm);
      object-fit: cover;
    }
    .avatar-card h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin: 0 0 2px; }
    .avatar-card p { font-size: 13px; color: var(--slate); margin: 0; }

    /* Founder Section */
    .founder-section {
      position: relative; min-height: 500px;
      background-size: cover; background-position: center;
      display: flex; align-items: center;
      padding: var(--space-4xl) 0;
    }
    .founder-section::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.6) 100%);
    }
    .founder-content {
      position: relative; z-index: 1;
      max-width: 700px; color: var(--white);
    }
    .founder-content h2 { color: var(--white); margin-bottom: var(--space-lg); }
    .founder-content p { color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.8; margin-bottom: var(--space-lg); }
    .founder-content strong { color: var(--white); }

    /* Capabilities Grid */
    .capabilities-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl); margin: var(--space-2xl) 0;
    }
    .capability-card {
      padding: var(--space-2xl); border: 1px solid var(--mist);
      border-radius: var(--radius-xl); background: var(--white);
      transition: all 0.3s;
    }
    .capability-card:hover { border-color: var(--teal-muted); box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-2px); }
    .capability-card h3 { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: var(--space-sm); }
    .capability-card p { font-size: 15px; color: var(--slate); line-height: 1.7; margin: 0; }

    /* Growth Section */
    .growth-section { background: var(--cream); }
    .growth-section .btn { display: inline-block; margin-top: var(--space-lg); }
    .growth-section ol li strong { font-weight: 700; color: var(--ink); }
    .growth-section p:last-child { margin-bottom: 0; }
    .growth-section ol { list-style: none; padding: 0; counter-reset: growth; }
    .growth-section ol li {
      counter-increment: growth; display: flex; align-items: flex-start; gap: 16px;
      font-size: 16px; color: var(--charcoal); line-height: 1.7; padding: var(--space-md) 0;
    }
    .growth-section ol li::before {
      content: counter(growth); width: 32px; height: 32px; flex-shrink: 0;
      border-radius: 50%; background: var(--teal-soft); color: var(--teal);
      font-size: 14px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
    }

    /* Proof section */
    .proof-section blockquote {
      border-left: 4px solid var(--teal); padding: var(--space-lg) var(--space-xl);
      margin: var(--space-lg) 0; background: var(--cream);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
    }
    .proof-section blockquote p { font-size: 17px; font-style: italic; color: var(--ink); margin-bottom: 0; }

    /* About CTA */
    .about-cta { text-align: center; padding: var(--space-4xl) 0; }
    .about-cta h2 { margin-bottom: var(--space-md); }
    .about-cta p { max-width: 600px; margin: 0 auto var(--space-lg); }
    .about-cta .cta-buttons { margin-top: var(--space-xl); }
    .about-cta .btn { margin: 0 var(--space-sm); }

    /* Footer */
    .footer { background: var(--ink); color: var(--gray); padding: var(--space-3xl) 0 var(--space-lg); }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: var(--space-2xl); margin-bottom: var(--space-2xl);
    }
    .footer-brand p { font-size: 14px; line-height: 1.7; color: var(--gray); margin-top: var(--space-md); }
    .footer-col h4 {
      font-size: 12px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 1.5px; color: var(--silver); margin-bottom: var(--space-md);
    }
    .footer-col ul { list-style: none; }
    .footer-col a { font-size: 14px; color: var(--gray); text-decoration: none; line-height: 2.2; transition: color 0.2s; }
    .footer-col a:hover { color: var(--teal); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: var(--space-lg);
      display: flex; justify-content: space-between;
      font-size: 13px; color: var(--slate);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav { top: 8px; left: 8px; right: 8px; padding: 8px 10px; overflow: visible; }
      .nav .container { padding: 0 var(--space-sm); height: 48px; }
      .nav-logo { font-size: 18px; }
      .nav-links { display: none; }
      .mobile-menu-toggle { display: flex; }
      .page-content { padding: 100px var(--space-lg) 60px; }
      .page-content h1 { font-size: 30px; }
      .page-content h2 { font-size: 24px; }
      .about-hero { padding: 100px var(--space-md) 40px; }
      .about-hero h1 { font-size: 30px; }
      .about-hero p { padding: 0 var(--space-xs); }
      .about-section .container { padding: 0 var(--space-md); }
      .growth-section h2 { word-break: break-word; text-wrap: balance; }
      .growth-section ol li strong:first-child { display: block; }
      .growth-section .btn { display: block; text-align: center; max-width: 280px; }
      .about-section h2, .page-content h2 { text-wrap: balance; }
      .tiers-grid { grid-template-columns: 1fr; max-width: 400px; margin: var(--space-xl) auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; gap: var(--space-sm); }
      .access-form { flex-direction: column; align-items: center; }
      .access-form input[type="email"] { min-width: unset; width: 100%; max-width: 400px; }
      .team-avatars { grid-template-columns: repeat(2, 1fr) !important; }
      .capabilities-grid { grid-template-columns: 1fr !important; }
      .founder-section { min-height: 400px !important; }
      .about-cta .cta-buttons { display: flex; flex-direction: column; gap: var(--space-md); align-items: center; }
      .about-cta .btn { margin: 0; width: 100%; max-width: 280px; justify-content: center; }
    }

    /* Form Privacy Notice */
    .form-privacy { font-size: 12px; color: var(--gray); text-align: center; margin-top: var(--space-md); line-height: 1.5; }
    .form-privacy a { color: var(--teal); text-decoration: underline; }

    /* Cookie Consent Banner */
    .cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
      background: var(--ink); color: var(--silver);
      padding: var(--space-md) var(--space-lg);
      display: none; align-items: center; justify-content: center; gap: var(--space-lg);
      font-size: 14px; line-height: 1.5;
      box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    }
    .cookie-banner.visible { display: flex; }
    .cookie-banner p { margin: 0; max-width: 600px; }
    .cookie-banner a { color: var(--teal); }
    .cookie-actions { display: flex; gap: var(--space-sm); flex-shrink: 0; }
    .cookie-actions button {
      font-family: var(--font); font-size: 13px; font-weight: 600;
      padding: 8px 20px; border-radius: var(--radius-pill); cursor: pointer;
      border: none; transition: all 0.2s;
    }
    .cookie-accept { background: var(--teal); color: var(--white); }
    .cookie-accept:hover { background: var(--teal-dark); }
    .cookie-decline { background: transparent; color: var(--silver); border: 1px solid var(--slate) !important; }
    .cookie-decline:hover { border-color: var(--silver) !important; color: var(--white); }
    @media (max-width: 768px) {
      .cookie-banner { flex-direction: column; text-align: center; padding: var(--space-lg); gap: var(--space-md); }
    }