:root {
      --bg0: #0c1222;
      --bg1: #141c31;
      --bg2: #1a2438;
      --ink: #f4f1ea;
      --muted: #9aa3b5;
      --accent: #e8a54b;
      --accent-ink: #1a1208;
      --line: rgba(244, 241, 234, 0.12);
      --line-strong: rgba(244, 241, 234, 0.22);
      --font-display: "Syne", sans-serif;
      --font-body: "DM Sans", sans-serif;
      --max: 1120px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--bg0);
      line-height: 1.65;
      font-size: 1.05rem;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
    .muted { color: var(--muted); }
    .accent { color: var(--accent); }

    @keyframes rise {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes drift {
      from { transform: translateY(0); }
      to { transform: translateY(-48px); }
    }
    @keyframes glowPulse {
      0%, 100% { opacity: 0.55; }
      50% { opacity: 0.9; }
    }

    /* Nav */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(14px);
      background: rgba(12, 18, 34, 0.82);
      border-bottom: 1px solid var(--line);
    }
    .site-nav .inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.85rem 0;
    }
    .nav-brand {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.05rem;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }
    .nav-brand span { color: var(--accent); }
    .nav-links {
      display: none;
      gap: 1.35rem;
      align-items: center;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 500;
    }
    .nav-links a:hover { color: var(--ink); }
    @media (min-width: 880px) {
      .nav-links { display: flex; }
    }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      padding: 0.55rem 1rem;
      background: var(--accent);
      color: var(--accent-ink);
      font-weight: 700;
      font-size: 0.88rem;
      border-radius: 9px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(232, 165, 75, 0.35);
    }

    /* Hero — one composition, brand first, full-bleed photo */
    .hero {
      position: relative;
      min-height: min(100vh, 920px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
      isolation: isolate;
      background: #0c1222;
    }
    .hero-media {
      position: absolute;
      inset: 0;
      z-index: 0;
      margin: 0;
    }
    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 65% center;
      transform: scale(1.04);
      animation: drift 48s linear infinite alternate;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(105deg, rgba(12, 18, 34, 0.92) 0%, rgba(12, 18, 34, 0.78) 42%, rgba(12, 18, 34, 0.45) 100%),
        linear-gradient(180deg, rgba(12, 18, 34, 0.35) 0%, transparent 28%, rgba(12, 18, 34, 0.55) 100%);
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      padding: 4.5rem 0 5.5rem;
    }
    .media-frame {
      margin: 0 0 1.75rem;
      overflow: hidden;
      border-radius: 0;
      border: none;
      background: var(--bg1);
    }
    .media-frame img {
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
    }
    .media-row {
      display: grid;
      gap: 1.25rem;
      margin: 2rem 0 0;
    }
    @media (min-width: 800px) {
      .media-row { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
    }
    .media-row figure {
      margin: 0;
    }
    .media-row img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
    }
    .media-row figcaption {
      margin-top: 0.55rem;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.4;
    }
    .brand-mark {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2.75rem, 9vw, 5rem);
      line-height: 0.92;
      letter-spacing: -0.045em;
      margin-bottom: 1.35rem;
      animation: rise 0.75s ease both;
    }
    .brand-mark em {
      font-style: normal;
      color: var(--accent);
    }
    .hero h1 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.35rem, 3.2vw, 1.9rem);
      max-width: 20ch;
      line-height: 1.22;
      letter-spacing: -0.025em;
      margin-bottom: 0.9rem;
      animation: rise 0.75s 0.08s ease both;
    }
    .hero .lede {
      color: var(--muted);
      font-size: 1.08rem;
      max-width: 38ch;
      margin-bottom: 1.85rem;
      animation: rise 0.75s 0.16s ease both;
    }
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
      animation: rise 0.75s 0.24s ease both;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.45rem;
      background: var(--accent);
      color: var(--accent-ink);
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: 10px;
      border: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 10px 30px rgba(232, 165, 75, 0.32);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(232, 165, 75, 0.42);
    }
    .btn-ghost {
      display: inline-flex;
      padding: 0.95rem 1.15rem;
      color: var(--muted);
      font-size: 0.92rem;
      border: 1px solid var(--line);
      border-radius: 10px;
      transition: color 0.2s, border-color 0.2s;
    }
    .btn-ghost:hover { color: var(--ink); border-color: var(--line-strong); }

    /* Sections */
    section.block {
      padding: 4.75rem 0;
      border-top: 1px solid var(--line);
    }
    section.block.tint {
      background: linear-gradient(180deg, rgba(20, 28, 49, 0.65), transparent);
    }
    .eyebrow {
      display: block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.65rem;
    }
    .block h2 {
      font-family: var(--font-display);
      font-size: clamp(1.65rem, 3.4vw, 2.35rem);
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 0.85rem;
      max-width: 22ch;
    }
    .block .intro {
      color: var(--muted);
      max-width: 58ch;
      margin-bottom: 1.75rem;
      font-size: 1.05rem;
    }
    .prose {
      max-width: 68ch;
      color: var(--muted);
    }
    .prose p { margin-bottom: 1.15rem; }
    .prose p:last-child { margin-bottom: 0; }
    .prose strong { color: var(--ink); font-weight: 600; }
    .prose a {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .prose h3 {
      font-family: var(--font-display);
      color: var(--ink);
      font-size: 1.25rem;
      letter-spacing: -0.02em;
      margin: 2rem 0 0.65rem;
    }
    .prose ul {
      margin: 0.5rem 0 1.25rem 1.15rem;
    }
    .prose li { margin-bottom: 0.45rem; }

    .split {
      display: grid;
      gap: 2.5rem;
    }
    @media (min-width: 860px) {
      .split {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
        align-items: start;
      }
      .split.reverse > :first-child { order: 2; }
    }

    .feature-stack {
      display: grid;
      gap: 2.25rem;
      margin-top: 2rem;
    }
    .feature-stack article {
      padding-top: 1.75rem;
      border-top: 1px solid var(--line);
    }
    .feature-stack article:first-child {
      padding-top: 0;
      border-top: none;
    }
    .feature-stack h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      letter-spacing: -0.02em;
      margin-bottom: 0.55rem;
    }
    .feature-stack p {
      color: var(--muted);
      max-width: 62ch;
    }

    .steps {
      display: grid;
      gap: 1.75rem;
      margin-top: 2rem;
      counter-reset: step;
    }
    @media (min-width: 800px) {
      .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    }
    .steps li {
      list-style: none;
      position: relative;
      padding-top: 2.4rem;
    }
    .steps li::before {
      counter-increment: step;
      content: "0" counter(step);
      position: absolute;
      top: 0;
      left: 0;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--accent);
      letter-spacing: 0.04em;
    }
    .steps h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      margin-bottom: 0.45rem;
      letter-spacing: -0.02em;
    }
    .steps p { color: var(--muted); font-size: 0.98rem; }

    .compare {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1.5rem;
      font-size: 0.95rem;
    }
    .compare th,
    .compare td {
      text-align: left;
      padding: 0.85rem 0.75rem;
      border-bottom: 1px solid var(--line);
      vertical-align: top;
    }
    .compare th {
      font-family: var(--font-display);
      font-weight: 700;
      color: var(--ink);
      font-size: 0.88rem;
    }
    .compare td { color: var(--muted); }
    .compare td:first-child { color: var(--ink); font-weight: 500; width: 28%; }

    .plan-grid {
      display: grid;
      gap: 1.25rem;
      margin-top: 1.75rem;
    }
    @media (min-width: 720px) {
      .plan-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 1000px) {
      .plan-grid { grid-template-columns: repeat(4, 1fr); }
    }
    .plan {
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 1.35rem 1.25rem;
      background: rgba(20, 28, 49, 0.45);
    }
    .plan h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      margin-bottom: 0.4rem;
    }
    .plan p { color: var(--muted); font-size: 0.92rem; }

    .faq details {
      border-top: 1px solid var(--line);
      padding: 1rem 0;
    }
    .faq details:last-child { border-bottom: 1px solid var(--line); }
    .faq summary {
      cursor: pointer;
      font-weight: 600;
      color: var(--ink);
      list-style: none;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: baseline;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after {
      content: "+";
      color: var(--accent);
      font-weight: 700;
      font-size: 1.2rem;
      line-height: 1;
    }
    .faq details[open] summary::after { content: "–"; }
    .faq details p {
      color: var(--muted);
      margin-top: 0.75rem;
      max-width: 68ch;
    }

    .cta-band {
      padding: 4.5rem 0;
      border-top: 1px solid var(--line);
      background:
        radial-gradient(ellipse 70% 80% at 50% 100%, rgba(232, 165, 75, 0.12), transparent 60%),
        var(--bg0);
      text-align: center;
    }
    .cta-band h2 {
      font-family: var(--font-display);
      font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      letter-spacing: -0.03em;
      margin: 0 auto 0.75rem;
      max-width: 18ch;
    }
    .cta-band p {
      color: var(--muted);
      max-width: 42ch;
      margin: 0 auto 1.75rem;
    }
    .cta-band .cta-row { justify-content: center; }

    /* Lead form */
    .lead-form {
      max-width: 520px;
      margin: 1.5rem auto 0;
      text-align: left;
    }
    .lead-form .field {
      margin-bottom: 0.9rem;
    }
    .lead-form label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 0.35rem;
    }
    .lead-form input,
    .lead-form textarea {
      width: 100%;
      padding: 0.8rem 0.9rem;
      border-radius: 10px;
      border: 1px solid var(--line);
      background: rgba(20, 28, 49, 0.75);
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 1rem;
    }
    .lead-form input:focus,
    .lead-form textarea:focus {
      outline: none;
      border-color: rgba(232, 165, 75, 0.55);
    }
    .lead-form textarea { resize: vertical; min-height: 88px; }
    .lead-consent {
      display: flex;
      gap: 0.65rem;
      align-items: flex-start;
      margin: 1rem 0 1.15rem;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.45;
    }
    .lead-consent input {
      width: auto;
      margin-top: 0.2rem;
      accent-color: var(--accent);
    }
    .lead-consent strong { color: var(--ink); font-weight: 600; }
    .lead-status {
      margin-top: 0.85rem;
      font-size: 0.92rem;
      color: var(--muted);
      min-height: 1.4em;
    }
    .lead-status.ok { color: #7dcea0; }
    .lead-status.err { color: #f5a8a8; }
    .lead-form .btn-primary {
      width: 100%;
      border: none;
      cursor: pointer;
      font-family: var(--font-body);
    }
    .lead-form .btn-primary:disabled {
      opacity: 0.55;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    footer.site-footer {
      padding: 2.75rem 0 3rem;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.9rem;
    }
    .footer-grid {
      display: grid;
      gap: 1.75rem;
    }
    @media (min-width: 720px) {
      .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 2rem;
      }
    }
    .footer-grid strong {
      display: block;
      color: var(--ink);
      font-family: var(--font-display);
      font-size: 1rem;
      margin-bottom: 0.55rem;
    }
    .footer-grid a {
      display: block;
      margin-bottom: 0.35rem;
      color: var(--muted);
    }
    .footer-grid a:hover { color: var(--ink); }
    .footer-copy {
      margin-top: 2rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--line);
      font-size: 0.82rem;
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
      }
    }

    /* Multipage */
    .nav-links a[aria-current="page"] { color: var(--ink); }
    .page-hero {
      padding: 3.5rem 0 2.5rem;
      border-bottom: 1px solid var(--line);
      background:
        radial-gradient(ellipse 60% 80% at 10% 0%, rgba(232, 165, 75, 0.08), transparent 55%),
        var(--bg0);
    }
    .page-hero h1 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(1.85rem, 4vw, 2.75rem);
      letter-spacing: -0.035em;
      line-height: 1.12;
      max-width: 18ch;
      margin-bottom: 0.85rem;
    }
    .page-hero .lede {
      color: var(--muted);
      max-width: 52ch;
      font-size: 1.08rem;
      margin-bottom: 1.5rem;
    }
    .longform .prose { max-width: 72ch; }
    .longform .prose h2 {
      font-family: var(--font-display);
      color: var(--ink);
      font-size: clamp(1.35rem, 2.6vw, 1.75rem);
      letter-spacing: -0.025em;
      margin: 2.75rem 0 0.85rem;
      max-width: none;
    }
    .longform .prose h3 { margin-top: 1.75rem; }
    .longform .prose h4 {
      color: var(--ink);
      font-size: 1.05rem;
      margin: 1.35rem 0 0.45rem;
    }
    .figure-wide {
      margin: 2rem 0;
      overflow: hidden;
      background: var(--bg1);
    }
    .figure-wide img {
      width: 100%;
      aspect-ratio: 21 / 9;
      object-fit: cover;
    }
    .figure-wide figcaption {
      padding: 0.65rem 0 0;
      color: var(--muted);
      font-size: 0.88rem;
    }
    .split-media {
      margin-top: 1.5rem;
      align-items: start;
    }
    @media (min-width: 860px) {
      .split-media {
        grid-template-columns: minmax(240px, 0.95fr) minmax(280px, 1.15fr);
        gap: 2.75rem;
      }
      .split-media.reverse {
        grid-template-columns: minmax(280px, 1.15fr) minmax(240px, 0.95fr);
      }
      .split-media .media-frame {
        position: sticky;
        top: 5.5rem;
        margin-bottom: 0;
      }
    }
    .split-media .media-frame img {
      aspect-ratio: 4 / 5;
      object-fit: cover;
      width: 100%;
    }
    .split-media .media-frame figcaption {
      margin-top: 0.55rem;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.4;
    }
    .split-media .prose {
      max-width: none;
    }
    .split-media .prose h3:first-child {
      margin-top: 0;
    }
    .cta-band.lead-first {
      border-top: none;
      padding-top: 3rem;
    }
    .breadcrumb {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }
    .breadcrumb a:hover { color: var(--ink); }
    .breadcrumb span { opacity: 0.55; margin: 0 0.35rem; }
    .toc {
      margin: 1.5rem 0 0;
      padding: 1.15rem 1.25rem;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: rgba(20, 28, 49, 0.4);
      max-width: 52ch;
    }
    .toc strong {
      display: block;
      font-family: var(--font-display);
      color: var(--ink);
      margin-bottom: 0.55rem;
      font-size: 0.95rem;
    }
    .toc a {
      display: block;
      color: var(--muted);
      font-size: 0.92rem;
      margin-bottom: 0.35rem;
    }
    .toc a:hover { color: var(--accent); }
    .page-cta {
      margin: 3rem 0 0;
      padding: 2rem 0 0;
      border-top: 1px solid var(--line);
    }
