:root {
  --bg: #000;
  --bg-2: #0b0b0c;
  --card: #111113;
  --text: #f5f5f7;
  --muted: #86868b;
  --faint: rgba(245, 245, 247, 0.32);
  --line: rgba(255, 255, 255, 0.09);
  --champagne: #e3c89b;
  --green: #5fd38a;
  --sans: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Inter", system-ui, sans-serif;
  --text-font: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Inter", system-ui, sans-serif;
  --serif: "New York", "Newsreader", ui-serif, Georgia, serif;
  --gutter: clamp(16px, 4vw, 48px);
  --ease: cubic-bezier(.2, .8, .2, 1);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 400 17px/1.5 var(--text-font); letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
section { padding: clamp(96px, 14vw, 180px) var(--gutter); max-width: 1280px; margin: 0 auto; }

h1, h2, h3 { font-family: var(--sans); margin: 0; letter-spacing: -0.035em; font-weight: 600; }
.big { font-size: clamp(38px, 6vw, 80px); line-height: 1.02; text-wrap: balance; }
.huge { font-size: clamp(72px, 13vw, 180px); line-height: 0.92; }
.muted { color: var(--muted); }
.center { text-align: center; }
.kicker { font: 600 13px/1 var(--text-font); letter-spacing: 0.18em; text-transform: uppercase; color: var(--champagne); margin: 0 0 22px; }
.silver {
  background: linear-gradient(180deg, #ffffff 0%, #c9c9cc 45%, #7d7d82 55%, #e9e9ec 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 0 max(var(--gutter), calc((100% - 1180px) / 2));
  background: rgba(0, 0, 0, 0.6); border-bottom: 1px solid transparent;
  backdrop-filter: saturate(1.8) blur(20px); -webkit-backdrop-filter: saturate(1.8) blur(20px);
  transition: border-color .3s ease;
}
.nav.scrolled { border-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: 9px; font: 600 15px/1 var(--sans); letter-spacing: -0.01em; }
.brand img { border-radius: 6px; }
.links { display: flex; gap: 30px; font-size: 13px; color: rgba(245,245,247,0.78); }
.links a:hover { color: #fff; }
.nav-cta, .pill { font: 500 13px/1 var(--text-font); padding: 8px 15px; border-radius: 999px; background: #f5f5f7; color: #000; }
/* legacy markup on legal pages */
.dial { width: 14px; height: 14px; border-radius: 50%; border: 1.3px solid #cfcfcf; }
.word { font: 600 15px/1 var(--sans); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: 500 17px/1 var(--text-font); padding: 16px 28px; border-radius: 999px;
  transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover { transform: translateY(-1px) scale(1.02); }
.btn:active { transform: scale(0.97); }
.btn.light { background: #f5f5f7; color: #000; box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
.btn.light:hover { box-shadow: 0 10px 40px rgba(255,255,255,0.18); }
.btn.big { font-size: 19px; padding: 20px 36px; }
.btn.ghost { border: 1px solid rgba(255,255,255,0.22); color: #fff; }
.btn.ghost:hover { background: rgba(255,255,255,0.06); }
.btn.soon { opacity: 0.5; pointer-events: none; }
.cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-row.center { justify-content: center; }
.nocard { color: var(--muted); font-size: 15px; }

/* entrance */
.rise { opacity: 0; transform: translateY(28px); animation: rise 1.1s var(--ease) forwards; animation-delay: calc(var(--d) * 110ms + 100ms); }
@keyframes rise { to { opacity: 1; transform: none; } }

/* 1 hero */
.hero { padding-top: clamp(110px, 16vh, 170px); padding-bottom: 40px; text-align: center; }
.name {
  font-size: clamp(68px, 14vw, 196px); line-height: 0.9; letter-spacing: -0.055em; font-weight: 700;
  background: linear-gradient(180deg, #fff 30%, #a1a1a6 100%); -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: 0.06em;
}
.name .dot { color: var(--champagne); -webkit-text-fill-color: var(--champagne); }
.tag { font: 500 clamp(22px, 2.8vw, 34px)/1.2 var(--sans); letter-spacing: -0.025em; margin: 22px 0 36px; }
.tag em { font-style: normal; color: var(--muted); }
.hero .cta-row { justify-content: center; }

.hero-shot {
  position: relative; margin: clamp(56px, 8vw, 90px) auto 0; max-width: 1180px;
  border-radius: clamp(14px, 2vw, 28px); overflow: hidden; background: #111;
  box-shadow: 0 60px 160px -40px rgba(227, 200, 155, 0.18), 0 0 0 1px var(--line);
}
.stack { position: relative; aspect-ratio: 3 / 2; }
.stack img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.07); transition: opacity 1.1s ease, transform 9s cubic-bezier(.2,.6,.3,1); }
.stack img.shown { opacity: 1; transform: scale(1); }
.sim-chip {
  position: absolute; left: clamp(12px, 2vw, 24px); bottom: clamp(12px, 2vw, 24px);
  display: flex; align-items: center; gap: 10px; padding: 11px 16px 11px 14px; border-radius: 999px;
  background: rgba(20, 20, 22, 0.55); border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px) saturate(1.6); -webkit-backdrop-filter: blur(20px) saturate(1.6);
  font-size: 14px;
}
.sim-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--champagne); box-shadow: 0 0 12px var(--champagne); }
.sim-name { font-weight: 600; display: inline-block; }
.sim-by { color: rgba(255,255,255,0.6); }
.sim-by:hover { color: #fff; }
.sim-chip.swap > * { animation: swap .7s var(--ease); }
@keyframes swap { from { opacity: 0; transform: translateY(8px); filter: blur(4px); } to { opacity: 1; transform: none; filter: none; } }
.sim-bars { position: absolute; right: clamp(12px, 2vw, 24px); bottom: clamp(22px, 2.6vw, 36px); display: flex; gap: 5px; }
.sim-bars i { width: 22px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.25); overflow: hidden; position: relative; }
.sim-bars i::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
.sim-bars i.done::after { transform: scaleX(1); }
.sim-bars i.run::after { animation: fill var(--t, 2.2s) linear forwards; }
@keyframes fill { to { transform: scaleX(1); } }

/* 2 demo */
.demo { max-width: none; padding: clamp(60px, 8vw, 110px) 0; position: relative; }
.demo-pin {
  display: flex; flex-direction: column; align-items: center; gap: clamp(24px, 3.5vw, 44px);
  padding: 0 var(--gutter); overflow: hidden;
}
.demo-head { text-align: center; display: grid; justify-items: center; gap: 14px; }
.steps-dots { display: flex; gap: 4px; }
.steps-dots button { border: 0; background: none; padding: 8px 3px; cursor: pointer; display: grid; }
.steps-dots i { width: 6px; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.25); transition: width .5s var(--ease), background .5s; }
.steps-dots i.on { width: 26px; background: #fff; }
.captions { display: grid; }
.cap { grid-area: 1 / 1; font-size: clamp(40px, 6.4vw, 88px); line-height: 1; opacity: 0; transform: translateY(30px) scale(0.98); filter: blur(8px); transition: opacity .6s var(--ease), transform .7s var(--ease), filter .6s var(--ease); }
.cap.on { opacity: 1; transform: none; filter: none; }
.cap.gone { transform: translateY(-30px) scale(0.98); }
.demo-sub { color: var(--muted); margin: 0; font-size: 17px; max-width: 520px; }

/* the app, drawn in HTML so it can move; sizes in cqw so it scales as one piece */
.mac {
  width: min(1240px, 100%); container-type: inline-size;
  border-radius: 1.4cqw; overflow: hidden;
  background: radial-gradient(80% 60% at 50% 0%, #2a2a2d, #141416 70%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 50px 120px -30px rgba(0,0,0,0.9), 0 30px 140px -60px rgba(227,200,155,0.25);
  transform: perspective(1600px) rotateX(var(--tilt, 14deg)) scale(var(--sc, 0.92)); transform-origin: 50% 0;
  font-family: var(--text-font);
}
.mac-bar { height: 4.4cqw; display: flex; align-items: center; gap: 1.6cqw; padding: 0 1.4cqw; }
.lights { display: flex; gap: .6cqw; }
.lights i { width: .95cqw; height: .95cqw; border-radius: 50%; background: #ff5f57; }
.lights i:nth-child(2) { background: #febc2e; } .lights i:nth-child(3) { background: #28c840; }
.mac-word { display: flex; align-items: center; gap: .6cqw; font: 500 .85cqw/1 var(--text-font); letter-spacing: .34em; color: rgba(255,255,255,0.85); }
.mac-word u { width: .9cqw; height: .9cqw; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.8); }
.mac-tabs { flex: none; display: flex; gap: .2cqw; margin: 0 auto; padding: .3cqw; border-radius: 99px; background: rgba(255,255,255,0.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.mac-tabs b { font: 500 .95cqw/1 var(--text-font); padding: .7cqw 1.1cqw; border-radius: 99px; color: rgba(255,255,255,0.7); }
.mac-tabs b.on { background: rgba(255,255,255,0.14); color: #fff; }
.mac-status { white-space: nowrap; flex: none; font: 600 .95cqw/1 var(--text-font); display: flex; align-items: center; gap: .6cqw; padding: .65cqw 1cqw; border-radius: 99px; background: rgba(255,255,255,0.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.mac-status .m-trial { color: var(--champagne); font-weight: 500; margin-right: .3cqw; }
.mac-status i { width: .55cqw; height: .55cqw; border-radius: 50%; background: var(--green); box-shadow: 0 0 .8cqw var(--green); }
.mac-body { display: grid; grid-template-columns: 16% 1fr 25%; gap: 1.8cqw; padding: 1cqw 1.2cqw 1.2cqw; align-items: start; }

.s-head, .p-label, .p-eyebrow { margin: 0; font: 600 .75cqw/1 var(--text-font); letter-spacing: .22em; color: rgba(255,255,255,0.45); }
.s-head { padding: .6cqw 1cqw 1.2cqw; }
.slots ol { list-style: none; margin: 0; padding: 0; display: grid; gap: .3cqw; }
.slots li { display: grid; grid-template-columns: 1.8cqw 1fr 3.2cqw; align-items: center; gap: .6cqw; padding: .6cqw .7cqw; border-radius: .8cqw; position: relative; }
.slots .n { font: 300 1.7cqw/1 var(--serif); color: rgba(255,255,255,0.45); text-align: center; }
.slots .t { display: grid; gap: .25cqw; min-width: 0; }
.slots em { font: 600 1cqw/1.1 var(--text-font); font-style: normal; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.slots small { font-size: .8cqw; color: rgba(255,255,255,0.45); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.slots li img { width: 3.2cqw; height: 2.2cqw; object-fit: cover; border-radius: .3cqw; }
.slots li.on { background: rgba(255,255,255,0.08); }
.slots li.on::before { content: ""; position: absolute; left: 0; top: 25%; bottom: 25%; width: 2px; border-radius: 2px; background: var(--champagne); }
.slots li.on .n { color: var(--champagne); }
.slots em.flash, .slots small.flash { animation: flash 1.2s var(--ease); }
@keyframes flash { 0% { color: var(--champagne); transform: translateX(6px); opacity: 0; } 100% { transform: none; opacity: 1; } }

.photo { position: relative; border-radius: .6cqw; overflow: hidden; background: #000; aspect-ratio: 3 / 2; margin-top: 2cqw; box-shadow: 0 1.5cqw 4cqw rgba(0,0,0,0.5); }
.ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .35s linear; }
.ph[data-ph="base"] { opacity: 1; }
.toast {
  position: absolute; left: 50%; bottom: 1.6cqw; transform: translate(-50%, 2cqw); opacity: 0;
  display: flex; align-items: center; gap: .8cqw; padding: 1cqw 1.6cqw; border-radius: 99px;
  background: rgba(18,18,20,0.7); border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  font: 500 1.15cqw/1 var(--text-font); white-space: nowrap; transition: opacity .5s var(--ease), transform .6s var(--ease);
}
.toast svg { width: 1.5cqw; height: 1.5cqw; fill: none; stroke: var(--green); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 24; stroke-dashoffset: 24; transition: stroke-dashoffset .6s .25s var(--ease); }
.demo.saved .toast { opacity: 1; transform: translate(-50%, 0); }
.demo.saved .toast svg { stroke-dashoffset: 0; }

.panel {
  display: flex; flex-direction: column; gap: 1.2cqw; padding: 1.6cqw; border-radius: 1.6cqw; align-self: stretch;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), 0 2cqw 5cqw rgba(0,0,0,0.35);
}
.p-title { margin: -.4cqw 0 0; font: 300 2.3cqw/1.05 var(--serif); letter-spacing: -0.01em; }
.p-sub { margin: -.7cqw 0 .2cqw; font-size: .95cqw; color: rgba(255,255,255,0.55); min-height: 1.2cqw; }
.p-sub.swap { animation: swap .5s var(--ease); }
.films { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6cqw; margin-top: -.4cqw; }
.films b { display: grid; gap: .45cqw; justify-items: center; font: 500 .72cqw/1.1 var(--text-font); color: rgba(255,255,255,0.5); text-align: center; transition: color .35s; }
.films img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: .4cqw; box-shadow: 0 0 0 1.5px transparent; transition: box-shadow .35s; }
.films b.on { color: #fff; font-weight: 600; }
.films b.on img { box-shadow: 0 0 0 1.5px #fff, 0 0 1.4cqw rgba(255,255,255,0.25); }
.ring { display: grid; gap: .5cqw; }
.ring.dim { opacity: .5; }
.ring-head { display: flex; justify-content: space-between; align-items: baseline; font: 600 .75cqw/1 var(--text-font); letter-spacing: .22em; color: rgba(255,255,255,0.5); }
.ring-head strong { color: #fff; font: 300 1.3cqw/1 var(--text-font); letter-spacing: 0; font-variant-numeric: tabular-nums; }
.ring-ends { display: flex; justify-content: space-between; font-size: .72cqw; color: rgba(255,255,255,0.4); }
.ring-scale {
  position: relative; height: 2.2cqw; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
}
.ticks { position: absolute; top: 30%; bottom: 30%; left: 50%; width: 400%; margin-left: -200%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.7) 0 1px, transparent 1px 3.125%) 0 0 / 100% 100% no-repeat,
    repeating-linear-gradient(90deg, rgba(255,255,255,0.28) 0 1px, transparent 1px 0.78125%) 0 50% / 100% 50% no-repeat;
  transform: translateX(var(--shift, 0%));
}
.needle { position: absolute; left: 50%; top: 10%; bottom: 10%; width: 2px; margin-left: -1px; border-radius: 1px; background: var(--champagne); box-shadow: 0 0 .8cqw var(--champagne); }
.grain-row { display: flex; justify-content: space-between; align-items: center; font: 600 .75cqw/1 var(--text-font); letter-spacing: .22em; color: rgba(255,255,255,0.5); }
.seg { display: flex; gap: 1.2cqw; }
.seg b { position: relative; font: 500 .95cqw/1 var(--text-font); letter-spacing: 0; color: rgba(255,255,255,0.45); padding-bottom: .5cqw; transition: color .3s; }
.seg b::after { content: ""; position: absolute; left: 20%; right: 20%; bottom: 0; height: 2px; border-radius: 2px; background: var(--champagne); transform: scaleX(0); transition: transform .4s var(--ease); }
.seg b.on { color: #fff; font-weight: 600; }
.seg b.on::after { transform: none; }
.save {
  margin-top: auto; position: relative; overflow: hidden; border: 0; cursor: default;
  font: 600 1.05cqw/1 var(--text-font); padding: 1.2cqw; border-radius: 99px;
  background: linear-gradient(#f7f7f5, #d6d6d1); color: #000; box-shadow: 0 .8cqw 2.4cqw rgba(0,0,0,0.5), inset 0 1px 0 #fff;
  transition: transform .3s var(--ease), background .4s, color .4s;
}
.save span { display: block; transition: transform .5s var(--ease), opacity .4s; }
.save-b { position: absolute; inset: 0; display: grid !important; place-items: center; transform: translateY(100%); opacity: 0; }
.demo.pressing .save { transform: scale(0.95); }
.demo.saved .save { background: rgba(95, 211, 138, 0.14); color: var(--green); box-shadow: inset 0 0 0 1px rgba(95,211,138,0.35); }
.demo.saved .save-a { transform: translateY(-100%); opacity: 0; }
.demo.saved .save-b { transform: none; opacity: 1; }

/* 2b live */
.live .kicker { margin-bottom: 22px; }
.live-sub { color: var(--muted); font-size: clamp(18px, 1.8vw, 21px); max-width: 600px; margin: 26px auto 0; text-align: center; }
.live-stage {
  margin-top: clamp(50px, 7vw, 80px); display: grid; grid-template-columns: minmax(0, 1.75fr) 64px minmax(260px, 1fr); align-items: center;
  padding: clamp(24px, 3vw, 44px); border-radius: 32px; background: radial-gradient(90% 90% at 30% 20%, #1b1b1e, #0c0c0d);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
}
.cam { position: relative; }
.cam img { width: 100%; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6)); }
.hot {
  position: absolute; left: var(--x, 60%); top: var(--y, 24%); width: 5.2%; aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%; border: 1.5px solid var(--champagne); box-shadow: 0 0 0 0 rgba(227,200,155,0.5), 0 0 18px rgba(227,200,155,0.5);
  transition: left .7s var(--ease), top .7s var(--ease); animation: ping 1.6s ease-out infinite;
}
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(227,200,155,0.55), 0 0 18px rgba(227,200,155,0.5); } 100% { box-shadow: 0 0 0 18px rgba(227,200,155,0), 0 0 18px rgba(227,200,155,0.5); } }
.callout {
  position: absolute; left: var(--cx, 60%); top: var(--y, 24%); transform: translate(-50%, 34px);
  display: grid; gap: 4px; padding: 10px 14px; border-radius: 14px; white-space: nowrap;
  background: rgba(24,24,26,0.8); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: left .7s var(--ease), top .7s var(--ease), border-color .4s;
}
.callout small { font: 600 10px/1 var(--text-font); letter-spacing: .18em; text-transform: uppercase; color: var(--champagne); }
.callout b { font: 600 15px/1.1 var(--text-font); }
.callout.new { border-color: rgba(227,200,155,0.6); }
.callout.new b { animation: swap .6s var(--ease); }
.wire { position: relative; height: 2px; background: repeating-linear-gradient(90deg, rgba(255,255,255,0.25) 0 4px, transparent 4px 8px); margin: 0 6px; }
.wire i { position: absolute; top: 50%; right: 0; width: 10px; height: 10px; margin-top: -5px; border-radius: 50%; background: var(--champagne); box-shadow: 0 0 14px var(--champagne); opacity: 0; }
.live-stage.sending .wire i { animation: send .7s cubic-bezier(.6,0,.3,1) forwards; }
@keyframes send { 0% { right: 0; opacity: 1; } 90% { opacity: 1; } 100% { right: calc(100% - 10px); opacity: 0; } }
.inspector {
  padding: 26px; border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), 0 30px 60px rgba(0,0,0,0.4);
}
.i-eyebrow { margin: 0; font: 600 11px/1 var(--text-font); letter-spacing: .2em; text-transform: uppercase; color: var(--champagne); }
.i-title { margin: 10px 0 18px; font: 300 30px/1.05 var(--serif); letter-spacing: -0.01em; min-height: 1.05em; }
.i-title.swap { animation: swap .5s var(--ease); }
.i-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.i-list li { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; font-size: 14.5px; color: rgba(255,255,255,0.6); transition: background .35s, color .35s; }
.i-list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; border: 1.2px solid rgba(255,255,255,0.35); transition: all .35s; flex: none; }
.i-list li.on { background: rgba(255,255,255,0.08); color: #fff; }
.i-list li.on::before { background: var(--champagne); border-color: var(--champagne); box-shadow: 0 0 8px var(--champagne); }
.i-status { display: flex; align-items: center; gap: 9px; margin: 18px 0 0; font-size: 13.5px; color: var(--muted); }
.i-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); transition: background .3s; }
.i-status.writing .i-dot { background: var(--champagne); animation: blink .5s ease-in-out infinite alternate; }
.i-status.saved { color: var(--green); }
@keyframes blink { to { opacity: .3; } }
.live-points { list-style: none; padding: 0; margin: 34px 0 0; display: flex; justify-content: center; gap: 12px 34px; flex-wrap: wrap; color: rgba(255,255,255,0.75); font-size: 15px; }
.live-points li::before { content: "✓"; color: var(--champagne); margin-right: 8px; }

.drop { border: 1.5px dashed rgba(255,255,255,0.22); border-radius: 16px; height: 96px; display: grid; place-items: center; color: var(--muted); font-size: 15px; position: relative; overflow: hidden; }
.drop::after { content: ""; position: absolute; inset: 0; background: url(/assets/v2/t-street-chrome.webp) center / cover; opacity: 0; transform: translateY(-30%) rotate(-4deg) scale(.6); animation: dropin 4s var(--ease) infinite; }
@keyframes dropin { 0%, 20% { opacity: 0; transform: translateY(-60%) rotate(-6deg) scale(.5); } 45%, 85% { opacity: 1; transform: none; } 100% { opacity: 0; transform: none; } }

/* 3 only */
.only .big { margin-bottom: clamp(48px, 7vw, 80px); }
.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.tile {
  position: relative; overflow: hidden; border-radius: 28px; background: var(--card); padding: 34px;
  min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.tile.wide { grid-column: span 3; display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 2fr); align-items: center; gap: 40px; min-height: 0; padding: 40px; }
.tile h3 { font-size: clamp(24px, 2.2vw, 32px); line-height: 1.08; letter-spacing: -0.03em; }
.tile p { color: var(--muted); margin: 10px 0 0; font-size: 16px; }

.compare { position: relative; aspect-ratio: 3 / 2; border-radius: 18px; overflow: hidden; --p: 50%; user-select: none; touch-action: pan-y; }
.compare > img, .c-top img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.c-top { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--p)) 0 0); }
.c-handle { position: absolute; top: 0; bottom: 0; left: var(--p); width: 2px; margin-left: -1px; background: #fff; pointer-events: none; }
.c-handle i { position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; margin: -22px 0 0 -22px; border-radius: 50%; background: rgba(255,255,255,0.9); box-shadow: 0 6px 24px rgba(0,0,0,0.4); }
.c-handle i::before, .c-handle i::after { content: ""; position: absolute; top: 50%; width: 0; height: 0; border: 6px solid transparent; margin-top: -6px; }
.c-handle i::before { left: 8px; border-right-color: #000; } .c-handle i::after { right: 8px; border-left-color: #000; }
.compare input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.c-lab { position: absolute; top: 16px; font: 600 12px/1 var(--text-font); letter-spacing: .12em; text-transform: uppercase; padding: 8px 12px; border-radius: 99px; background: rgba(0,0,0,0.45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.c-lab.l { left: 16px; } .c-lab.r { right: 16px; }

.mini-slots { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.mini-slots li { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; padding: 11px 14px; border-radius: 12px; font-size: 15px; color: rgba(255,255,255,0.7); transition: background .5s, color .5s, transform .5s var(--ease); }
.mini-slots b { font-size: 12px; color: var(--faint); letter-spacing: .06em; }
.mini-slots em { font-style: normal; font-size: 12.5px; color: var(--faint); }
.mini-slots li.on { background: rgba(255,255,255,0.08); color: #fff; transform: translateX(6px); }
.mini-slots li.on b { color: var(--champagne); }

.remap { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.key { font: 600 18px/1 var(--text-font); padding: 18px 20px; border-radius: 14px; background: linear-gradient(#2a2a2e, #161618); box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 8px 20px rgba(0,0,0,0.5); }
.arrow { color: var(--faint); font-size: 22px; }
.fn { font: 600 clamp(20px, 1.8vw, 24px)/1.1 var(--sans); letter-spacing: -0.02em; color: var(--champagne); }
.fn.swap { animation: swap .55s var(--ease); }

.timeline { position: relative; height: 60px; }
.tl-line { position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3) 10%, rgba(255,255,255,0.3) 90%, transparent); }
.timeline span { position: absolute; left: var(--x); top: 50%; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: #2b2b2f; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3); transform: scale(0); transition: transform .6s var(--ease); }
.timeline span.now { background: var(--champagne); box-shadow: 0 0 0 6px rgba(227,200,155,0.15), 0 0 20px var(--champagne); }
.tile.in .timeline span { transform: scale(1); }
.tile.in .timeline span:nth-child(3) { transition-delay: .1s } .tile.in .timeline span:nth-child(4) { transition-delay: .2s }
.tile.in .timeline span:nth-child(5) { transition-delay: .3s } .tile.in .timeline span:nth-child(6) { transition-delay: .5s }

.fname { font: 500 clamp(28px, 3vw, 40px)/1 ui-monospace, "SF Mono", Menlo, monospace; letter-spacing: -0.02em; }
.fname [data-fname] { color: var(--champagne); display: inline-block; }
.fname .n { color: rgba(255,255,255,0.5); }
.fname .ch { display: inline-block; animation: flip .5s var(--ease) both; }
@keyframes flip { from { transform: rotateX(90deg); opacity: 0; } to { transform: none; opacity: 1; } }

.fw { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; padding: 12px 18px; border-radius: 99px; background: rgba(95,211,138,0.1); color: var(--green); font-weight: 500; font-size: 15px; }
.fw i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(95,211,138,0); } 0%, 100% { box-shadow: 0 0 0 0 rgba(95,211,138,0.5); } }

.dev { display: flex; align-items: center; gap: 14px; font: 500 14px/1 ui-monospace, "SF Mono", Menlo, monospace; }
.dev .raf { color: rgba(255,255,255,0.6); }
.dev .jpg { color: var(--champagne); opacity: 0; transition: opacity .4s 1.9s; }
.dev .bar { flex: 1; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.12); overflow: hidden; }
.dev .bar i { display: block; height: 100%; background: linear-gradient(90deg, rgba(227,200,155,0.3), var(--champagne)); transform: scaleX(0); transform-origin: left; transition: transform 1.8s cubic-bezier(.5,0,.2,1) .2s; }
.tile.in .dev .bar i { transform: none; } .tile.in .dev .jpg { opacity: 1; }

/* 4 numbers */
.nums { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-top: 40px; padding-bottom: 40px; text-align: center; }
.nums strong { display: block; font: 600 clamp(56px, 8vw, 110px)/1 var(--sans); letter-spacing: -0.05em; font-variant-numeric: tabular-nums; }
.nums div:last-child strong { color: var(--champagne); }
.nums span { color: var(--muted); font-size: 15px; }

/* 6 trial */
.trial { text-align: center; padding-top: clamp(80px, 10vw, 130px); }
.trial-sub { color: var(--muted); font-size: clamp(18px, 1.8vw, 22px); max-width: 560px; margin: 28px auto 40px; }
.req { color: var(--faint); font-size: 13px; margin: 18px 0 0; }
.keep {
  margin: clamp(80px, 10vw, 120px) auto 0; max-width: 820px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  padding: 28px 28px 28px 38px; border-radius: 28px; background: var(--card); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07); text-align: left;
}
.keep-price span { font: 600 56px/1 var(--sans); letter-spacing: -0.04em; }
.keep-price em { font-style: normal; color: var(--muted); margin-left: 8px; }
.keep ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: auto auto; gap: 6px 26px; color: rgba(255,255,255,0.75); font-size: 15px; }
.keep li::before { content: "✓"; color: var(--champagne); margin-right: 8px; }

/* 7 faq */
.faq { max-width: 760px; padding-top: 0; }
details { border-top: 1px solid var(--line); padding: 24px 0; }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; font: 600 20px/1.3 var(--sans); letter-spacing: -0.02em; display: flex; justify-content: space-between; gap: 20px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-weight: 300; color: var(--muted); font-size: 26px; line-height: 0.9; transition: transform .3s var(--ease); }
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--muted); margin: 14px 0 0; }
details a { color: var(--champagne); }

/* footer */
.foot { max-width: 1180px; margin: 0 auto; padding: 50px var(--gutter) 50px; border-top: 1px solid var(--line); }
.foot-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot nav { display: flex; gap: 22px; font-size: 13px; color: var(--muted); }
.foot nav a:hover { color: #fff; }
.legal { color: var(--faint); font-size: 12px; max-width: 760px; margin: 22px 0 0; }

/* reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1.2s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.bento .reveal:nth-child(3n+2) { transition-delay: .08s; } .bento .reveal:nth-child(3n) { transition-delay: .16s; }

/* legal pages */
.eyebrow { font: 600 12px/1 var(--text-font); letter-spacing: .18em; text-transform: uppercase; color: var(--faint); margin: 0 0 18px; }
.doc { max-width: 720px; padding-top: 140px; }
.doc h1 { font-size: clamp(40px, 5vw, 60px); margin-bottom: 10px; }
.doc h2 { font-size: 24px; margin: 40px 0 10px; }
.doc p, .doc li { color: var(--muted); }
.doc a { color: var(--champagne); }
.grain { display: none; }

@media (max-width: 900px) {
  .links { display: none; }
  .bento { grid-template-columns: 1fr; }
  .tile.wide { grid-column: auto; grid-template-columns: 1fr; padding: 28px; gap: 24px; }
  .tile { min-height: 0; padding: 28px; }
  .nums { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .mac { width: 100%; }
  .mac-tabs b:not(.on), .mac-word, .mac-status .m-trial { display: none; }
  .mac-body { grid-template-columns: 1fr; }
  .slots, .ring.dim, .p-eyebrow, .p-label, .ring-ends { display: none; }
  .photo { margin-top: 0; }
  .panel { display: grid; grid-template-columns: 1fr 1fr; gap: 3cqw; padding: 4cqw; border-radius: 4cqw; }
  .p-title { font-size: 6cqw; } .p-sub { font-size: 3cqw; margin: 0; align-self: end; text-align: right; }
  .films { grid-column: 1 / -1; gap: 2cqw; } .films b { font-size: 2.4cqw; gap: 1.2cqw; } .films img { border-radius: 1.2cqw; }
  .ring-head, .grain-row { font-size: 2.4cqw; } .ring-head strong { font-size: 4cqw; }
  .ring-scale { height: 6cqw; } .seg b { font-size: 3cqw; padding-bottom: 1.4cqw; } .seg { gap: 3cqw; }
  .grain-row { flex-direction: column; align-items: flex-start; gap: 2cqw; }
  .save { grid-column: 1 / -1; font-size: 3.2cqw; padding: 3.4cqw; }
  .toast { font-size: 3cqw; padding: 2.4cqw 3.6cqw; } .toast svg { width: 3.6cqw; height: 3.6cqw; }
  .mac-bar { height: 10cqw; } .lights i { width: 2cqw; height: 2cqw; } .lights { gap: 1.2cqw; }
  .mac-tabs b, .mac-status { font-size: 2.8cqw; padding: 1.8cqw 2.8cqw; } .mac-status i { width: 1.6cqw; height: 1.6cqw; }
  .keep { padding: 28px; }
  .live-stage { grid-template-columns: 1fr; gap: 18px; padding: 18px; }
  .wire { display: none; }
  .callout { padding: 7px 10px; } .callout b { font-size: 12.5px; } .callout small { font-size: 8.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .rise, .reveal { opacity: 1; transform: none; animation: none; transition: none; }
  html { scroll-behavior: auto; }
}
