:root {
      --ink: #141414;
      --muted: #4a4a4a;
      --faint: #7a7a7a;
      --paper: #f3f1ec;
      --paper-2: #e8eef2;
      --amber: #e2a008;
      --amber-deep: #c48900;
      --line: rgba(20, 20, 20, 0.12);
      --max: 68rem;
      --font-display: "Bricolage Grotesque", sans-serif;
      --font-body: "Source Serif 4", Georgia, serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 1.125rem;
      line-height: 1.55;
      background:
        radial-gradient(120% 80% at 70% -10%, #dce8f0 0%, transparent 55%),
        radial-gradient(90% 60% at 10% 20%, #f7efd6 0%, transparent 45%),
        linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
      background-attachment: fixed;
    }

    a { color: inherit; }
    .wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

    /* —— Hero —— */
    .hero {
      min-height: 100svh;
      display: grid;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 1.5rem 0;
    }

    .hero-visual {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 72% 42%, rgba(226, 160, 8, 0.22), transparent 28%),
        radial-gradient(circle at 72% 42%, transparent 18%, rgba(20,20,20,0.04) 18.2%, transparent 34%),
        radial-gradient(circle at 72% 42%, transparent 34%, rgba(20,20,20,0.05) 34.2%, transparent 48%),
        radial-gradient(circle at 72% 42%, transparent 48%, rgba(20,20,20,0.04) 48.2%, transparent 62%);
      animation: ring-breathe 10s ease-in-out infinite;
    }

    .orbit {
      --orbit-size: min(88vw, 42rem);
      --angle: 0deg;
      position: absolute;
      width: var(--orbit-size);
      aspect-ratio: 1;
      right: -14%;
      top: 50%;
      translate: 0 -52%;
      pointer-events: auto;
      touch-action: none;
      cursor: grab;
      user-select: none;
    }
    .orbit.is-dragging { cursor: grabbing; }

    .orbit-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1px solid rgba(20, 20, 20, 0.14);
      box-shadow:
        inset 0 0 0 1px rgba(226, 160, 8, 0.15),
        0 0 0 3.5rem rgba(20, 20, 20, 0.03),
        0 0 0 7rem rgba(20, 20, 20, 0.025);
      pointer-events: none;
    }

    .orbit-track {
      --n: 11;
      position: absolute;
      inset: 0;
      margin: 0;
      padding: 0;
      list-style: none;
      transform: rotate(var(--angle));
    }

    .orbit-track li {
      position: absolute;
      inset: 0;
      transform: rotate(calc(var(--i) * 360deg / var(--n)));
    }

    .app-tile {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
    }

    .app-logo {
      display: grid;
      place-items: center;
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 50%;
      background: rgba(247, 244, 238, 0.95);
      border: 1px solid rgba(20, 20, 20, 0.14);
      box-shadow: 0 0 0 3px rgba(243, 241, 236, 0.65);
      color: var(--ink);
    }
    .app-logo svg {
      width: 1.25rem;
      height: 1.25rem;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .app-name {
      font-family: var(--font-display);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.1;
      text-align: center;
      color: var(--ink);
      white-space: nowrap;
    }

    .orbit-node {
      position: absolute;
      left: 50%;
      top: 0;
      translate: -50% -50%;
      width: 3.6rem;
      transform: rotate(calc(-1 * var(--angle)));
    }

    .hero-content {
      position: relative;
      z-index: 1;
      width: min(100% - 2.5rem, 30rem);
      max-width: 42vw;
      margin-left: max(1.25rem, calc((100% - var(--max)) / 2));
      margin-right: auto;
      animation: rise 900ms cubic-bezier(.2,.8,.2,1) both;
    }

    .brand {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(4.5rem, 14vw, 8.5rem);
      letter-spacing: -0.06em;
      line-height: 0.9;
      margin: 0 0 1.25rem;
    }

    .brand span {
      color: var(--amber-deep);
    }

    .hero h1 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.75rem, 4vw, 2.35rem);
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin: 0 0 0.85rem;
    }

    .hero .lede {
      margin: 0 0 1.75rem;
      color: var(--muted);
      font-size: 1.2rem;
      max-width: 28rem;
    }

    .cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 2.85rem;
      padding: 0.7rem 1.2rem;
      border-radius: 0.35rem;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: -0.01em;
      text-decoration: none;
      border: 1px solid transparent;
      transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: var(--ink); color: #f7f4ee; }
    .btn-primary:hover { background: #000; }
    .btn-ghost { border-color: var(--line); background: rgba(255,255,255,0.35); }
    .btn-ghost:hover { border-color: rgba(20,20,20,0.28); }

    /* —— Sections —— */
    section {
      padding: 5.5rem 0;
      border-top: 1px solid var(--line);
    }

    .kicker {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--amber-deep);
      margin: 0 0 0.75rem;
    }

    h2 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      letter-spacing: -0.035em;
      line-height: 1.1;
      margin: 0 0 1rem;
      max-width: 18ch;
    }
    h2.wide { max-width: 28ch; }

    .section-copy {
      max-width: 38rem;
      color: var(--muted);
      margin: 0;
    }

    .section-copy + .section-copy { margin-top: 1rem; }

    .apps {
      margin-top: 2.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem 1.5rem;
    }
    .apps .app-logo {
      width: 3.25rem;
      height: 3.25rem;
    }
    .apps .app-logo svg {
      width: 1.4rem;
      height: 1.4rem;
    }
    .apps .app-name {
      font-size: 0.8rem;
    }

    .compare {
      display: grid;
      gap: 2.5rem;
      margin-top: 2rem;
    }
    @media (min-width: 780px) {
      .compare { grid-template-columns: 1fr 1fr; gap: 3rem; }
    }
    .compare h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      margin: 0 0 0.6rem;
    }
    .compare p { margin: 0; color: var(--muted); max-width: 32rem; }

    .name-play {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.25rem;
      margin-top: 1.75rem;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.05rem;
    }
    .name-play b { color: var(--amber-deep); }

    .final {
      padding-bottom: 6rem;
      text-align: left;
    }
    .final h2 { max-width: 20ch; }

    code {
      font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
      font-size: 0.9em;
      background: rgba(20, 20, 20, 0.06);
      padding: 0.15em 0.4em;
      border-radius: 0.25rem;
    }

    .install-steps {
      margin: 2rem 0 0;
      max-width: 42rem;
    }

    .install-code {
      margin: 0;
      padding: 1.15rem 1.25rem;
      overflow-x: auto;
      border: 1px solid var(--line);
      border-radius: 0.35rem;
      background: rgba(20, 20, 20, 0.92);
      color: #f3f1ec;
      font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
      font-size: 0.92rem;
      line-height: 1.65;
      white-space: pre;
    }
    .install-code code {
      background: none;
      padding: 0;
      color: inherit;
      font: inherit;
    }

    .install-note {
      margin: 1.25rem 0 0;
      max-width: 38rem;
      color: var(--muted);
      font-size: 1.05rem;
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 1.5rem 0 2.5rem;
      color: var(--faint);
      font-size: 0.95rem;
    }
    footer .wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.5rem;
      justify-content: space-between;
    }

    @keyframes rise {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes ring-breathe {
      0%, 100% { opacity: 0.85; }
      50% { opacity: 1; }
    }
    @media (max-width: 720px) {
      .orbit {
        right: 50%;
        translate: 50% -40%;
        top: 18%;
        --orbit-size: min(120vw, 28rem);
        opacity: 0.85;
      }
      .orbit-node { width: 3rem; }
      .orbit-node .app-logo {
        width: 2.25rem;
        height: 2.25rem;
      }
      .orbit-node .app-logo svg {
        width: 1.05rem;
        height: 1.05rem;
      }
      .orbit-node .app-name { font-size: 0.52rem; }
      .hero {
        align-items: end;
        padding-bottom: 2.5rem;
      }
      .hero-content {
        max-width: none;
        width: min(100% - 2.5rem, 30rem);
        padding-top: 48vw;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
      }
    }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.site-nav a { text-decoration: none; }
.site-nav a:hover { color: var(--amber-deep); }
.site-nav-brand {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}
.site-nav-brand span { color: var(--amber-deep); }
.site-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  color: var(--muted);
}
.page-hero {
  padding: 3rem 0 2rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 0.85rem;
  max-width: 16ch;
}
.page-hero .lede {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}
footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
footer a:hover { color: var(--ink); }
