    :root {
      --cream: #F5F0E6;
      --cream-2: #EDE6D4;
      --ink: #1A1714;
      --ink-soft: #2B2520;
      --lime: #C8F564;
      --lime-dark: #A5D63E;
      --aubergine: #3D1F4E;
      --terracotta: #D4633A;
      --mute: #8B8178;
      --border: #E0D7C4;
      --display: 'Fraunces', 'Times New Roman', serif;
      --italic: 'Instrument Serif', serif;
      --mono: 'JetBrains Mono', ui-monospace, monospace;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    html, body { overflow-x: hidden; max-width: 100vw; }
    body {
      font-family: var(--mono);
      background: var(--cream);
      color: var(--ink);
      font-size: 14px;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      font-feature-settings: "ss01", "ss02";
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 999;
      opacity: 0.06;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

    .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

    .mono-label {
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--mute);
    }
    .italic { font-family: var(--italic); font-style: italic; font-weight: 400; }

    /* ── NAV ── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: var(--cream);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }
    .logo {
      font-family: var(--display);
      font-size: 28px;
      font-weight: 500;
      letter-spacing: -0.04em;
      color: var(--ink);
    }
    .logo sup {
      font-family: var(--mono);
      font-size: 10px;
      vertical-align: super;
      letter-spacing: 0;
      color: var(--terracotta);
      margin-left: 2px;
    }
    .nav-links { display: flex; gap: 32px; }
    .nav-links a {
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--ink);
      position: relative;
      padding: 4px 0;
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0; bottom: 0;
      width: 0; height: 1px;
      background: var(--ink);
      transition: width 0.3s;
    }
    .nav-links a:hover::after { width: 100%; }
    .nav-actions { display: flex; align-items: center; gap: 12px; }

    /* ── Buttons ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 22px;
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      border: 1.5px solid var(--ink);
      border-radius: 0;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .btn-primary { background: var(--ink); color: var(--cream); }
    .btn-primary:hover { background: var(--lime); color: var(--ink); }
    .btn-ghost { background: transparent; color: var(--ink); }
    .btn-ghost:hover { background: var(--ink); color: var(--cream); }
    .btn-lg { padding: 18px 28px; font-size: 13px; }

    .hamburger {
      display: none;
      width: 44px; height: 44px;
      border: 1.5px solid var(--ink);
      align-items: center;
      justify-content: center;
      background: var(--cream);
    }
    .hamburger span {
      display: block;
      width: 18px; height: 1.5px;
      background: var(--ink);
      position: relative;
    }
    .hamburger span::before, .hamburger span::after {
      content: "";
      position: absolute;
      width: 18px; height: 1.5px;
      background: var(--ink);
      left: 0;
    }
    .hamburger span::before { top: -6px; }
    .hamburger span::after { top: 6px; }

    /* ── Mobile menu ── */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--cream);
      z-index: 200;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(.77,0,.18,1);
      display: flex;
      flex-direction: column;
      padding: 24px;
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 48px;
    }
    .mobile-menu-close {
      width: 44px; height: 44px;
      border: 1.5px solid var(--ink);
      font-size: 20px;
      display: flex; align-items: center; justify-content: center;
    }
    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .mobile-menu-links a {
      font-family: var(--display);
      font-size: 36px;
      letter-spacing: -0.02em;
      color: var(--ink);
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .mobile-menu-links a::after { content: "→"; font-size: 24px; color: var(--mute); }
    .mobile-menu-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-bottom: 24px;
    }
    .mobile-menu-actions .btn { width: 100%; justify-content: center; }

    /* ══ HERO ══ */
    .hero {
      padding: 140px 0 80px;
      position: relative;
    }
    .hero-meta {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }
    .hero-meta-item { display: flex; align-items: center; gap: 8px; }
    .hero-meta-item .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--terracotta);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 99, 58, 0.4); }
      50% { opacity: 0.7; transform: scale(1.1); box-shadow: 0 0 0 8px rgba(212, 99, 58, 0); }
    }

    .hero h1 {
      font-family: var(--display);
      font-size: clamp(56px, 11vw, 168px);
      font-weight: 300;
      line-height: 0.88;
      letter-spacing: -0.04em;
      color: var(--ink);
      font-variation-settings: "opsz" 144, "SOFT" 30;
    }
    .hero h1 .line { display: block; }
    .hero h1 .italic {
      font-family: var(--italic);
      font-style: italic;
      font-weight: 400;
      color: var(--terracotta);
    }
    .hero h1 .underline {
      display: inline-block;
      position: relative;
    }
    .hero h1 .underline::after {
      content: "";
      position: absolute;
      left: 0; right: 0;
      bottom: 0.08em;
      height: 0.18em;
      background: var(--lime);
      z-index: -1;
    }

    .hero-bottom {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 64px;
      margin-top: 56px;
      align-items: end;
    }
    .hero-lede {
      font-family: var(--display);
      font-size: 22px;
      line-height: 1.4;
      font-weight: 300;
      color: var(--ink-soft);
      max-width: 520px;
    }
    .hero-lede .italic { color: var(--terracotta); }
    .hero-cta-row {
      display: flex;
      gap: 12px;
      margin-top: 28px;
      flex-wrap: wrap;
    }
    .hero-aside {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .hero-stat {
      border: 1.5px solid var(--ink);
      padding: 24px 28px;
      background: var(--cream);
      position: relative;
    }
    .hero-stat .num {
      font-family: var(--display);
      font-size: 88px;
      font-weight: 300;
      line-height: 0.85;
      letter-spacing: -0.04em;
      color: var(--ink);
    }
    .hero-stat .label {
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--mute);
      margin-top: 12px;
      display: block;
    }
    .hero-stat .corner {
      position: absolute;
      top: -10px;
      right: -10px;
      width: 44px;
      height: 44px;
      background: var(--lime);
      border: 1.5px solid var(--ink);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      transform: rotate(12deg);
    }

    .trust-cluster {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 16px;
      border: 1.5px solid var(--ink);
      background: var(--cream-2);
    }
    .avatars { display: flex; }
    .avatars > div {
      width: 34px; height: 34px;
      border-radius: 50%;
      border: 2px solid var(--cream-2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      margin-left: -12px;
    }
    .avatars > div:first-child { margin-left: 0; }
    .trust-text {
      font-family: var(--mono);
      font-size: 11px;
      line-height: 1.4;
    }
    .trust-text strong { font-weight: 700; }

    /* ══ MARQUEE ══ */
    .marquee {
      background: var(--ink);
      color: var(--cream);
      overflow: hidden;
      border-top: 1.5px solid var(--ink);
      border-bottom: 1.5px solid var(--ink);
      padding: 20px 0;
    }
    .marquee-track {
      display: flex;
      gap: 48px;
      animation: scroll 40s linear infinite;
      white-space: nowrap;
      width: max-content;
    }
    @keyframes scroll {
      to { transform: translateX(-50%); }
    }
    .marquee-item {
      font-family: var(--display);
      font-size: 32px;
      font-weight: 300;
      letter-spacing: -0.02em;
      display: inline-flex;
      align-items: center;
      gap: 16px;
    }
    .marquee-item .italic {
      font-family: var(--italic);
      color: var(--lime);
    }
    .marquee-item .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--terracotta);
    }

    /* ══ SECTION COMMON ══ */
    section { padding: 120px 0; position: relative; }
    .section-label {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 32px;
    }
    .section-label::before {
      content: "";
      width: 40px;
      height: 1px;
      background: var(--ink);
    }
    .section-label .mono-label { color: var(--ink); }

    h2.section-title {
      font-family: var(--display);
      font-size: clamp(44px, 7vw, 104px);
      font-weight: 300;
      line-height: 0.92;
      letter-spacing: -0.035em;
      color: var(--ink);
      max-width: 900px;
      margin-bottom: 32px;
    }
    h2.section-title .italic {
      font-family: var(--italic);
      font-style: italic;
      color: var(--terracotta);
    }
    .section-intro {
      font-family: var(--display);
      font-size: 19px;
      line-height: 1.5;
      font-weight: 400;
      color: var(--ink-soft);
      max-width: 620px;
    }

    /* ══ COMPARE ══ */
    .compare { background: var(--cream); }
    .compare-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-bottom: 56px;
    }
    .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: start;
    }
    .compare-col { padding: 40px; border: 1.5px solid var(--ink); position: relative; }
    .compare-col.bad { background: var(--cream-2); }
    .compare-col.good { background: var(--ink); color: var(--cream); }
    .compare-col.good h3, .compare-col.good li { color: var(--cream); }
    .compare-col h3 {
      font-family: var(--display);
      font-size: 36px;
      font-weight: 400;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }
    .compare-col p {
      font-family: var(--mono);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--mute);
      margin-bottom: 32px;
    }
    .compare-col.good p { color: rgba(245, 240, 230, 0.6); }
    .compare-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .compare-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-family: var(--mono);
      font-size: 13px;
      line-height: 1.5;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
    }
    .compare-col.good .compare-list li { border-bottom-color: rgba(245, 240, 230, 0.1); }
    .compare-list .mark {
      font-family: var(--display);
      font-size: 20px;
      line-height: 1;
      flex-shrink: 0;
      width: 24px;
    }
    .compare-col.bad .mark { color: var(--terracotta); }
    .compare-col.good .mark { color: var(--lime); }

    .sticker {
      position: absolute;
      top: -24px;
      right: -24px;
      width: 120px;
      height: 120px;
      background: var(--lime);
      border: 1.5px solid var(--ink);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: var(--display);
      font-weight: 400;
      transform: rotate(-8deg);
      text-align: center;
      line-height: 1;
      color: var(--ink);
      animation: wobble 6s ease-in-out infinite;
    }
    .sticker .big { font-size: 26px; }
    .sticker .small {
      font-family: var(--mono);
      font-size: 8px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 4px;
    }
    @keyframes wobble {
      0%, 100% { transform: rotate(-8deg); }
      50% { transform: rotate(4deg); }
    }

    /* ══ HOW IT WORKS ══ */
    .how { background: var(--cream-2); }
    .steps-list { display: flex; flex-direction: column; }
    .step-row {
      display: grid;
      grid-template-columns: 140px 1fr 1fr;
      gap: 48px;
      padding: 56px 0;
      border-top: 1.5px solid var(--ink);
      align-items: start;
      transition: background 0.3s;
    }
    .step-row:last-child { border-bottom: 1.5px solid var(--ink); }
    .step-row:hover { background: var(--cream); }
    .step-num {
      font-family: var(--display);
      font-size: 140px;
      font-weight: 300;
      line-height: 0.8;
      letter-spacing: -0.06em;
      color: var(--ink);
    }
    .step-row:hover .step-num { color: var(--terracotta); }
    .step-row h3 {
      font-family: var(--display);
      font-size: 44px;
      font-weight: 400;
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .step-row p {
      font-family: var(--mono);
      font-size: 13px;
      line-height: 1.7;
      color: var(--ink-soft);
    }

    /* ══ FEATURES ══ */
    .features { background: var(--cream); }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: minmax(240px, auto);
      gap: 20px;
      margin-top: 64px;
    }
    .feature {
      border: 1.5px solid var(--ink);
      padding: 32px;
      background: var(--cream);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
    }
    .feature:hover { background: var(--cream-2); }
    .feature.f-1 { grid-column: span 6; grid-row: span 2; background: var(--ink); color: var(--cream); }
    .feature.f-1:hover { background: var(--aubergine); }
    .feature.f-2 { grid-column: span 6; }
    .feature.f-3 { grid-column: span 6; background: var(--lime); }
    .feature.f-4 { grid-column: span 4; }
    .feature.f-5 { grid-column: span 4; background: var(--terracotta); color: var(--cream); }
    .feature.f-5:hover { background: var(--aubergine); }
    .feature.f-6 { grid-column: span 4; }

    .feature .num {
      font-family: var(--display);
      font-size: 14px;
      font-weight: 400;
      opacity: 0.5;
    }
    .feature h3 {
      font-family: var(--display);
      font-size: 36px;
      font-weight: 400;
      letter-spacing: -0.02em;
      line-height: 1;
      margin-top: 16px;
    }
    .feature.f-1 h3 { font-size: 56px; }
    .feature p {
      font-family: var(--mono);
      font-size: 12px;
      line-height: 1.6;
      margin-top: 16px;
      max-width: 320px;
    }
    .feature.f-1 p { font-size: 14px; max-width: 420px; }

    .feature .corner-icon {
      position: absolute;
      bottom: 20px;
      right: 20px;
      font-family: var(--display);
      font-size: 28px;
      line-height: 1;
    }

    /* ══ SUSTAINABILITY ══ */
    .sustain {
      background: var(--aubergine);
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }
    .sustain .section-label .mono-label { color: var(--lime); }
    .sustain .section-label::before { background: var(--lime); }
    .sustain h2 { color: var(--cream); }
    .sustain h2 .italic { color: var(--lime); }
    .sustain .section-intro { color: rgba(245, 240, 230, 0.75); }
    .sustain-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 80px;
      align-items: end;
      margin-top: 72px;
    }
    .sustain-stats { display: flex; flex-direction: column; }
    .sustain-stat {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 32px;
      align-items: baseline;
      padding: 32px 0;
      border-top: 1px solid rgba(200, 245, 100, 0.2);
    }
    .sustain-stat:last-child { border-bottom: 1px solid rgba(200, 245, 100, 0.2); }
    .sustain-stat strong {
      font-family: var(--display);
      font-size: 88px;
      font-weight: 300;
      line-height: 0.85;
      letter-spacing: -0.04em;
      color: var(--lime);
    }
    .sustain-stat-label {
      font-family: var(--mono);
      font-size: 12px;
      line-height: 1.5;
      color: rgba(245, 240, 230, 0.7);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .sustain-visual {
      font-family: var(--display);
      font-size: clamp(160px, 20vw, 280px);
      font-weight: 300;
      line-height: 0.8;
      letter-spacing: -0.05em;
      color: var(--lime);
      text-align: right;
      transform: rotate(-6deg);
    }

    /* ══ TESTIMONIALS ══ */
    .testimonials { background: var(--cream); }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 72px;
    }
    .testi {
      border: 1.5px solid var(--ink);
      padding: 40px 32px;
      background: var(--cream);
      display: flex;
      flex-direction: column;
      min-height: 440px;
      position: relative;
    }
    .testi:nth-child(2) { background: var(--cream-2); transform: translateY(32px); }
    .testi:nth-child(1)::before, .testi:nth-child(3)::before {
      content: "";
      position: absolute;
      inset: 8px;
      border: 1px solid var(--border);
      pointer-events: none;
    }
    .testi .quote-mark {
      font-family: var(--display);
      font-size: 120px;
      line-height: 0.6;
      color: var(--terracotta);
      margin-bottom: 16px;
      font-weight: 300;
    }
    .testi-text {
      font-family: var(--display);
      font-size: 20px;
      line-height: 1.4;
      font-weight: 400;
      color: var(--ink);
      flex: 1;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 24px;
      margin-top: 24px;
      border-top: 1px solid var(--border);
    }
    .testi-avatar {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--lime);
      border: 1.5px solid var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }
    .testi-name {
      font-family: var(--display);
      font-size: 18px;
      font-weight: 500;
    }
    .testi-role {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--mute);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ══ STATS ══ */
    .stats {
      background: var(--ink);
      color: var(--cream);
      padding: 80px 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stat {
      padding: 0 24px;
      border-right: 1px solid rgba(245, 240, 230, 0.15);
    }
    .stat:first-child { padding-left: 0; }
    .stat:last-child { border-right: none; padding-right: 0; }
    .stat strong {
      font-family: var(--display);
      font-size: clamp(56px, 6vw, 96px);
      font-weight: 300;
      letter-spacing: -0.04em;
      line-height: 0.85;
      color: var(--cream);
      display: block;
    }
    .stat strong .italic {
      font-family: var(--italic);
      color: var(--lime);
    }
    .stat-label {
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(245, 240, 230, 0.5);
      display: block;
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid rgba(245, 240, 230, 0.15);
    }

    /* ══ CTA ══ */
    .cta-section {
      background: var(--cream);
      padding: 140px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: "CLINKIT · CLINKIT · CLINKIT · CLINKIT · CLINKIT ·";
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      font-family: var(--display);
      font-size: 14vw;
      font-weight: 300;
      line-height: 0.8;
      letter-spacing: -0.04em;
      color: var(--cream-2);
      white-space: nowrap;
      z-index: 0;
      pointer-events: none;
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }
    .cta-inner h2 {
      font-family: var(--display);
      font-size: clamp(48px, 9vw, 140px);
      font-weight: 300;
      line-height: 0.9;
      letter-spacing: -0.04em;
      margin-bottom: 32px;
      color: var(--ink);
    }
    .cta-inner h2 .italic {
      font-family: var(--italic);
      color: var(--terracotta);
    }
    .cta-inner p {
      font-family: var(--display);
      font-size: 20px;
      line-height: 1.5;
      color: var(--ink-soft);
      max-width: 540px;
      margin: 0 auto 40px;
    }
    .cta-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ══ FOOTER ══ */
    footer {
      background: var(--ink);
      color: var(--cream);
      padding: 80px 0 32px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 80px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(245, 240, 230, 0.15);
    }
    .footer-brand .logo {
      color: var(--cream);
      margin-bottom: 20px;
      display: block;
    }
    .footer-brand p {
      font-family: var(--mono);
      font-size: 12px;
      line-height: 1.6;
      max-width: 280px;
      color: rgba(245, 240, 230, 0.6);
      margin-bottom: 28px;
    }
    .social-links { display: flex; gap: 8px; }
    .social-links a {
      width: 42px; height: 42px;
      border: 1px solid rgba(245, 240, 230, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: all 0.2s;
    }
    .social-links a:hover {
      background: var(--lime);
      color: var(--ink);
      border-color: var(--lime);
    }
    .footer-col h4 {
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--lime);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col a {
      font-family: var(--display);
      font-size: 18px;
      font-weight: 400;
      color: var(--cream);
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--lime); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--mono);
      font-size: 11px;
      color: rgba(245, 240, 230, 0.5);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom a:hover { color: var(--lime); }

    .footer-wordmark {
      font-family: var(--display);
      font-size: clamp(80px, 18vw, 280px);
      font-weight: 300;
      line-height: 0.8;
      letter-spacing: -0.06em;
      color: var(--cream);
      margin-top: 48px;
      padding: 40px 0;
      border-top: 1px solid rgba(245, 240, 230, 0.15);
      text-align: center;
    }
    .footer-wordmark .italic {
      font-family: var(--italic);
      color: var(--lime);
    }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .container { padding: 0 24px; }
      .hero { padding: 120px 0 64px; }
      .hero-bottom { grid-template-columns: 1fr; gap: 48px; }
      .hero-aside { flex-direction: row; align-items: stretch; }
      .hero-stat { flex: 1; }
      .trust-cluster { flex: 1; }

      .compare-header { grid-template-columns: 1fr; gap: 32px; }

      .step-row { grid-template-columns: 100px 1fr; gap: 32px; }
      .step-row p { grid-column: 2; }
      .step-num { font-size: 100px; }
      .step-row h3 { font-size: 36px; }

      .features-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: auto; }
      .feature.f-1, .feature.f-2 { grid-column: span 6; }
      .feature.f-1 { grid-row: auto; }
      .feature.f-3, .feature.f-4, .feature.f-5, .feature.f-6 { grid-column: span 3; }
      .feature.f-1 h3 { font-size: 44px; }

      .sustain-grid { grid-template-columns: 1fr; gap: 48px; }
      .sustain-visual { text-align: left; }

      .testi:nth-child(2) { transform: none; }
      .testi-grid { grid-template-columns: repeat(2, 1fr); }
      .testi-grid > :nth-child(3) { grid-column: span 2; max-width: 60%; margin: 0 auto; }

      .stat strong { font-size: 56px; }

      .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
      .footer-top > :nth-child(5) { display: none; }
    }

    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .nav-inner { height: 60px; }
      .nav-links { display: none; }
      .nav-actions .btn-ghost { display: none; }
      .hamburger { display: flex; }
      .logo { font-size: 24px; }

      .hero { padding: 100px 0 56px; }
      .hero-meta { flex-direction: column; align-items: flex-start; gap: 8px; padding-bottom: 16px; margin-bottom: 32px; }
      .hero h1 { font-size: clamp(48px, 14vw, 84px); }
      .hero-lede { font-size: 18px; }
      .hero-aside { flex-direction: column; }
      .hero-cta-row .btn { flex: 1; }
      .hero-stat .num { font-size: 72px; }

      .marquee-item { font-size: 22px; }

      section { padding: 80px 0; }
      h2.section-title { font-size: clamp(36px, 9vw, 64px); }
      .section-intro { font-size: 16px; }

      .compare-grid { grid-template-columns: 1fr; gap: 20px; }
      .compare-col { padding: 32px 24px; }
      .compare-col h3 { font-size: 28px; }
      .sticker { width: 96px; height: 96px; right: -16px; top: -16px; }
      .sticker .big { font-size: 20px; }

      .step-row { grid-template-columns: 72px 1fr; gap: 20px; padding: 40px 0; }
      .step-num { font-size: 64px; }
      .step-row h3 { font-size: 28px; }
      .step-row p { font-size: 12px; grid-column: 2; }

      .features-grid { grid-template-columns: 1fr; }
      .feature.f-1, .feature.f-2, .feature.f-3, .feature.f-4, .feature.f-5, .feature.f-6 { grid-column: span 1; grid-row: auto; }
      .feature { padding: 28px 24px; min-height: 220px; }
      .feature h3 { font-size: 30px; }
      .feature.f-1 h3 { font-size: 36px; }

      .sustain-stat { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
      .sustain-stat strong { font-size: 64px; }

      .testi-grid { grid-template-columns: 1fr; }
      .testi-grid > :nth-child(3) { grid-column: span 1; max-width: 100%; }
      .testi { min-height: auto; padding: 32px 24px; }
      .testi-text { font-size: 17px; }
      .testi .quote-mark { font-size: 80px; }

      .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
      .stat { padding: 24px; border-right: none; border-bottom: 1px solid rgba(245, 240, 230, 0.15); }
      .stat:first-child { padding-left: 24px; }
      .stat:last-child { padding-right: 24px; border-bottom: none; }
      .stat:nth-child(odd) { border-right: 1px solid rgba(245, 240, 230, 0.15); }
      .stat strong { font-size: 48px; }

      .cta-section { padding: 80px 0; }
      .cta-section::before { top: 40px; font-size: 22vw; }
      .cta-buttons { flex-direction: column; width: 100%; }
      .cta-buttons .btn { width: 100%; }

      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 24px; margin-bottom: 48px; }
      .footer-top > :nth-child(5) { display: block; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col a { font-size: 15px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    }

    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .hero { padding: 88px 0 48px; }
      .hero h1 { font-size: clamp(40px, 13vw, 60px); }
      .hero-stat .num { font-size: 56px; }
      .hero-cta-row { flex-direction: column; }
      .hero-cta-row .btn { width: 100%; }

      .marquee-item { font-size: 18px; }

      section { padding: 64px 0; }
      .compare-col { padding: 28px 20px; }
      .compare-col h3 { font-size: 24px; }
      .step-num { font-size: 52px; }
      .step-row h3 { font-size: 24px; }

      .feature h3 { font-size: 26px; }
      .feature.f-1 h3 { font-size: 30px; }

      .sustain-stat strong { font-size: 52px; }
      .stats-grid { grid-template-columns: 1fr; }
      .stat { border-right: none !important; border-bottom: 1px solid rgba(245, 240, 230, 0.15); }
      .stat:last-child { border-bottom: none; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.9s cubic-bezier(.22,.61,.36,1), transform 0.9s cubic-bezier(.22,.61,.36,1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ══════════════════════════════════════════
       SUBPAGE-SPECIFIC STYLES
       ══════════════════════════════════════════ */

    /* Page header (used on all subpages) */
    .page-header {
      padding: 140px 0 80px;
      border-bottom: 1.5px solid var(--ink);
      background: var(--cream);
    }
    .page-header-meta {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }
    .page-header h1 {
      font-family: var(--display);
      font-size: clamp(52px, 9vw, 140px);
      font-weight: 300;
      line-height: 0.9;
      letter-spacing: -0.04em;
      color: var(--ink);
      margin-bottom: 32px;
    }
    .page-header h1 .line { display: block; }
    .page-header h1 .italic {
      font-family: var(--italic);
      color: var(--terracotta);
    }
    .page-header .lede {
      font-family: var(--display);
      font-size: clamp(18px, 2vw, 24px);
      line-height: 1.4;
      font-weight: 300;
      color: var(--ink-soft);
      max-width: 680px;
    }
    .page-header .lede .italic { color: var(--terracotta); }

    /* Breadcrumbs */
    .breadcrumbs {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--mute);
      margin-bottom: 24px;
    }
    .breadcrumbs a { color: var(--mute); transition: color .2s; }
    .breadcrumbs a:hover { color: var(--ink); }
    .breadcrumbs .sep { opacity: 0.4; }
    .breadcrumbs .current { color: var(--ink); }

    /* Article / prose layout */
    .prose-section {
      padding: 100px 0;
      background: var(--cream);
    }
    .prose-grid {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 96px;
      align-items: start;
    }
    .prose-toc {
      position: sticky;
      top: 100px;
    }
    .prose-toc .toc-label {
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--mute);
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
      display: block;
    }
    .prose-toc ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .prose-toc a {
      font-family: var(--mono);
      font-size: 12px;
      color: var(--ink-soft);
      padding: 4px 0;
      display: block;
      border-left: 1px solid transparent;
      padding-left: 12px;
      margin-left: -12px;
      transition: all .2s;
      line-height: 1.5;
    }
    .prose-toc a:hover {
      border-left-color: var(--terracotta);
      color: var(--terracotta);
    }
    .prose {
      max-width: 720px;
    }
    .prose h2 {
      font-family: var(--display);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin: 72px 0 24px;
      color: var(--ink);
    }
    .prose h2:first-child { margin-top: 0; }
    .prose h2 .italic { font-family: var(--italic); color: var(--terracotta); }
    .prose h3 {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 40px 0 12px;
      color: var(--ink);
    }
    .prose p {
      font-family: var(--mono);
      font-size: 14px;
      line-height: 1.75;
      margin-bottom: 20px;
      color: var(--ink-soft);
    }
    .prose ul, .prose ol {
      font-family: var(--mono);
      font-size: 14px;
      line-height: 1.75;
      margin: 0 0 20px 0;
      padding-left: 24px;
      color: var(--ink-soft);
    }
    .prose li { margin-bottom: 8px; }
    .prose a {
      color: var(--terracotta);
      border-bottom: 1px solid var(--terracotta);
      transition: all .2s;
    }
    .prose a:hover { background: var(--terracotta); color: var(--cream); }
    .prose strong { font-weight: 700; color: var(--ink); }
    .prose blockquote {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 300;
      line-height: 1.4;
      font-style: italic;
      color: var(--ink);
      border-left: 3px solid var(--terracotta);
      padding: 8px 0 8px 32px;
      margin: 32px 0;
    }
    .prose hr {
      border: none;
      border-top: 1px solid var(--border);
      margin: 48px 0;
    }
    .prose code {
      font-family: var(--mono);
      font-size: 12px;
      background: var(--cream-2);
      padding: 2px 6px;
      border: 1px solid var(--border);
    }

    /* Last updated */
    .last-updated {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 10px 16px;
      border: 1px solid var(--border);
      background: var(--cream-2);
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--mute);
      margin-bottom: 40px;
    }
    .last-updated .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--lime-dark);
    }

    /* FAQ Accordion */
    .faq-list {
      border-top: 1.5px solid var(--ink);
    }
    .faq-item {
      border-bottom: 1.5px solid var(--ink);
    }
    .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 32px 0;
      text-align: left;
      font-family: var(--display);
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 400;
      letter-spacing: -0.02em;
      line-height: 1.2;
      color: var(--ink);
      transition: color .2s;
    }
    .faq-question:hover { color: var(--terracotta); }
    .faq-question .toggle {
      font-family: var(--display);
      font-size: 32px;
      font-weight: 300;
      line-height: 1;
      flex-shrink: 0;
      margin-left: 24px;
      transition: transform .3s;
    }
    .faq-item.open .toggle { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease;
    }
    .faq-item.open .faq-answer { max-height: 600px; }
    .faq-answer-inner {
      padding: 0 0 32px 0;
      font-family: var(--mono);
      font-size: 14px;
      line-height: 1.75;
      color: var(--ink-soft);
      max-width: 720px;
    }
    .faq-answer-inner p { margin-bottom: 16px; }
    .faq-answer-inner p:last-child { margin-bottom: 0; }

    /* Job listing rows */
    .jobs-list {
      border-top: 1.5px solid var(--ink);
    }
    .job-row {
      display: grid;
      grid-template-columns: 1fr 200px 200px auto;
      gap: 32px;
      align-items: center;
      padding: 32px 0;
      border-bottom: 1.5px solid var(--ink);
      transition: background .3s;
      cursor: pointer;
    }
    .job-row:hover { background: var(--cream-2); padding-left: 24px; padding-right: 24px; }
    .job-title {
      font-family: var(--display);
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 400;
      letter-spacing: -0.02em;
      line-height: 1.1;
      color: var(--ink);
    }
    .job-meta {
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--mute);
    }
    .job-arrow {
      font-family: var(--display);
      font-size: 32px;
      line-height: 1;
      color: var(--ink);
      transition: transform .3s;
    }
    .job-row:hover .job-arrow { transform: translateX(8px); color: var(--terracotta); }

    /* Team grid */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .team-grid-3 {
      grid-template-columns: repeat(3, 1fr);
      max-width: 900px;
    }
    .team-member {
      border: 1.5px solid var(--ink);
      padding: 24px;
      background: var(--cream);
      transition: background .3s;
    }
    .team-member:hover { background: var(--cream-2); }
    .team-avatar {
      width: 100%;
      aspect-ratio: 1;
      background: var(--cream-2);
      border: 1.5px solid var(--ink);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 80px;
    }
    .team-member:nth-child(4n+1) .team-avatar { background: var(--lime); }
    .team-member:nth-child(4n+2) .team-avatar { background: var(--terracotta); }
    .team-member:nth-child(4n+3) .team-avatar { background: var(--cream-2); }
    .team-member:nth-child(4n+4) .team-avatar { background: var(--aubergine); }
    .team-name {
      font-family: var(--display);
      font-size: 22px;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 4px;
    }
    .team-role {
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--mute);
    }

    /* Contact layout */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 96px;
      align-items: start;
    }
    .contact-methods {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .contact-method {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 24px;
      padding: 28px 0;
      border-top: 1px solid var(--border);
      align-items: start;
    }
    .contact-method:last-child { border-bottom: 1px solid var(--border); }
    .contact-method-label {
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--mute);
      padding-top: 4px;
    }
    .contact-method-value {
      font-family: var(--display);
      font-size: 22px;
      line-height: 1.4;
      font-weight: 400;
      color: var(--ink);
    }
    .contact-method-value a {
      color: var(--ink);
      border-bottom: 1px solid var(--ink);
      transition: all .2s;
    }
    .contact-method-value a:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }

    /* Form */
    .contact-form {
      border: 1.5px solid var(--ink);
      padding: 40px;
      background: var(--cream-2);
    }
    .form-group { margin-bottom: 20px; }
    .form-label {
      display: block;
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--ink);
      margin-bottom: 8px;
    }
    .form-input, .form-textarea, .form-select {
      width: 100%;
      padding: 14px 16px;
      font-family: var(--mono);
      font-size: 13px;
      color: var(--ink);
      background: var(--cream);
      border: 1.5px solid var(--ink);
      border-radius: 0;
      outline: none;
      transition: background .2s;
    }
    .form-input:focus, .form-textarea:focus, .form-select:focus {
      background: #fff;
    }
    .form-textarea { resize: vertical; min-height: 140px; font-family: var(--mono); }

    /* Press kit grid */
    .press-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .press-item {
      border: 1.5px solid var(--ink);
      padding: 32px;
      background: var(--cream);
      transition: background .3s;
    }
    .press-item:hover { background: var(--cream-2); }
    .press-preview {
      aspect-ratio: 3/2;
      background: var(--cream-2);
      border: 1.5px solid var(--ink);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--display);
      font-size: 56px;
      font-weight: 300;
      letter-spacing: -0.03em;
    }
    .press-item:nth-child(3n+1) .press-preview { background: var(--lime); }
    .press-item:nth-child(3n+2) .press-preview { background: var(--ink); color: var(--cream); }
    .press-item:nth-child(3n+3) .press-preview { background: var(--terracotta); color: var(--cream); }
    .press-title {
      font-family: var(--display);
      font-size: 22px;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }
    .press-meta {
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--mute);
      margin-bottom: 16px;
    }

    /* Help center category grid */
    .help-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .help-category {
      border: 1.5px solid var(--ink);
      padding: 32px;
      background: var(--cream);
      text-decoration: none;
      color: var(--ink);
      transition: all .3s;
      display: flex;
      flex-direction: column;
      min-height: 220px;
    }
    .help-category:hover { background: var(--ink); color: var(--cream); }
    .help-category:hover .help-count { color: var(--lime); }
    .help-category .num {
      font-family: var(--display);
      font-size: 12px;
      opacity: 0.5;
      margin-bottom: 8px;
    }
    .help-category h3 {
      font-family: var(--display);
      font-size: 28px;
      font-weight: 400;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 12px;
    }
    .help-category p {
      font-family: var(--mono);
      font-size: 12px;
      line-height: 1.6;
      flex: 1;
      margin-bottom: 20px;
    }
    .help-count {
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--mute);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 16px;
      border-top: 1px solid currentColor;
      opacity: 0.6;
    }
    .help-category:hover .help-count { opacity: 1; }

    /* Search box */
    .search-box {
      border: 1.5px solid var(--ink);
      padding: 24px 32px;
      background: var(--cream);
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 32px;
    }
    .search-box input {
      flex: 1;
      border: none;
      background: none;
      font-family: var(--display);
      font-size: 22px;
      font-weight: 300;
      letter-spacing: -0.02em;
      color: var(--ink);
      outline: none;
    }
    .search-box input::placeholder { color: var(--mute); }
    .search-box .search-icon {
      font-family: var(--display);
      font-size: 28px;
      color: var(--terracotta);
    }

    /* Pricing / fee table for buyer protection */
    .fee-table {
      border-top: 1.5px solid var(--ink);
      margin-top: 32px;
    }
    .fee-row {
      display: grid;
      grid-template-columns: 1fr 200px;
      gap: 32px;
      align-items: baseline;
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
    }
    .fee-row:last-child { border-bottom: 1.5px solid var(--ink); }
    .fee-label {
      font-family: var(--display);
      font-size: 20px;
      font-weight: 400;
      color: var(--ink);
    }
    .fee-value {
      font-family: var(--display);
      font-size: 32px;
      font-weight: 300;
      letter-spacing: -0.02em;
      color: var(--terracotta);
      text-align: right;
    }

    /* Subpage responsive */
    @media (max-width: 1024px) {
      .prose-grid { grid-template-columns: 1fr; gap: 48px; }
      .prose-toc { position: static; }
      .prose-toc ul { display: flex; flex-wrap: wrap; gap: 8px; }
      .prose-toc a { padding: 8px 12px; border: 1px solid var(--border); margin: 0; }
      .team-grid { grid-template-columns: repeat(3, 1fr); }
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .press-grid { grid-template-columns: repeat(2, 1fr); }
      .help-grid { grid-template-columns: repeat(2, 1fr); }
      .job-row { grid-template-columns: 1fr 140px auto; }
      .job-row > :nth-child(3) { display: none; }
    }

    @media (max-width: 768px) {
      .page-header { padding: 100px 0 56px; }
      .page-header-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
      .prose-section { padding: 64px 0; }
      .prose h2 { font-size: 28px; margin-top: 48px; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .press-grid { grid-template-columns: 1fr; }
      .help-grid { grid-template-columns: 1fr; }
      .job-row { grid-template-columns: 1fr auto; gap: 16px; padding: 24px 0; }
      .job-row > :nth-child(2) { display: none; }
      .job-title { font-size: 22px; }
      .contact-method { grid-template-columns: 1fr; gap: 8px; }
      .contact-form { padding: 28px 24px; }
      .fee-row { grid-template-columns: 1fr; gap: 8px; }
      .fee-value { text-align: left; font-size: 28px; }
      .faq-question { font-size: 20px; padding: 24px 0; }
      .faq-question .toggle { font-size: 28px; }
    }

    @media (max-width: 480px) {
      .team-grid { grid-template-columns: 1fr; }
    }

    /* Formspree form states */
    .form-input[aria-invalid="true"],
    .form-textarea[aria-invalid="true"],
    .form-select[aria-invalid="true"] {
      border-color: #DC2626;
      background: #FEF2F2;
    }
    .form-field-error:empty { display: none !important; }
    .form-top-error:empty { display: none !important; }
    .btn[disabled] {
      opacity: 0.5;
      cursor: not-allowed;
      pointer-events: none;
    }
