    /* ─── Sequel tokens ──────────────────────────────────────────── */
    :root {
      --color-void-black: #000000;
      --color-carbon: #202020;
      --color-graphite: #333333;
      --color-bone: #c0c0c0;
      --color-smoke: #999999;
      --color-ash: #b3b3b3;
      --color-fog: #cccccc;
      --color-chalk: #ffffff;
      --color-linen: #f5f5f0;

      --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
      --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

      --page-max-width: 1280px;
      --shadow-xl: rgba(0, 0, 0, 0.35) 0px 10px 30px 0px, rgba(255, 255, 255, 0.08) 0px 1px 0px 0px inset;
      --shadow-lg: rgba(0, 0, 0, 0.15) 0px 4px 20px 0px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      background: var(--color-void-black);
      color: var(--color-chalk);
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 18px;
      line-height: 1.4;
      letter-spacing: -0.02em;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    ul, ol { margin: 0; padding: 0; list-style: none; }
    h1, h2, h3, p { margin: 0; }

    .container {
      width: 100%;
      max-width: var(--page-max-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ─── Brand logo (word + glyph) ──────────────────────────────── */
    /* white wordmark on a transparent background, left-aligned in the box */
    .brand {
      display: block;
      width: 220px; height: 28px;
      background: url("../assets/logos/sequova-wordmark-white.png") left center / contain no-repeat;
    }
    .brand--footer { width: 200px; height: 26px; }

    /* ─── Buttons ─────────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 15px;
      letter-spacing: -0.02em;
      border-radius: 9999px;
      padding: 16px 24px;
      cursor: pointer;
      transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: var(--color-chalk); color: var(--color-void-black); border: none; box-shadow: var(--shadow-lg); }
    .btn-primary:hover { background: var(--color-linen); }
    .btn-ghost { background: transparent; color: var(--color-chalk); border: 1px solid rgba(255, 255, 255, 0.5); }
    .btn-ghost:hover { border-color: var(--color-chalk); }
    .btn-dark { background: var(--color-void-black); color: var(--color-chalk); border: none; box-shadow: var(--shadow-lg); }
    .btn-dark:hover { background: #161616; }
    .btn__arrow { font-weight: 400; }

    /* ─── Sticky top navigation ───────────────────────────────────── */
    .site-nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      background: transparent;
      transition: background-color 220ms ease;
    }
    .site-nav.scrolled { background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
    .nav-right { display: flex; align-items: center; gap: 8px; }
    .nav-link { font-weight: 500; font-size: 15px; letter-spacing: -0.02em; color: var(--color-bone); padding: 8px 14px; transition: color 160ms ease; }
    .nav-link:hover { color: var(--color-chalk); }
    .nav-ghost { padding: 10px 20px; }

    /* ─── Headings ────────────────────────────────────────────────── */
    .display {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(48px, 9vw, 112px);
      line-height: 1.0;
      letter-spacing: -0.05em;
      color: var(--color-chalk);
    }
    .heading-lg {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(36px, 6vw, 58px);
      line-height: 1.1;
      letter-spacing: -0.04em;
      color: var(--color-chalk);
    }
    /* Keep these headings on one line (wrap only on small phones). */
    #why-sequova .section-head, #problem .section-head { max-width: none; }
    #why-sequova .heading-lg { white-space: nowrap; }
    #problem .heading-lg { white-space: nowrap; font-size: clamp(28px, 4.6vw, 48px); }
    @media (max-width: 680px) {
      #why-sequova .heading-lg { white-space: normal; }
      #problem .heading-lg { white-space: normal; font-size: clamp(28px, 6vw, 40px); }
    }

    /* ─── Section scaffolding ─────────────────────────────────────── */
    .section { padding: 96px 0; }
    .section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
    .section-intro {
      margin: 24px auto 0;
      max-width: 560px;
      font-weight: 300;
      font-size: 18px;
      line-height: 1.5;
      letter-spacing: -0.02em;
      color: var(--color-bone);
    }

    /* ─── Video placeholder (.vph) ────────────────────────────────── */
    .vph {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background:
        radial-gradient(80% 70% at var(--lx, 70%) var(--ly, 25%), rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.04) 26%, rgba(0,0,0,0) 58%),
        linear-gradient(180deg, #161616 0%, #0a0a0a 100%);
    }
    .vph__video { width: 100%; height: 100%; object-fit: cover; display: none; }
    .vph.is-loaded .vph__video { display: block; animation: kenburns 16s ease-in-out infinite alternate; }
    /* moving sheen so an empty placeholder still reads as "live video here" */
    .vph::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,0.07) 50%, transparent 68%);
      transform: translateX(-110%);
      animation: sweep 3.6s ease-in-out infinite;
      pointer-events: none;
    }
    .vph.is-loaded::after { display: none; }
    .vph__label {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-align: center;
      padding: 24px;
      border: 1px dashed rgba(255, 255, 255, 0.22);
      border-radius: inherit;
      color: var(--color-ash);
    }
    .vph.is-loaded .vph__label { display: none; }
    .vph__play {
      width: 46px; height: 46px; border-radius: 9999px;
      border: 1px solid rgba(255,255,255,0.4);
      display: grid; place-items: center;
      color: var(--color-chalk);
    }
    .vph__play::before { content: ""; border-left: 11px solid currentColor; border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }
    .vph__title { font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-chalk); }
    .vph__spec { font-weight: 300; font-size: 12px; letter-spacing: 0.02em; color: var(--color-smoke); }
    .vph--card .vph__label { gap: 6px; }
    .vph--card .vph__play { width: 38px; height: 38px; }

    @keyframes sweep { 0% { transform: translateX(-110%); } 55%, 100% { transform: translateX(110%); } }
    @keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }

    /* ─── Hero — black void, full-bleed video, parallax dissolve ──── */
    .hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
    .hero__media { position: fixed; top: -15vh; left: 0; width: 100%; height: 130vh; z-index: 0; will-change: transform; }
    /* Post-hero content rides on an opaque stage that scrolls up over the fixed
       hero video, so the video appears to slide underneath the rest of the site. */
    .page-stage { position: relative; z-index: 1; background: var(--color-void-black); }
    .site-footer { position: relative; z-index: 1; background: var(--color-void-black); }
    .hero__media .vph { inset: 0; }
    /* Footage that already has its own motion (hero forest, portal asteroids) —
       Ken Burns rescale on top resamples detail every frame and reads as shimmer/shake.
       Disable it for these sections. */
    .hero__media .vph.is-loaded .vph__video,
    .portal__frame .vph.is-loaded .vph__video { animation: none; transform: none; }
    .hero__scrim {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background:
        radial-gradient(90% 70% at 50% 42%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.5) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.6) 100%);
    }
    .hero__content { position: relative; z-index: 2; width: 100%; max-width: 1040px; padding: 120px 24px 80px; will-change: transform, opacity; }
    .hero__headline { overflow-wrap: break-word; }
    .hero__sub { margin: 28px auto 0; max-width: 600px; font-weight: 300; font-size: 20px; line-height: 1.5; letter-spacing: -0.02em; color: var(--color-ash); }
    #hero-typewriter { color: var(--color-chalk); }
    .cursor-blink { display: inline-block; margin-left: 1px; color: var(--color-chalk); animation: blink 1s steps(1) infinite; }
    @keyframes blink { 50% { opacity: 0; } }
    .hero__actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ─── Editorial video cards ───────────────────────────────────── */
    .card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .edcard {
      position: relative;
      min-height: 340px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      border-radius: 10px;
      overflow: hidden;
      background: var(--color-carbon);
      box-shadow: var(--shadow-xl);
      isolation: isolate;
    }
    .edcard > .vph { z-index: 0; }
    .edcard__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; display: block; filter: brightness(0.82); }
    .edcard__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.08) 30%, rgba(0,0,0,0.66) 100%); pointer-events: none; }
    .edcard:nth-child(2) > .vph { --lx: 28%; --ly: 28%; }
    .edcard:nth-child(3) > .vph { --lx: 60%; --ly: 70%; }
    .edcard:nth-child(4) > .vph { --lx: 34%; --ly: 64%; }
    .badge {
      position: absolute; top: 16px; right: 16px; z-index: 2;
      font-weight: 500; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--color-chalk); background: rgba(255, 255, 255, 0.08); box-shadow: rgba(255, 255, 255, 0.08) 0 1px 0 inset;
      border-radius: 9999px; padding: 5px 11px;
    }
    .edcard__title { position: relative; z-index: 2; font-family: var(--font-body); font-weight: 500; font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; color: var(--color-chalk); }
    .edcard__body { position: relative; z-index: 2; margin-top: 12px; font-weight: 300; font-size: 16px; line-height: 1.5; letter-spacing: -0.02em; color: var(--color-bone); }

    .conclusion { max-width: 720px; margin: 64px auto 0; text-align: center; font-weight: 300; font-size: 20px; line-height: 1.5; letter-spacing: -0.02em; color: var(--color-bone); }

    /* ─── How-we-work cinema: image pins, title → heading → timeline ── */
    .band .vph__video { filter: brightness(0.62); }
    .portal__line { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 5.5vw, 72px); line-height: 1.05; letter-spacing: -0.04em; color: var(--color-chalk); text-align: center; max-width: 16ch; text-shadow: 0 2px 40px rgba(0,0,0,0.5); }
    .show { position: relative; background: var(--color-void-black); }
    .show__stage { position: sticky; top: 0; height: 100vh; overflow: hidden; }
    .show__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; filter: brightness(0.5); }
    .show__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 38%, rgba(0,0,0,0.62) 100%); pointer-events: none; }
    .show__intro { position: absolute; inset: 0; z-index: 5; display: flex; align-items: center; justify-content: center; padding: 24px; }
    .show__head { position: absolute; z-index: 4; top: 12%; left: 8vw; right: 8vw; opacity: 0; will-change: opacity; }
    .show__head .heading-lg { margin: 0; font-size: clamp(30px, 4.2vw, 52px); white-space: nowrap; }
    .show__head .section-intro { margin: 18px 0 0; max-width: 560px; text-align: left; }
    .show__track { position: absolute; z-index: 3; left: 0; right: 0; top: 46%; opacity: 0; will-change: transform, opacity; }
    .htl__line { position: relative; display: flex; align-items: stretch; list-style: none; margin: 0; padding: 0 8vw; }
    .tl-item { position: relative; flex: 0 0 auto; width: 30vw; padding-right: 4vw; }
    .tl-item:not(:last-child)::before { content: ''; position: absolute; top: 47px; left: 47px; width: 30vw; height: 1px; background: rgba(255,255,255,0.18); z-index: 0; }
    .tl-num { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; width: 94px; height: 94px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.28); background: rgba(8,8,9,0.78); font-family: var(--font-display); font-weight: 500; font-size: 30px; color: var(--color-chalk); }
    .tl-title { margin: 28px 0 0; font-family: var(--font-body); font-weight: 500; font-size: 22px; letter-spacing: -0.02em; color: var(--color-chalk); }
    .tl-body { margin: 12px 0 0; font-weight: 300; font-size: 16px; line-height: 1.5; letter-spacing: -0.02em; color: var(--color-bone); text-shadow: 0 1px 16px rgba(0,0,0,0.5); }
    .tl-deliverable { margin: 16px 0 0; font-size: 14px; line-height: 1.5; color: var(--color-bone); opacity: 0.9; text-shadow: 0 1px 16px rgba(0,0,0,0.5); }
    .tl-deliverable b { color: var(--color-chalk); font-weight: 500; }
    @media (prefers-reduced-motion: reduce), (max-width: 879px) {
      .show { height: auto !important; background: var(--color-void-black); }
      .show__stage { position: static; height: auto; overflow: visible; }
      .show__bg, .show__scrim { display: none; }
      .show__intro { position: static; padding: 96px 24px 24px; }
      .show__head { position: static; opacity: 1 !important; max-width: none; padding: 24px; }
      .show__track { position: static; opacity: 1 !important; transform: none !important; padding: 8px 24px 64px; }
      .htl__line { flex-direction: column; padding: 0; }
      .tl-item::before { display: none; }
      .tl-item { width: auto; max-width: none; padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.1); }
      .tl-num { width: 64px; height: 64px; font-size: 22px; }
    }

    /* ─── Parallax video band ─────────────────────────────────────── */
    .band { position: relative; height: 78vh; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
    .band .vph { inset: -15% 0; will-change: transform; }
    .band__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%); pointer-events: none; }
    .band__content { position: relative; z-index: 2; padding: 24px; }
    .band__line { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 5vw, 58px); line-height: 1.08; letter-spacing: -0.04em; color: var(--color-chalk); max-width: 18ch; margin: 0 auto; }

    /* ─── Process — editorial numbered list ───────────────────────── */
    .process { max-width: 860px; margin: 0 auto; }
    .process-item { display: grid; grid-template-columns: 88px 1fr; gap: 32px; align-items: baseline; padding: 32px 0; border-top: 1px solid var(--color-graphite); }
    .process-item:last-child { border-bottom: 1px solid var(--color-graphite); }
    .process-num { font-family: var(--font-display); font-weight: 400; font-size: 40px; line-height: 1; letter-spacing: -0.04em; color: var(--color-smoke); }
    .process-title { font-family: var(--font-body); font-weight: 500; font-size: 22px; letter-spacing: -0.02em; color: var(--color-chalk); }
    .process-body { margin-top: 12px; font-weight: 300; font-size: 16px; line-height: 1.5; color: var(--color-bone); }
    .process-deliverable { margin-top: 12px; font-weight: 300; font-size: 14px; line-height: 1.5; color: var(--color-smoke); }
    .process-deliverable b { font-weight: 500; color: var(--color-ash); }

    /* ─── Comparison ──────────────────────────────────────────────── */
    .compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .compare-card { border-radius: 10px; background: var(--color-carbon); border: 1px solid var(--color-graphite); padding: 40px; }
    .compare-card--pos { box-shadow: var(--shadow-xl); }
    .compare-tag { font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-smoke); }
    .compare-card h3 { margin: 16px 0 24px; font-family: var(--font-display); font-weight: 500; font-size: 30px; letter-spacing: -0.03em; color: var(--color-chalk); }
    .compare-list li { position: relative; padding: 12px 0 12px 28px; font-weight: 300; font-size: 16px; line-height: 1.5; color: var(--color-bone); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
    .compare-list li:last-child { border-bottom: none; }
    .compare-list li::before { position: absolute; left: 0; top: 12px; color: var(--color-smoke); }
    .compare-list--neg li::before { content: "\2014"; }
    .compare-list--pos li::before { content: "+"; color: var(--color-chalk); }

    /* ─── Testimonials marquee ────────────────────────────────────── */
    .marquee { position: relative; margin-top: 56px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
    .marquee__track { display: flex; gap: 24px; width: max-content; }
    .marquee__track.is-ready { animation: marquee 64s linear infinite; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 12px)); } }
    .tcard { flex: 0 0 400px; border-radius: 10px; background: var(--color-carbon); border: 1px solid var(--color-graphite); padding: 32px; }
    .tcard__quote { font-weight: 300; font-size: 18px; line-height: 1.5; letter-spacing: -0.02em; color: var(--color-chalk); }
    .tcard__meta { margin-top: 20px; font-weight: 300; font-size: 14px; color: var(--color-smoke); }
    .tcard__meta b { font-weight: 500; color: var(--color-chalk); }
    .tcard__stars { display: flex; gap: 4px; margin-top: 16px; }
    .tcard__stars svg { width: 15px; height: 15px; fill: var(--color-chalk); }

    /* ─── Inverted linen panel (booking) ──────────────────────────── */
    .inverted { background: var(--color-void-black); color: var(--color-chalk); }
    .inverted .container { max-width: 720px; text-align: center; }
    .inverted h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 5vw, 58px); line-height: 1.1; letter-spacing: -0.04em; color: var(--color-chalk); }
    .inverted p { margin: 24px auto 40px; max-width: 560px; font-weight: 300; font-size: 18px; line-height: 1.5; letter-spacing: -0.02em; color: var(--color-bone); }

    /* ─── Footer ──────────────────────────────────────────────────── */
    .site-footer { border-top: 1px solid var(--color-graphite); padding: 56px 0; }
    .footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
    .footer-inner .brand--footer { justify-self: start; }
    .footer-inner .footer-meta { justify-self: center; text-align: center; }
    .footer-inner .footer-links { justify-self: end; }
    .footer-meta { font-weight: 300; font-size: 14px; color: var(--color-smoke); }
    .footer-links { display: flex; gap: 24px; }
    .footer-link { font-weight: 300; font-size: 14px; color: var(--color-smoke); transition: color 160ms ease; }
    .footer-link:hover { color: var(--color-chalk); }

    /* ─── Reveal on scroll ────────────────────────────────────────── */
    .reveal-element { opacity: 0; transform: translateY(22px); transition: opacity 800ms ease, transform 800ms ease; }
    .reveal-element.active { opacity: 1; transform: translateY(0); }

    @media (prefers-reduced-motion: reduce) {
      .reveal-element { opacity: 1; transform: none; transition: none; }
      .marquee__track.is-ready, .vph.is-loaded .vph__video, .vph::after, .cursor-blink { animation: none; }
      .btn:hover { transform: none; }
    }

    /* ─── Responsive ──────────────────────────────────────────────── */
    @media (max-width: 768px) {
      .section { padding: 64px 0; }
      .nav-link { display: none; }
      .card-grid { grid-template-columns: 1fr; }
      .compare-grid { grid-template-columns: 1fr; }
      .process-item { grid-template-columns: 56px 1fr; gap: 20px; padding: 24px 0; }
      .process-num { font-size: 30px; }
      .tcard { flex-basis: 300px; }
      .footer-inner { grid-template-columns: 1fr; justify-items: center; }
      .footer-inner .brand--footer, .footer-inner .footer-meta, .footer-inner .footer-links { justify-self: center; }
    }

    /* ─── Content pages (about, faq, contact, legal, neuros) ──────── */
    .page-head { padding: 160px 0 40px; }
    .page-head .container { max-width: 860px; }
    .page-eyebrow { font-family: var(--font-body); font-weight: 500; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-smoke); margin-bottom: 18px; }
    .page-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(40px, 6vw, 72px); line-height: 1.04; letter-spacing: -0.04em; color: var(--color-chalk); }
    .page-lead { margin-top: 22px; max-width: 660px; font-weight: 300; font-size: 20px; line-height: 1.5; color: var(--color-bone); }

    .page-body { padding: 8px 0 112px; }
    .page-body .container { max-width: 860px; }

    .prose { color: var(--color-bone); font-size: 17px; line-height: 1.7; }
    .prose > * + * { margin-top: 20px; }
    .prose h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 3.4vw, 36px); line-height: 1.15; letter-spacing: -0.03em; color: var(--color-chalk); margin-top: 56px; }
    .prose h3 { font-family: var(--font-body); font-weight: 500; font-size: 20px; letter-spacing: -0.02em; color: var(--color-chalk); margin-top: 36px; }
    .prose a { color: var(--color-chalk); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.35); }
    .prose a:hover { text-decoration-color: var(--color-chalk); }
    .prose strong, .prose b { color: var(--color-chalk); font-weight: 500; }
    .prose ul, .prose ol { margin-top: 20px; padding-left: 22px; }
    .prose ul { list-style: disc; }
    .prose ol { list-style: decimal; }
    .prose li { margin-top: 10px; color: var(--color-bone); }
    .prose li::marker { color: var(--color-smoke); }

    .tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 44px; }
    .tile { border: 1px solid var(--color-graphite); border-radius: 14px; padding: 28px; background: #0a0a0a; }
    .tile h3 { font-family: var(--font-body); font-weight: 500; font-size: 19px; letter-spacing: -0.02em; color: var(--color-chalk); }
    .tile p { margin-top: 10px; font-weight: 300; font-size: 15px; line-height: 1.5; color: var(--color-bone); }

    .faq-item { border-top: 1px solid var(--color-graphite); padding: 24px 0; }
    .faq-item:last-child { border-bottom: 1px solid var(--color-graphite); }
    .faq-item summary { cursor: pointer; list-style: none; font-family: var(--font-body); font-weight: 500; font-size: 19px; letter-spacing: -0.02em; color: var(--color-chalk); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after { content: '+'; color: var(--color-smoke); font-weight: 300; font-size: 24px; }
    .faq-item[open] summary::after { content: '\2212'; }
    .faq-item p { padding-top: 14px; max-width: 70ch; color: var(--color-bone); font-size: 16px; line-height: 1.6; overflow: hidden; }

    .form-row { margin-top: 18px; }
    .form-row label { display: block; font-size: 14px; color: var(--color-smoke); margin-bottom: 8px; }
    .form-row input, .form-row textarea { width: 100%; background: #0a0a0a; border: 1px solid var(--color-graphite); border-radius: 10px; padding: 14px 16px; color: var(--color-chalk); font-family: var(--font-body); font-size: 16px; letter-spacing: -0.01em; }
    .form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-bone); }
    .form-actions { margin-top: 26px; }
    .form-consent { margin-top: 24px; font-size: 13px; line-height: 1.5; color: var(--color-smoke); }
    .form-consent a { color: var(--color-bone); text-decoration: underline; text-underline-offset: 2px; }

    .beliefs { margin-top: 44px; }
    .belief { display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: start; padding: 28px 0; border-top: 1px solid var(--color-graphite); }
    .belief:last-child { border-bottom: 1px solid var(--color-graphite); }
    .belief-num { font-family: var(--font-display); font-weight: 500; font-size: 26px; line-height: 1; color: var(--color-smoke); }
    .belief-text h3 { font-family: var(--font-body); font-weight: 500; font-size: 20px; letter-spacing: -0.02em; color: var(--color-chalk); margin: 0; }
    .belief-text p { margin-top: 10px; font-weight: 300; font-size: 16px; line-height: 1.6; color: var(--color-bone); }

    @media (max-width: 768px) {
      .page-head { padding: 120px 0 32px; }
      .page-body { padding: 4px 0 80px; }
    }
