
@font-face {
  font-family: 'Inter';
  src: url(../fonts/inter-var-latin.woff2) format('woff2');
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --paper: #F7F8FA;
  --card: #FFFFFF;
  --ink: #17191E;
  --sub: #5D6572;
  --blue: #0976FF;
  --blue-deep: #0A66DC;
  --blue-ink: #FFFFFF;
  --acid: #F5C518;
  --acid-ink: #17191E;
  --line: #E6E9EE;
  --glass: rgba(255, 255, 255, .82);
  --shadow-soft: 0 10px 40px -12px rgba(23, 25, 30, .14);
  --shadow-big: 0 40px 90px -30px rgba(9, 118, 255, .35);
  --glow-blue: rgba(9, 118, 255, .13);
  --glow-acid: rgba(245, 197, 24, .16);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #0E0F12;
    --card: #16181D;
    --ink: #F2F3F5;
    --sub: #9AA1AB;
    --blue: #2E86FF;
    --blue-deep: #5EA0FF;
    --blue-ink: #FFFFFF;
    --acid: #F5C518;
    --acid-ink: #17191E;
    --line: #262A31;
    --glass: rgba(22, 24, 29, .82);
    --shadow-soft: 0 10px 40px -12px rgba(0, 0, 0, .5);
    --shadow-big: 0 40px 90px -30px rgba(9, 118, 255, .25);
    --glow-blue: rgba(46, 134, 255, .11);
    --glow-acid: rgba(245, 197, 24, .09);
  }
}
:root[data-theme="dark"] {
  --paper: #0E0F12;
  --card: #16181D;
  --ink: #F2F3F5;
  --sub: #9AA1AB;
  --blue: #2E86FF;
  --blue-deep: #5EA0FF;
  --blue-ink: #FFFFFF;
  --acid: #F5C518;
  --acid-ink: #17191E;
  --line: #262A31;
  --glass: rgba(22, 24, 29, .82);
  --shadow-soft: 0 10px 40px -12px rgba(0, 0, 0, .5);
  --shadow-big: 0 40px 90px -30px rgba(9, 118, 255, .25);
  --glow-blue: rgba(46, 134, 255, .11);
  --glow-acid: rgba(245, 197, 24, .09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  font-stretch: 100%;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.mono {
  font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.heavy { font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.wordmark, .heavy, .score-num, .signal .big, .bristol-read .big, .cell-ic, .privacy h2, footer .giant {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-stretch: 100%;
}

h1, h2 { font-weight: 600; letter-spacing: -.03em; line-height: 1.04; text-wrap: balance; }
h1 { font-size: clamp(2.8rem, 6.4vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }

.wrap { max-width: 1200px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 56px); }

a { color: inherit; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

/* ---------- floating pill nav ---------- */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 50;
  display: flex; align-items: center; gap: clamp(14px, 2.4vw, 28px);
  background: var(--glass);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 10px 9px 22px;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
.wordmark {
  font-weight: 700; font-size: 1.35rem; letter-spacing: -.03em;
  text-decoration: none; line-height: 1;
}
.wordmark .dot { color: var(--acid); }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 24px); list-style: none; }
.nav-links a:not(.cta) { text-decoration: none; color: var(--sub); font-size: .92rem; font-weight: 500; transition: color .2s; }
.nav-links a:not(.cta):hover { color: var(--ink); }

.cta {
  display: inline-flex; align-items: center; gap: .55em;
  background: var(--blue); color: var(--blue-ink);
  border: none; border-radius: 999px; cursor: pointer;
  padding: .9em 1.6em;
  font-family: inherit; font-stretch: 100%;
  letter-spacing: 0; text-transform: none; font-weight: 600; font-size: .95rem;
  text-decoration: none; line-height: 1;
  transition: transform .25s cubic-bezier(.2, .9, .3, 1.4), background .2s, box-shadow .25s;
}
.cta:hover { transform: translateY(-2px); background: var(--blue-deep); box-shadow: 0 12px 30px -10px rgba(9, 118, 255, .55); }
.cta.small { padding: .68em 1.25em; font-size: .85rem; }
.cta.light { background: #FFFFFF; color: var(--blue-deep); }
.cta.light:hover { background: #FFFFFF; color: var(--blue); box-shadow: 0 14px 34px -10px rgba(0, 20, 60, .45); }
.cta .arr { transition: transform .25s; display: inline-block; }
.cta:hover .arr { transform: translate(2px, -2px); }

/* ---------- hero: pinned full-viewport blue stage ---------- */
.hero {
  position: sticky; top: 0;
  display: flex; flex-direction: column;
  min-height: 100vh; min-height: 100svh;
  padding-top: clamp(96px, 13vh, 150px);
  text-align: center;
  overflow: clip;
  background: var(--blue);
  color: #FFFFFF;
}
.hero > .wrap { will-change: transform, opacity; }
.phone { will-change: transform; }
.privacy { will-change: transform, opacity; }

/* hero load sequence */
@keyframes rise-in { from { opacity: 0; transform: translateY(46px); } to { opacity: 1; transform: translateY(0); } }
@keyframes phone-up { from { opacity: 0; transform: translateY(150px); } to { opacity: 1; transform: translateY(0); } }
.hero h1 { animation: rise-in .85s cubic-bezier(.2, .7, .2, 1) .1s backwards; }
.hero .lede { animation: rise-in .85s cubic-bezier(.2, .7, .2, 1) .28s backwards; }
.hero .hero-ctas { animation: rise-in .85s cubic-bezier(.2, .7, .2, 1) .44s backwards; }
.phone { animation: phone-up 1.05s cubic-bezier(.2, .7, .2, 1) .55s backwards; }

/* the white sheet that rides up over the blue stage */
.sheet {
  position: relative; z-index: 2;
  background: var(--paper);
  border-radius: clamp(28px, 5vw, 48px) clamp(28px, 5vw, 48px) 0 0;
  box-shadow: 0 -30px 70px -30px rgba(4, 30, 80, .35);
}
.sheet .ticker { padding-top: 30px; }
.atmo { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.atmo i { position: absolute; border-radius: 50%; filter: blur(70px); }
.atmo .a1 { width: 60vw; height: 34vw; left: 20%; top: -6%; background: var(--glow-blue); }
.atmo .a2 { width: 46vw; height: 26vw; left: -12%; top: 30%; background: var(--glow-acid); }
.atmo .a3 { width: 46vw; height: 28vw; right: -12%; top: 26%; background: var(--glow-blue); }

.eyebrow { display: inline-flex; align-items: center; gap: .8em; color: var(--sub); margin-bottom: 1.4rem; }
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--acid); outline: 1px solid var(--line); }
.hero h1 { max-width: 15ch; margin-inline: auto; font-weight: 700; }
.hero h1 em { font-style: normal; color: var(--acid); }
.hero .lede { color: rgba(255, 255, 255, .88); max-width: 52ch; margin: 1.3rem auto 0; font-size: clamp(1rem, 1.4vw, 1.18rem); }
.hero-ctas { display: flex; justify-content: center; align-items: center; gap: 26px; margin-top: 1.7rem; flex-wrap: wrap; }
.ghost-link { text-decoration: none; color: var(--sub); border-bottom: 1px solid var(--line); padding-bottom: .3em; transition: color .2s, border-color .2s; }
.ghost-link:hover { color: var(--ink); border-color: var(--ink); }

/* device stage — phone rises through the fold */
.stage { position: relative; flex: 1; min-height: 230px; margin: clamp(32px, 5vw, 64px) auto 0; width: 100%; }
.phone {
  width: min(370px, 72vw); height: auto; display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 25, 70, .45));
}
.stage .phone { position: absolute; top: 0; left: 0; right: 0; margin-inline: auto; z-index: 2; }
.float-card {
  position: absolute; z-index: 3;
  background: var(--glass);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 20px 22px;
  text-align: left;
  animation: floaty 7s ease-in-out infinite;
}
.fc-score { left: clamp(0px, 6vw, 90px); top: 16%; animation-delay: 0s; }
.fc-meters { right: clamp(0px, 5vw, 70px); top: 48%; width: min(280px, 34vw); animation-delay: -3.5s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.fc-score .score-row { display: flex; align-items: center; gap: 16px; }
.ring { width: 84px; height: 84px; flex: none; }
.ring circle { fill: none; stroke-width: 7; }
.ring .track { stroke: var(--line); }
.ring .val { stroke: var(--blue); stroke-linecap: round; transform: rotate(-90deg); transform-origin: 50% 50%; }
.score-num { font-stretch: 125%; font-weight: 900; font-size: 2.4rem; line-height: 1; font-variant-numeric: tabular-nums; }
.score-cap { color: var(--sub); margin-top: .3rem; }

.meter { display: grid; gap: 7px; }
.meter + .meter { margin-top: 16px; }
.meter-top { display: flex; justify-content: space-between; align-items: baseline; }
.meter-top .name { font-weight: 600; font-size: .92rem; }
.meter-top .num { color: var(--sub); }
.meter-top .num b { color: var(--ink); font-weight: 700; }
.bar { height: 6px; border-radius: 99px; background: var(--line); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 99px; background: var(--blue); width: 0; transition: width 1.2s cubic-bezier(.2, .7, .2, 1); }

/* ---------- ticker ---------- */
.ticker { overflow: hidden; padding-block: 18px; }
.ticker-track { display: flex; gap: 3.5em; white-space: nowrap; width: max-content; color: var(--sub); animation: tick 36s linear infinite; }
.ticker-track span b { color: var(--ink); font-weight: 600; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { padding-block: clamp(64px, 9vw, 120px); }
.sec-head { text-align: center; margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head .eyebrow { margin-bottom: 1rem; }
.sec-head p { color: var(--sub); max-width: 52ch; margin: 1.2rem auto 0; }

/* signals trio */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.signal {
  background: var(--card); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(24px, 3vw, 34px);
  display: grid; gap: 14px; align-content: start;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s;
}
.signal:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.signal .tag { color: var(--blue-deep); }
.signal .big { font-stretch: 125%; font-weight: 900; font-size: clamp(2.6rem, 4.6vw, 3.6rem); line-height: 1; font-variant-numeric: tabular-nums; }
.signal .big small { font-size: .38em; font-weight: 700; color: var(--sub); font-stretch: 100%; }
.signal .chip { justify-self: start; }
.signal p { color: var(--sub); font-size: .95rem; }
.chip { display: inline-block; border: 1px solid var(--line); border-radius: 999px; padding: .42em 1em; color: var(--sub); }
.chip.blue { background: color-mix(in srgb, var(--blue) 12%, transparent); border-color: transparent; color: var(--blue-deep); font-weight: 500; }
.chip.acid { background: var(--acid); border-color: var(--acid); color: var(--acid-ink); font-weight: 500; }

/* bristol demo */
.demo-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 32px;
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--shadow-soft);
}
.bristol { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 10px; margin-top: 8px; }
.btype {
  aspect-ratio: 1 / 1.1; border: 1px solid var(--line); border-radius: 18px; background: var(--paper);
  cursor: pointer; font: inherit; color: var(--sub);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.btype:hover { border-color: var(--blue); transform: translateY(-3px); }
.btype[aria-pressed="true"] { background: var(--blue); border-color: var(--blue); color: var(--blue-ink); }
.btype .glyph { display: flex; gap: 4px; align-items: center; height: 22px; }
.btype .glyph i { display: block; background: currentColor; opacity: .85; }
.g-dot i { width: 7px; height: 7px; border-radius: 50%; }
.g-lump i { width: 11px; height: 15px; border-radius: 45%; margin-inline: -3px; }
.g-crack i { width: 34px; height: 13px; border-radius: 99px;
  -webkit-mask: repeating-linear-gradient(105deg, #000 0 6px, transparent 6px 8px); mask: repeating-linear-gradient(105deg, #000 0 6px, transparent 6px 8px); }
.g-smooth i { width: 38px; height: 12px; border-radius: 99px; }
.g-blob i { width: 15px; height: 13px; border-radius: 60% 45% 55% 50%; }
.g-ragged i { width: 13px; height: 12px; border-radius: 60% 30% 50% 35%; opacity: .6; }
.g-liquid i { width: 40px; height: 5px; border-radius: 99px; opacity: .55; }
.bristol-read {
  margin-top: 26px; border-top: 1px solid var(--line); padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: baseline;
}
.bristol-read .big { font-stretch: 125%; font-weight: 900; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.1; }
.bristol-read .desc { color: var(--sub); font-size: 1.02rem; }
.demo-note { margin-top: 28px; color: var(--sub); }
.demo-note a { color: var(--sub); }

/* bento */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cell {
  background: var(--card); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(22px, 2.6vw, 30px);
  display: grid; gap: .55rem; align-content: start;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s;
}
.cell:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.cell .cell-ic {
  width: 40px; height: 40px; border-radius: 12px; margin-bottom: .5rem;
  background: color-mix(in srgb, var(--blue) 11%, transparent);
  display: grid; place-items: center; color: var(--blue-deep); font-weight: 800; font-stretch: 125%;
}
.cell h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -.015em; }
.cell p { color: var(--sub); font-size: .93rem; }

/* social marquee */
.social { overflow: clip; }
.igrow {
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.igrow::-webkit-scrollbar { display: none; }
.igrow.dragging { cursor: grabbing; }
.igrow.dragging .ig-card { pointer-events: none; }
.ig-track { display: flex; gap: 18px; width: max-content; padding-block: 12px; }
.ig-card {
  position: relative; display: block; width: 236px; aspect-ratio: 9 / 16; flex: none;
  border-radius: 22px; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  transition: transform .3s cubic-bezier(.2, .7, .2, 1);
}
.ig-card:hover { transform: translateY(-8px) scale(1.02); }
.ig-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(rgba(10, 20, 32, .22), transparent 28%, transparent 72%, rgba(10, 20, 32, .40));
}
.ig-handle {
  position: absolute; top: 12px; left: 12px; z-index: 2; color: #FFFFFF;
  background: rgba(10, 20, 32, .45);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 999px; padding: .5em .95em;
}
.ig-play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; pointer-events: none; }
.ig-play i {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255, 255, 255, .88); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center;
  transition: transform .3s;
}
.ig-card:hover .ig-play i { transform: scale(1.12); }
.ig-play i::before {
  content: ''; display: block; width: 0; height: 0; margin-left: 5px;
  border-left: 16px solid #0A1420; border-block: 10px solid transparent;
}
.social .sec-head a { color: var(--blue-deep); text-decoration: none; }
.social .sec-head a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* privacy */
.privacy-shell { padding-block: 0; }
.privacy {
  background: var(--blue); color: var(--blue-ink);
  border-radius: 36px;
  padding: clamp(56px, 8vw, 110px) clamp(28px, 5vw, 80px);
  text-align: center;
}
.privacy h2 { font-stretch: 125%; font-weight: 900; font-size: clamp(2.4rem, 6vw, 4.8rem); letter-spacing: -.015em; }
.privacy h2 .dot { color: var(--acid); }
.privacy p { color: color-mix(in srgb, var(--blue-ink) 84%, transparent); max-width: 50ch; margin: 1.4rem auto 0; font-size: clamp(1rem, 1.4vw, 1.16rem); }
.privacy .plink { display: inline-block; margin-top: 2rem; color: var(--blue-ink); font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--acid); padding-bottom: .3em; }
.privacy .plink:hover { border-bottom-width: 4px; }

/* articles */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card {
  border: 1px solid var(--line); border-radius: 24px; background: var(--card);
  padding: clamp(22px, 2.6vw, 30px); min-height: 210px;
  display: flex; flex-direction: column; gap: 1rem; text-align: left;
}
.article-card .chip { align-self: flex-start; }
.article-card h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -.015em; margin-top: auto; }
.article-card p { color: var(--sub); font-size: .93rem; }

/* cta band */
.ctaband { text-align: center; position: relative; overflow: clip; }
.ctaband .atmo .a1 { left: 25%; top: 20%; }
.ctaband h2 { max-width: 17ch; margin-inline: auto; font-size: clamp(2.2rem, 5vw, 4.2rem); }
.ctaband .cta { margin-top: 2.4rem; font-size: 1.05rem; }
.ctaband .sub { display: block; margin-top: 1.3rem; color: var(--sub); }

/* footer — light, composed: brand left, links right */
footer {
  background: var(--card); color: var(--ink);
  padding-block: clamp(56px, 8vw, 90px) 36px; margin-top: clamp(48px, 7vw, 100px);
  border-radius: clamp(28px, 5vw, 48px) clamp(28px, 5vw, 48px) 0 0;
  border-top: 1px solid var(--line);
  box-shadow: 0 -24px 60px -36px rgba(23, 25, 30, .18);
  position: relative; z-index: 2;
}
.foot-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: clamp(36px, 6vw, 90px); flex-wrap: wrap;
  padding-bottom: clamp(40px, 6vw, 64px);
}
footer .giant {
  font-weight: 700; line-height: .95; letter-spacing: -.05em;
  font-size: clamp(3.2rem, 7.5vw, 7.2rem); margin-bottom: .9rem;
}
footer .giant .dot { color: var(--acid); }
footer .tagline { color: var(--sub); font-size: 1.02rem; margin-bottom: 1.8rem; }
.foot-brand .cta { font-size: .92rem; }
.foot-cols {
  display: grid; grid-template-columns: repeat(3, minmax(130px, max-content));
  gap: clamp(28px, 4vw, 72px);
  padding-top: clamp(8px, 2vw, 26px);
}
.foot-cols .mono { color: var(--sub); opacity: .8; display: block; margin-bottom: 1.1rem; }
.foot-cols ul { list-style: none; display: grid; gap: .7rem; }
.foot-cols a { color: var(--sub); text-decoration: none; white-space: nowrap; }
.foot-cols a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--sub); }
.foot-bottom a { color: inherit; text-decoration: none; }
.foot-bottom a:hover { color: var(--ink); }
@media (max-width: 960px) {
  .foot-top { flex-direction: column; }
  .foot-cols { grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 0; }
}

/* reveal */
.rv-target { opacity: 0; transform: translateY(52px) scale(.97); transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1); }
.rv-target.rv { opacity: 1; transform: none; }
.bento .cell:nth-child(2) { transition-delay: .08s; }
.bento .cell:nth-child(3) { transition-delay: .16s; }
.bento .cell:nth-child(4) { transition-delay: .24s; }
.bento .cell:nth-child(5) { transition-delay: .32s; }
.bento .cell:nth-child(6) { transition-delay: .40s; }
.article-grid .article-card:nth-child(2) { transition-delay: .1s; }
.article-grid .article-card:nth-child(3) { transition-delay: .2s; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .ig-card { width: 176px; border-radius: 18px; }
  .nav { gap: 12px; padding-left: 18px; }
  .nav-links li.hide-m { display: none; }
  .trio, .bento, .article-grid { grid-template-columns: 1fr; }
  .float-card { position: static; width: auto; margin: 14px auto 0; max-width: 320px; animation: none; }
  .stage { display: grid; }
  .bristol { gap: 4px; }
  .btype { border-radius: 12px; gap: 8px; }
  .btype .glyph { gap: 2px; height: 16px; }
  .g-dot i { width: 5px; height: 5px; }
  .g-lump i { width: 7px; height: 10px; margin-inline: -2px; }
  .g-crack i { width: 24px; height: 9px; }
  .g-smooth i { width: 26px; height: 8px; }
  .g-blob i { width: 10px; height: 9px; }
  .g-ragged i { width: 9px; height: 8px; }
  .g-liquid i { width: 26px; height: 4px; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero h1, .hero .lede, .hero .hero-ctas, .phone { animation: none; }
  .float-card { animation: none; }
  .ticker-track { animation: none; }
  .rv-target { opacity: 1; transform: none; transition: none; }
  .bar i { transition: none; }
  .cta, .cta .arr, .btype, .signal, .cell { transition: none; }
}

/* ---------- interior pages (support, legal, articles) ---------- */
.interior { padding-top: clamp(120px, 16vh, 170px); padding-bottom: clamp(56px, 8vw, 100px); }
.interior-head { margin-bottom: clamp(28px, 4vw, 48px); }
.interior-head .eyebrow { margin-bottom: 1rem; }
.interior-head h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.05; text-wrap: balance; }
.prose { max-width: 65ch; }
.prose > * + * { margin-top: 1em; }
.prose h2 { font-size: 1.45rem; font-weight: 700; letter-spacing: -.02em; margin-top: 2.2em; }
.prose h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -.015em; margin-top: 1.8em; }
.prose h5 { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: var(--sub); font-weight: 500; }
.prose p, .prose li { color: var(--sub); }
.prose strong, .prose b { color: var(--ink); }
.prose a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.prose ul, .prose ol { padding-left: 1.3em; display: grid; gap: .5em; }
.article-meta { display: flex; gap: 14px; align-items: center; color: var(--sub); margin-bottom: 2rem; }
.article-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 960px) { .article-list { grid-template-columns: 1fr; } }
.article-list .article-card h3 a { text-decoration: none; color: inherit; }
.article-list .article-card h3 a:hover { color: var(--blue-deep); }
.back-link { display: inline-block; margin-top: 3rem; color: var(--sub); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: .3em; }
.back-link:hover { color: var(--ink); border-color: var(--ink); }
.err-num { font-size: clamp(6rem, 20vw, 14rem); font-weight: 700; letter-spacing: -.05em; line-height: 1; color: var(--blue); }

/* ---------- 404: the zero is a toilet-paper roll ---------- */
.err-page { text-align: center; }
.err-scene {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(2px, 1.6vw, 20px);
  margin-bottom: clamp(32px, 5vw, 56px);
}
.err-4 {
  font-size: clamp(8.5rem, 24vw, 19rem);
  font-weight: 800; letter-spacing: -.06em; line-height: .8;
  color: var(--ink);
}
.tp { position: relative; display: inline-flex; flex-direction: column; align-items: center; }
.tp-roll {
  position: relative; z-index: 2;
  width: clamp(7rem, 19vw, 14.5rem); aspect-ratio: 1;
  background: var(--card);
  border: clamp(7px, 1.1vw, 12px) solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-soft);
}
.tp-tube {
  width: 40%; aspect-ratio: 1; border-radius: 50%;
  background: var(--paper);
  border: clamp(5px, .8vw, 8px) solid var(--ink);
}
.tp-sheet {
  position: relative; z-index: 1;
  width: clamp(4.2rem, 11vw, 8.5rem);
  height: clamp(5.5rem, 14vw, 11rem);
  margin-top: calc(-1 * clamp(1.6rem, 4vw, 3.2rem));
  background:
    repeating-linear-gradient(to bottom,
      transparent 0, transparent calc(25% - 2px),
      var(--line) calc(25% - 2px), var(--line) 25%),
    var(--card);
  border: 2px solid var(--line); border-top: none;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 88% 100%, 76% 94%, 63% 100%, 50% 95%, 37% 100%, 24% 94%, 12% 100%, 0 93%);
  transform-origin: top center;
  animation: tp-sway 4.5s ease-in-out infinite;
}
@keyframes tp-sway {
  0%, 100% { transform: rotate(1.5deg); }
  50% { transform: rotate(-1.5deg); }
}
.err-copy h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; letter-spacing: -.02em; margin-bottom: 1rem; }
.err-copy p { color: var(--sub); max-width: 52ch; margin-inline: auto; }
.err-copy a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  .tp-sheet { animation: none; }
}
.tp-img {
  width: clamp(7rem, 19vw, 14.5rem); aspect-ratio: 1;
  border-radius: 50%; object-fit: cover; display: block;
  border: clamp(7px, 1.1vw, 12px) solid var(--ink);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

/* ---------- careers ---------- */
.careers-lede { margin-bottom: clamp(40px, 6vw, 64px); }
.careers-lede p { font-size: clamp(1.02rem, 1.5vw, 1.18rem); max-width: 58ch; }
.careers-values { margin-bottom: clamp(40px, 6vw, 72px); }
.roles-panel {
  border: 2px dashed var(--line);
  border-radius: 32px;
  background: var(--card);
  padding: clamp(44px, 7vw, 96px) clamp(24px, 4vw, 60px);
  text-align: center;
}
.roles-panel .eyebrow { justify-content: center; margin-bottom: 1.2rem; }
.roles-panel h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 600; letter-spacing: -.03em; margin-bottom: 1rem; text-wrap: balance; }
.roles-panel p { color: var(--sub); max-width: 52ch; margin: 0 auto 2.2rem; }
.roles-panel .sub { display: block; margin-top: 1.4rem; color: var(--sub); }
.roles-panel .sub a { color: inherit; }
.roles-panel .sub a:hover { color: var(--ink); }

/* quiet date captions on article cards */
.card-date { display: block; color: var(--sub); opacity: .75; }
.article-card .card-date { margin-bottom: .35rem; }

/* ---------- seamless hero: the full phone straddles the blue/white seam ---------- */
:root { --tp-overlap: clamp(160px, 24vw, 300px); }
.hero {
  position: relative; top: auto;
  min-height: 0; display: block;
  overflow: visible;
  padding-bottom: 0;
}
.stage {
  position: relative; z-index: 3;
  height: auto; min-height: 0;
  margin: clamp(36px, 5vw, 64px) auto 0;
}
.stage .phone {
  position: relative; inset: auto;
  margin-inline: auto;
  margin-bottom: calc(-1 * var(--tp-overlap));
}
.sheet { padding-top: calc(var(--tp-overlap) + clamp(40px, 6vw, 72px)); }
.sheet .ticker { padding-top: 0; }

/* right-size the phone: never dominant on any viewport */
.stage .phone { width: min(300px, 58vw, 30vh); }
:root { --tp-overlap: clamp(110px, 15vw, 190px); }

/* ---- reel lightbox: cards play on-page instead of leaving the site ---- */
.reel-modal { position: fixed; inset: 0; z-index: 60; display: none; align-items: center; justify-content: center; }
.reel-modal.open { display: flex; }
.reel-scrim { position: absolute; inset: 0; background: rgba(10, 12, 16, 0.62); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.reel-stage { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.reel-frame { width: min(400px, 92vw); height: min(calc(100svh - 140px), 700px); border: 0; border-radius: 22px; background: #fff; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45); }
.reel-close { position: absolute; top: -14px; right: -14px; z-index: 2; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--card); color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); display: grid; place-items: center; }
.reel-close:hover { transform: scale(1.06); }
.reel-close:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.reel-out { color: #fff; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; opacity: 0.85; }
.reel-out:hover { opacity: 1; }
body.reel-modal-open { overflow: hidden; }
@media (prefers-reduced-motion: no-preference) {
  .reel-modal.open .reel-stage { animation: reelIn 0.28s cubic-bezier(0.2, 0.8, 0.2, 1); }
  @keyframes reelIn { from { transform: translateY(16px) scale(0.97); opacity: 0; } to { transform: none; opacity: 1; } }
}

/* ticker: track is 4x longer per half now, so stretch the loop to keep the
   original ~30px/s drift speed */
.ticker-track { animation-duration: 144s; }

/* closing CTA: flat blue card that bookends the hero — replaces the
   free-floating atmosphere glow that read as a washed-out slab */
.ctaband { padding-top: 0; }
.cta-card {
  background: var(--blue); color: #fff;
  border-radius: clamp(28px, 4vw, 44px);
  padding: clamp(64px, 9vw, 120px) clamp(24px, 5vw, 64px);
}
.cta-card .eyebrow { color: rgba(255, 255, 255, .78); }
.cta-card .eyebrow::before { background: var(--acid); outline: none; }
.cta-card h2 { color: #fff; }
.cta-card .sub { color: rgba(255, 255, 255, .62); }

/* footer brand block: full-strength ink + gold (no scroll fade), dot snugged
   to the wordmark, balanced rhythm down the stack */
footer .giant { opacity: 1; transform: none; margin-bottom: .4rem; }
footer .giant .dot { margin-left: -.08em; }
footer .tagline { margin-bottom: 1.5rem; }

/* ---- article pages: editorial treatment (scoped — legal/support keep plain prose) ---- */
.a-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 55; background: transparent; pointer-events: none; }
.a-progress i { display: block; height: 100%; background: var(--blue); transform: scaleX(0); transform-origin: 0 50%; }

.article-page { max-width: 760px; }
.a-head { padding-bottom: clamp(28px, 4vw, 44px); margin-bottom: clamp(32px, 5vw, 52px); border-bottom: 1px solid var(--line); position: relative; }
.a-head::after { content: ''; position: absolute; left: 0; bottom: -4.5px; width: 9px; height: 9px; border-radius: 50%; background: var(--acid); }
.a-kicker { display: flex; align-items: center; gap: 12px; color: var(--sub); margin-bottom: 1.6rem; }
.a-kicker a { color: var(--ink); text-decoration: none; }
.a-kicker a:hover { color: var(--blue-deep); }
.a-kicker .sep { width: 22px; height: 1px; background: var(--line); }
.article-page h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); font-weight: 700; letter-spacing: -.035em; line-height: 1.02; text-wrap: balance; }
.a-date { color: var(--sub); opacity: .75; margin-top: 1.3rem; }

@media (prefers-reduced-motion: no-preference) {
  .a-kicker { animation: rise-in .7s cubic-bezier(.2, .7, .2, 1) .05s backwards; }
  .article-page h1 { animation: rise-in .8s cubic-bezier(.2, .7, .2, 1) .16s backwards; }
  .a-date, .a-prose > p:first-child { animation: rise-in .8s cubic-bezier(.2, .7, .2, 1) .3s backwards; }
}

.a-prose { max-width: none; font-size: 1.06rem; line-height: 1.72; counter-reset: asec; }
.a-prose > p:first-child { font-size: clamp(1.18rem, 1.9vw, 1.34rem); line-height: 1.55; color: var(--ink); letter-spacing: -.012em; }
.a-prose h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-top: 2.6em; counter-increment: asec; }
.a-prose h2::before {
  content: counter(asec, decimal-leading-zero);
  display: block; margin-bottom: .55em;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .7rem; letter-spacing: .14em; font-weight: 500;
  color: var(--acid-ink); background: var(--acid);
  width: fit-content; padding: .32em .6em; border-radius: 999px;
}
.a-prose h3 { border-top: 1px solid var(--line); padding-top: 1.3em; margin-top: 1.7em; }
.a-prose li::marker { color: var(--acid); }
.a-prose a { text-decoration-thickness: 1.5px; }
.article-page ::selection { background: rgba(245, 197, 24, .4); }

.a-note {
  margin-top: clamp(36px, 5vw, 56px);
  border: 1.5px dashed var(--line); border-radius: 18px;
  padding: 20px 24px;
  display: grid; gap: .5rem;
}
.a-note .mono { color: var(--sub); }
.a-note p { color: var(--sub); font-size: .95rem; }
.a-note a { color: var(--blue-deep); }

.a-end {
  margin-top: clamp(28px, 4vw, 40px); padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}

/* ---------- press center (/press) ---------- */
/* Card tone for the press hub: the page itself goes white there, so cards
   need their own quiet grey rather than the usual white-on-paper. */
:root { --press-card: #F4F5F8; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) { --press-card: #1E2128; }
}
:root[data-theme="dark"] { --press-card: #1E2128; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* full-bleed black masthead — the nav pill floats over it */
.press-hero {
  background: #0B0C0F;
  padding-top: clamp(128px, 17vh, 196px);
  padding-bottom: clamp(48px, 8vh, 104px);
}
.press-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6.2vw, 5rem);
  font-weight: 600; letter-spacing: -.035em; line-height: 1;
}
body.post-type-archive-stoolio_press { background: var(--card); }
.press-page { padding-bottom: clamp(56px, 8vw, 100px); }
.press-lede {
  color: var(--sub); max-width: 62ch;
  margin-top: clamp(34px, 5vw, 56px);
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
}
.press-lede a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }

.press-section { padding-top: clamp(28px, 4vw, 50px); scroll-margin-top: 110px; }
.sec-line {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  flex-wrap: wrap; margin-bottom: clamp(20px, 3vw, 30px);
}
.sec-line h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -.025em; }
.press-feed {
  color: var(--sub); text-decoration: none; background: none; border: 0; cursor: pointer;
  border-bottom: 1px solid var(--line); padding: 0 0 .3em; font: inherit;
  font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .72rem; letter-spacing: .09em; text-transform: uppercase;
}
.press-feed:hover { color: var(--ink); border-color: var(--ink); }
.pc-feed { display: inline-block; margin-top: clamp(24px, 3vw, 34px); }
.press-note { color: var(--sub); max-width: 62ch; margin-bottom: clamp(24px, 3vw, 34px); font-size: .96rem; }
.press-note a { color: var(--blue-deep); }

/* release cards: label + date, headline, art anchored to the bottom edge */
.press-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.press-card {
  --pc-pad: clamp(24px, 2.7vw, 36px);
  position: relative; display: flex; flex-direction: column;
  background: var(--press-card); border-radius: 18px;
  padding: var(--pc-pad);
  transition: transform .28s, box-shadow .28s;
}
.press-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
/* label over date, both the same weight and size — no chips, no mono */
.pc-meta {
  display: grid; gap: 0; color: var(--sub);
  font-size: 1rem; font-weight: 600; line-height: 1.32;
  margin-bottom: clamp(30px, 3.6vw, 48px);
}
.press-card h3 {
  font-size: clamp(1.24rem, 1.6vw, 1.52rem); font-weight: 700;
  letter-spacing: -.02em; line-height: 1.26; text-wrap: balance;
  margin-bottom: clamp(36px, 4.4vw, 62px);
}
.press-card h3 a { text-decoration: none; }
/* the headline link covers the whole card */
.press-card h3 a::after { content: ''; position: absolute; inset: 0; }
.press-card:hover h3 a { color: var(--blue-deep); }
.pc-go { color: var(--blue-deep); font-size: .9rem; margin-top: -1.6rem; margin-bottom: 2rem; }
/* art is inset by the card padding and squared off, sitting on the bottom edge
   of the text block — it never bleeds to the card's rounded corners */
.pc-art { margin-top: auto; aspect-ratio: 4 / 3; overflow: hidden; }
.pc-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pc-art.is-fallback { background: linear-gradient(135deg, var(--blue) 0%, #0A57B8 100%); display: grid; place-items: center; }
.pc-art .pc-mark { width: 52%; height: auto; object-fit: contain; }
@media (max-width: 1040px) { .press-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .press-list { grid-template-columns: 1fr; } }

.press-empty {
  border: 2px dashed var(--line); border-radius: 32px; background: var(--press-card);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 56px); text-align: center;
}
.press-empty .eyebrow { justify-content: center; margin-bottom: 1.1rem; }
.press-empty h3 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 600; letter-spacing: -.03em; margin-bottom: 1rem; }
.press-empty p { color: var(--sub); max-width: 54ch; margin: 0 auto 2rem; }
.press-empty a { color: var(--blue-deep); }
.press-empty .cta { color: var(--blue-ink); }

/* media kit */
.kit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.kit-card {
  background: var(--press-card); border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; display: flex; flex-direction: column;
}
.kit-art {
  display: grid; place-items: center; padding: 26px; height: 164px;
  background:
    linear-gradient(45deg, rgba(9, 118, 255, .04) 25%, transparent 25%, transparent 75%, rgba(9, 118, 255, .04) 75%) 0 0 / 18px 18px,
    linear-gradient(45deg, rgba(9, 118, 255, .04) 25%, transparent 25%, transparent 75%, rgba(9, 118, 255, .04) 75%) 9px 9px / 18px 18px;
  border-bottom: 1px solid var(--line);
}
.kit-card.on-dark .kit-art { background: var(--ink); }
.kit-art img { max-width: 100%; max-height: 108px; object-fit: contain; }
.kit-card figcaption { padding: 18px 22px 22px; display: grid; gap: .3rem; }
.kit-note { color: var(--sub); font-size: .88rem; }
.kit-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: .5rem; }
.kit-links a { color: var(--blue-deep); text-decoration: none; border-bottom: 1px solid transparent; }
.kit-links a:hover { border-color: currentColor; }

.kit-brand {
  margin-top: 18px; display: grid; grid-template-columns: minmax(240px, .8fr) 1.2fr; gap: clamp(24px, 4vw, 48px);
  background: var(--press-card); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(24px, 3.4vw, 40px);
}
@media (max-width: 760px) { .kit-brand { grid-template-columns: 1fr; } }
.kit-brand .mono { color: var(--sub); display: block; margin-bottom: .9rem; }
.swatches ul { list-style: none; display: grid; gap: .7rem; }
.swatches li { display: flex; align-items: center; gap: .7rem; font-size: .93rem; }
.swatches i { width: 22px; height: 22px; border-radius: 7px; outline: 1px solid var(--line); flex: none; }
.swatches code { color: var(--sub); font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .82rem; margin-left: auto; }
.typeset p { color: var(--sub); font-size: .95rem; margin-bottom: 1.4rem; }
.typeset strong { color: var(--ink); }

/* fast facts */
.facts { display: grid; gap: 0; border-top: 1px solid var(--line); }
.facts > div {
  display: grid; grid-template-columns: minmax(150px, 210px) 1fr; gap: 18px;
  padding: 16px 2px; border-bottom: 1px solid var(--line);
}
@media (max-width: 640px) { .facts > div { grid-template-columns: 1fr; gap: 6px; } }
.facts dt { color: var(--sub); padding-top: .2em; }
.facts dd { color: var(--ink); }
.facts a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }

/* boilerplate */
.boiler {
  border-left: 3px solid var(--acid); background: var(--press-card);
  border-radius: 0 18px 18px 0; padding: clamp(22px, 3vw, 32px);
  color: var(--ink); font-size: 1.02rem; line-height: 1.7; max-width: 74ch;
}

.press-contact {
  background: var(--blue); color: #fff; border-radius: clamp(28px, 4vw, 40px);
  padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 60px); text-align: center;
}
.press-contact .eyebrow { justify-content: center; color: rgba(255, 255, 255, .78); margin-bottom: 1rem; }
.press-contact .eyebrow::before { background: var(--acid); outline: none; }
.press-contact h2 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 1rem; }
.press-contact p { color: rgba(255, 255, 255, .82); max-width: 52ch; margin: 0 auto 2.2rem; }
.press-contact .cta { background: #fff; color: var(--blue-deep); }
.press-contact .cta:hover { background: #fff; box-shadow: 0 14px 34px -10px rgba(0, 20, 60, .45); }
.press-contact .sub { display: block; margin-top: 1.4rem; color: rgba(255, 255, 255, .68); }
.press-contact .sub a { color: inherit; }

/* ---------- a single release ---------- */
.press-release { max-width: 800px; }
.p-crumbs { display: flex; align-items: center; gap: 10px; color: var(--sub); margin-bottom: 1.6rem; flex-wrap: wrap; }
.p-crumbs a { color: var(--ink); text-decoration: none; }
.p-crumbs a:hover { color: var(--blue-deep); }
.p-crumbs .sep { color: var(--sub); opacity: .45; }
.p-head { padding-bottom: clamp(22px, 3vw, 32px); border-bottom: 1px solid var(--line); position: relative; }
.p-head::after { content: ''; position: absolute; left: 0; bottom: -4.5px; width: 9px; height: 9px; border-radius: 50%; background: var(--acid); }
.p-head .chip { margin-bottom: 1.2rem; }
.press-release h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); font-weight: 700; letter-spacing: -.032em; line-height: 1.06; text-wrap: balance; }
.p-byline { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 1.5rem; color: var(--sub); }
.p-share { display: flex; align-items: center; gap: 16px; }
.p-share a, .p-share button {
  color: var(--sub); text-decoration: none; background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; text-transform: uppercase; letter-spacing: .09em; border-bottom: 1px solid var(--line);
}
.p-share a:hover, .p-share button:hover { color: var(--ink); border-color: var(--ink); }
.p-standfirst {
  margin-top: clamp(26px, 4vw, 38px); font-size: clamp(1.14rem, 1.9vw, 1.34rem);
  line-height: 1.5; letter-spacing: -.012em; font-weight: 600; color: var(--ink); max-width: 60ch;
}
.p-external {
  margin-top: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: 18px; padding: 16px 20px; background: var(--card);
}
.p-external .mono { color: var(--sub); }
.p-dateline { margin-top: clamp(28px, 4vw, 40px); color: var(--sub); letter-spacing: .1em; }
.p-prose { max-width: none; margin-top: .9rem; font-size: 1.04rem; line-height: 1.72; }
.p-prose > p + p { margin-top: 1.1em; }
.p-prose h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); margin-top: 2.2em; }
.p-prose li::marker { color: var(--acid); }
.p-prose blockquote {
  margin: 2em 0; padding: 20px 26px; border-left: 3px solid var(--blue);
  background: var(--card); border-radius: 0 18px 18px 0;
}
.p-prose blockquote p { color: var(--ink); font-size: 1.08rem; line-height: 1.6; }
.p-prose blockquote p + p { margin-top: .8em; color: var(--sub); font-size: .92rem; }
.press-release ::selection { background: rgba(245, 197, 24, .4); }

.p-boiler, .p-contact { margin-top: clamp(32px, 4vw, 44px); border-top: 1px solid var(--line); padding-top: clamp(20px, 3vw, 28px); }
.p-boiler h2, .p-contact h2 { color: var(--sub); font-size: .72rem; font-weight: 500; letter-spacing: .09em; margin-bottom: .8rem; }
.p-boiler p, .p-contact p { color: var(--sub); font-size: .96rem; line-height: 1.68; max-width: 70ch; }
.p-contact a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }

@media (prefers-reduced-motion: no-preference) {
  .p-crumbs { animation: rise-in .7s cubic-bezier(.2, .7, .2, 1) .05s backwards; }
  .press-release h1 { animation: rise-in .8s cubic-bezier(.2, .7, .2, 1) .14s backwards; }
  .p-byline, .p-standfirst { animation: rise-in .8s cubic-bezier(.2, .7, .2, 1) .26s backwards; }
}

/* release cover art, when a release ships with a picture */
.p-cover { margin-top: clamp(28px, 4vw, 42px); border-radius: 22px; overflow: hidden; background: var(--press-card); }
.p-cover img { width: 100%; height: auto; display: block; }

/* the floating pill sits on the press hero's black band — a translucent
   pill reads muddy there, so make it near-solid on this template only */
body.post-type-archive-stoolio_press .nav { background: rgba(255, 255, 255, .96); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) body.post-type-archive-stoolio_press .nav { background: rgba(22, 24, 29, .96); }
}
:root[data-theme="dark"] body.post-type-archive-stoolio_press .nav { background: rgba(22, 24, 29, .96); }

/* ---------- media alerts signup ---------- */
.alerts-card {
  background: var(--press-card); border-radius: 18px;
  padding: clamp(28px, 3.4vw, 52px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center;
}
@media (max-width: 860px) { .alerts-card { grid-template-columns: 1fr; } }
.alerts-copy h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; letter-spacing: -.03em; margin-bottom: .8rem; }
.alerts-copy p { color: var(--sub); max-width: 44ch; font-size: .98rem; }
.alerts-form { display: grid; gap: 14px; }
.alerts-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .alerts-row { grid-template-columns: 1fr; } }
.alerts-field { display: grid; gap: .4rem; }
.alerts-field > span {
  font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; color: var(--sub);
}
.alerts-field > span em { font-style: normal; opacity: .6; }
.alerts-field input {
  font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: .78em 1em; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.alerts-field input::placeholder { color: var(--sub); opacity: .6; }
.alerts-field input:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 18%, transparent);
}
.alerts-form .cta { justify-self: start; margin-top: 4px; border: 0; cursor: pointer; font: inherit; font-weight: 600; }
.alerts-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alerts-msg { font-size: .92rem; margin-top: 2px; }
.alerts-msg.is-good { color: var(--blue-deep); }
.alerts-msg.is-bad { color: #C2410C; }

/* the dateline keeps wire-service casing (FORT LAUDERDALE, Fla.) rather than
   the blanket uppercase the mono utility applies */
.p-dateline { text-transform: none; }

/* a single release should not sit in a third of an empty row */
.pc-text { display: contents; }
@media (min-width: 861px) {
  .press-list.is-solo { grid-template-columns: 1fr; }
  .press-list.is-solo .press-card {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 3.4vw, 52px); align-items: center;
  }
  .press-list.is-solo .pc-text { display: block; }
  .press-list.is-solo .press-card h3 { font-size: clamp(1.5rem, 2.5vw, 2.15rem); margin-bottom: 0; }
  .press-list.is-solo .pc-meta { margin-bottom: clamp(18px, 2vw, 26px); }
  .press-list.is-solo .pc-art { margin-top: 0; border-radius: 12px; }
}

/* ============================================================
   App showcase — the real product screens on a sticky device.
   Replaces the hand-rebuilt readout collage: the screenshots are
   the product, so they carry the section now.

   Device geometry mirrors appstore-assets/src/promo_frame.py —
   radius 15.42%, bezel 3.15%, titanium band 1.33% of the screen
   width — so the CSS bezel lands exactly on the rounded corners
   baked into the bare captures.
   ============================================================ */
.showcase {
  --app-blue: #2587DC;          /* sampled from the captures, scoped to this */
  --app-lime: #E6EE5A;          /* section only — brand tokens stay put      */
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
  margin-top: clamp(12px, 2vw, 28px);
}

/* ---- the sticky stage ---- */
.sc-stage {
  position: sticky;
  top: clamp(92px, 13vh, 132px);
  display: grid;
  justify-items: center;
  padding-block: clamp(8px, 2vw, 24px);
}
.sc-device {
  --sw: min(322px, 30vw, 34vh);   /* never taller than the sticky window */
  --r: calc(var(--sw) * .1542);
  --bz: calc(var(--sw) * .0315);
  --bd: calc(var(--sw) * .0133);
  position: relative;
  isolation: isolate;
}

/* colour wash behind the glass — retinted per screen */
.sc-glow {
  position: absolute; z-index: -1;
  left: 50%; top: 50%; translate: -50% -50%;
  width: 190%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--gl, rgba(37, 135, 220, .30)), transparent 62%);
  filter: blur(24px);
  transition: background .7s ease;
  pointer-events: none;
}
/* contact shadow */
.sc-device::after {
  content: ''; position: absolute; z-index: -1;
  left: 50%; bottom: -5%; translate: -50% 0;
  width: 74%; height: clamp(36px, 7vw, 66px);
  background: radial-gradient(50% 50% at 50% 50%, rgba(8, 22, 48, .34), transparent 72%);
  filter: blur(12px);
}

.sc-body {
  padding: var(--bd);
  border-radius: calc(var(--r) + var(--bz) + var(--bd));
  background: linear-gradient(135deg, #6c6c74, #26262a 18%, #1e1e22 50%, #26262a 82%, #6c6c74);
  box-shadow: 0 26px 60px -22px rgba(6, 20, 46, .55), 0 2px 6px rgba(6, 20, 46, .22);
}
.sc-screen {
  padding: var(--bz);
  border-radius: calc(var(--r) + var(--bz));
  background: #06060a;
}
.sc-glass {
  position: relative;
  width: var(--sw);
  aspect-ratio: 1206 / 2622;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper);
}
.sc-shot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .55s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}
.sc-shot.is-on { opacity: 1; transform: none; }
/* before JS wires up, the first screen is the one on show */
.showcase:not([data-ready]) .sc-shot:first-of-type { opacity: 1; transform: none; }
/* glass sheen across the display */
.sc-glass::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(116deg, rgba(255, 255, 255, .10) 0 18%, transparent 42%);
  mix-blend-mode: screen;
}

/* ---- the floating callout, one per screen ---- */
.sc-badge {
  position: absolute; z-index: 2;
  display: grid; gap: 2px;
  margin: 0;
  padding: 13px 17px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px -14px rgba(8, 22, 48, .42), 0 2px 6px rgba(8, 22, 48, .10);
  opacity: 0; visibility: hidden;
  transform: translateY(14px) scale(.94);
  transition: opacity .45s ease, transform .55s cubic-bezier(.2, .7, .2, 1), visibility .45s;
}
.sc-badge.is-on { opacity: 1; visibility: visible; transform: none; transition-delay: .12s; }
.sc-badge b {
  font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums;
  font-size: 1.32rem; line-height: 1.1; white-space: nowrap;
}
.sc-badge b small { font-size: .56em; font-weight: 700; color: var(--sub); }
.sc-badge span { color: var(--sub); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.sc-badge { left: -20%; bottom: -4%; }
@media (prefers-reduced-motion: no-preference) {
  .sc-badge.is-on { animation: sc-float 6.5s ease-in-out .7s infinite; }
  @keyframes sc-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
}

/* ---- the steps ---- */
.sc-steps { list-style: none; display: grid; }
.sc-step { position: relative; border-left: 2px solid var(--line); }
.sc-step > button {
  appearance: none; -webkit-appearance: none;
  background: none; border: 0; margin: 0; cursor: pointer;
  font: inherit; color: inherit; text-align: left;
  display: block; width: 100%;
  padding: clamp(24px, 3.4vw, 42px) 0 clamp(24px, 3.4vw, 42px) clamp(22px, 2.6vw, 36px);
}
.sc-step > button:focus-visible { outline: 2px solid var(--blue); outline-offset: -4px; border-radius: 10px; }
.sc-step::before {
  content: ''; position: absolute; left: -7px; top: clamp(30px, 4vw, 50px);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--line);
  transition: background .35s ease, box-shadow .35s ease, scale .35s cubic-bezier(.2, .7, .2, 1.4);
}
.sc-step.is-active::before {
  background: var(--app-blue); scale: 1.2;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--app-blue) 16%, transparent);
}
.sc-idx { display: block; color: var(--sub); margin-bottom: .7rem; transition: color .35s ease; }
.sc-step.is-active .sc-idx { color: var(--app-blue); }
.sc-step h3 {
  font-size: clamp(1.15rem, 1.9vw, 1.5rem); font-weight: 700; letter-spacing: -.025em;
  line-height: 1.2; color: var(--sub); transition: color .35s ease;
}
.sc-step.is-active h3 { color: var(--ink); }
.sc-step p { color: var(--sub); font-size: .96rem; margin-top: .55rem; max-width: 44ch; }

/* progress rail — fills as the reader moves down the list */
.sc-steps { position: relative; }
.sc-steps::before {
  content: ''; position: absolute; left: -2px; top: 0; width: 2px;
  background: var(--app-blue); border-radius: 2px;
  height: var(--rail, 0px); transition: height .4s cubic-bezier(.2, .7, .2, 1);
}

/* ---- stacked layout: the device pins above the steps ---- */
@media (max-width: 960px) {
  .showcase { grid-template-columns: 1fr; gap: 0; }
  /* The pinned band must be solid — a see-through mask let the step copy
     scroll through the device — and short enough to leave real reading
     room, or the phone buries the text it illustrates. */
  .sc-stage {
    position: sticky;
    top: 76px;
    z-index: 4;
    padding-block: 8px 14px;
    margin-inline: calc(-1 * clamp(20px, 4vw, 56px));
    background: var(--paper);
  }
  .sc-stage::after {
    content: ''; position: absolute; top: 100%; left: 0; right: 0;
    height: 28px; pointer-events: none;
    background: linear-gradient(var(--paper), transparent);
  }
  /* while pinned, blank the strip above the band too — otherwise step text
     re-emerges between the band and the top of the viewport */
  .is-stuck .sc-stage::before {
    content: ''; position: absolute; bottom: 100%; left: 0; right: 0;
    height: 84px; background: var(--paper);
  }
  .sc-device { --sw: min(150px, 40vw, 24vh); }
  .sc-badge { display: none; }
  .sc-steps { margin-top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .sc-shot { transition: opacity .01s; transform: none; }
  .sc-glow, .sc-steps::before { transition: none; }
  .sc-badge { transition: opacity .01s; transform: none; }
}

/* ---- hero: the device now carries a real product screen ---- */
/* a touch larger, with a soft halo so it lifts off the flat blue rather
   than sitting flush on it */
.hero .stage { position: relative; }
.hero .stage::before {
  content: ''; position: absolute; z-index: 1; pointer-events: none;
  left: 50%; top: -6%; translate: -50% 0;
  width: min(700px, 94vw); aspect-ratio: 1.12; border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(230, 238, 90, .22), rgba(230, 238, 90, 0) 70%),
    radial-gradient(closest-side, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 64%);
  filter: blur(16px);
}
.hero .stage .phone { width: min(332px, 62vw, 34vh); }
