:root {
      --bg: #090909;
      --panel: #111111;
      --panel-2: #161616;
      --text: #f4f4f1;
      --muted: #a4a4a0;
      --line: rgba(255,255,255,.11);
      --accent-1: #e88fb8;
      --accent-2: #9cc8ff;
      --accent-3: #f4d58a;
      --accent-4: #a8e6cf;
      --max: 1220px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
      overflow-x: hidden;
      position: relative;
    }

    .ambient-stage {
      position: fixed;
      inset: -18vh -18vw;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
      background: #090909;
    }

    .ambient-color {
      position: absolute;
      inset: 0;
      transform: translate3d(var(--ambient-x, 0px), var(--ambient-y, 0px), 0) rotate(var(--ambient-r, 0deg)) scale(1.08);
      transform-origin: center;
      background:
        radial-gradient(circle at 18% 19%, rgba(238, 101, 171, .44), transparent 27%),
        radial-gradient(circle at 75% 22%, rgba(99, 178, 255, .38), transparent 28%),
        radial-gradient(circle at 77% 76%, rgba(244, 196, 85, .31), transparent 27%),
        radial-gradient(circle at 24% 75%, rgba(92, 222, 183, .28), transparent 29%),
        radial-gradient(circle at 53% 48%, rgba(154, 115, 255, .19), transparent 35%);
      filter: blur(38px) saturate(118%);
      opacity: .95;
      will-change: transform;
      animation: ambient-breathe 10s ease-in-out infinite alternate;
    }

    .ambient-sheen {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(9,9,9,.12) 0%, rgba(9,9,9,.58) 42%, rgba(9,9,9,.30) 72%, rgba(9,9,9,.62) 100%),
        radial-gradient(circle at center, transparent 8%, rgba(9,9,9,.28) 74%, rgba(9,9,9,.72) 100%);
    }

    @keyframes ambient-breathe {
      from { filter: blur(38px) saturate(112%); }
      to { filter: blur(46px) saturate(132%); }
    }

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

    main, footer {
      position: relative;
      z-index: 1;
    }

    .site-shell {
      width: min(100% - 40px, var(--max));
      margin: 0 auto;
    }

    header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 30;
      background: linear-gradient(to bottom, rgba(9,9,9,.92), rgba(9,9,9,.66), transparent);
      backdrop-filter: blur(10px);
	  padding-top: 15px;
    }

    .nav {
      height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 14px;
      letter-spacing: .04em;
      color: #d9d9d5;
      white-space: nowrap;
    }

   .brand img {
  width: 184px;
  height: auto;
  display: block;
}

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      font-size: 14px;
      color: #c8c8c4;
    }

    .nav-cta {
      border: 1px solid var(--line);
      padding: 10px 15px;
      border-radius: 999px;
      transition: .2s ease;
    }

    .nav-cta:hover { background: #fff; color: #111; }

    .hero {
      min-height: 100vh;
      display: grid;
      align-items: end;
      padding: 150px 0 72px;
      position: relative;
      isolation: isolate;
    }

    .eyebrow {
      font-size: 13px;
      color: var(--muted);
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    h1, h2 {
      margin: 0;
      font-weight: 500;
      letter-spacing: -.055em;
      line-height: .94;
    }

    h1 {
      font-size: clamp(58px, 10vw, 148px);
      max-width: 1120px;
    }

    .hero-bottom {
      margin-top: 48px;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(260px, .6fr);
      gap: 48px;
      align-items: end;
    }

    .hero-copy {
      max-width: 720px;
      font-size: clamp(19px, 2.1vw, 29px);
      line-height: 1.34;
      color: #d4d4cf;
      letter-spacing: -.02em;
    }

    .hero-meta {
      justify-self: end;
      max-width: 320px;
      color: var(--muted);
      font-size: 14px;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid var(--line);
      transition: .2s ease;
      font-size: 15px;
    }

    .btn.primary { background: #f3f3ef; color: #111; border-color: #f3f3ef; }
    .btn:hover { transform: translateY(-1px); }

    .rule { border-top: 1px solid var(--line); }

    .story-section {
      min-height: 82vh;
      display: grid;
      align-items: center;
      padding: 110px 0;
      position: relative;
      isolation: isolate;
    }

    .story-section::before {
      content: "";
      position: absolute;
      inset: 8% 3%;
      z-index: -1;
      background: radial-gradient(circle at 50% 50%, rgba(9,9,9,.22), rgba(9,9,9,.04) 58%, transparent 74%);
      pointer-events: none;
    }

    .section-grid {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 72px;
      align-items: start;
    }

    .section-kicker {
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: 12px;
      margin-bottom: 20px;
    }

    h2 {
      font-size: clamp(54px, 7.8vw, 112px);
      max-width: 900px;
    }

    .section-copy {
      align-self: end;
      padding-top: 84px;
      max-width: 500px;
    }

    .section-copy p {
      margin: 0 0 26px;
      color: #c9c9c4;
      font-size: clamp(17px, 1.65vw, 23px);
      line-height: 1.48;
      letter-spacing: -.015em;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #f1f1ed;
      border-bottom: 1px solid rgba(255,255,255,.35);
      padding-bottom: 4px;
      font-size: 15px;
    }

    .text-link span { transition: transform .2s ease; }
    .text-link:hover span { transform: translateX(4px); }

    .coyote-note {
      margin-top: 34px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .coyote-note strong { color: #e7e7e2; font-weight: 500; }

    .feature-band {
      padding: 120px 0;
      background: rgba(17,17,17,.72);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(18px);
    }

    .feature-band .section-grid { align-items: center; }

    .statement {
      font-size: clamp(38px, 5.8vw, 84px);
      line-height: 1.02;
      letter-spacing: -.05em;
      max-width: 940px;
      margin: 0;
      font-weight: 500;
    }

    .since {
      padding: 140px 0;
    }

    .since-number {
      font-size: clamp(92px, 18vw, 270px);
      line-height: .8;
      letter-spacing: -.075em;
      margin: 0;
      font-weight: 500;
    }

    .since-copy {
      margin-top: 44px;
      max-width: 720px;
      font-size: clamp(19px, 2vw, 28px);
      color: #c8c8c3;
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 56px 0 110px;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      gap: 28px;
      align-items: flex-end;
    }

    .footer-title {
      color: var(--text);
      font-size: clamp(34px, 5vw, 70px);
      line-height: 1;
      letter-spacing: -.05em;
      max-width: 650px;
      margin: 0 0 20px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s ease, transform .75s cubic-bezier(.2,.65,.2,1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .help-trigger {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 50;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(245,245,241,.96);
      color: #111;
      border-radius: 999px;
      padding: 14px 18px;
      cursor: pointer;
      box-shadow: 0 12px 40px rgba(0,0,0,.30);
      transition: transform .2s ease;
    }

    .help-trigger:hover { transform: translateY(-2px); }

    .help-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(420px, 92vw);
      background: #f1f1ed;
      color: #111;
      z-index: 60;
      transform: translateX(102%);
      transition: transform .36s cubic-bezier(.2,.7,.2,1);
      padding: 28px;
      display: flex;
      flex-direction: column;
      box-shadow: -20px 0 60px rgba(0,0,0,.35);
    }

    .help-drawer.open { transform: translateX(0); }

    .drawer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .drawer-close {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(0,0,0,.12);
      background: transparent;
      cursor: pointer;
      font-size: 21px;
    }

    .drawer-title {
      margin: 70px 0 14px;
      font-size: 42px;
      line-height: 1;
      letter-spacing: -.045em;
    }

    .drawer-intro {
      color: #555;
      margin: 0 0 28px;
      font-size: 16px;
    }

    .question-list {
      display: grid;
      gap: 10px;
    }

    .question {
      display: block;
      padding: 16px 18px;
      border: 1px solid rgba(0,0,0,.12);
      border-radius: 14px;
      background: rgba(255,255,255,.35);
      transition: .2s ease;
      font-size: 16px;
    }

    .question:hover {
      background: #111;
      color: #fff;
      transform: translateX(-3px);
    }

    .drawer-bottom {
      margin-top: auto;
      padding-top: 28px;
      border-top: 1px solid rgba(0,0,0,.12);
      color: #666;
      font-size: 13px;
    }

    .drawer-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.58);
      z-index: 55;
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s ease;
    }

    .drawer-backdrop.open {
      opacity: 1;
      pointer-events: auto;
    }

    @media (max-width: 820px) {
      .site-shell { width: min(100% - 28px, var(--max)); }
      .nav { height: 70px; }
      .nav-links a:not(.nav-cta) { display: none; }
      .brand span { display: none; }
      .brand img { width: 140px; }
      .hero { padding-top: 118px; min-height: 92vh; }
      .hero-bottom,
      .section-grid { grid-template-columns: 1fr; gap: 28px; }
      .hero-meta { justify-self: start; }
      .section-copy { padding-top: 0; }
      .story-section { min-height: auto; padding: 86px 0; }
      .feature-band { padding: 90px 0; }
      .since { padding: 100px 0; }
      .footer-grid { flex-direction: column; align-items: flex-start; }
      .help-trigger { right: 14px; bottom: 14px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
      .reveal { opacity: 1; transform: none; }
    }
