/* PodPoder — podpoder.com
 *
 * Every token below is lifted verbatim from option C ("Aurora") on
 * docs/design/2026-09-04-ui-redesign-options.html, which is the app's visual
 * authority. web/check.mjs check 10 compares the two, so do not edit a value
 * here: edit the design page, then re-run the check and it will name whatever
 * fell behind.
 *
 * The dark set is declared twice — once for an explicit choice, once for the
 * System state — because CSS cannot alias one block to another. Change both
 * or neither.
 */

@font-face{
  font-family:Gabarito;
  src:url('/assets/gabarito.woff2') format('woff2-variations');
  font-weight:400 900;
  font-display:swap;
}

:root{
  --bg:#FFFBF4; --surface:#FFFFFF9E; --surface2:#FFFFFFDB;
  --ink:#211A44; --ink2:#585272;
  --line:rgba(33,26,68,.08); --glass:rgba(255,255,255,.85);
  --shadow:rgba(57,19,159,.08);
  --primary:#5B3DF5; --ghost:rgba(91,61,245,.32); --onprimary:#FFFFFF;
  --grad:linear-gradient(135deg,#5B3DF5,#C63BC0,#FF7A5C);
  --gradDeep:linear-gradient(135deg,#5B3DF5,#C236BC,#CB4A2E);
  --mesh:radial-gradient(60% 42% at 92% 0%,#FFD5A6 0%,transparent 70%),radial-gradient(52% 40% at 8% 26%,#FFC3DE 0%,transparent 70%),radial-gradient(64% 50% at 72% 100%,#D6C8FF 0%,transparent 70%);
  --meshCalm:radial-gradient(60% 42% at 92% 0%,rgba(255,213,166,.5) 0%,transparent 70%),radial-gradient(52% 40% at 8% 26%,rgba(255,195,222,.45) 0%,transparent 70%),radial-gradient(64% 50% at 72% 100%,rgba(214,200,255,.5) 0%,transparent 70%);
}

[data-theme=dark]{
  --bg:#0F0B26; --surface:#FFFFFF0F; --surface2:#FFFFFF1A;
  --ink:#F5F2FF; --ink2:#C6BEEC;
  --line:rgba(255,255,255,.09); --glass:rgba(255,255,255,.14);
  --shadow:rgba(0,0,0,.35);
  --primary:#A08CFF; --ghost:rgba(160,140,255,.38); --onprimary:#0F0B26;
  --grad:linear-gradient(135deg,#8C6DFF,#E052C8,#FF8A5C);
  --gradDeep:linear-gradient(135deg,#8C6DFF,#E052C8,#FF8A5C);
  --mesh:radial-gradient(60% 42% at 92% 0%,rgba(255,140,90,.42) 0%,transparent 70%),radial-gradient(52% 40% at 8% 28%,rgba(225,60,160,.36) 0%,transparent 70%),radial-gradient(64% 50% at 72% 100%,rgba(101,74,252,.5) 0%,transparent 70%);
  --meshCalm:radial-gradient(60% 42% at 92% 0%,rgba(255,140,90,.22) 0%,transparent 70%),radial-gradient(52% 40% at 8% 28%,rgba(225,60,160,.18) 0%,transparent 70%),radial-gradient(64% 50% at 72% 100%,rgba(101,74,252,.28) 0%,transparent 70%);
}

/* :not([data-theme=light]) is what lets an explicit Light choice win over a
   dark OS. */
@media (prefers-color-scheme:dark){
  :root:not([data-theme=light]){
    --bg:#0F0B26; --surface:#FFFFFF0F; --surface2:#FFFFFF1A;
    --ink:#F5F2FF; --ink2:#C6BEEC;
    --line:rgba(255,255,255,.09); --glass:rgba(255,255,255,.14);
    --shadow:rgba(0,0,0,.35);
    --primary:#A08CFF; --ghost:rgba(160,140,255,.38); --onprimary:#0F0B26;
    --grad:linear-gradient(135deg,#8C6DFF,#E052C8,#FF8A5C);
    --gradDeep:linear-gradient(135deg,#8C6DFF,#E052C8,#FF8A5C);
    --mesh:radial-gradient(60% 42% at 92% 0%,rgba(255,140,90,.42) 0%,transparent 70%),radial-gradient(52% 40% at 8% 28%,rgba(225,60,160,.36) 0%,transparent 70%),radial-gradient(64% 50% at 72% 100%,rgba(101,74,252,.5) 0%,transparent 70%);
    --meshCalm:radial-gradient(60% 42% at 92% 0%,rgba(255,140,90,.22) 0%,transparent 70%),radial-gradient(52% 40% at 8% 28%,rgba(225,60,160,.18) 0%,transparent 70%),radial-gradient(64% 50% at 72% 100%,rgba(101,74,252,.28) 0%,transparent 70%);
  }
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--meshCalm),var(--bg);
  background-attachment:fixed;
  color:var(--ink);
  font-family:Gabarito,system-ui,-apple-system,sans-serif;
  font-size:16px;
  line-height:1.5;
}
img{max-width:100%}

.wrap{max-width:1040px;margin:0 auto;padding:0 20px}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:20px;
  flex-wrap:wrap;
}
.controls{display:flex;align-items:center;gap:10px}
.controls button{
  padding:8px 14px;
  border-radius:999px;
  background:var(--surface2);
  border:1px solid var(--glass);
  color:var(--ink);
  font:inherit;
  font-weight:600;
  cursor:pointer;
}
.controls button:focus-visible{outline:2px solid var(--primary);outline-offset:2px}

.lang{position:relative;display:inline-block}
.lang summary{
  cursor:pointer;
  list-style:none;
  padding:8px 14px;
  border-radius:999px;
  background:var(--surface2);
  border:1px solid var(--glass);
  font-weight:600;
}
.lang summary::-webkit-details-marker{display:none}
.lang summary:focus-visible{outline:2px solid var(--primary);outline-offset:2px}
.lang ul{
  position:absolute;
  right:0;
  margin:6px 0 0;
  padding:6px;
  list-style:none;
  z-index:10;
  min-width:160px;
  background:var(--surface2);
  border:1px solid var(--glass);
  border-radius:16px;
  box-shadow:0 12px 36px var(--shadow);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
}
.lang a{display:block;padding:8px 12px;border-radius:10px;color:var(--ink);text-decoration:none}
.lang a[aria-current]{color:var(--primary);font-weight:700}
.lang a:hover,.lang a:focus-visible{background:var(--surface)}
footer .lang ul{right:auto;left:0;top:auto;bottom:100%}

.home{display:flex;border-radius:8px}
.home:focus-visible{outline:2px solid var(--primary);outline-offset:4px}
.wordmark{height:36px;width:auto}

/* The hero carries the wash at full strength and the rest of the page at the
   calm strength, as the app does. The two meet on a pseudo-element that fades
   out, because a full-strength layer that simply stops draws a hard seam
   across the page. */
.hero{position:relative;padding:56px 20px 88px;text-align:center}
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:var(--mesh);
  -webkit-mask-image:linear-gradient(to bottom,#000 55%,transparent);
  mask-image:linear-gradient(to bottom,#000 55%,transparent);
  pointer-events:none;
}
.hero > .wrap{position:relative}
.privacy{max-width:60ch;color:var(--ink2);margin:0 auto 64px;text-align:center}
footer p{margin:0 0 14px}
footer a{color:var(--ink2)}
h1{
  font-size:clamp(32px,5vw,52px);
  font-weight:800;
  letter-spacing:-.02em;
  line-height:1.08;
  margin:0 0 16px;
}
.sub{
  font-size:clamp(17px,2.2vw,20px);
  color:var(--ink2);
  max-width:52ch;
  margin:0 auto 28px;
}
.cta{
  display:inline-block;
  padding:15px 30px;
  border-radius:999px;
  background:var(--gradDeep);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:17px;
  box-shadow:0 12px 32px var(--shadow);
}
.cta:focus-visible{outline:2px solid var(--primary);outline-offset:3px}
.cta-note{color:var(--ink2);font-size:14px;margin-top:12px}
.cta-note a{color:var(--primary)}

/* ---------- the phones ----------
 *
 * Lifted from option C+ on docs/design/2026-09-04-ui-redesign-options.html,
 * trimmed to the two screens this page shows. They are live HTML rather than
 * a rasterised screenshot: they follow the page's theme for free, stay sharp
 * at any density, and cost no image bytes. The show names are invented; the
 * chrome is the app's own l10n. */

.phones{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:26px;
  margin-top:52px;
  --s:.62;
}
.phw{width:calc(393px * var(--s));height:calc(852px * var(--s));position:relative;flex:none}
.ph{
  position:absolute;
  left:0;
  top:0;
  width:393px;
  height:852px;
  transform:scale(var(--s));
  transform-origin:0 0;
  border-radius:54px;
  overflow:hidden;
  background:var(--mesh),var(--bg);
  color:var(--ink);
  font-size:15px;
  line-height:1.3;
  display:flex;
  flex-direction:column;
  text-align:left;
  box-shadow:0 0 0 9px #17161C,0 0 0 11px #4A4950,0 24px 60px var(--shadow);
}
.ph::before{
  content:'';
  position:absolute;
  top:12px;
  left:50%;
  width:122px;
  height:36px;
  margin-left:-61px;
  background:#000;
  border-radius:24px;
  z-index:5;
}
.ph-status{
  height:58px;
  flex:none;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  padding:0 32px 8px 40px;
  font-weight:600;
  font-size:16px;
  letter-spacing:-.01em;
}
.ph-hd{flex:none;display:flex;align-items:center;justify-content:space-between;padding:6px 20px 14px}
.ph-brand{display:flex;align-items:center;gap:11px;min-width:0}
.ph-mark{width:34px;height:34px;flex:none}
.ph-title{margin:0;font-size:32px;font-weight:800;letter-spacing:-.02em;line-height:1}
.ph-body{flex:1;min-height:0;display:flex;flex-direction:column;position:relative}
.ph-home{
  position:absolute;
  bottom:9px;
  left:50%;
  width:136px;
  height:5px;
  margin-left:-68px;
  border-radius:3px;
  background:var(--ink);
  opacity:.85;
  z-index:6;
}

/* list screen */
.ph-list{
  list-style:none;
  margin:0 16px;
  padding:2px 14px;
  background:var(--surface);
  border:1px solid var(--glass);
  border-radius:22px;
  box-shadow:0 10px 30px var(--shadow);
  overflow:hidden;
}
.ph-row{display:flex;align-items:center;gap:14px;padding:12px 0;border-bottom:1px solid var(--line)}
.ph-row:last-child{border-bottom:0}
.ph-rt{flex:1;min-width:0}
.ph-rt-t{font-size:17px;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ph-rt-s{font-size:14px;color:var(--ink2);margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.art{
  width:56px;
  height:56px;
  border-radius:14px;
  flex:none;
  position:relative;
  overflow:hidden;
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:800;
  font-size:22px;
}
.art-1{background:radial-gradient(circle at 50% 40%,#7FC0FF,#2C58C9 34%,#12204F 74%)}
.art-2{background:linear-gradient(135deg,#FFCF3F,#FF5A3C);color:#1A1A1A}
.art-3{background:linear-gradient(135deg,#FF7AD9,#7A3CFF)}
.art-4{background:linear-gradient(180deg,#0F3057,#00587A)}
.art-now{width:300px;height:300px;border-radius:28px;font-size:80px;margin:6px auto 24px;position:relative}
.pbtn{
  width:40px;
  height:40px;
  border-radius:50%;
  display:grid;
  place-items:center;
  flex:none;
  border:1.5px solid var(--ghost);
  color:var(--primary);
}
.pbtn svg{width:20px;height:20px}
.ph-ib{width:40px;height:40px;display:grid;place-items:center;color:var(--ink);flex:none}
.ph-ib svg{width:22px;height:22px}

/* mini player + tab bar */
.ph-mini{
  position:absolute;
  left:16px;
  right:16px;
  bottom:108px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 12px 12px 14px;
  border-radius:20px;
  border:1px solid var(--glass);
  background:var(--surface2);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  box-shadow:0 10px 30px var(--shadow);
  overflow:hidden;
  z-index:4;
}
.ph-mini .art{width:44px;height:44px;border-radius:9px}
.ph-mt{flex:1;min-width:0}
.ph-mt-t{font-size:15px;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ph-mt-s{font-size:13px;color:var(--ink2)}
.prog{position:absolute;left:0;right:0;top:0;height:2px;overflow:hidden}
.prog i{display:block;height:100%;background:var(--grad)}
.ph-tabs{
  position:absolute;
  left:16px;
  right:16px;
  bottom:24px;
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-evenly;
  padding:0 10px;
  border-radius:26px;
  background:var(--surface2);
  border:1px solid var(--glass);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  box-shadow:0 12px 36px var(--shadow);
  z-index:4;
}
.ph-tab{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  width:101px;
  height:60px;
  border-radius:19px;
  font-size:11px;
  font-weight:700;
  color:var(--ink2);
}
.ph-tab svg{width:24px;height:24px}
.ph-tab.on{background:var(--gradDeep);color:#fff;box-shadow:0 8px 20px var(--shadow)}

/* Now playing screen */
.ph-hd-now{padding:4px 12px 8px}
.ph-now-lb{font-size:15px;font-weight:600;color:var(--ink2)}
.ph-now{padding:0 20px;text-align:center;align-items:center}
.ambient{
  position:absolute;
  top:0;
  left:50%;
  width:380px;
  height:380px;
  margin-left:-190px;
  border-radius:50%;
  background:conic-gradient(from 20deg,#654AFC,#DA2DB9,#FD6566,#FEB15C,#654AFC);
  filter:blur(70px);
  opacity:.42;
  pointer-events:none;
}
[data-theme=dark] .ambient{opacity:.5}
@media (prefers-color-scheme:dark){:root:not([data-theme=light]) .ambient{opacity:.5}}
.ph-now-p{font-size:14px;font-weight:600;color:var(--ink2)}
.ph-now-t{font-size:27px;font-weight:800;line-height:1.2;margin:6px 0 8px;letter-spacing:-.02em}
.ph-now-d{font-size:14px;color:var(--ink2)}
.ph-panel{
  margin-top:auto;
  width:100%;
  background:var(--surface2);
  border:1px solid var(--glass);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  border-radius:28px;
  padding:22px 22px 24px;
  margin-bottom:28px;
  box-shadow:0 12px 36px var(--shadow);
}
.scrub{position:relative;height:4px;border-radius:2px;background:var(--line);margin:0 4px}
.scrub i{display:block;height:100%;background:var(--grad);border-radius:2px}
.scrub b{
  position:absolute;
  top:50%;
  width:16px;
  height:16px;
  margin:-8px 0 0 -8px;
  border-radius:50%;
  background:var(--primary);
  box-shadow:0 1px 4px rgba(0,0,0,.25);
}
.ph-times{
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color:var(--ink2);
  margin:10px 4px 0;
  font-variant-numeric:tabular-nums;
}
.ph-ctl{display:flex;align-items:center;justify-content:center;gap:40px;margin-top:22px}
.ph-skip{width:56px;height:56px}
.ph-skip svg{width:32px;height:32px}
.pbig{
  width:84px;
  height:84px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--gradDeep);
  color:#fff;
  box-shadow:0 16px 40px var(--shadow);
}
.pbig svg{width:38px;height:38px}

/* One phone below 720px: two at 0.62 need 520px and the page is 360 wide at
   the bottom of the range. The second is hidden rather than shrunk, because
   a 393px screen scaled under 0.5 stops being legible. */
@media (max-width:720px){
  .phones{--s:.56;gap:0}
  .phones .phw:last-child{display:none}
}

.features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
  margin:0 auto 72px;
  padding:0 20px;
  list-style:none;
}
.card{
  background:var(--surface2);
  border:1px solid var(--glass);
  border-radius:26px;
  padding:26px 24px;
  box-shadow:0 12px 36px var(--shadow);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
}
.card h2{font-size:19px;font-weight:700;margin:0 0 8px;letter-spacing:-.01em}
.card p{margin:0;color:var(--ink2);font-size:15px}

/* ---------- the policy, a reading document ----------
 *
 * One column at a reading measure, left aligned, no cards: the landing page
 * sells and this page is read. Padding is written whole rather than as a
 * top/bottom pair, because .wrap's shorthand would otherwise decide the
 * sides from wherever it happens to sit in this file. */
.doc{max-width:72ch;padding:56px 20px 80px}
.doc h1{font-size:clamp(30px,4vw,42px);margin-bottom:6px}
.doc-date{color:var(--ink2);font-size:14px;margin:0 0 36px}
.doc .lede{font-size:19px;line-height:1.6;margin:0 0 44px}
.doc section{margin:0 0 36px}
.doc h2{font-size:21px;font-weight:700;letter-spacing:-.01em;margin:0 0 12px}
.doc p,.doc li{color:var(--ink2);line-height:1.65}
.doc p{margin:0 0 12px}
.doc section p:last-child{margin-bottom:0}
.doc ul{margin:0;padding-left:22px}
.doc li{margin:0 0 10px}
.doc li:last-child{margin-bottom:0}
.doc strong{color:var(--ink);font-weight:700}
.doc a{color:var(--primary)}

footer{border-top:1px solid var(--line);padding:32px 20px 48px;color:var(--ink2);font-size:14px}

@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
