    /* ── FONTS (self-hosted) ─── */
    @font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url(fonts/cormorant-garamond-400.ttf) format('truetype'); }
    @font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url(fonts/cormorant-garamond-500.ttf) format('truetype'); }
    @font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url(fonts/cormorant-garamond-600.ttf) format('truetype'); }
    @font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url(fonts/cormorant-garamond-italic-400.ttf) format('truetype'); }
    @font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 500; font-display: swap; src: url(fonts/cormorant-garamond-italic-500.ttf) format('truetype'); }
    @font-face { font-family: 'Sora'; font-style: normal; font-weight: 300; font-display: swap; src: url(fonts/sora-300.ttf) format('truetype'); }
    @font-face { font-family: 'Sora'; font-style: normal; font-weight: 400; font-display: swap; src: url(fonts/sora-400.ttf) format('truetype'); }
    @font-face { font-family: 'Sora'; font-style: normal; font-weight: 500; font-display: swap; src: url(fonts/sora-500.ttf) format('truetype'); }
    @font-face { font-family: 'Sora'; font-style: normal; font-weight: 600; font-display: swap; src: url(fonts/sora-600.ttf) format('truetype'); }

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

    :root {
      --green:        #94C34D;
      --green-dark:   #6d9438;
      --green-dim:    rgba(148,195,77,.15);
      --green-faint:  rgba(148,195,77,.08);
      --ink:          #171817;
      --ink2:         #1e201e;
      --gray-bg:      #F2F2F0;
      --gray-mid:     #E8E8E5;
      --white:        #FFFFFF;
      --text:         #171817;
      --text-mid:     #4a4d49;
      --text-soft:    #7a7d79;
      --border:       rgba(23,24,23,.1);
      --border-med:   rgba(23,24,23,.15);
      --font-d:       "Cormorant Garamond", Georgia, serif;
      --font-b:       "Sora", sans-serif;
      --max-w:        1100px;
      --sv:           96px;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-b);
      background: var(--white);
      color: var(--text);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 44px; }

    /* ── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 20px 0; transition: background .3s, box-shadow .3s, padding .3s;
    }
    nav.scrolled {
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 var(--border);
      padding: 13px 0;
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; }
    .nav-logo {
      font-family: var(--font-b); font-weight: 600; font-size: 28px;
      letter-spacing: -.01em; color: var(--ink); text-decoration: none;
      display: flex; align-items: center;
    }
    .nav-logo-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--green); flex-shrink: 0; margin-right: 8px;
    }
    .nav-logo-green { color: var(--green-dark); }
    .nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
    .nav-links a {
      font-size: 14px; font-weight: 400; color: var(--text-mid);
      text-decoration: none; transition: color .2s;
    }
    .nav-links a:hover { color: var(--ink); }

    .btn {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: var(--font-b); font-size: 14px; font-weight: 500;
      padding: 10px 22px; border-radius: 100px;
      text-decoration: none; cursor: pointer;
      transition: all .2s; border: none; letter-spacing: -.01em;
    }
    .btn-primary { background: var(--green); color: var(--ink); }
    .btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
    .btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border-med); }
    .btn-ghost:hover { background: var(--gray-bg); }
    .btn-lg { font-size: 15px; padding: 13px 28px; }
    .btn-dark { background: var(--ink); color: var(--white); }
    .btn-dark:hover { background: var(--ink2); transform: translateY(-1px); }

    /* ── HERO ─── */
    #hero {
      padding-top: 148px; padding-bottom: 80px;
      min-height: 92vh; display: flex; align-items: center;
      background: var(--white);
    }
    .hero-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
    }
    .hero-kicker {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 500; letter-spacing: .06em;
      text-transform: uppercase; color: var(--green-dark);
      margin-bottom: 24px;
    }
    .hero-kicker::before {
      content: ""; width: 20px; height: 1.5px; background: var(--green);
    }
    h1 {
      font-family: var(--font-d); font-size: clamp(44px,5.2vw,70px);
      font-weight: 500; line-height: 1.06; letter-spacing: -.02em;
      color: var(--ink); margin-bottom: 24px;
    }
    h1 em { font-style: italic; color: var(--green-dark); }
    .hero-sub {
      font-size: 16px; font-weight: 300; color: var(--text-mid);
      line-height: 1.75; margin-bottom: 38px; max-width: 420px;
    }
    .hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

    .hero-macbook {
      position: relative;
      max-width: 100%;
    }
    .hero-macbook-frame {
      position: relative; z-index: 2; width: 100%;
      height: auto; display: block; pointer-events: none;
    }
    .hero-screen {
      position: absolute; z-index: 1;
      top: 5%; left: 11%; right: 11%; bottom: 12%;
      background: #1e1e2e; border-radius: 2px; overflow: hidden;
      transition: background .8s ease;
    }
    .hero-screen.light { background: #faf9f5; }
    .hero-app {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: contain; opacity: 0; z-index: 2;
      filter: blur(16px) saturate(0);
      transform: scale(1.1);
      transition: opacity 1.2s ease, filter 1.4s ease, transform 1.4s cubic-bezier(.16,1,.3,1);
    }
    .hero-app.visible {
      opacity: 1; filter: blur(0) saturate(1); transform: scale(1);
    }
    .hero-code {
      padding: 10px 14px; font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
      font-size: clamp(7px, 0.9vw, 12px); line-height: 1.65; color: #cdd6f4;
      white-space: pre; overflow: hidden; height: 100%;
      box-sizing: border-box;
    }
    .hero-code .kw { color: #cba6f7; }
    .hero-code .fn { color: #89b4fa; }
    .hero-code .str { color: #a6e3a1; }
    .hero-code .cm { color: #585b70; font-style: italic; }
    .hero-code .op { color: #89dceb; }
    .hero-code .num { color: #fab387; }
    .hero-code .cursor {
      display: inline-block; width: 7px; height: 14px;
      background: #a6e3a1; vertical-align: text-bottom;
      animation: blink .8s step-end infinite;
    }
    @keyframes blink { 50% { opacity: 0; } }
    .hero-stats {
      display: flex; gap: 32px; margin-bottom: 38px; margin-top: 38px;
    }
    .hero-stat {
      display: flex; flex-direction: column; gap: 2px;
      flex: 1; padding-right: 32px; border-right: 1px solid var(--border);
    }
    .hero-stat:last-child { border-right: none; padding-right: 0; }
    .hero-stat-val {
      font-family: var(--font-d); font-size: 32px; font-weight: 500;
      color: var(--ink); line-height: 1;
    }
    .hero-stat-val span { font-style: italic; color: var(--green-dark); font-size: 26px; }
    .hero-stat-lbl { font-size: 12px; font-weight: 300; color: var(--text-soft); margin-top: 4px; }

    /* ── SECTION ─── */
    .s-kicker {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 500; letter-spacing: .06em;
      text-transform: uppercase; color: var(--green-dark); margin-bottom: 16px;
    }
    .s-kicker::before { content: ""; width: 20px; height: 1.5px; background: var(--green); }
    h2 {
      font-family: var(--font-d); font-size: clamp(30px,3.2vw,48px);
      font-weight: 500; line-height: 1.1; letter-spacing: -.02em; color: var(--ink);
    }
    .s-sub {
      font-size: 16px; font-weight: 300; color: var(--text-mid);
      line-height: 1.72; max-width: 520px; margin-top: 14px;
    }

    /* ── MARQUEE TRUST ─── */
    #trust { padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
    .marquee-track {
      display: flex; gap: 48px; width: max-content;
      animation: marquee 28s linear infinite;
    }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-item { font-size: 13px; font-weight: 300; color: var(--text-soft); white-space: nowrap; }
    .marquee-sep { color: var(--green); opacity: .5; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ── PROBLEM ─── */
    #problem { background: var(--ink); padding: var(--sv) 0; }
    #problem .s-kicker { color: rgba(148,195,77,.75); }
    #problem .s-kicker::before { background: var(--green); }
    #problem h2 { color: var(--white); }
    #problem .s-sub { color: rgba(255,255,255,.45); }

    .pain-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1px; margin-top: 56px;
      border: 1px solid rgba(255,255,255,.07); border-radius: 14px; overflow: hidden;
    }
    .pain-item {
      padding: 40px; background: var(--ink2);
      transition: background .2s;
    }
    .pain-item:hover { background: #232623; }
    .pain-n {
      font-family: var(--font-d); font-size: 13px; font-style: italic;
      color: var(--green); opacity: .7; margin-bottom: 18px; letter-spacing: .02em;
    }
    .pain-t { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
    .pain-p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.72; }

    /* ── VALUES ─── */
    #values { padding: var(--sv) 0; }
    .values-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; margin-top: 0; }
    .values-left { position: sticky; top: 100px; }
    .values-cards { display: flex; flex-direction: column; gap: 1px; margin-top: 56px; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
    .v-card { padding: 36px 40px; background: var(--gray-bg); transition: background .2s; }
    .v-card:hover { background: var(--gray-mid); }
    .v-tag {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 500; letter-spacing: .06em;
      text-transform: uppercase; color: var(--green-dark);
      margin-bottom: 14px;
    }
    .v-tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
    .v-title { font-size: 20px; font-weight: 500; color: var(--ink); margin-bottom: 12px; }
    .v-text { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.75; }

    /* ── BUILD (orbit) ─── */
    #build { padding: var(--sv) 0; }
    .build-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; align-items: center; }
    .build-orbit {
      position: relative; width: 100%; justify-self: center;
    }
    .build-orbit::before { content: ""; display: block; padding-bottom: 60%; }
    .orbit-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
    .orbit-ring { animation: dash-flow 3s linear infinite; }
    @keyframes dash-flow { to { stroke-dashoffset: -24; } }
    .orbit-center {
      position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
      width: 99px; height: 99px; border-radius: 50%; z-index: 10;
      background: var(--green);
      box-shadow: 0 6px 28px rgba(148,195,77,.3);
      display: flex; align-items: center; justify-content: center;
      text-align: center; font-family: var(--font-b);
      font-size: 13px; font-weight: 600; color: var(--ink);
      line-height: 1.3; letter-spacing: -.01em;
    }
    .orbit-item {
      position: absolute; text-align: center;
      will-change: transform, opacity;
    }
    .oi-pill {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 8px 16px; text-decoration: none;
      background: var(--white); border: 1px solid var(--border);
      border-radius: 20px; font-family: var(--font-b);
      font-size: 13px; font-weight: 500; color: var(--ink);
      white-space: nowrap;
      box-shadow: 0 2px 8px rgba(0,0,0,.06);
      transition: border-color .3s, box-shadow .3s;
    }
    .oi-icon { width: 16px; height: 16px; color: var(--green-dark); flex-shrink: 0; }
    .orbit-item:hover .oi-pill {
      border-color: var(--green);
      box-shadow: 0 4px 20px rgba(148,195,77,.18);
    }
    .orbit-item:hover .oi-icon { color: var(--green); }
    .oi-desc {
      display: block; font-size: 11px; font-weight: 300;
      color: var(--text-soft); white-space: nowrap;
      max-height: 0; opacity: 0; overflow: hidden;
      transition: max-height .3s ease, opacity .3s ease, margin .3s ease;
    }
    .orbit-item:hover .oi-desc {
      max-height: 30px; opacity: 1; margin-top: 6px;
    }

    /* ── HOW ─── */
    #how { padding: var(--sv) 0; background: var(--gray-bg); }
    .how-inner { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
    .how-sticky { position: sticky; top: 100px; }
    .phases { display: flex; flex-direction: column; gap: 16px; }
    .phase {
      padding: 36px 40px; background: var(--white);
      border-radius: 14px; border: 1px solid var(--border);
    }
    .phase-tag {
      display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
    }
    .phase-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
    .phase-tag-txt { font-size: 11px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--green-dark); }
    .phase-title { font-family: var(--font-d); font-size: 24px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
    .phase-desc { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.72; margin-bottom: 20px; }
    .phase-ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 26px; }
    .phase-ul li { font-size: 13px; color: var(--text); padding-left: 16px; position: relative; }
    .phase-ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 1.5px; background: var(--green); }
    .phase-meta { display: flex; gap: 32px; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; }
    .pm-lbl { font-size: 10px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 4px; }
    .pm-val { font-size: 18px; font-weight: 500; color: var(--ink); }
    .pm-val.ac { color: var(--green-dark); }
    .pm-note { font-size: 13px; font-weight: 300; color: var(--text-soft); line-height: 1.5; }

    /* ── SAAS ─── */
    #saas { padding: var(--sv) 0; }
    .saas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .saas-pull {
      font-family: var(--font-d); font-size: 20px; font-style: italic;
      color: var(--green-dark); line-height: 1.52;
      margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border);
    }
    .saas-cards { display: flex; flex-direction: column; gap: 12px; }
    .saas-card {
      padding: 20px 24px; background: var(--gray-bg); border-radius: 12px;
      display: flex; align-items: center; justify-content: space-between; gap: 20px;
    }
    .saas-card.hl { background: var(--ink); }
    .saas-card-lbl { font-size: 13px; font-weight: 300; color: var(--text-mid); }
    .saas-card.hl .saas-card-lbl { color: rgba(255,255,255,.5); }
    .saas-card-val { font-family: var(--font-d); font-size: 28px; font-weight: 500; color: var(--green-dark); white-space: nowrap; }
    .saas-card.hl .saas-card-val { color: var(--green); }
    .saas-foot { font-size: 12px; font-weight: 300; color: var(--text-soft); margin-top: 12px; line-height: 1.6; }
    .strike { text-decoration: line-through; opacity: .45; }

    /* ── TEAM ─── */
    #team { padding: var(--sv) 0; background: var(--gray-bg); }
    .team-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
    .team-left { }
    .team-root { font-size: 13px; font-weight: 300; color: var(--text-soft); margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); line-height: 1.65; }
    .team-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .t-card {
      background: var(--white); border-radius: 14px; overflow: hidden;
      border: 1px solid var(--border);
    }
    .t-photo { width: 100%; aspect-ratio: 1/1; overflow: hidden; }
    .t-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .t-info { padding: 18px 20px; }
    .t-name { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
    .t-role { font-size: 12px; font-weight: 300; color: var(--text-soft); }
    .t-plus {
      grid-column: 1/-1; background: var(--white); border-radius: 14px;
      padding: 22px 24px; display: flex; align-items: center; gap: 18px;
      border: 1px solid var(--border);
    }
    .t-plus-icon {
      width: 48px; height: 48px; border-radius: 50%; background: var(--green-dim);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      overflow: hidden;
    }
    .t-plus-icon img {
      width: 36px; height: 36px; object-fit: contain;
      filter: grayscale(1) brightness(0.75) contrast(1.1);
    }
    .t-plus-name { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
    .t-plus-desc { font-size: 13px; font-weight: 300; color: var(--text-soft); }

    /* ── CASES ─── */
    #cases { background: var(--ink); padding: var(--sv) 0; }
    #cases .s-kicker { color: rgba(148,195,77,.7); }
    #cases .s-kicker::before { background: var(--green); opacity: .7; }
    #cases h2 { color: var(--white); }
    .cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 52px; }
    .case-card {
      padding: 36px; background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.07); border-radius: 14px;
    }
    .case-sector { font-size: 11px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 28px; }
    .case-n { font-family: var(--font-d); font-size: 54px; font-weight: 500; color: var(--white); line-height: 1; margin-bottom: 4px; }
    .case-nl { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.4); margin-bottom: 22px; }
    .case-d { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.68; }

    /* ── TESTIMONIALS ─── */
    #testimonials { padding: var(--sv) 0; }
    .t2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
    .t2-card { padding: 40px; background: var(--gray-bg); border-radius: 14px; }
    .t2-q { font-family: var(--font-d); font-size: 21px; font-style: italic; color: var(--ink); line-height: 1.5; margin-bottom: 28px; }
    .t2-who { display: flex; align-items: center; gap: 12px; }
    .t2-av { width: 36px; height: 36px; border-radius: 50%; background: var(--green-dim); flex-shrink: 0; }
    .t2-name { font-size: 14px; font-weight: 500; color: var(--ink); }
    .t2-role { font-size: 13px; font-weight: 300; color: var(--text-soft); }

    /* ── FAQ ─── */
    #faq { padding: var(--sv) 0; background: var(--gray-bg); }
    .faq-inner { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
    .faq-sticky { position: sticky; top: 100px; }
    .faq-email { display: inline-block; margin-top: 18px; font-size: 14px; font-weight: 500; color: var(--green-dark); text-decoration: none; transition: color .2s; }
    .faq-email:hover { color: var(--ink); }
    .faq-list { display: flex; flex-direction: column; }
    .faq-item { border-bottom: 1px solid var(--border-med); }
    .faq-q {
      width: 100%; background: none; border: none; cursor: pointer;
      text-align: left; padding: 22px 0; font-family: var(--font-b);
      font-size: 15px; font-weight: 500; color: var(--ink);
      display: flex; align-items: center; justify-content: space-between; gap: 20px;
      transition: color .2s;
    }
    .faq-q:hover { color: var(--green-dark); }
    .faq-ico { width: 18px; height: 18px; flex-shrink: 0; position: relative; }
    .faq-ico::before, .faq-ico::after { content: ""; position: absolute; background: currentColor; border-radius: 1px; }
    .faq-ico::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
    .faq-ico::after  { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: opacity .25s; }
    .faq-item.open .faq-ico::after { opacity: 0; }
    .faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s; }
    .faq-item.open .faq-a { grid-template-rows: 1fr; }
    .faq-a-inner { overflow: hidden; }
    .faq-a-txt { padding-bottom: 22px; font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.72; }

    /* ── CTA / CONTACT ─── */
    #cta { padding: var(--sv) 0; background: var(--ink); }
    .cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .cta-h2 { font-family: var(--font-d); font-size: clamp(36px,3.8vw,56px); font-weight: 500; font-style: italic; color: var(--white); line-height: 1.08; margin-bottom: 20px; }
    .cta-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.72; margin-bottom: 32px; }
    .cta-person { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; margin-bottom: 0; }
    .cta-av { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(148,195,77,.35); }
    .cta-av img { width: 100%; height: 100%; object-fit: cover; }
    .cta-pname { font-size: 14px; font-weight: 500; color: var(--white); }
    .cta-prole { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.45); }

    /* Form */
    .hs-form-wrap { background: var(--white); border-radius: 16px; padding: 40px; }
    .form-title { font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
    .form-sub { font-size: 14px; font-weight: 300; color: var(--text-soft); margin-bottom: 28px; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group.full { grid-column: 1/-1; }
    .form-label { font-size: 12px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--text-soft); }
    .form-input, .form-textarea {
      font-family: var(--font-b); font-size: 14px; font-weight: 300;
      color: var(--ink); background: var(--gray-bg); border: 1px solid var(--border-med);
      border-radius: 10px; padding: 12px 16px; outline: none; transition: border-color .2s, background .2s;
      width: 100%;
    }
    .form-input:focus, .form-textarea:focus { border-color: var(--green); background: var(--white); }
    .form-textarea { resize: none; height: 100px; line-height: 1.6; }
    .form-submit {
      grid-column: 1/-1; font-family: var(--font-b); font-size: 15px; font-weight: 500;
      padding: 14px 28px; background: var(--green); color: var(--ink);
      border: none; border-radius: 100px; cursor: pointer; transition: background .2s, transform .2s;
      margin-top: 4px; width: 100%; letter-spacing: -.01em;
    }
    .form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
    .form-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
    .form-msg { grid-column: 1/-1; font-size: 14px; font-weight: 300; padding: 12px 16px; border-radius: 8px; display: none; }
    .form-msg.ok { display: block; background: rgba(148,195,77,.12); color: var(--green-dark); border: 1px solid rgba(148,195,77,.3); }
    .form-msg.err { display: block; background: rgba(220,50,50,.08); color: #b83333; border: 1px solid rgba(220,50,50,.2); }

    /* ── FOOTER ─── */
    footer { background: #111311; padding: 40px 0; }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
    .footer-logo { font-family: var(--font-b); font-weight: 600; font-size: 14px; letter-spacing: -.01em; color: rgba(255,255,255,.3); display: flex; align-items: center; }
    .footer-logo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); opacity: .5; margin-right: 7px; }
    .footer-logo-green { color: rgba(148,195,77,.5); }
    .footer-links { display: flex; gap: 22px; list-style: none; }
    .footer-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: rgba(255,255,255,.7); }
    .footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.18); }

    /* ── REVEAL ─── */
    .r { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
    .r.on { opacity: 1; transform: none; }
    .r.d1 { transition-delay: .08s; }
    .r.d2 { transition-delay: .16s; }
    .r.d3 { transition-delay: .24s; }
    .r.d4 { transition-delay: .32s; }

    /* ── COOKIE BANNER ─── */
    .cb {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
      border-top: 1px solid var(--border); padding: 18px 0;
    }
    .cb-inner {
      max-width: var(--max-w); margin: 0 auto; padding: 0 44px;
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
    }
    .cb-text { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.6; margin: 0; }
    .cb-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .cb-btn { font-size: 13px; padding: 9px 20px; }
    .cb-link {
      background: none; border: none; font-family: var(--font-b);
      font-size: 13px; font-weight: 500; color: var(--text-mid);
      cursor: pointer; text-decoration: underline; text-underline-offset: 2px;
      padding: 9px 8px; transition: color .2s;
    }
    .cb-link:hover { color: var(--ink); }
    .cb.active { display: block; }

    /* ── COOKIE PREFERENCES MODAL ─── */
    .cp-overlay {
      display: none;
      position: fixed; inset: 0; z-index: 210;
      background: rgba(23,24,23,.45); backdrop-filter: blur(4px);
      align-items: center; justify-content: center;
      padding: 20px;
    }
    .cp-overlay.active { display: flex; }
    .cp-modal {
      background: var(--white); border-radius: 16px;
      width: 100%; max-width: 480px;
      box-shadow: 0 20px 60px rgba(0,0,0,.18);
      overflow: hidden;
    }
    .cp-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 24px 28px 0;
    }
    .cp-title { font-size: 18px; font-weight: 500; color: var(--ink); }
    .cp-close {
      background: none; border: none; font-size: 24px; color: var(--text-soft);
      cursor: pointer; line-height: 1; padding: 0 4px; transition: color .2s;
    }
    .cp-close:hover { color: var(--ink); }
    .cp-body { padding: 20px 28px; }
    .cp-row {
      display: flex; align-items: center; justify-content: space-between; gap: 20px;
      padding: 16px 0; border-bottom: 1px solid var(--border);
    }
    .cp-row:last-child { border-bottom: none; }
    .cp-cat { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
    .cp-desc { font-size: 12px; font-weight: 300; color: var(--text-soft); line-height: 1.5; margin: 0; }
    .cp-footer { padding: 0 28px 24px; }
    .cp-footer .btn { width: 100%; justify-content: center; }

    /* Toggle switch */
    .cp-toggle {
      position: relative; display: inline-block;
      width: 44px; height: 24px; flex-shrink: 0;
    }
    .cp-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
    .cp-slider {
      position: absolute; inset: 0; cursor: pointer;
      background: var(--gray-mid); border-radius: 24px;
      transition: background .25s;
    }
    .cp-slider::after {
      content: ""; position: absolute;
      left: 3px; top: 3px; width: 18px; height: 18px;
      background: var(--white); border-radius: 50%;
      box-shadow: 0 1px 3px rgba(0,0,0,.15);
      transition: transform .25s;
    }
    .cp-toggle input:checked + .cp-slider { background: var(--green); }
    .cp-toggle input:checked + .cp-slider::after { transform: translateX(20px); }
    .cp-toggle.locked .cp-slider { background: var(--green); opacity: .55; cursor: default; }
    .cp-toggle.locked .cp-slider::after { transform: translateX(20px); }

    /* Cookie icon button */
    .cookie-icon {
      display: none;
      position: fixed; bottom: 20px; left: 20px; z-index: 190;
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--white); border: 1px solid var(--border-med);
      box-shadow: 0 2px 10px rgba(0,0,0,.1);
      align-items: center; justify-content: center;
      cursor: pointer; color: var(--text-soft);
      transition: color .2s, box-shadow .2s;
    }
    .cookie-icon.active { display: flex; }
    .cookie-icon:hover { color: var(--green-dark); box-shadow: 0 4px 16px rgba(0,0,0,.14); }

    /* ── RESPONSIVE ─── */
    @media (max-width: 960px) {
      :root { --sv: 64px; }
      .hero-inner, .saas-inner, .team-inner, .cta-inner, .how-inner, .faq-inner, .values-wrap, .build-inner { grid-template-columns: 1fr; gap: 48px; }
      .build-orbit { max-width: 340px; justify-self: center; }
      .hero-macbook { display: none; }
      .hero-stats { flex-direction: column; gap: 16px; }
      .hero-stat { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
      .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
      .pain-grid, .cases-grid, .t2-grid { grid-template-columns: 1fr; }
      .how-sticky, .faq-sticky, .values-left { position: static; }
      .nav-links { display: none; }
      .nav-logo { font-size: 21px; }
      .nav-logo-dot { width: 6px; height: 6px; margin-right: 6px; }
      .build-orbit { display: none; }
    }
    @media (max-width: 600px) {
      .container { padding: 0 20px; }
      .form-grid { grid-template-columns: 1fr; }
      .team-cards { grid-template-columns: 1fr; }
      .cb-inner { padding: 0 20px; flex-direction: column; align-items: stretch; text-align: center; }
      .cb-actions { flex-direction: column; }
      .cb-btn { width: 100%; justify-content: center; }
      .cp-modal { max-width: 100%; }
    }
