:root {
      --bg: #f7efe4;
      --paper: #fffaf2;
      --paper-2: rgba(255,255,255,.72);
      --ink: #211814;
      --muted: #74665c;
      --line: rgba(33,24,20,.12);
      --accent: #d97745;
      --accent-2: #9c4f28;
      --accent-soft: rgba(217,119,69,.15);
      --black: #14100d;
      --black-2: #241b16;
      --code: #19130f;
      --green: #2f7d55;
      --shadow: 0 26px 80px rgba(33,24,20,.13);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
      --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--ink);
      font-family: var(--sans);
      background:
        radial-gradient(circle at 8% 0%, rgba(217,119,69,.24), transparent 30%),
        radial-gradient(circle at 95% 8%, rgba(156,79,40,.17), transparent 32%),
        linear-gradient(135deg, var(--bg), var(--paper) 50%, #efe0d0);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(33,24,20,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(33,24,20,.035) 1px, transparent 1px);
      background-size: 44px 44px;
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 78%);
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 78%);
      z-index: -1;
    }

    a { color: inherit; text-decoration: none; }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid var(--line);
      background: rgba(247,239,228,.78);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
    }

    .topbar-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 14px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 245px;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      overflow: hidden;
      box-shadow: 0 14px 34px rgba(20,16,13,.25);
      background: #fff;
      border: 1px solid rgba(20,16,13,.12);
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .brand strong { display: block; line-height: 1; letter-spacing: -.02em; }
    .brand small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 700; }

    .nav {
      display: flex;
      justify-content: flex-end;
      gap: 6px;
      flex-wrap: wrap;
    }

    .nav a {
      padding: 9px 12px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
    }

    .nav a:hover { background: var(--accent-soft); color: var(--ink); }

    .shell {
      max-width: 1240px;
      margin: 0 auto;
      padding: 38px 22px 80px;
    }

    .card {
      border: 1px solid var(--line);
      background: rgba(255,250,242,.82);
      box-shadow: var(--shadow);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
      border-radius: var(--radius-xl);
      overflow: hidden;
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0,1.1fr) minmax(340px,.9fr);
      gap: 26px;
      align-items: stretch;
      margin-top: 10px;
    }

    .hero-main {
      padding: clamp(28px, 5vw, 54px);
      min-height: 600px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }

    .hero-main::after {
      content: "";
      position: absolute;
      right: -90px;
      top: -90px;
      width: 270px;
      height: 270px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(217,119,69,.24), transparent 68%);
    }

    .eyebrow {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 9px;
      padding: 8px 13px;
      border-radius: 999px;
      border: 1px solid rgba(217,119,69,.28);
      color: var(--accent-2);
      background: var(--accent-soft);
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    h1 {
      margin: 22px 0 0;
      max-width: 830px;
      font-size: clamp(42px, 7vw, 86px);
      line-height: .9;
      letter-spacing: -.075em;
    }

    .lead {
      margin: 24px 0 0;
      max-width: 770px;
      color: var(--muted);
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.55;
      font-weight: 540;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .hero-actions-center {
      justify-content: center;
    }

    .btn {
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 13px 18px;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: transform .18s ease, box-shadow .18s ease;
    }

    .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(33,24,20,.13); }
    .btn.primary { background: var(--black); color: #fff4e8; border-color: var(--black); }
    .btn.secondary { background: rgba(255,255,255,.55); color: var(--ink); }

    .stats {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 12px;
      margin-top: 40px;
    }

    .stat {
      padding: 18px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.46);
      border-radius: var(--radius-lg);
    }

    .stat b { display: block; font-size: 30px; letter-spacing: -.05em; }
    .stat span { display: block; color: var(--muted); margin-top: 4px; font-size: 13px; font-weight: 750; }

    .hero-side {
      padding: 22px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      background:
        linear-gradient(160deg, rgba(255,255,255,.84), rgba(255,250,242,.62)),
        radial-gradient(circle at 100% 0, rgba(217,119,69,.16), transparent 35%);
    }

    .terminal, .code-card {
      background: var(--code);
      color: #f8eadc;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.09);
      box-shadow: 0 22px 60px rgba(20,16,13,.22);
    }

    .terminal-top, .code-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.04);
      color: rgba(248,234,220,.72);
      font-size: 12px;
      font-family: var(--mono);
    }

    .dots { display: flex; gap: 7px; }
    .dot { width: 11px; height: 11px; border-radius: 999px; background: rgba(255,255,255,.25); }

    pre { margin: 0; white-space: pre-wrap; word-break: break-word; }
    .terminal pre, .code-card pre {
      padding: 18px;
      font-family: var(--mono);
      font-size: 13px;
      line-height: 1.62;
      color: #ffe9d1;
      overflow-x: auto;
    }

    .side-note {
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 20px;
      background: rgba(255,255,255,.58);
    }

    .side-note h3 { margin: 0 0 10px; font-size: 18px; letter-spacing: -.03em; }
    .side-note p { margin: 0; color: var(--muted); line-height: 1.6; font-weight: 570; }

    section { margin-top: 34px; scroll-margin-top: 90px; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin: 0 0 16px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(30px, 4vw, 52px);
      line-height: .96;
      letter-spacing: -.06em;
    }

    .section-head p {
      margin: 0;
      max-width: 610px;
      color: var(--muted);
      line-height: 1.55;
      font-weight: 560;
    }

    .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
    .grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }

    .mini-card {
      position: relative;
      border: 1px solid var(--line);
      background: var(--paper-2);
      border-radius: var(--radius-lg);
      padding: 24px;
      overflow: hidden;
    }

    .mini-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 5px;
      background: linear-gradient(90deg, var(--accent), transparent);
      opacity: .78;
    }

    .mini-card h3 { margin: 8px 0 10px; font-size: 22px; letter-spacing: -.04em; }
    .mini-card p { color: var(--muted); line-height: 1.58; margin: 0; font-weight: 560; }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      padding: 8px 11px;
      background: rgba(217,119,69,.12);
      color: var(--accent-2);
      font-weight: 900;
      font-size: 13px;
      width: fit-content;
    }

    .pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
    .pill {
      border: 1px solid var(--line);
      background: rgba(255,255,255,.6);
      color: var(--muted);
      padding: 8px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 850;
    }

    .quote {
      background: var(--black);
      color: #fff3e7;
      border-radius: var(--radius-xl);
      padding: clamp(28px, 5vw, 48px);
      position: relative;
      overflow: hidden;
    }

    .quote h2 {
      margin: 0;
      font-size: clamp(30px,5vw,60px);
      letter-spacing: -.06em;
      line-height: 1;
      max-width: 980px;
    }

    .quote p {
      color: rgba(255,243,231,.72);
      margin: 20px 0 0;
      max-width: 840px;
      line-height: 1.62;
      font-size: 18px;
    }

    .flow {
      display: grid;
      grid-template-columns: repeat(5,1fr);
      gap: 12px;
      counter-reset: step;
    }

    .flow-step {
      min-height: 170px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.55);
      padding: 22px;
      position: relative;
    }

    .flow-step::before {
      counter-increment: step;
      content: counter(step);
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: var(--black);
      color: #fff3e7;
      display: grid;
      place-items: center;
      font-weight: 950;
      margin-bottom: 16px;
    }

    .flow-step h3 { margin: 0 0 8px; font-size: 17px; }
    .flow-step p { color: var(--muted); margin: 0; line-height: 1.5; font-size: 14px; font-weight: 560; }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.55);
      border: 1px solid var(--line);
    }

    .compare-table th, .compare-table td {
      padding: 18px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
      line-height: 1.5;
    }

    .compare-table th {
      color: var(--ink);
      background: rgba(217,119,69,.12);
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .compare-table td { color: var(--muted); font-weight: 560; }
    .compare-table tr:last-child td { border-bottom: 0; }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 16px;
    }

    .video-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: rgba(255,255,255,.62);
    }

    .video-frame {
      position: relative;
      aspect-ratio: 16/9;
      background:
        radial-gradient(circle at 20% 10%, rgba(217,119,69,.28), transparent 35%),
        linear-gradient(135deg, #201711, #3b261c);
      display: grid;
      place-items: center;
      color: #fff3e7;
      text-align: center;
      padding: 20px;
    }

    .video-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .play {
      width: 62px;
      height: 62px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.22);
      font-size: 24px;
      margin: 0 auto 12px;
    }

    .video-body { padding: 18px; }
    .video-body h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.03em; }
    .video-body p { margin: 0; color: var(--muted); line-height: 1.55; font-weight: 560; font-size: 14px; }

    details {
      border: 1px solid var(--line);
      background: rgba(255,255,255,.58);
      border-radius: var(--radius-lg);
      padding: 18px 20px;
      margin-bottom: 12px;
    }

    summary {
      cursor: pointer;
      font-weight: 950;
      letter-spacing: -.02em;
      font-size: 18px;
    }

    details p { color: var(--muted); line-height: 1.58; margin: 14px 0 0; font-weight: 560; }
    .answer { color: var(--green); font-weight: 950; }

    .cta {
      text-align: center;
      padding: clamp(30px,6vw,58px);
    }

    .cta h2 {
      margin: 0;
      font-size: clamp(34px,5vw,66px);
      letter-spacing: -.07em;
      line-height: .96;
    }

    .cta p {
      margin: 18px auto 0;
      color: var(--muted);
      line-height: 1.6;
      max-width: 760px;
      font-weight: 560;
      font-size: 18px;
    }

    footer {
      margin-top: 28px;
      color: var(--muted);
      font-size: 14px;
      text-align: center;
      line-height: 1.6;
    }

    @media (max-width: 980px) {
      .hero, .grid-3, .grid-2, .video-grid { grid-template-columns: 1fr; }
      .flow { grid-template-columns: 1fr 1fr; }
      .stats { grid-template-columns: 1fr; }
      .section-head { align-items: start; flex-direction: column; }
      .topbar-inner { align-items: flex-start; flex-direction: column; }
      .nav { justify-content: flex-start; }
    }

    @media (max-width: 620px) {
      .shell { padding-inline: 16px; }
      .hero-main { min-height: 0; }
      .flow { grid-template-columns: 1fr; }
      .compare-table { display: block; overflow-x: auto; }
    }

