:root {
      --milk: #eef4f7;
      --frost: #f7fbfd;
      --ink: #16202b;
      --ink-soft: #3d4a58;
      --butter: #f0c14a;
      --butter-deep: #d4a017;
      --toast: #6b4a1e;
      --line: rgba(22, 32, 43, 0.12);
      --glow: rgba(240, 193, 74, 0.45);
      --radius: 18px;
      --font-display: "Space Grotesk", system-ui, sans-serif;
      --font-serif: "Fraunces", Georgia, serif;
      --font-ui: "Outfit", system-ui, sans-serif;
      --font-body: "IBM Plex Sans", system-ui, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--ink);
      background:
        radial-gradient(1200px 600px at 80% -10%, rgba(240, 193, 74, 0.22), transparent 55%),
        radial-gradient(900px 500px at -10% 30%, rgba(180, 210, 230, 0.55), transparent 50%),
        linear-gradient(180deg, var(--frost) 0%, var(--milk) 45%, #e4eef3 100%);
      min-height: 100vh;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    /* Soft fridge-shelf grain */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      z-index: 0;
    }

    a { color: inherit; }

    .wrap {
      position: relative;
      z-index: 1;
      width: min(1080px, calc(100% - 2.5rem));
      margin: 0 auto;
    }

    /* —— Header —— */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 0 0;
      gap: 1rem;
    }

    .mark {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      text-decoration: none;
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: -0.02em;
    }

    .mark img {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      box-shadow: 0 6px 16px rgba(107, 74, 30, 0.18);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--ink-soft);
    }

    nav a { text-decoration: none; }
    nav a:hover { color: var(--ink); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      padding: 0.7rem 1.15rem;
      border-radius: 999px;
      border: none;
      font: inherit;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    .btn:focus-visible {
      outline: 2px solid var(--butter-deep);
      outline-offset: 3px;
    }

    .btn-butter {
      background: var(--butter);
      color: var(--toast);
      box-shadow: 0 8px 24px var(--glow);
    }

    .btn-butter:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 28px var(--glow);
      background: #f5cb5c;
    }

    .btn-ghost {
      background: transparent;
      color: var(--ink-soft);
      border: 1px solid var(--line);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.55);
      color: var(--ink);
    }

    /* —— Hero —— */
    .hero {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 3rem;
      align-items: center;
      padding: 4.5rem 0 3.5rem;
      min-height: min(78vh, 720px);
    }

    .hero-copy h1 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(2.6rem, 6vw, 4.4rem);
      letter-spacing: -0.045em;
      line-height: 0.98;
      margin-bottom: 1rem;
      color: var(--ink);
    }

    .hero-copy h1 em {
      font-family: var(--font-serif);
      font-style: normal;
      font-weight: 500;
      color: var(--toast);
      letter-spacing: -0.02em;
    }

    .lede {
      font-size: 1.15rem;
      color: var(--ink-soft);
      max-width: 34ch;
      margin-bottom: 1.75rem;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
      margin-bottom: 1rem;
    }

    .fine {
      font-size: 0.82rem;
      color: var(--ink-soft);
    }

    /* —— Melt stage (signature) —— */
    .stage {
      position: relative;
      background: linear-gradient(165deg, #ffffff 0%, #f3f8fb 100%);
      border: 1px solid var(--line);
      border-radius: calc(var(--radius) + 6px);
      padding: 1.5rem 1.5rem 1.35rem;
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 30px 60px rgba(22, 32, 43, 0.08);
    }

    .stage-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.25rem;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--ink-soft);
    }

    .dots { display: flex; gap: 0.35rem; }
    .dots span {
      width: 8px; height: 8px; border-radius: 50%;
      background: #d5dee6;
    }
    .dots span:nth-child(1) { background: #ff6b6b; }
    .dots span:nth-child(2) { background: var(--butter); }
    .dots span:nth-child(3) { background: #7dcea0; }

    .type-line {
      font-family: var(--font-serif);
      font-size: clamp(1.6rem, 3.2vw, 2.15rem);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.35;
      min-height: 3.2em;
      color: var(--ink);
    }

    .slip {
      display: inline-block;
      position: relative;
      padding: 0 0.12em;
      border-radius: 0.25em;
    }

    .slip.is-wrong {
      color: var(--toast);
      background: rgba(240, 193, 74, 0.28);
      text-decoration: line-through;
      text-decoration-thickness: 2px;
      text-decoration-color: rgba(107, 74, 30, 0.45);
    }

    .slip.is-melting {
      animation: melt 0.55s ease forwards;
    }

    .slip.is-smooth {
      color: var(--ink);
      background: transparent;
      animation: settle 0.4s ease;
    }

    @keyframes melt {
      0% { transform: translateY(0) scale(1); opacity: 1; filter: blur(0); }
      55% { transform: translateY(6px) scale(1.04, 0.92); opacity: 0.35; filter: blur(1px); }
      100% { transform: translateY(10px) scale(1.06, 0.7); opacity: 0; filter: blur(2px); }
    }

    @keyframes settle {
      from { transform: translateY(-4px); opacity: 0.4; }
      to { transform: none; opacity: 1; }
    }

    .cursor {
      display: inline-block;
      width: 2px;
      height: 1.05em;
      margin-left: 2px;
      background: var(--butter-deep);
      vertical-align: text-bottom;
      animation: blink 1s steps(1) infinite;
    }

    @keyframes blink {
      50% { opacity: 0; }
    }

    .stage-caption {
      margin-top: 1.1rem;
      font-size: 0.85rem;
      color: var(--ink-soft);
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.25rem 0.65rem;
      border-radius: 999px;
      background: rgba(240, 193, 74, 0.2);
      color: var(--toast);
      font-weight: 600;
      font-size: 0.78rem;
    }

    /* —— Band —— */
    .band {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 1.1rem 0;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.35);
      backdrop-filter: blur(8px);
    }

    .marquee {
      display: flex;
      width: max-content;
      white-space: nowrap;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: -0.02em;
      color: var(--ink-soft);
      animation: scroll 40s linear infinite;
      will-change: transform;
    }

    .marquee-group {
      display: flex;
      flex-shrink: 0;
      align-items: center;
      gap: 2.5rem;
      padding-right: 2.5rem;
    }

    .marquee span b { color: var(--ink); font-weight: 800; }
    .marquee .arrow { color: var(--butter-deep); padding: 0 0.35rem; }

    @keyframes scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* —— Sections —— */
    section {
      padding: 4.5rem 0;
    }

    .section-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(1.75rem, 3vw, 2.35rem);
      letter-spacing: -0.035em;
      margin-bottom: 0.5rem;
    }

    .section-lede {
      color: var(--ink-soft);
      max-width: 42ch;
      margin-bottom: 2.25rem;
    }

    .beats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .beat {
      padding: 1.35rem 1.25rem 1.4rem;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid var(--line);
    }

    .beat h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 0.45rem;
    }

    .beat p {
      color: var(--ink-soft);
      font-size: 0.95rem;
    }

    .beat .ico {
      font-family: var(--font-display);
      font-size: 2rem;
      line-height: 1;
      font-weight: 800;
      color: var(--butter-deep);
      margin-bottom: 0.85rem;
      display: block;
    }

    /* Privacy strip */
    .privacy {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 1.5rem;
      align-items: center;
      padding: 1.5rem 1.75rem;
      border-radius: var(--radius);
      background: var(--ink);
      color: #e8eef3;
    }

    .privacy strong {
      font-family: var(--font-display);
      font-size: 1.2rem;
      letter-spacing: -0.02em;
      display: block;
      margin-bottom: 0.25rem;
    }

    .privacy p {
      color: rgba(232, 238, 243, 0.72);
      font-size: 0.95rem;
      max-width: 48ch;
    }

    .butter-stack {
      width: 64px;
      height: 64px;
      border-radius: 14px;
      object-fit: cover;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    }

    /* Download */
    .download {
      text-align: center;
      padding-bottom: 5rem;
    }

    .download .section-title { margin-bottom: 0.75rem; }
    .download .section-lede {
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 1.75rem;
    }

    .reqs {
      margin-top: 1.25rem;
      font-size: 0.85rem;
      color: var(--ink-soft);
    }

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

    footer a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

    @media (max-width: 860px) {
      .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2.5rem;
        min-height: 0;
      }
      .beats { grid-template-columns: 1fr; }
      .privacy {
        grid-template-columns: 1fr;
        text-align: left;
      }
      nav .hide-sm { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      .marquee, .cursor, .slip.is-melting, .slip.is-smooth { animation: none !important; }
      html { scroll-behavior: auto; }
    }


    /* Skip link */
    .skip {
      position: absolute;
      left: -999px;
      top: 0.75rem;
      z-index: 100;
      padding: 0.55rem 0.9rem;
      border-radius: 999px;
      background: var(--butter);
      color: var(--toast);
      font-weight: 600;
      text-decoration: none;
    }
    .skip:focus { left: 0.75rem; }

    /* Compare */
    .compare {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }
    .compare-col {
      padding: 1.35rem 1.25rem 1.4rem;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid var(--line);
    }
    .compare-col h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 0.75rem;
    }
    .compare-col ul {
      list-style: none;
      display: grid;
      gap: 0.55rem;
      color: var(--ink-soft);
      font-size: 0.95rem;
    }
    .compare-col li {
      padding-left: 1.1rem;
      position: relative;
    }
    .compare-col li::before {
      content: "→";
      position: absolute;
      left: 0;
      color: var(--butter-deep);
      font-weight: 700;
    }

    /* FAQ */
    .faq {
      display: grid;
      gap: 0.65rem;
      max-width: 720px;
    }
    .faq details {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.55);
      padding: 0.95rem 1.15rem;
    }
    .faq summary {
      font-family: var(--font-display);
      font-weight: 700;
      letter-spacing: -0.02em;
      cursor: pointer;
      list-style: none;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after {
      content: "+";
      float: right;
      color: var(--butter-deep);
      font-weight: 800;
    }
    .faq details[open] summary::after { content: "–"; }
    .faq details p {
      margin-top: 0.65rem;
      color: var(--ink-soft);
      font-size: 0.95rem;
    }

    /* Prose pages (privacy / install) */
    .prose {
      padding: 2.5rem 0 4rem;
      max-width: 680px;
    }
    .prose h1 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(1.9rem, 3.5vw, 2.6rem);
      letter-spacing: -0.035em;
      margin-bottom: 0.65rem;
    }
    .prose .lede {
      margin-bottom: 2rem;
      max-width: 48ch;
    }
    .prose h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: -0.02em;
      margin: 2rem 0 0.65rem;
    }
    .prose p, .prose li {
      color: var(--ink-soft);
      margin-bottom: 0.75rem;
    }
    .prose ul, .prose ol {
      padding-left: 1.25rem;
      margin-bottom: 1rem;
    }
    .prose li { margin-bottom: 0.4rem; }
    .prose table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.92rem;
      margin: 1rem 0 1.5rem;
    }
    .prose th, .prose td {
      text-align: left;
      padding: 0.55rem 0.65rem;
      border-bottom: 1px solid var(--line);
      vertical-align: top;
    }
    .prose th {
      font-family: var(--font-display);
      font-weight: 700;
      color: var(--ink);
    }
    .prose a { color: var(--ink); text-underline-offset: 3px; }
    .prose .note {
      margin-top: 1.5rem;
      padding: 1rem 1.15rem;
      border-radius: var(--radius);
      background: rgba(240, 193, 74, 0.18);
      border: 1px solid rgba(212, 160, 23, 0.35);
      color: var(--toast);
      font-size: 0.92rem;
    }

    .facts {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.85rem;
      margin: 2rem 0 3rem;
    }
    .fact {
      padding: 0.9rem 1rem;
      border-radius: calc(var(--radius) - 4px);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.45);
    }
    .fact dt {
      font-family: var(--font-display);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 0.25rem;
    }
    .fact dd {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.98rem;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    @media (max-width: 860px) {
      .compare { grid-template-columns: 1fr; }
      .facts { grid-template-columns: 1fr 1fr; }
    }
