
    /* ════════════════════════════════
       TOKENS
    ════════════════════════════════ */
    :root {
      --navy:          #0B1D3A;
      --navy-mid:      #142347;
      --navy-surface:  #1C2F57;
      --navy-border:   rgba(255,255,255,0.08);
      --gold:          #C9A84C;
      --gold-light:    #E3C87A;
      --cream:         #F7F3EC;
      --cream-dark:    #EDE8DF;
      --cream-border:  #D6D0C6;
      --white:         #FFFFFF;
      --gray-text:     rgba(247,243,236,0.55);
      --gray-dim:      rgba(247,243,236,0.35);
      --text-mid:      #6B7280;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html, body { max-width: 100%; overflow-x: hidden; }

    body {
      font-family: 'Arial', 'Helvetica Neue', sans-serif;
      background: var(--navy);
      color: var(--cream);
      line-height: 1.6;
    }


    /* ════════════════════════════════
       SCROLL REVEAL
    ════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.in { opacity: 1; transform: translateY(0); }


    /* ════════════════════════════════
       HERO SHELL — 100vh
    ════════════════════════════════ */
    .hero-shell {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      flex-direction: column;
      background:
        radial-gradient(ellipse 700px 500px at 65% 55%, rgba(28,47,87,0.65) 0%, transparent 70%),
        radial-gradient(ellipse 350px 260px at 65% 42%, rgba(201,168,76,0.06) 0%, transparent 60%),
        linear-gradient(170deg, #0f2240 0%, #08111f 55%, #050c17 100%);
      overflow: hidden;
    }

    .hero-shell::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(201,168,76,0.05) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }


    /* ════════════════════════════════
       CODE BACKGROUND LAYER
    ════════════════════════════════ */
    .code-bg-layer {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      overflow: hidden;
    }

    .cbg-window {
      width: 90%;
      height: 75%;
      background: #060e1c;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 60px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
      opacity: 0.16;
    }

    .cbg-chrome {
      height: 30px;
      background: #0d1e3a;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      padding: 0 14px;
      gap: 14px;
      flex-shrink: 0;
    }

    .cbg-dots { display: flex; gap: 5px; }
    .cbg-dot  { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.1); }

    .cbg-win-title {
      flex: 1;
      text-align: center;
      font-family: 'Arial', sans-serif;
      font-size: 11px;
      color: rgba(247,243,236,0.28);
      letter-spacing: 0.2px;
    }

    .cbg-body { flex: 1; display: flex; min-height: 0; }

    .cbg-sidebar {
      width: 192px;
      background: #0a1525;
      border-right: 1px solid rgba(255,255,255,0.04);
      flex-shrink: 0;
      padding: 14px 0;
    }

    .cbg-grp-head {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: rgba(247,243,236,0.22);
      padding: 0 14px;
      margin-bottom: 6px;
      font-family: 'Arial', sans-serif;
    }

    .cbg-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      padding: 6px 10px 6px 14px;
      margin: 1px 4px;
      border-radius: 5px;
    }

    .cbg-item.active { background: rgba(201,168,76,0.07); }

    .cbg-item-icon { width: 12px; height: 12px; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; }

    .cbg-item-info { flex: 1; min-width: 0; }

    .cbg-item-name {
      font-size: 11px;
      color: rgba(247,243,236,0.55);
      font-family: 'Arial', sans-serif;
      line-height: 1.3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .cbg-item.active .cbg-item-name { color: rgba(247,243,236,0.85); }

    .cbg-item-sub {
      font-size: 9.5px;
      color: rgba(247,243,236,0.25);
      font-family: 'Arial', sans-serif;
      margin-top: 1px;
    }

    .cbg-divider { height: 1px; background: rgba(255,255,255,0.04); margin: 10px 0; }

    .cbg-spin {
      width: 11px;
      height: 11px;
      border: 1.5px solid rgba(201,168,76,0.18);
      border-top-color: rgba(201,168,76,0.7);
      border-radius: 50%;
      animation: spin 0.85s linear infinite;
    }

    .cbg-check {
      width: 12px;
      height: 12px;
      border: 1.5px solid rgba(201,168,76,0.5);
      border-radius: 50%;
      background: rgba(201,168,76,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cbg-check-empty {
      width: 12px;
      height: 12px;
      border: 1.5px solid rgba(247,243,236,0.18);
      border-radius: 50%;
    }

    .cbg-editor { flex: 1; display: flex; flex-direction: column; min-width: 0; background: #060e1c; }

    .cbg-tabs {
      height: 31px;
      background: #0d1e3a;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      display: flex;
      align-items: stretch;
      flex-shrink: 0;
    }

    .cbg-tab {
      display: flex;
      align-items: center;
      padding: 0 15px;
      font-size: 11.5px;
      color: rgba(247,243,236,0.3);
      border-right: 1px solid rgba(255,255,255,0.04);
      font-family: 'Courier New', monospace;
      white-space: nowrap;
    }

    .cbg-tab.active { background: #060e1c; color: rgba(247,243,236,0.8); }

    .cbg-code {
      flex: 1;
      padding: 10px 0;
      overflow: hidden;
      font-family: 'Courier New', Courier, monospace;
      font-size: 12px;
      line-height: 1.85;
    }

    .cl { display: flex; align-items: baseline; padding-right: 20px; }
    .cl.add { background: rgba(16,185,129,0.08); }
    .cl.rem { background: rgba(239,68,68,0.08); }

    .cl-n {
      width: 34px;
      font-size: 9.5px;
      color: rgba(247,243,236,0.15);
      text-align: right;
      padding-right: 16px;
      flex-shrink: 0;
      user-select: none;
    }

    .cl-d { width: 14px; flex-shrink: 0; font-size: 12px; }
    .cl.add .cl-d { color: rgba(74,222,128,0.75); }
    .cl.rem .cl-d { color: rgba(248,113,113,0.75); }

    .cl-c { flex: 1; white-space: pre; color: rgba(247,243,236,0.55); }
    .cl.add .cl-c { color: rgba(74,222,128,0.85); }
    .cl.rem .cl-c { color: rgba(248,113,113,0.7); }

    .t-tag  { color: #C9A84C; }
    .t-attr { color: #E3C87A; }
    .t-str  { color: rgba(227,200,122,0.75); }
    .t-cmt  { color: rgba(247,243,236,0.28); font-style: italic; }

    .cbg-ai {
      width: 258px;
      background: #0a1729;
      border-left: 1px solid rgba(255,255,255,0.04);
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      padding: 12px;
      gap: 8px;
    }

    .cbg-ai-hd {
      font-size: 10.5px;
      font-weight: 700;
      color: rgba(247,243,236,0.42);
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      font-family: 'Arial', sans-serif;
    }

    .cbg-msg {
      border-radius: 6px;
      padding: 9px 11px;
      font-size: 10.5px;
      color: rgba(247,243,236,0.42);
      line-height: 1.6;
      font-family: 'Arial', sans-serif;
      border: 1px solid rgba(255,255,255,0.05);
      background: rgba(247,243,236,0.03);
    }

    .cbg-msg.usr {
      background: rgba(201,168,76,0.07);
      border-color: rgba(201,168,76,0.12);
      color: rgba(247,243,236,0.58);
    }

    .cbg-ai-action {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 10px;
      color: rgba(247,243,236,0.28);
      font-family: 'Arial', sans-serif;
    }

    .cbg-ai-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(201,168,76,0.4);
      flex-shrink: 0;
    }

    .cbg-diff-box {
      background: rgba(247,243,236,0.03);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 5px;
      padding: 7px 10px;
      font-family: 'Courier New', monospace;
    }

    .cbg-diff-file { font-size: 10.5px; color: rgba(247,243,236,0.55); margin-bottom: 3px; }
    .cbg-diff-stats { display: flex; gap: 8px; font-size: 10.5px; }
    .cbg-diff-add { color: rgba(74,222,128,0.8); }
    .cbg-diff-rem { color: rgba(248,113,113,0.75); }

    .cbg-ai-inp {
      margin-top: auto;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 6px;
      padding: 8px 11px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .cbg-badge {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.5px;
      background: rgba(201,168,76,0.12);
      color: rgba(201,168,76,0.75);
      padding: 2px 5px;
      border-radius: 3px;
      font-family: 'Arial', sans-serif;
    }

    .cbg-inp-ph { font-size: 10.5px; color: rgba(247,243,236,0.2); font-family: 'Arial', sans-serif; }

    @keyframes spin { to { transform: rotate(360deg); } }


    /* ════════════════════════════════
       MAIN NAV
    ════════════════════════════════ */
    /* .main-nav is now wrapped in <header> for semantic clarity (a real crawler landmark AuroWeb's
       own AI Visibility Scan tool flagged as missing) — flex-shrink:0 has to live on the header
       itself now, since it's the direct flex child of the fixed-height .hero-shell, not .main-nav. */
    .hero-shell > header { flex-shrink: 0; }

    .main-nav {
      position: relative;
      z-index: 30;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 60px;
    }

    .nav-logo {
      font-family: Georgia, serif;
      font-size: 22px;
      color: var(--white);
      text-decoration: none;
      letter-spacing: -0.4px;
    }
    .nav-logo span { color: var(--gold); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
    }

    .nav-links a {
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--gray-text);
      transition: color 0.18s;
    }
    .nav-links a:hover { color: var(--cream); }

    .nav-cta {
      background: var(--gold) !important;
      color: var(--navy) !important;
      padding: 10px 22px;
      border-radius: 2px;
      font-weight: 700 !important;
      letter-spacing: 0.8px !important;
      transition: background 0.18s !important;
    }
    .nav-cta:hover { background: var(--gold-light) !important; }


    /* ════════════════════════════════
       SUB NAV
    ════════════════════════════════ */
    .sub-nav {
      position: relative;
      z-index: 30;
      border-top: 1px solid var(--navy-border);
      padding: 10px 60px;
      display: flex;
      align-items: center;
      gap: 24px;
      flex-shrink: 0;
    }

    .sub-label {
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--gray-dim);
      flex-shrink: 0;
    }

    .sub-links { display: flex; align-items: center; gap: 20px; }

    .sub-links a {
      font-size: 11.5px;
      text-decoration: none;
      color: var(--gray-text);
      transition: color 0.18s;
    }
    .sub-links a:hover  { color: var(--cream); }
    .sub-links a.active { color: var(--cream); font-weight: 600; }


    /* ════════════════════════════════
       HERO BODY (left/right split)
    ════════════════════════════════ */
    .hero-body {
      flex: 1;
      display: flex;
      align-items: center;
      padding: 24px 60px;
      gap: 64px;
      position: relative;
      z-index: 20;
      min-height: 0;
      overflow: hidden;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }


    /* ─── LEFT COLUMN ─── */
    .hero-left {
      flex: 1;
      min-width: 0;
    }

    .hero-eyebrow {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      animation: fadeUp 0.6s ease 0.1s both;
    }

    .hero-headline {
      font-family: Georgia, serif;
      font-size: clamp(38px, 5.2vw, 66px);
      font-weight: 300;
      line-height: 1.08;
      color: var(--white);
      letter-spacing: -2.5px;
      margin-bottom: 20px;
      animation: fadeUp 0.75s ease 0.2s both;
    }

    .hero-desc {
      font-size: 15.5px;
      color: rgba(247,243,236,0.6);
      line-height: 1.75;
      max-width: 420px;
      margin-bottom: 32px;
      animation: fadeUp 0.65s ease 0.32s both;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 28px;
      animation: fadeUp 0.6s ease 0.42s both;
    }

    .cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--gold);
      color: var(--navy);
      padding: 13px 28px;
      border-radius: 2px;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.18s;
    }
    .cta-primary:hover { background: var(--gold-light); }

    .cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: rgba(247,243,236,0.65);
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      border-bottom: 1px solid rgba(247,243,236,0.18);
      padding-bottom: 2px;
      transition: color 0.18s, border-color 0.18s;
    }
    .cta-secondary:hover { color: var(--cream); border-color: rgba(247,243,236,0.4); }

    .hero-contact {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 11.5px;
      color: rgba(247,243,236,0.35);
      animation: fadeUp 0.6s ease 0.52s both;
    }
    .hero-contact a { color: inherit; text-decoration: none; transition: color 0.18s; }
    .hero-contact a:hover { color: rgba(247,243,236,0.65); }
    .hero-contact .dot { opacity: 0.35; }

    .hero-proof {
      display: flex;
      align-items: center;
      gap: 0;
      margin-top: 20px;
      animation: fadeUp 0.6s ease 0.6s both;
    }

    .proof-stat {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.3px;
      color: rgba(247,243,236,0.55);
      white-space: nowrap;
    }

    .proof-div {
      width: 1px;
      height: 12px;
      background: rgba(247,243,236,0.15);
      margin: 0 14px;
      flex-shrink: 0;
    }


    /* ────────────────────────────────
       CONSULTATION FORM — HERO RIGHT
       Two stacked cards matching the
       AuroWeb Landing Page Concept.png
    ──────────────────────────────── */
    /* ─── RIGHT COLUMN — Mockup CTA Card ─── */
    .mkp-card {
      flex: 0 0 480px;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 28px 64px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,255,255,0.04);
      padding: 30px 28px 26px;
      color: var(--navy);
      animation: fadeUp 0.85s ease 0.35s both;
    }

    .mkp-badge {
      display: inline-block;
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 3px;
      padding: 3px 9px;
      margin-bottom: 14px;
    }

    .mkp-title {
      font-family: Georgia, serif;
      font-size: 28px;
      font-weight: 400;
      letter-spacing: -0.9px;
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 8px;
    }

    .mkp-sub {
      font-size: 13px;
      color: #6B7280;
      line-height: 1.65;
      margin-bottom: 18px;
    }

    .mkp-rule { height: 1px; background: #F0EDEA; margin-bottom: 16px; }

    .mkp-checklist {
      list-style: none;
      margin-bottom: 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .mkp-check-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: #374151;
      line-height: 1.5;
    }

    .mkp-check-icon {
      width: 17px;
      height: 17px;
      border-radius: 50%;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.28);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .mkp-field { margin-bottom: 11px; }

    .mkp-label {
      display: block;
      font-size: 11.5px;
      font-weight: 600;
      color: #374151;
      margin-bottom: 6px;
      letter-spacing: 0.2px;
    }

    .mkp-label-opt {
      font-weight: 400;
      color: #9CA3AF;
      margin-left: 4px;
    }

    .mkp-input {
      width: 100%;
      padding: 11px 14px;
      border: 1px solid #E5E7EB;
      border-radius: 8px;
      font-size: 13.5px;
      color: var(--navy);
      background: #fff;
      outline: none;
      transition: border-color 0.18s;
      font-family: inherit;
    }
    .mkp-input:focus { border-color: var(--gold); }
    .mkp-input::placeholder { color: #B0B8C4; font-size: 13px; }

    .mkp-select {
      width: 100%;
      padding: 11px 14px;
      border: 1px solid #E5E7EB;
      border-radius: 8px;
      font-size: 13.5px;
      color: #111827;
      background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
      appearance: none;
      -webkit-appearance: none;
      outline: none;
      cursor: pointer;
      transition: border-color 0.18s;
      font-family: inherit;
    }
    .mkp-select:focus { border-color: var(--gold); }
    .mkp-select option[value=""] { color: #B0B8C4; }

    .mkp-submit {
      width: 100%;
      margin-top: 4px;
      padding: 13px;
      background: var(--gold);
      color: var(--navy);
      border: none;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      cursor: pointer;
      font-family: inherit;
      transition: background 0.18s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .mkp-submit:hover { background: var(--gold-light); }

    .mkp-disclaimer {
      text-align: center;
      font-size: 11px;
      color: #9CA3AF;
      margin-top: 8px;
      line-height: 1.5;
    }


    /* ════════════════════════════════
       HERO BOTTOM BAR
    ════════════════════════════════ */
    .hero-bottom-bar {
      position: relative;
      z-index: 25;
      border-top: 1px solid var(--navy-border);
      padding: 12px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
      animation: fadeUp 0.6s ease 0.65s both;
    }

    .hbb-left {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 11px;
      color: rgba(247,243,236,0.32);
    }
    .hbb-left a { color: inherit; text-decoration: none; transition: color 0.18s; }
    .hbb-left a:hover { color: rgba(247,243,236,0.6); }
    .hbb-left .sep { opacity: 0.3; }

    .hbb-right {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(247,243,236,0.42);
    }

    .hbb-pulse {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #10B981;
      position: relative;
    }

    .hbb-pulse::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 1px solid rgba(16,185,129,0.4);
      animation: pulse-ring 2s ease infinite;
    }

    @keyframes pulse-ring {
      0%   { transform: scale(0.8); opacity: 1; }
      100% { transform: scale(1.6); opacity: 0; }
    }


    /* ════════════════════════════════
       SHARED SECTION STYLES
    ════════════════════════════════ */
    .section       { padding: 96px 60px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }

    .eyebrow {
      display: block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .section-h2 {
      font-family: Georgia, serif;
      font-size: clamp(28px, 3.8vw, 48px);
      font-weight: 300;
      letter-spacing: -1.5px;
      line-height: 1.15;
    }


    /* ════════════════════════════════
       SECTION 2 — WHAT WE DO
    ════════════════════════════════ */
    .what-section { background: var(--cream); }
    .what-section .section-h2 { color: var(--navy); max-width: 680px; margin-bottom: 52px; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--cream-border);
      border-radius: 12px;
      overflow: hidden;
    }

    .svc-card {
      padding: 36px 30px 32px;
      background: var(--cream);
      border-right: 1px solid var(--cream-border);
      position: relative;
      transition: background 0.2s;
    }
    .svc-card:last-child { border-right: none; }
    .svc-card:hover      { background: #fff; }

    .svc-price {
      position: absolute;
      top: 30px; right: 24px;
      font-size: 10px;
      font-weight: 700;
      color: var(--gold);
    }

    .svc-icon {
      width: 30px; height: 30px;
      color: var(--navy);
      opacity: 0.4;
      margin-bottom: 16px;
    }

    .svc-name {
      font-family: Georgia, serif;
      font-size: 22px;
      font-weight: 400;
      letter-spacing: -0.4px;
      color: var(--navy);
      margin: 0 0 8px;
    }

    .svc-desc {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .svc-includes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 26px; }

    .svc-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 12.5px;
      color: #4B5563;
    }

    .svc-check {
      width: 14px; height: 14px;
      border-radius: 50%;
      background: rgba(201,168,76,0.12);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }
    .svc-check svg { width: 8px; height: 8px; }

    .svc-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--navy);
      text-decoration: none;
      border-bottom: 1px solid var(--gold);
      padding-bottom: 2px;
      transition: color 0.18s;
    }
    .svc-cta:hover { color: var(--gold); }


    /* ════════════════════════════════
       SECTION 3 — WHY DIFFERENT
    ════════════════════════════════ */
    .why-section { background: var(--navy); }
    .why-section .section-h2 { color: var(--white); max-width: 600px; margin-bottom: 56px; }

    .why-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .why-quote {
      border-left: 2px solid var(--gold);
      padding-left: 28px;
    }

    blockquote.founder-q {
      font-family: Georgia, serif;
      font-size: 21px;
      font-style: italic;
      font-weight: 300;
      line-height: 1.62;
      color: rgba(247,243,236,0.88);
      letter-spacing: -0.3px;
      margin-bottom: 20px;
    }

    .founder-attr {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--gold);
    }

    .why-facts { display: flex; flex-direction: column; }

    .why-fact {
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .why-fact:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

    .why-fact-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      margin: 0 0 5px;
    }

    .why-fact-body {
      font-size: 13px;
      color: rgba(247,243,236,0.48);
      line-height: 1.65;
    }


    /* ════════════════════════════════
       SECTION 4 — PORTFOLIO
    ════════════════════════════════ */
    .portfolio-section { background: var(--cream); }
    .portfolio-section .section-h2 { color: var(--navy); max-width: 540px; margin-bottom: 40px; }

    .pf-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .pf-card { display: flex; flex-direction: column; }

    .pf-img-wrap {
      position: relative;
      width: 100%;
      padding-top: 100%;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 15px;
      cursor: pointer;
    }

    .pf-img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.28s ease;
    }
    .pf-img-wrap:hover .pf-img { transform: scale(1.08); }

    .pf-overlay {
      position: absolute;
      inset: 0;
      background: rgba(11,29,58,0.55);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.22s ease;
    }
    .pf-img-wrap:hover .pf-overlay { opacity: 1; }

    .pf-overlay-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      background: rgba(247,243,236,0.12);
      border: 1px solid rgba(247,243,236,0.32);
      border-radius: 3px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.8px;
      color: var(--cream);
      text-decoration: none;
      text-transform: uppercase;
      transition: background 0.15s;
    }
    .pf-overlay-btn:hover { background: rgba(247,243,236,0.22); }

    .pf-type  { font-size: 9.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
    .pf-title { font-family: Georgia, serif; font-size: 21px; font-weight: 400; letter-spacing: -0.4px; line-height: 1.15; color: var(--navy); margin: 0 0 7px; }
    .pf-desc  { font-size: 12.5px; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; flex: 1; }

    .pf-btns { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 2px; }

    .pf-btn {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 5px 13px;
      font-size: 11px;
      font-weight: 700;
      border-radius: 4px;
      text-decoration: none;
      border: 1px solid var(--cream-border);
      color: var(--navy);
      background: #fff;
      transition: background 0.15s, border-color 0.15s;
    }
    .pf-btn:hover { background: var(--cream-dark); border-color: #C2B8A8; }
    .pf-btn.primary { background: var(--navy); color: var(--cream); border-color: var(--navy); }
    .pf-btn.primary:hover { background: #0d2449; }

    .pf-view-all { text-align: center; margin-top: 52px; }
    .pf-view-link {
      font-size: 11.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
      color: var(--navy); text-decoration: none;
      border-bottom: 1px solid var(--gold); padding-bottom: 3px;
      transition: color 0.18s;
    }
    .pf-view-link:hover { color: var(--gold); }


    /* ════════════════════════════════
       SECTION 5 — FREE TOOLS
    ════════════════════════════════ */
    .tools-section { background: var(--navy); }
    .tools-section .eyebrow { color: var(--gold); }
    .tools-section .section-h2 { color: #fff; max-width: 680px; margin-bottom: 52px; }

    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      overflow: hidden;
    }

    .tool-card {
      padding: 40px 36px 36px;
      background: rgba(255,255,255,0.02);
      border-right: 1px solid rgba(255,255,255,0.1);
      position: relative;
      transition: background 0.2s;
    }
    .tool-card:last-child { border-right: none; }
    .tool-card:hover      { background: rgba(255,255,255,0.05); }

    .tool-badge {
      position: absolute;
      top: 34px; right: 28px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.4);
      border-radius: 20px;
      padding: 4px 11px;
    }

    .tool-icon {
      width: 30px; height: 30px;
      color: var(--gold);
      opacity: 0.85;
      margin-bottom: 16px;
    }

    .tool-name {
      font-family: Georgia, serif;
      font-size: 23px;
      font-weight: 400;
      letter-spacing: -0.4px;
      color: #fff;
      margin: 0 0 10px;
    }

    .tool-desc {
      font-size: 13.5px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      margin-bottom: 24px;
      max-width: 540px;
    }

    .tool-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
      border-bottom: 1px solid var(--gold);
      padding-bottom: 2px;
      transition: color 0.18s;
    }
    .tool-cta:hover { color: var(--gold); }


    /* ════════════════════════════════
       SECTION 6 — FINAL CTA
    ════════════════════════════════ */
    .cta-section {
      background: var(--navy);
      padding: 100px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 65%);
      top: -120px; left: 50%;
      transform: translateX(-50%);
      pointer-events: none;
    }

    .cta-section .section-h2 { color: var(--white); max-width: 660px; margin: 0 auto 16px; text-align: center; }

    .cta-sub {
      font-size: 15px;
      color: rgba(247,243,236,0.5);
      line-height: 1.8;
      max-width: 460px;
      margin: 0 auto 44px;
    }

    .cta-btn {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      padding: 16px 40px;
      border-radius: 2px;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.18s;
    }
    .cta-btn:hover { background: var(--gold-light); }

    .cta-note { margin-top: 14px; font-size: 11px; color: rgba(247,243,236,0.25); letter-spacing: 0.5px; }


    /* ════════════════════════════════
       FOOTER — MARQUEE + BAR
    ════════════════════════════════ */
    footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.05); }

    .footer-marquee {
      border-bottom: 1px solid rgba(255,255,255,0.06);
      overflow: hidden;
      padding: 14px 0;
    }

    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    .mq-track {
      display: flex;
      width: max-content;
      animation: marquee 38s linear infinite;
    }
    .mq-track:hover { animation-play-state: paused; }

    .mq-item {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 0 22px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: rgba(247,243,236,0.32);
      white-space: nowrap;
    }

    .mq-dot {
      width: 3px; height: 3px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.45;
      flex-shrink: 0;
    }

    /* T23 — Multi-column footer */
    .ft-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 48px 60px 36px;
    }

    .ft-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 32px;
      margin-bottom: 40px;
    }

    .ft-logo {
      font-family: Georgia, serif;
      font-size: 20px;
      color: var(--white);
      letter-spacing: -0.4px;
      margin-bottom: 10px;
    }
    .ft-logo span { color: var(--gold); }

    .ft-tagline {
      font-size: 12px;
      color: rgba(247,243,236,0.38);
      line-height: 1.65;
      max-width: 210px;
    }

    .ft-col-head {
      font-size: 10.5px;
      font-weight: 600;
      color: rgba(247,243,236,0.38);
      margin-bottom: 14px;
      letter-spacing: 0.3px;
    }

    .ft-link-list { list-style: none; }
    .ft-link-list li { margin-bottom: 9px; }

    .ft-link-list a {
      font-size: 12.5px;
      color: rgba(247,243,236,0.72);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 3px;
      transition: opacity 0.15s;
    }
    .ft-link-list a:hover { opacity: 0.5; }

    .ft-arrow { font-size: 10px; opacity: 0; transition: opacity 0.15s; }
    .ft-link-list a:hover .ft-arrow { opacity: 1; }

    .ft-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.07);
    }

    .ft-copy { font-size: 11px; color: rgba(247,243,236,0.28); }


    /* ════════════════════════════════
       HAMBURGER + MOBILE NAV
    ════════════════════════════════ */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      width: 40px;
      height: 40px;
    }

    .hbg-line {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--cream);
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .nav-hamburger.open .hbg-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open .hbg-line:nth-child(2) { opacity: 0; }
    .nav-hamburger.open .hbg-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .mobile-nav {
      position: fixed;
      inset: 0;
      background: var(--navy);
      z-index: 200;
      transform: translateX(100%);
      transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
    }

    .mobile-nav.open { transform: translateX(0); }

    .mobile-nav-inner {
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 24px 28px 48px;
    }

    .mobile-nav-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 52px;
    }

    .mobile-nav-logo {
      font-family: Georgia, serif;
      font-size: 22px;
      color: var(--white);
      letter-spacing: -0.4px;
      text-decoration: none;
    }
    .mobile-nav-logo span { color: var(--gold); }

    .mobile-nav-close {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--cream);
      padding: 6px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .mobile-nav-links a {
      font-family: Georgia, serif;
      font-size: 38px;
      font-weight: 400;
      letter-spacing: -1.2px;
      color: rgba(247,243,236,0.82);
      text-decoration: none;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.18s;
      line-height: 1;
    }

    .mobile-nav-links a:hover { color: var(--gold); }

    .mobile-nav-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      background: var(--gold);
      color: var(--navy);
      padding: 16px 28px;
      border-radius: 3px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      margin-top: 40px;
      transition: background 0.18s;
      min-height: 52px;
    }
    .mobile-nav-cta:hover { background: var(--gold-light); }


    /* ════════════════════════════════
       FAQ SECTION
    ════════════════════════════════ */
    .faq-section { background: var(--cream); }
    .faq-section .section-h2 { color: var(--navy); max-width: 620px; margin-bottom: 48px; }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      background: var(--cream-border);
      border: 1px solid var(--cream-border);
      border-radius: 10px;
      overflow: hidden;
    }

    .faq-item {
      padding: 32px 28px;
      background: #fff;
      transition: background 0.18s;
    }

    .faq-item:hover { background: #FAFAF8; }

    .faq-q {
      font-family: Georgia, serif;
      font-size: 18px;
      font-weight: 400;
      color: var(--navy);
      letter-spacing: -0.3px;
      line-height: 1.35;
      margin-bottom: 12px;
    }

    .faq-a { font-size: 13.5px; color: #4B5563; line-height: 1.75; }
    .faq-a strong { color: var(--navy); font-weight: 700; }


    /* ════════════════════════════════
       MOBILE — max-width: 767px
    ════════════════════════════════ */
    @media (max-width: 767px) {

      /* Hero shell */
      .hero-shell { height: auto; min-height: 100svh; }

      /* Nav */
      .main-nav { padding: 18px 20px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }

      /* Sub nav */
      .sub-nav { padding: 10px 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 16px; }
      .sub-nav::-webkit-scrollbar { display: none; }
      .sub-links { gap: 14px; }
      .sub-links a { font-size: 11px; white-space: nowrap; }

      /* Hero body */
      .hero-body { flex-direction: column; padding: 28px 20px 36px; gap: 32px; align-items: stretch; }

      .hero-eyebrow { font-size: 9.5px; margin-bottom: 14px; }
      .hero-headline { font-size: clamp(38px, 10.5vw, 54px); letter-spacing: -2px; margin-bottom: 18px; }
      .hero-desc { font-size: 15px; max-width: 100%; margin-bottom: 26px; }

      .hero-actions { flex-direction: column; gap: 12px; margin-bottom: 22px; }
      .cta-primary { width: 100%; justify-content: center; padding: 16px 24px; font-size: 11.5px; min-height: 52px; }
      .cta-secondary { justify-content: center; font-size: 11px; min-height: 44px; }

      .hero-contact { font-size: 11px; flex-wrap: wrap; gap: 6px; }

      .hero-proof { flex-direction: column; gap: 10px; margin-top: 16px; }
      .proof-div { display: none; }
      .proof-stat { font-size: 10.5px; display: flex; align-items: center; gap: 8px; }
      .proof-stat::before {
        content: '';
        display: inline-block;
        width: 14px;
        height: 1px;
        background: var(--gold);
        opacity: 0.55;
        flex-shrink: 0;
      }

      /* Code bg on mobile — editor only */
      .cbg-sidebar { display: none; }
      .cbg-ai { display: none; }
      .cbg-window { opacity: 0.16; width: 100%; border-radius: 0; height: 100%; }
      .code-bg-layer { align-items: stretch; }

      /* Mockup card */
      .mkp-card { flex: none; width: 100%; padding: 28px 22px 26px; border-radius: 14px; }
      .mkp-title { font-size: 24px; letter-spacing: -0.7px; }
      .mkp-sub { font-size: 13px; }
      .mkp-input { font-size: 16px; } /* prevent iOS zoom */
      .mkp-submit { min-height: 52px; font-size: 13.5px; }

      /* Bottom bar */
      .hero-bottom-bar { flex-direction: column; align-items: flex-start; gap: 6px; padding: 12px 20px; }
      .hbb-left { font-size: 10.5px; flex-wrap: wrap; gap: 4px; }
      .hbb-right { font-size: 10.5px; }

      /* Sections */
      .section { padding: 64px 20px; }
      .section-h2 { font-size: clamp(26px, 7.5vw, 36px); letter-spacing: -1px; }

      /* Services */
      .what-section .section-h2 { max-width: 100%; }
      .services-grid { grid-template-columns: 1fr; }
      .svc-card { border-right: none; border-bottom: 1px solid var(--cream-border); padding: 28px 22px 26px; }
      .svc-card:last-child { border-bottom: none; }

      /* Why section */
      .why-split { flex-direction: column; gap: 32px; }
      .founder-q { font-size: 20px; }
      .why-facts { gap: 20px; }

      /* Portfolio */
      .pf-grid { grid-template-columns: 1fr; gap: 20px; }

      /* FAQ */
      .faq-grid { grid-template-columns: 1fr; }
      .faq-item { padding: 26px 22px; }
      .faq-q { font-size: 17px; }

      /* CTA section */
      .cta-section { padding: 72px 20px; }

      /* Footer */
      .ft-inner { padding: 40px 20px 28px; }
      .ft-grid { grid-template-columns: 1fr; gap: 28px; }
      .ft-logo { font-size: 20px; }
      .ft-bottom { flex-direction: column; gap: 8px; text-align: center; padding-top: 20px; }
    }


    /* ════════════════════════════════
       TABLET — 768px–1023px
    ════════════════════════════════ */
    @media (min-width: 768px) and (max-width: 1023px) {

      .main-nav { padding: 20px 36px; }
      .sub-nav  { padding: 10px 36px; }

      .hero-body { flex-direction: column; padding: 24px 36px 40px; gap: 36px; align-items: stretch; }
      .mkp-card { flex: none; width: 100%; max-width: 500px; }
      .hero-headline { font-size: clamp(42px, 6vw, 58px); }

      .section { padding: 80px 36px; }

      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .svc-card:nth-child(2) { border-right: none; }
      .svc-card:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--cream-border); border-right: none; max-width: 50%; }

      .pf-grid { grid-template-columns: repeat(2, 1fr); }
      .why-split { gap: 40px; }

      .faq-grid { grid-template-columns: 1fr; }
      .faq-item { padding: 28px 24px; }

      .ft-grid { grid-template-columns: 2fr 1fr 1fr; }
      .ft-inner { padding: 56px 36px 32px; }
    }
