  :root, [data-mode="dawn"] {
    --bg: #faf5ec; --panel: #f3ecdf; --panel2: #efe6d4;
    --ink: #1a1612; --muted: #5c5344; --faint: #a89a85;
    --accent: #d4502e; --accent-ink: #faf5ec;
    --line: #e4dac7; --glow: none;
    --feed-a: #b8451f; --feed-b: #7a6a2f; --feed-c: #8a3d5f;
  }
  [data-mode="night"] {
    --bg: #050810; --panel: #0b1020; --panel2: #0e1428;
    --ink: #f2ede3; --muted: #9aa3ba; --faint: #6b7694;
    --accent: #ffb347; --accent-ink: #0a0d16;
    --line: #1a2136; --glow: 0 0 12px 3px rgba(255,179,71,.35);
    --feed-a: #ffd98a; --feed-b: #7dd87d; --feed-c: #ff8c69;
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  body {
    background: var(--bg); color: var(--ink);
    font-family: -apple-system, "Helvetica Neue", sans-serif;
    transition: background .6s ease, color .6s ease;
    line-height: 1.6;
  }
  .serif { font-family: Georgia, "Times New Roman", serif; }
  .mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; }

  nav {
    display:flex; align-items:center; gap:28px;
    max-width: 1080px; margin: 0 auto; padding: 54px 32px 0;
  }
  nav .wordmark { font-weight: 700; letter-spacing: .02em; font-size: 17px; }
  nav .links { display:flex; gap:22px; margin-left:auto; font-size: 13.5px; }
  nav .links a { color: var(--muted); text-decoration: none; }
  nav .links a:hover { color: var(--ink); }
  .toggle {
    cursor:pointer; border:1px solid var(--line); background:var(--panel);
    color: var(--ink); border-radius: 999px; padding: 5px 14px; font-size: 14px;
    transition: all .4s ease;
  }

  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; position: relative; }

  /* night city lights */
  .lights { position:absolute; inset:0; pointer-events:none; opacity:0; transition: opacity 1s ease; }
  [data-mode="night"] .lights { opacity:1; }
  .lights i { position:absolute; border-radius:50%; background: var(--accent); box-shadow: var(--glow); }
  .lights i:nth-child(1){ width:4px;height:4px; top:12%; left:8%; animation: tw 4s infinite; }
  .lights i:nth-child(2){ width:3px;height:3px; top:28%; right:12%; background:#ffd98a; animation: tw 5s 1s infinite; }
  .lights i:nth-child(3){ width:3px;height:3px; top:52%; left:22%; background:#ff8c69; animation: tw 6s 2s infinite; }
  .lights i:nth-child(4){ width:2px;height:2px; top:38%; right:32%; animation: tw 4.5s .5s infinite; }
  .lights i:nth-child(5){ width:2px;height:2px; top:70%; right:8%; background:#ffd98a; animation: tw 5.5s 1.5s infinite; }
  @keyframes tw { 0%,100%{opacity:.9} 50%{opacity:.25} }

  /* dawn sun wash */
  .sunwash { position:absolute; top:-120px; left:50%; transform:translateX(-50%);
    width: 720px; height: 380px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(212,80,46,.10), transparent 65%);
    pointer-events:none; opacity:1; transition: opacity 1s ease; }
  [data-mode="night"] .sunwash { opacity:0; }

  header.hero { padding: 96px 0 72px; position:relative; }
  .eyebrow { font-size: 12px; letter-spacing:.18em; text-transform: uppercase; color: var(--faint); margin-bottom: 18px; }
  h1 { font-size: clamp(40px, 6vw, 64px); line-height: 1.12; font-weight: 400; max-width: 16ch; margin-bottom: 22px; }
  .hero p.lede { font-size: 18px; color: var(--muted); max-width: 52ch; margin-bottom: 26px; }
  .pulse { font-size: 13px; color: var(--accent); margin-bottom: 34px; }
  .pulse .dot { animation: tw 2.5s infinite; display:inline-block; }
  .cta-row { display:flex; gap:14px; flex-wrap:wrap; }
  .btn { display:inline-block; padding: 12px 22px; border-radius: 8px; font-size: 15px; text-decoration:none; transition: all .3s; }
  .btn.primary { background: var(--accent); color: var(--accent-ink); font-weight: 600; }
  .btn.ghost { border: 1px solid var(--line); color: var(--ink); }

  section { padding: 72px 0; border-top: 1px solid var(--line); position:relative; }
  h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 400; line-height:1.2; margin-bottom: 14px; max-width: 24ch; }
  .kicker { font-size: 16px; color: var(--muted); max-width: 56ch; margin-bottom: 40px; }

  /* rings */
  .rings-flex { display:flex; gap: 48px; align-items:center; flex-wrap:wrap; }
  .rings { width: 280px; height: 280px; position:relative; flex-shrink:0; }
  .ring { position:absolute; border-radius:50%; border: 1.5px solid var(--line); }
  .ring.r1 { inset: 0; }
  .ring.r2 { inset: 46px; border-color: var(--faint); }
  .ring.r3 { inset: 96px; border-color: var(--accent); background: color-mix(in srgb, var(--accent) 7%, transparent); }
  .ring span { position:absolute; top: -0.7em; left:50%; transform: translateX(-50%);
    background: var(--bg); padding: 0 8px; font-size: 11px; letter-spacing:.1em;
    color: var(--faint); white-space:nowrap; transition: background .6s ease; }
  .ring.r3 span { color: var(--accent); }
  .ring-cols { flex:1; min-width: 300px; display:grid; gap: 26px; }
  .ring-col h3 { font-size: 16px; font-weight:600; margin-bottom: 6px; }
  .ring-col h3 .tag { font-size: 11px; letter-spacing:.12em; color: var(--faint); font-weight:400; margin-right:10px; }
  .ring-col p { font-size: 14.5px; color: var(--muted); max-width: 58ch; }
  .doctrine { margin-top: 38px; font-size: 19px; font-style: italic; color: var(--ink); }

  /* watch feed */
  .feedbox { background: var(--panel); border:1px solid var(--line); border-radius: 12px;
    padding: 26px 28px; max-width: 640px; transition: background .6s ease; }
  .feedbox .row { font-size: 13px; padding: 7px 0; border-bottom: 1px dashed var(--line); }
  .feedbox .row:last-child { border-bottom:none; }
  .feedbox .t { color: var(--faint); margin-right: 14px; }
  .fa { color: var(--feed-a); } .fb { color: var(--feed-b); } .fc { color: var(--feed-c); }

  /* gift steps */
  .steps { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
  .step { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 26px; transition: background .6s ease; }
  .step .n { font-size: 13px; color: var(--accent); margin-bottom: 12px; }
  .step h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
  .step p { font-size: 14px; color: var(--muted); }
  .step .code-chip { display:inline-block; margin-top: 12px; background: var(--panel2);
    border: 1px dashed var(--faint); border-radius: 6px; padding: 6px 12px; font-size: 12.5px; color: var(--ink); }

  /* pricing */
  .prices { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
  .price { border: 1px solid var(--line); border-radius: 12px; padding: 28px; }
  .price.hot { border-color: var(--accent); }
  .price .amt { font-size: 30px; margin: 10px 0 4px; }
  .price .per { font-size: 12.5px; color: var(--faint); margin-bottom: 14px; }
  .price h3 { font-size: 15px; font-weight: 600; color: var(--muted); }
  .price ul { list-style:none; margin-top: 10px; }
  .price li { font-size: 13.5px; color: var(--muted); padding: 4px 0; }
  .live-note { margin-top: 26px; font-size: 13px; color: var(--faint); }

  footer { border-top: 1px solid var(--line); padding: 44px 0 64px; margin-top: 24px; }
  footer .cols { display:flex; gap: 40px; flex-wrap:wrap; font-size: 13.5px; color: var(--muted); }
  footer a { color: var(--muted); text-decoration:none; }
  footer .love { margin-top: 26px; font-size: 13px; color: var(--faint); }

/* ── estate strip (web variant — in-flow, not fixed) ─────────────── */
.estate-strip-web { display:flex; gap:1.4rem; padding:7px 32px; font-size:11.5px;
  border-bottom:1px solid var(--line); overflow-x:auto; white-space:nowrap;
  background:var(--panel); transition:background .6s ease; }
.estate-strip-web a { color:var(--faint); text-decoration:none; }
.estate-strip-web a.here { color:var(--accent); }

/* watch page — quiet feed state */
.feedbox .row.quiet { color: var(--faint); font-style: italic; }

/* credits page — the ramp */
.amounts { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.amt-btn { border:1px solid var(--line); background:var(--panel2); color:var(--ink);
  padding:10px 20px; border-radius:8px; font-size:16px; cursor:pointer; }
.amt-btn.selected { border-color:var(--accent); color:var(--accent); }
.custom input { width:70px; background:transparent; border:none; border-bottom:1px dashed var(--faint);
  color:var(--ink); font:inherit; padding:4px 2px; }
#code { font-size:clamp(20px,4vw,32px); letter-spacing:.06em; border:1.5px dashed var(--accent);
  border-radius:12px; padding:22px 26px; display:inline-block; }
pre.mono { background:var(--panel2); border:1px solid var(--line); border-radius:8px;
  padding:14px 16px; font-size:12.5px; overflow-x:auto; }
