/* ========================================================================
   Eswarden — studio site
   ====================================================================== */

:root {
  /* studio neutral */
  --ink-0: #07060d;
  --ink-1: #0d0b18;
  --ink-2: #141127;
  --ink-3: #1c1830;
  --line:  rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --text:  #ece6dc;
  --text-dim: #9a9286;
  --text-mute: #6a6358;

  /* eswarden gold (studio accent) */
  --gold-hi: #fff4c9;
  --gold:    #ffd766;
  --gold-2:  #e8b550;
  --gold-3:  #b88527;
  --gold-faint: rgba(255,215,102,0.16);

  /* streak hunter */
  --sh-bg:   #0a0710;
  --sh-bg-2: #15101a;
  --sh-ink:  #06040c;
  --sh-gold-hi: #fff4c9;
  --sh-gold: #ffd700;
  --sh-gold-2: #e8b800;
  --sh-gold-3: #c49000;
  --sh-ember:  #dd96a6;
  --sh-text:   #f3e3ba;

  /* tether */
  --t-bg:    #070418;
  --t-bg-2:  #0a0723;
  --t-card:  #1a1340;
  --t-card-2:#221a4d;
  --t-cream: #f5e7d2;
  --t-lav:   #d4b9ef;
  --t-meta:  #9d83cf;
  --t-gold:  #f5cf8a;
  --t-ruby:  #ee5c70;
  --t-ruby-2:#cc4055;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink-0);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: 'ss01','cv11';
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(60% 50% at 80% -10%, rgba(255,215,102,0.10), transparent 60%),
    radial-gradient(50% 40% at -10% 110%, rgba(238,92,112,0.08), transparent 60%),
    radial-gradient(40% 30% at 50% 50%, rgba(212,185,239,0.05), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* ---- layout ---- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
section.tight { padding: 56px 0; }

/* ---- header ---- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,6,13,0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
header.site .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.brand .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-hi), var(--gold-3));
  box-shadow: 0 0 16px rgba(255,215,102,0.6);
}
nav.primary { display: flex; gap: 28px; }
nav.primary a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
nav.primary a:hover { color: var(--gold); }

/* ---- typography ---- */
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  margin-bottom: 24px;
}
h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
}
h4 { font-size: 16px; line-height: 1.3; margin-bottom: 8px; color: var(--text); }

p { color: var(--text); margin-bottom: 16px; }
p.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-3);
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-block;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hi); }

.text-grad-gold {
  background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 50%, var(--gold-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

ul, ol { margin: 0 0 16px 20px; }
li { margin-bottom: 8px; color: var(--text); }

/* ---- hero (studio) ---- */
.hero {
  padding: 120px 0 80px;
  position: relative;
}
.hero .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(255,215,102,0.06);
  border: 1px solid var(--gold-faint);
  border-radius: 999px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero .badge .live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ---- studio product grid ---- */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 880px) { .products { grid-template-columns: 1fr; } }

.product-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 24px;
  padding: 36px 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s ease, border-color .35s ease;
  isolation: isolate;
  min-height: 460px;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }

.product-card.sh {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(255,215,0,0.10), transparent 55%),
    linear-gradient(180deg, #15101a 0%, #0a0710 100%);
  border-color: rgba(255,215,0,0.16);
}
.product-card.sh:hover { border-color: rgba(255,215,0,0.4); }

.product-card.tether {
  background:
    radial-gradient(120% 80% at 0% 100%, rgba(238,92,112,0.18), transparent 55%),
    radial-gradient(80% 50% at 100% 0%, rgba(212,185,239,0.10), transparent 60%),
    linear-gradient(180deg, #0a0723 0%, #070418 100%);
  border-color: rgba(238,92,112,0.18);
}
.product-card.tether:hover { border-color: rgba(238,92,112,0.4); }

.product-card .tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  margin-bottom: 16px;
}
.product-card h3 {
  font-size: 36px;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.product-card.sh h3 { color: var(--sh-gold); }
.product-card.tether h3 { color: var(--t-cream); }
.product-card .desc {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 36ch;
}
.product-card .more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: inherit;
}
.product-card.sh .more { color: var(--sh-gold); }
.product-card.tether .more { color: var(--t-ruby); }
.product-card .more::after { content: "→"; transition: transform .2s; }
.product-card:hover .more::after { transform: translateX(4px); }

.product-card .preview {
  position: absolute;
  right: -40px; bottom: -40px;
  width: 280px; height: 280px;
  opacity: 0.85;
}

/* ---- generic feature grids ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.feature {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.015);
}
.feature .ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, var(--gold), var(--gold-3));
  color: #1a1208;
  font-weight: 800;
}
.feature h4 { color: var(--text); margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--text-dim); margin: 0; }

/* ---- principles strip ---- */
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 720px) { .principles { grid-template-columns: 1fr 1fr; } }
.principle .num {
  font-size: 12px; letter-spacing: .2em; color: var(--gold-3);
  font-weight: 700; text-transform: uppercase; margin-bottom: 8px;
}
.principle p { font-size: 14px; color: var(--text-dim); margin: 0; }

/* ---- product page hero ---- */
.product-hero {
  padding: 80px 0 40px;
}
.product-hero .row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .product-hero .row { grid-template-columns: 1fr; gap: 32px; }
}

.product-hero .brandmark {
  width: 64px; height: 64px;
  margin-bottom: 24px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: filter .2s, transform .2s;
}
.cta.primary {
  background: linear-gradient(180deg, var(--gold), var(--gold-3));
  color: #1a1208;
  box-shadow: 0 6px 24px rgba(255,215,0,0.18);
}
.cta.primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.cta.secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.cta.secondary:hover { background: rgba(255,255,255,0.07); color: var(--text); }
.cta.ruby { background: linear-gradient(180deg, var(--t-ruby), var(--t-ruby-2)); color: #fff; box-shadow: 0 6px 24px rgba(238,92,112,0.32); }
.cta.ruby:hover { color: #fff; filter: brightness(1.08); transform: translateY(-1px); }
.cta .pill { font-size: 11px; padding: 2px 6px; border-radius: 6px; background: rgba(0,0,0,0.18); }

/* ---- phone mockup frame ---- */
.phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
@media (max-width: 880px) {
  .phones { grid-template-columns: 1fr 1fr; }
  .phones .phone:nth-child(3) { display: none; }
}
@media (max-width: 540px) {
  .phones { grid-template-columns: 1fr; }
  .phones .phone:nth-child(2), .phones .phone:nth-child(3) { display: none; }
}
.phone {
  aspect-ratio: 9 / 19.5;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  padding: 14px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 2px 0 rgba(255,255,255,0.04) inset;
}
.phone .notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #000; border-radius: 14px;
  z-index: 5;
}
.phone .screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

/* ---- streak hunter phone screens ---- */
.sh-screen {
  background:
    radial-gradient(80% 60% at 50% 30%, rgba(255,215,0,0.10), transparent 60%),
    linear-gradient(180deg, var(--sh-bg-2) 0%, var(--sh-bg) 100%);
  color: var(--sh-text);
  font-family: 'Inter', sans-serif;
  padding: 38px 16px 16px;
  height: 100%;
  display: flex; flex-direction: column;
}
.sh-screen .topbar { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,215,0,0.6); letter-spacing: .1em; text-transform: uppercase; }
.sh-screen .title { font-size: 14px; color: var(--sh-gold); font-weight: 700; letter-spacing: .04em; margin: 16px 0 8px; text-align: center; }
.sh-screen .sub { font-size: 10px; color: rgba(243,227,186,0.5); text-align: center; letter-spacing: .12em; text-transform: uppercase; }

/* hunt screen */
.sh-hunt .monster {
  margin: 16px auto 12px; width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,215,0,0.22), rgba(34,5,10,0.9));
  border: 1px solid rgba(255,215,0,0.35);
  display: grid; place-items: center;
  position: relative;
}
.sh-hunt .monster::before {
  content: ""; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.12);
}
.sh-hunt .monster svg { width: 44px; height: 44px; }
.sh-hunt .hp { margin: 12px 4px 0; }
.sh-hunt .hp-bar {
  height: 6px; background: rgba(255,215,0,0.08); border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(255,215,0,0.18);
}
.sh-hunt .hp-fill { height: 100%; width: 73%; background: linear-gradient(90deg, var(--sh-ember), #c7506a); }
.sh-hunt .hp-row { display: flex; justify-content: space-between; font-size: 9px; margin-top: 4px; color: rgba(243,227,186,0.55); letter-spacing: .08em; text-transform: uppercase; }
.sh-hunt .streak {
  margin-top: 14px; text-align: center;
}
.sh-hunt .streak .n {
  font-size: 38px; font-weight: 800; letter-spacing: -.04em;
  background: linear-gradient(180deg, var(--sh-gold-hi), var(--sh-gold), var(--sh-gold-3));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.sh-hunt .streak .l { font-size: 9px; color: rgba(243,227,186,0.5); letter-spacing: .18em; text-transform: uppercase; margin-top: 2px; }
.sh-hunt .actions { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: auto; }
.sh-hunt .actions .b {
  background: rgba(255,215,0,0.06); border: 1px solid rgba(255,215,0,0.2);
  border-radius: 8px; padding: 8px; font-size: 9px; text-align: center;
  letter-spacing: .12em; text-transform: uppercase; color: var(--sh-gold);
}
.sh-hunt .actions .b.danger { background: rgba(199,80,106,0.10); border-color: rgba(221,150,166,0.35); color: var(--sh-ember); }

/* codex */
.sh-codex .grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 2px;
}
.sh-codex .grid i {
  aspect-ratio: 1; border-radius: 2px;
  background: rgba(255,215,0,0.06);
}
.sh-codex .grid i.l1 { background: rgba(255,215,0,0.18); }
.sh-codex .grid i.l2 { background: rgba(255,215,0,0.34); }
.sh-codex .grid i.l3 { background: rgba(255,215,0,0.55); }
.sh-codex .grid i.l4 { background: var(--sh-gold); }
.sh-codex .stats { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sh-codex .stat { background: rgba(255,215,0,0.04); border: 1px solid rgba(255,215,0,0.12); padding: 8px; border-radius: 8px; }
.sh-codex .stat .v { font-size: 18px; color: var(--sh-gold); font-weight: 800; letter-spacing: -.02em; }
.sh-codex .stat .k { font-size: 8px; color: rgba(243,227,186,0.5); letter-spacing: .14em; text-transform: uppercase; margin-top: 2px; }

/* quests */
.sh-quests .q {
  margin-top: 8px; padding: 8px 10px;
  border: 1px solid rgba(255,215,0,0.14);
  border-radius: 8px;
  background: rgba(255,215,0,0.03);
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
}
.sh-quests .q .chk {
  width: 14px; height: 14px; border-radius: 4px;
  border: 1px solid rgba(255,215,0,0.4);
  display: grid; place-items: center; flex-shrink: 0;
}
.sh-quests .q.done .chk { background: var(--sh-gold); color: var(--sh-ink); }
.sh-quests .q .xp { margin-left: auto; font-size: 9px; color: var(--sh-gold); letter-spacing: .08em; }
.sh-quests .q.done .label { text-decoration: line-through; color: rgba(243,227,186,0.4); }
.sh-quests .label { color: var(--sh-text); }

/* ---- tether phone screens ---- */
.t-screen {
  background:
    radial-gradient(70% 50% at 50% 20%, rgba(212,185,239,0.10), transparent 60%),
    linear-gradient(180deg, var(--t-bg-2) 0%, var(--t-bg) 100%);
  color: var(--t-cream);
  font-family: 'Inter', sans-serif;
  padding: 38px 16px 16px;
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.t-screen::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 30% at 50% 100%, rgba(238,92,112,0.12), transparent 70%);
}
.t-screen .top { display: flex; justify-content: space-between; font-size: 10px; color: var(--t-meta); letter-spacing: .14em; text-transform: uppercase; }
.t-screen .h { font-size: 13px; color: var(--t-cream); text-align: center; margin-top: 18px; letter-spacing: .04em; font-weight: 500; }
.t-screen .sub { font-size: 10px; color: var(--t-meta); text-align: center; letter-spacing: .18em; text-transform: uppercase; margin-top: 4px; font-family: 'DM Mono', ui-monospace, monospace; }

/* thread (globe view) */
.t-thread { display: flex; flex-direction: column; }
.t-thread .globe {
  position: relative;
  flex: 1;
  margin-top: 12px;
  min-height: 200px;
}
.t-thread .city { position: absolute; font-size: 9px; color: var(--t-cream); letter-spacing: .14em; text-transform: uppercase; text-align: center; }
.t-thread .city .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--t-ruby));
  margin: 0 auto 4px;
  box-shadow: 0 0 14px rgba(238,92,112,0.7);
}
.t-thread .city.a { left: 10%; top: 28%; }
.t-thread .city.b { right: 10%; bottom: 28%; }
.t-thread .city .name { font-weight: 600; font-size: 10px; letter-spacing: .08em; }
.t-thread .city .km { color: var(--t-meta); font-size: 8px; margin-top: 2px; }
.t-thread .arc {
  position: absolute; inset: 0;
  pointer-events: none;
}
.t-thread .stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 6px; margin-top: 8px;
}
.t-thread .stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(245,207,138,0.14); padding: 8px; border-radius: 10px; text-align: center; }
.t-thread .stat .v { font-size: 16px; color: var(--t-gold); font-weight: 700; letter-spacing: -.02em; }
.t-thread .stat .k { font-size: 8px; color: var(--t-meta); letter-spacing: .14em; text-transform: uppercase; margin-top: 2px; font-family: 'DM Mono', monospace; }

/* pulse */
.t-pulse { align-items: center; }
.t-pulse .ring-wrap { position: relative; margin: 28px auto 0; width: 168px; height: 168px; }
.t-pulse .ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(238,92,112,0.25);
  animation: tpulse 2.4s ease-out infinite;
}
.t-pulse .ring.r2 { animation-delay: .8s; }
.t-pulse .ring.r3 { animation-delay: 1.6s; }
@keyframes tpulse { 0% { transform: scale(.7); opacity: 1; } 100% { transform: scale(1.3); opacity: 0; } }
.t-pulse .core {
  position: absolute; inset: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffd9a8, var(--t-ruby) 50%, var(--t-ruby-2));
  box-shadow: 0 0 40px rgba(238,92,112,0.6);
}
.t-pulse .label { margin-top: 32px; text-align: center; font-size: 11px; color: var(--t-meta); letter-spacing: .2em; text-transform: uppercase; font-family: 'DM Mono', monospace; }
.t-pulse .label b { display: block; color: var(--t-cream); font-size: 14px; font-weight: 500; letter-spacing: .02em; text-transform: none; margin-top: 4px; font-family: 'Inter', sans-serif; }

/* beads */
.t-beads .strip {
  margin-top: 18px;
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
}
.t-beads .bead {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(245,207,138,0.4);
  background: radial-gradient(circle at 30% 30%, rgba(245,207,138,0.5), rgba(238,92,112,0.3));
}
.t-beads .bead.photo { background: linear-gradient(135deg, #d4b9ef, #ee5c70); }
.t-beads .bead.voice { background: linear-gradient(135deg, #6fd4c0, #7cc1ea); }
.t-beads .bead.text  { background: linear-gradient(135deg, #f8d965, #f6a479); }
.t-beads .list { margin-top: 16px; }
.t-beads .item {
  display: flex; gap: 8px; align-items: center;
  padding: 8px; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(245,207,138,0.12);
  margin-bottom: 6px;
  font-size: 11px;
}
.t-beads .item .b { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.t-beads .item .when { margin-left: auto; font-size: 9px; color: var(--t-meta); font-family: 'DM Mono', monospace; }

/* starling */
.t-starling { align-items: center; }
.t-starling .star {
  margin: 22px auto 0;
  width: 110px; height: 110px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff5d8, var(--t-gold) 40%, #b4853f 80%);
  box-shadow: 0 0 40px rgba(245,207,138,0.4), inset 0 0 18px rgba(0,0,0,0.2);
  position: relative;
}
.t-starling .star::after {
  content: ""; position: absolute; inset: -16px;
  border-radius: 50%; border: 1px dashed rgba(245,207,138,0.25);
  animation: orbit 14s linear infinite;
}
@keyframes orbit { to { transform: rotate(360deg); } }
.t-starling .name { margin-top: 22px; font-size: 14px; color: var(--t-cream); letter-spacing: .02em; }
.t-starling .stage { font-size: 10px; color: var(--t-meta); letter-spacing: .2em; text-transform: uppercase; margin-top: 4px; font-family: 'DM Mono', monospace; }
.t-starling .meter {
  margin: 14px 8px 0;
  height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.t-starling .meter span { display: block; height: 100%; width: 64%; background: linear-gradient(90deg, var(--t-gold), var(--t-ruby)); }

/* ---- screenshots/showcase grid ---- */
.showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.shot {
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
}
.shot p.caption { font-size: 13px; color: var(--text-dim); margin: 16px 0 0; }
.shot .lbl { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-3); margin-bottom: 8px; font-weight: 600; }
.shot h4 { font-size: 18px; margin: 0; }

/* ---- pricing ---- */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.tier {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.02);
  position: relative;
}
.tier.featured { border-color: var(--gold-faint); background: linear-gradient(180deg, rgba(255,215,0,0.05), transparent); }
.tier .name { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-3); font-weight: 600; margin-bottom: 12px; }
.tier .price { font-size: 36px; font-weight: 800; letter-spacing: -.03em; }
.tier .price small { font-size: 14px; font-weight: 500; color: var(--text-dim); letter-spacing: 0; }
.tier .trial { font-size: 12px; color: var(--gold); margin-top: 6px; font-weight: 600; letter-spacing: .04em; }
.tier ul { list-style: none; margin: 20px 0 0; padding: 0; }
.tier li { font-size: 14px; color: var(--text-dim); padding-left: 22px; position: relative; }
.tier li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.tier .ribbon {
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-0); background: var(--gold);
  padding: 4px 8px; border-radius: 6px; font-weight: 700;
}
.tier.tether-featured { border-color: rgba(238,92,112,0.3); background: linear-gradient(180deg, rgba(238,92,112,0.06), transparent); }
.tier.tether-featured .name, .tier.tether-featured li::before { color: var(--t-ruby); }
.tier.tether-featured .ribbon { background: var(--t-ruby); color: #fff; }

/* ---- footer ---- */
footer.site {
  border-top: 1px solid var(--line);
  padding: 48px 24px;
  margin-top: 80px;
}
footer.site .inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 720px) { footer.site .inner { grid-template-columns: 1fr 1fr; } }
footer.site h5 { color: var(--text); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
footer.site a { display: block; color: var(--text-dim); font-size: 14px; margin-bottom: 8px; }
footer.site a:hover { color: var(--gold); }
footer.site .credit { color: var(--text-mute); font-size: 13px; margin-top: 16px; }
footer.site .credit p { color: var(--text-mute); }

/* ---- legal/long-form pages ---- */
.legal h1 { font-size: 38px; }
.legal h2 { font-size: 22px; margin-top: 36px; color: var(--text); }
.legal h3 { font-size: 17px; margin-top: 20px; color: var(--gold); }
.legal p, .legal li { color: var(--text-dim); font-size: 15px; }
.legal .updated { color: var(--text-mute); font-size: 13px; margin-bottom: 32px; letter-spacing: .1em; text-transform: uppercase; }
.legal a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(255,215,102,0.4); text-underline-offset: 3px; }

/* ---- back link ---- */
.back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-dim); margin-bottom: 24px;
}
.back::before { content: "←"; }

/* ---- design overview image card ---- */
.design-strip {
  margin-top: 32px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-1);
}
.design-strip img { width: 100%; display: block; }

/* ---- mobile tweaks ---- */
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .hero { padding: 80px 0 40px; }
  nav.primary { gap: 16px; }
  nav.primary a { font-size: 13px; }
  .product-card { padding: 28px 24px; min-height: auto; }
  .product-card h3 { font-size: 28px; }
}
