/* PEP Social — site-wide stylesheet.
   One file for every page so the chrome (nav, footer, buttons, type) can never
   drift between them.

   THE PALETTE IS THE APP'S. Every colour below is a token from the app's own
   lib/design.ts — the flat #0F0F11 ground, the #1E1E21 raised surface, the
   white-alpha text ladder, Peppy's violet as the single accent and gold only
   where a star is. The site used to carry a near-black of its own with a blue
   cast, and light bands borrowed from the reference it was built against.

   THE LAYOUT IS THE APP'S TOO. The feed dropped its cards: content sits on the
   ground and hairlines do the separating. The site follows — sections are
   divided by rules, not boxed, and the phone mock-ups dissolve into the page
   rather than floating on drop-shadows that turned to mud on a dark ground. */

:root{
  color-scheme: dark;
  --ground:#0F0F11;
  --surface:#1E1E21;
  --surface-2:#2C2C2E;
  --ink:#FFFFFF;
  --ink-2:rgba(255,255,255,.85);
  --muted:rgba(255,255,255,.62);
  --soft:rgba(255,255,255,.50);
  --faint:rgba(255,255,255,.36);
  --line:rgba(255,255,255,.10);
  --line-2:rgba(255,255,255,.16);
  --fill:rgba(255,255,255,.06);
  --fill-2:rgba(255,255,255,.08);
  --accent:#8B7CF6;
  --accent-soft:rgba(139,124,246,.14);
  --gold:#FFC93C;
  --green:#30D158;
  --radius:16px;
  --display:"Schibsted Grotesk",-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI",system-ui,sans-serif;
  --body:"Instrument Sans",-apple-system,BlinkMacSystemFont,"SF Pro Text","Segoe UI",system-ui,sans-serif;
  --mono:"JetBrains Mono",ui-monospace,"SF Mono",Menlo,monospace;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;background:var(--ground)}
body{
  font-family:var(--body);background:var(--ground);color:var(--ink);
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
  line-height:1.55;overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font:inherit;color:inherit}
:focus-visible{outline:2px solid var(--accent);outline-offset:3px;border-radius:6px}
::selection{background:var(--accent);color:#fff}

.wrap{max-width:1140px;margin:0 auto;padding:0 24px}
.wrap-narrow{max-width:820px;margin:0 auto;padding:0 24px}

h1,h2,h3,.display{font-family:var(--display);letter-spacing:-0.035em;line-height:1.02;text-wrap:balance}
h1{font-weight:900}
h2{font-weight:800}
h3{font-weight:700;letter-spacing:-0.02em}

/* ── Header ─────────────────────────────────────────────────────────────── */
header.site{
  position:sticky;top:0;z-index:50;
  background:rgba(15,15,17,.78);backdrop-filter:saturate(140%) blur(14px);-webkit-backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:68px;gap:16px}
.brand{display:flex;align-items:center;gap:10px;font-family:var(--display);font-weight:900;font-size:20px;letter-spacing:-0.035em;flex:none}
.brand .mark{width:26px;height:26px;object-fit:contain}
.nav-links{display:flex;align-items:center;gap:30px}
.nav-links a{color:var(--muted);font-weight:500;font-size:15px;transition:color .15s}
.nav-links a:hover,.nav-links a.active{color:var(--ink)}
.nav-cta{display:flex;align-items:center;gap:10px}
.menu-btn{display:none;background:transparent;border:1px solid var(--line-2);border-radius:999px;width:42px;height:42px;align-items:center;justify-content:center;cursor:pointer;padding:0}
.mobile-menu{display:none;flex-direction:column;padding:6px 24px 18px;border-top:1px solid var(--line);background:var(--ground)}
.mobile-menu a{padding:14px 2px;color:var(--ink-2);font-weight:600;font-size:17px;border-bottom:1px solid var(--line)}
.mobile-menu a:last-child{border-bottom:none}
.mobile-menu a.active{color:var(--ink)}
body.menu-open .mobile-menu{display:flex}
@media(max-width:900px){.nav-links,.nav-cta{display:none}.menu-btn{display:flex}}
@media(min-width:901px){.mobile-menu{display:none!important}}

/* ── App Store badge ────────────────────────────────────────────────────── */
.appstore{display:inline-block;transition:opacity .15s}
.appstore:hover{opacity:.82}
.appstore img{width:168px;height:auto}
.appstore.sm img{width:132px}
.appstore.lg img{width:188px}

/* ── Buttons & labels ───────────────────────────────────────────────────── */
/* The app's primary button: solid white, black text, fully round. */
.btn{display:inline-flex;align-items:center;gap:8px;background:#fff;color:#000;font-weight:700;font-size:15px;
  border-radius:999px;padding:14px 24px;border:1px solid #fff;transition:opacity .15s;cursor:pointer}
.btn:hover{opacity:.86}
.btn.ghost{background:transparent;color:var(--ink);border-color:var(--line-2)}
.btn.ghost:hover{opacity:1;background:var(--fill)}

/* A LOG LINE. Labels across the site are set in mono, the way a protocol log
   reads — "WK 12 · 2.5MG". It is the one typographic habit that is PEP's own
   rather than borrowed, and it keeps labels from competing with headlines. */
.eyebrow{font-family:var(--mono);font-size:12px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:var(--soft)}
.eyebrow.accent{color:var(--accent)}

/* The live line above the hero headline: a pulsing dot, and the real numbers. */
.live{display:inline-flex;align-items:center;gap:10px;font-family:var(--mono);font-size:12.5px;font-weight:500;
  letter-spacing:.04em;color:var(--muted);text-transform:uppercase}
.live i{width:8px;height:8px;border-radius:50%;background:var(--green);flex:none;box-shadow:0 0 0 0 rgba(48,209,88,.55)}
.live .star{color:var(--gold)}
@media(prefers-reduced-motion:no-preference){
  .live i{animation:pulse 2.4s ease-out infinite}
  @keyframes pulse{0%{box-shadow:0 0 0 0 rgba(48,209,88,.5)}70%{box-shadow:0 0 0 9px rgba(48,209,88,0)}100%{box-shadow:0 0 0 0 rgba(48,209,88,0)}}
}

/* ── Section primitives ─────────────────────────────────────────────────── */
/* PADDING-BLOCK, NEVER THE SHORTHAND, on anything that shares an element with
   .wrap. `padding:72px 0 56px` resets .wrap's 24px sides to zero, which is
   invisible on a desktop where the column is centred with room to spare and
   runs text to the glass on a phone. Five rules did it — the hero, the subpage
   header, the CTA, the changelog, and every legal document. The same trap
   caught .compare's margin. */
.section{padding:104px 0}
.section.tight{padding:72px 0}
.rule{border-top:1px solid var(--line)}
.center{text-align:center}
.title{font-size:clamp(34px,4.4vw,52px);margin:16px 0 16px}
.lead{font-size:18px;color:var(--muted);max-width:600px;line-height:1.6}
.center .lead{margin-left:auto;margin-right:auto}

/* ── Phone mock ─────────────────────────────────────────────────────────── */
/* The frame is the real iPhone artwork (iphone-frame.png, transparent screen
   cutout); the screenshot sits underneath at the measured cutout.
   NO DROP SHADOW. It used to carry two stacked black drop-shadows, which on a
   near-black ground have nothing to fall on: they read as a dark smudge around
   the device, and inside a clipped container they were cut off mid-blur. The
   frame's own bezel separates it from the page. */
.phone{position:relative;width:280px;aspect-ratio:161/328;flex:none}
.phone .frame{position:absolute;inset:0;width:100%;height:100%;z-index:2;pointer-events:none}
.phone .screen{position:absolute;left:5%;top:1.7%;width:90.6%;height:95.4%;z-index:1;
  object-fit:cover;object-position:top;border-radius:10% / 4.9%;background:#000}
.phone.sm{width:236px}

/* ── HOME: hero ─────────────────────────────────────────────────────────── */
.hero{padding-block:72px 56px;display:grid;grid-template-columns:1.05fr .95fr;gap:32px;align-items:center}
.hero h1{font-size:clamp(46px,6.4vw,84px);margin:22px 0 22px}
.hero h1 .quiet{color:var(--faint)}
.hero .lead{margin-bottom:30px;max-width:500px}
.hero .badges{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.hero .fine{font-family:var(--mono);font-size:12px;letter-spacing:.04em;text-transform:uppercase;color:var(--faint);margin-top:16px}
/* One glow, in Peppy's violet, and it is the only one on the page. It gives the
   phones something to sit in without a shadow having to fake depth. */
.stage{position:relative;display:flex;justify-content:center;align-items:center;min-height:620px}
.stage::before{content:"";position:absolute;inset:6% 4%;border-radius:50%;
  background:radial-gradient(closest-side,rgba(139,124,246,.22),rgba(139,124,246,.06) 55%,transparent 75%);z-index:0}
.stage .phone{z-index:1}
.stage .phone.front{transform:rotate(-4deg) translateX(-52px);z-index:2}
.stage .phone.back{position:absolute;right:7%;top:58px;transform:rotate(5deg);z-index:1;opacity:.92}
@media(prefers-reduced-motion:no-preference){
  .stage .phone.front{animation:rise .7s cubic-bezier(.2,.7,.2,1) both}
  .stage .phone.back{animation:rise .7s .1s cubic-bezier(.2,.7,.2,1) both}
  @keyframes rise{from{opacity:0;translate:0 20px}to{opacity:1;translate:0 0}}
}

/* ── HOME: stats — one ruled row, not four boxes ────────────────────────── */
.stats{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.stat{padding:28px 24px 26px;border-left:1px solid var(--line)}
.stat:first-child{border-left:none;padding-left:0}
.stat .n{font-family:var(--display);font-size:44px;font-weight:900;letter-spacing:-0.04em;line-height:1}
.stat .n .star{color:var(--gold);font-size:30px;vertical-align:6px;margin-left:4px}
.stat .l{font-family:var(--mono);font-size:11.5px;letter-spacing:.06em;text-transform:uppercase;color:var(--soft);margin-top:12px}

/* ── HOME: showcase (alternating phone + copy, on the ground) ───────────── */
.showcase{display:flex;flex-direction:column;margin-top:64px}
.show{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:48px;padding:40px 0 0;border-top:1px solid var(--line)}
.show:first-child{border-top:none}
.show.flip .show-copy{order:2}
.show.flip .show-art{order:1}
.show-copy{padding:40px 0 80px}
.show-copy h3{font-size:clamp(28px,3vw,40px);margin:14px 0 16px}
.show-copy p{font-size:17px;color:var(--muted);line-height:1.65;max-width:450px}
.show-copy ul{list-style:none;margin-top:26px;display:flex;flex-direction:column}
.show-copy li{display:flex;gap:12px;align-items:center;font-size:15.5px;color:var(--ink-2);font-weight:500;padding:12px 0;border-top:1px solid var(--line);max-width:450px}
.show-copy li:last-child{border-bottom:1px solid var(--line)}
.show-copy li svg{flex:none;width:16px;height:16px;color:var(--green)}
/* The phone dissolves into the page at the bottom instead of being cropped by
   a box edge or propped up on a shadow. */
.show-art{display:flex;justify-content:center;align-self:end;
  -webkit-mask-image:linear-gradient(to bottom,#000 62%,transparent 96%);mask-image:linear-gradient(to bottom,#000 62%,transparent 96%)}
.show-art .phone{width:300px}

/* ── HOME: feature columns ──────────────────────────────────────────────── */
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-top:56px;text-align:left}
.feat{border-top:1px solid var(--line-2);padding-top:26px}
.feat .ic{width:22px;height:22px;margin-bottom:22px;color:var(--ink)}
.feat .ic.accent{color:var(--accent)}
.feat .ic svg{width:22px;height:22px}
.feat h3{font-size:22px;margin-bottom:10px}
.feat p{font-size:15.5px;color:var(--muted);line-height:1.6}
.feat .note{display:inline-block;margin-top:16px;font-family:var(--mono);font-size:11px;letter-spacing:.05em;text-transform:uppercase;color:var(--gold)}

/* ── HOME: reviews — pull quotes, not a light band of cards ─────────────── */
.band{padding:104px 0;border-top:1px solid var(--line)}
.quotes{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-top:56px;text-align:left}
.quote{border-top:1px solid var(--line-2);padding-top:24px;display:flex;flex-direction:column}
.quote .stars{color:var(--gold);font-size:13px;letter-spacing:3px}
.quote h4{font-family:var(--display);font-size:22px;font-weight:800;margin:14px 0 12px;letter-spacing:-0.02em}
.quote p{font-size:16px;color:var(--ink-2);line-height:1.6;flex:1}
.quote .who{display:flex;align-items:center;gap:10px;margin-top:22px;font-family:var(--mono);font-size:12px;letter-spacing:.04em;text-transform:uppercase;color:var(--soft)}
.quote .who .av{width:28px;height:28px;border-radius:50%;background:var(--surface-2);color:var(--ink);display:flex;align-items:center;justify-content:center;font-family:var(--display);font-weight:800;font-size:13px;flex:none;letter-spacing:0}
.band .source{margin-top:40px;font-family:var(--mono);font-size:11.5px;letter-spacing:.04em;text-transform:uppercase;color:var(--faint)}

/* ── HOME: FAQ — ruled rows, the same shape as the app's glossary ───────── */
.faq{max-width:780px;margin:48px auto 0;text-align:left;border-top:1px solid var(--line)}
.faq details{border-bottom:1px solid var(--line)}
.faq summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:22px 2px;font-family:var(--display);font-weight:700;font-size:18px;letter-spacing:-0.015em;transition:color .15s}
.faq summary:hover{color:var(--ink-2)}
.faq summary::-webkit-details-marker{display:none}
.faq summary svg{flex:none;width:18px;height:18px;color:var(--soft);transition:transform .2s}
.faq details[open] summary svg{transform:rotate(180deg);color:var(--ink)}
.faq .a{padding:0 40px 24px 2px;color:var(--muted);font-size:16px;line-height:1.65}
.faq .a a{color:var(--ink);font-weight:600;text-decoration:underline;text-underline-offset:3px;text-decoration-color:var(--line-2)}

/* ── HOME: closing CTA ──────────────────────────────────────────────────── */
.ratings{position:relative;padding:120px 0 128px;text-align:center;overflow:hidden;border-top:1px solid var(--line)}
.ratings::before{content:"";position:absolute;left:50%;top:50%;width:760px;height:520px;transform:translate(-50%,-50%);
  background:radial-gradient(closest-side,rgba(139,124,246,.16),transparent 72%);pointer-events:none}
.ratings .wrap{position:relative}
.ratings .mark-lg{width:64px;height:64px;margin:0 auto 26px;object-fit:contain}
.ratings .big-stars{color:var(--gold);font-size:18px;letter-spacing:6px;margin-bottom:18px}
.ratings h2{font-size:clamp(40px,5.6vw,68px);font-weight:900}
.ratings .meta{margin:18px 0 32px;font-family:var(--mono);font-size:12.5px;letter-spacing:.05em;text-transform:uppercase;color:var(--soft)}

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer.site{border-top:1px solid var(--line);padding:64px 0 40px;background:var(--ground)}
.fgrid{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:32px;margin-bottom:44px}
.fcol h4{font-family:var(--mono);font-size:11.5px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:var(--soft);margin-bottom:18px}
.fcol a{display:block;color:var(--ink-2);font-size:15px;font-weight:500;margin-bottom:12px;transition:color .15s}
.fcol a:hover{color:var(--ink)}
.fbrand p{color:var(--muted);font-size:15px;max-width:300px;margin:14px 0 20px;line-height:1.6}
.disclaimer{font-size:13px;color:var(--soft);line-height:1.7;border-top:1px solid var(--line);padding-top:24px;max-width:820px}
.disclaimer strong{color:var(--ink-2)}
.fbottom{display:flex;align-items:center;justify-content:space-between;margin-top:24px;color:var(--faint);font-size:13px;gap:16px;flex-wrap:wrap}
.fbottom a{color:var(--muted)}
footer.mini{border-top:1px solid var(--line);padding:30px 0;text-align:center;color:var(--faint);font-size:13.5px;margin-top:30px}
footer.mini a{color:var(--muted)}

/* ── SUBPAGES: shared page header ───────────────────────────────────────── */
.hd{text-align:center;padding-block:88px 20px}
.hd h1{font-size:clamp(42px,5.6vw,64px);margin:16px 0 18px}
.hd h1 .quiet{color:var(--faint)}
.hd p{font-size:18px;color:var(--muted);max-width:560px;margin:0 auto;line-height:1.6}

/* ── PREMIUM ────────────────────────────────────────────────────────────── */
/* margin-TOP only. The shorthand `margin:64px 0 0` reset .wrap's auto side
   margins, so this section lost its centring and sat 70px left of every other
   column on the page. */
.compare{margin-top:64px}
.compare h2{text-align:center;font-size:34px;margin-bottom:28px}
.tablewrap{overflow-x:auto;-webkit-overflow-scrolling:touch;border-top:1px solid var(--line-2)}
.compare table{width:100%;border-collapse:collapse;min-width:560px}
.compare th,.compare td{padding:16px 14px;text-align:left;font-size:15px;border-bottom:1px solid var(--line);color:var(--muted)}
.compare th{font-family:var(--mono);font-size:11.5px;font-weight:500;letter-spacing:.06em;text-transform:uppercase;color:var(--soft)}
.compare th:first-child,.compare td:first-child{padding-left:0}
.compare th.col,.compare td.col{text-align:center;width:96px;font-variant-numeric:tabular-nums}
.compare td.feat-name{color:var(--ink);font-weight:600}
.compare .yes{color:var(--ink);font-weight:800}
.compare .no{color:var(--faint)}
.cta{text-align:center;padding-block:88px 40px}
.cta h2{font-size:clamp(32px,4.2vw,46px);margin-bottom:14px}
.cta p{font-size:17px;color:var(--muted);max-width:520px;margin:0 auto 28px;line-height:1.6}
.fine{font-size:13px;color:var(--faint);margin-top:20px;line-height:1.6}

/* ── UPDATES — ruled entries, like the feed ─────────────────────────────── */
.log{padding-block:48px 40px;display:flex;flex-direction:column;max-width:760px;margin:0 auto;border-top:1px solid var(--line)}
.entry{padding:32px 0;border-bottom:1px solid var(--line)}
.entry .meta{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.entry .tag{font-family:var(--mono);font-size:11.5px;font-weight:500;letter-spacing:.04em;color:#000;background:#fff;border-radius:999px;padding:4px 10px}
.entry .date{font-family:var(--mono);font-size:12px;color:var(--soft);letter-spacing:.04em;text-transform:uppercase;font-variant-numeric:tabular-nums}
.entry h3{font-size:24px;margin-bottom:14px}
.entry ul{margin:0 0 0 18px;color:var(--muted)}
.entry li{margin-bottom:8px;font-size:16px;line-height:1.55}
.entry li strong{color:var(--ink);font-weight:700}
.more{text-align:center;color:var(--faint);font-size:14px;padding:18px 0 0}

/* ── JOBS ───────────────────────────────────────────────────────────────── */
.card{border-top:1px solid var(--line-2);border-bottom:1px solid var(--line);padding:40px 8px;margin:48px auto;text-align:center;max-width:640px}
.card h3{font-size:24px;margin-bottom:10px}
.card p{font-size:16.5px;color:var(--muted);line-height:1.6;margin:0 auto;max-width:480px}
.card .btn{margin-top:26px}

/* ── LEGAL DOCUMENTS ────────────────────────────────────────────────────── */
.back{color:var(--muted);font-weight:600;font-size:14px}
.back:hover{color:var(--ink)}
.doc{padding-block:56px 96px;line-height:1.72}
.doc h1{font-size:clamp(36px,4.6vw,50px);margin-bottom:12px}
.doc .updated{font-family:var(--mono);color:var(--faint);font-size:12.5px;letter-spacing:.04em;text-transform:uppercase;margin-bottom:18px}
.doc .intro{color:var(--ink-2);font-size:16.5px;margin-bottom:14px}
.doc h2{font-size:24px;margin:48px 0 12px;scroll-margin-top:90px}
.doc h3{font-size:18px;margin:26px 0 8px}
.doc p{color:var(--ink-2);margin-bottom:13px}
.doc ul,.doc ol{color:var(--ink-2);margin:0 0 16px 20px}
.doc li{margin-bottom:7px}
.doc strong{color:var(--ink);font-weight:700}
.doc a{color:var(--ink);text-decoration:underline;text-underline-offset:3px;text-decoration-color:var(--line-2)}
.doc .toc{border-top:1px solid var(--line-2);border-bottom:1px solid var(--line);padding:22px 0;margin:32px 0 10px}
.doc .toc h4{font-family:var(--mono);font-size:11.5px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:var(--soft);margin-bottom:14px}
.doc .toc ol{margin:0;padding-left:18px;color:var(--ink-2)}
.doc .toc ol.two{columns:2;column-gap:30px}
.doc .toc li{margin-bottom:6px;font-size:14.5px}
.doc .toc a{color:var(--ink-2);text-decoration:none;font-weight:600}
.doc .toc a:hover{color:var(--ink)}
/* Required notices keep a tint: they are the one place on a legal page where
   the colour is doing a job, not decorating. */
.doc .warn{background:rgba(255,201,60,.08);border-left:2px solid var(--gold);border-radius:0 12px 12px 0;padding:18px 20px;margin:20px 0}
.doc .warn h2{margin-top:0;color:var(--gold)}
.doc .warn p{color:var(--ink);margin:0}
.doc .good{background:rgba(48,209,88,.08);border-left:2px solid var(--green);border-radius:0 12px 12px 0;padding:18px 20px;margin:20px 0}
.doc .good p{color:var(--ink);margin:0}
.doc .note{border-top:1px solid var(--line);padding:18px 0 0;color:var(--soft);font-size:13.5px;margin:36px 0}
.doc .caps{background:var(--fill);border-radius:12px;padding:14px 16px;color:var(--ink-2);font-size:13.5px;text-transform:uppercase;letter-spacing:.02em;line-height:1.6}
.doc table{width:100%;border-collapse:collapse;margin:14px 0 20px;font-size:14px}
.doc th,.doc td{border-bottom:1px solid var(--line);padding:11px 12px 11px 0;text-align:left;vertical-align:top;color:var(--ink-2)}
.doc th{font-family:var(--mono);color:var(--soft);font-weight:500;font-size:11.5px;letter-spacing:.05em;text-transform:uppercase;border-bottom-color:var(--line-2)}
.doc td strong{color:var(--ink)}
.doc .tbl-wrap,.doc .tablewrap{overflow-x:auto;border-top:none}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media(max-width:1000px){
  .stage .phone.back{display:none}
  .stage .phone.front{transform:none}
  .stats{grid-template-columns:repeat(2,1fr)}
  .stat:nth-child(3){border-left:none;padding-left:0}
  .stat:nth-child(n+3){border-top:1px solid var(--line)}
  .grid3,.quotes{grid-template-columns:1fr;gap:32px}
  .show{grid-template-columns:1fr;gap:0}
  .show.flip .show-copy{order:1}.show.flip .show-art{order:2}
  .show-copy{padding:36px 0 28px}
  .show-art .phone{width:250px}
}
@media(max-width:900px){
  .hero{grid-template-columns:1fr;text-align:center;padding-top:52px}
  .hero .lead{margin-left:auto;margin-right:auto}
  .hero .badges{justify-content:center}
  .stage{min-height:0;margin-top:24px}
  .stage::before{inset:0 -10%}
  .stage .phone{width:250px}
  .fgrid{grid-template-columns:1fr;gap:28px}
  .section,.band{padding:80px 0}
  .ratings{padding:96px 0 104px}
}
@media(max-width:520px){
  .stat{padding:22px 14px 20px}
  .stat:nth-child(odd){padding-left:0}
  .stat .n{font-size:34px}
  .show-art .phone{width:220px}
  .faq summary{font-size:16.5px}
  .fbottom{flex-direction:column;align-items:flex-start}
  .doc .toc ol.two{columns:1}
}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important}
  html{scroll-behavior:auto}
}
