/* =================================================================
   HOLOSYNC® — Free Sessions microsite
   Plus Jakarta Sans + Lora — Calm & Clinical
   ================================================================= */

:root {
  --paper:       #FFFFFF;
  --paper-2:     #F2F5F8;
  --paper-3:     #E5EDF4;
  --ink:         #1C2B3A;
  --ink-soft:    #4A6074;
  --ink-muted:   #7A92A6;

  --slate:       #2D4A6B;
  --slate-mid:   #3A5E87;
  --slate-light: #EAF0F7;

  --sage:        #7A9E87;
  --sage-dark:   #5B7D69;

  --accent:      #5170ff;
  --accent-dark: #3a56e8;

  --border:      #CFD9E4;
  --error:       #B33A2A;

  --display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --serif:   'Lora', Georgia, 'Times New Roman', serif;

  --maxw:   1000px;
  --gutter: 32px;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* accessibility */
.skip {
  position: absolute; left: 8px; top: -48px; z-index: 100;
  background: var(--slate); color: var(--paper);
  font-family: var(--display); font-weight: 700;
  padding: 10px 16px; border-radius: 4px; text-decoration: none;
  transition: top .15s ease;
}
.skip:focus { top: 8px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--slate); outline-offset: 3px; }

/* ---------- typography ---------- */
.kicker {
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--sage-dark);
}
h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; }
h1  { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h2  { font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.08; }
h3  { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; }
.deck { font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 400; line-height: 1.65; color: var(--ink-soft); }
p { font-size: 1.05rem; }
em { font-style: italic; }
a { color: inherit; }

/* ---------- primary button ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  background: var(--accent); color: var(--paper);
  border: none; border-radius: 6px; padding: 14px 24px;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 2px 10px rgba(81, 112, 255, 0.30);
  transition: background .15s ease, box-shadow .15s ease, transform .1s ease;
  width: 100%;
}
.btn:hover { background: var(--accent-dark); box-shadow: 0 4px 16px rgba(81, 112, 255, 0.38); transform: translateY(-1px); }
.btn:active { transform: translateY(0); box-shadow: 0 1px 5px rgba(81, 112, 255, 0.2); }
.btn-auto { width: auto; }

/* secondary */
.btn-sm {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  background: transparent; color: var(--slate);
  border: 1.5px solid var(--slate); border-radius: 5px;
  padding: 8px 14px; cursor: pointer; text-decoration: none;
  transition: background .12s ease, color .12s ease;
  white-space: nowrap;
}
.btn-sm:hover { background: var(--slate); color: var(--paper); }

/* ---------- masthead ---------- */
.masthead { background: var(--paper); border-bottom: 1px solid var(--border); }
.masthead .wrap { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 18px var(--gutter); }
.wordmark { font-family: var(--display); font-weight: 800; font-size: 1.35rem; letter-spacing: -.03em; text-decoration: none; color: var(--ink); }
.masthead .tag { font-family: var(--display); font-weight: 500; font-size: 1rem; letter-spacing: .03em; color: var(--ink-muted); }

/* ---------- photo wells ---------- */
.photo {
  position: relative; background: var(--paper-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.photo::after {
  content: attr(data-label);
  font-family: var(--display); font-weight: 500; font-size: 1rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-muted); text-align: center; padding: 0 12px;
}
.photo:has(img)::after { content: none; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo.tall   { aspect-ratio: 3/4; }
.photo.wide   { aspect-ratio: 16/10; }
.photo.square { aspect-ratio: 1/1; }
.caption { font-family: var(--display); font-weight: 500; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-muted); margin-top: 8px; }

/* =================================================================
   OPT-IN PAGE
   ================================================================= */
.hero { padding: 60px 0 16px; background: var(--paper-2); }
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 52px; align-items: start; }
.feature .kicker { margin-bottom: 16px; }
.feature h1 { margin-bottom: 22px; max-width: 14ch; }
.feature .deck { max-width: 46ch; margin-bottom: 28px; }
.feature .photo { margin-top: 8px; }

/* offer box */
.offer {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 28px rgba(28, 43, 58, 0.10);
  padding: 26px 24px;
  position: sticky; top: 18px;
}
.offer .ofkick {
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 16px;
}
.offer .ofkick em { color: var(--ink); font-style: normal; }

/* tracklist */
.tracklist { list-style: none; border-top: 1px solid var(--border); }
.track {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
  width: 100%; text-align: left; cursor: pointer;
  background: transparent; border: none; border-bottom: 1px solid var(--border);
  color: var(--ink); padding: 13px 6px;
  font-family: var(--serif);
  transition: background .15s ease, padding-left .15s ease;
}
.track:hover { background: var(--paper-2); padding-left: 10px; }
.track:focus-visible { outline: 2px solid var(--slate); outline-offset: -2px; }
.track .num { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--ink-muted); width: 1.4em; }
.track .body .nm { font-family: var(--display); font-weight: 700; font-size: 1.05rem; line-height: 1.1; display: block; color: var(--ink); }
.track .body .ds { font-size: 1rem; color: var(--ink-soft); line-height: 1.35; display: block; }
.track .wave { width: 54px; height: 26px; }
.track .wave rect { fill: var(--border); }
.track[aria-checked="true"] { background: var(--slate-light); padding-left: 10px; box-shadow: inset 3px 0 0 var(--slate); }
.track[aria-checked="true"] .num { color: var(--slate); }
.track[aria-checked="true"] .wave rect { fill: var(--sage); }

.offer form { margin-top: 20px; }
.field-stack { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.offer input {
  width: 100%; font-family: var(--serif); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--border); border-radius: 5px;
  padding: 12px 14px; transition: border-color .15s ease, box-shadow .15s ease;
}
.offer input::placeholder { color: var(--ink-muted); }
.offer input:focus { outline: none; border-color: var(--slate); box-shadow: 0 0 0 3px rgba(45, 74, 107, 0.12); }
.input-error { border-color: var(--error) !important; box-shadow: 0 0 0 3px rgba(179, 58, 42, 0.12) !important; }
.offer .fineprint { font-size: 1rem; color: var(--ink-muted); margin-top: 14px; line-height: 1.5; }
.offer .phones {
  display: flex; gap: 9px; align-items: flex-start; margin-top: 14px;
  font-size: 1rem; color: var(--ink-soft);
  border-top: 1px solid var(--border); padding-top: 14px;
}
.offer .phones svg { flex: 0 0 auto; margin-top: 2px; }
.offer .phones a { color: var(--slate); font-weight: 600; }

.offer .success { display: none; }
.offer .success.show { display: block; }
.offer .success h3 { color: var(--ink); margin-bottom: 8px; }
.offer .success p { color: var(--ink-soft); font-size: 1rem; }
.offer .success .scape { color: var(--slate); }

/* by the numbers */
.figures { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-top: 72px; }
.figures .wrap { display: grid; grid-template-columns: repeat(3, 1fr); }
.fig { padding: 36px 8px; border-right: 1px solid var(--border); }
.fig:last-child { border-right: none; }
.fig .n { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: .9; letter-spacing: -.03em; }
.fig:nth-child(1) .n { color: var(--slate); }
.fig:nth-child(2) .n { color: var(--sage-dark); }
.fig:nth-child(3) .n { color: var(--ink-muted); }
.fig .l { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--ink-soft); margin-top: 8px; }

/* sessions (zigzag) */
.sessions { padding: 80px 0 24px; }
.sessions .head { max-width: 62ch; margin-bottom: 48px; }
.sessions .head h2 { margin: 14px 0 16px; }
.sessions .head p { color: var(--ink-soft); font-size: 1.1rem; max-width: 48ch; }
.srow { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 32px 0; border-top: 1px solid var(--border); }
.srow:nth-child(even) .stext { order: 2; }
.stnum { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--sage-dark); letter-spacing: .04em; }
.srow .stext h3 { margin: 6px 0 12px; }
.srow .stext p { color: var(--ink-soft); max-width: 42ch; }
.srow .stext .meta { font-family: var(--display); font-weight: 600; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); margin-top: 16px; display: inline-block; border-bottom: 2px solid var(--sage); padding-bottom: 2px; }

/* tracks 3-column */
.tracks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.track-card { border-top: 1px solid var(--border); padding-top: 28px; }
.track-icon { display: block; width: 40px; height: 40px; color: var(--sage-dark); margin-bottom: 16px; }
.track-card .stnum { display: block; margin-bottom: 6px; }
.track-card h3 { margin-bottom: 10px; }
.track-card p { color: var(--ink-soft); }
.track-card .meta { font-family: var(--display); font-weight: 600; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); margin-top: 16px; display: inline-block; border-bottom: 2px solid var(--sage); padding-bottom: 2px; }
.best-for { font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--sage-dark); margin-top: 12px; display: block; }

/* how it works */
.hiw { padding: 80px 0; background: var(--paper-2); }
.hiw .head { max-width: 48ch; margin-bottom: 48px; }
.hiw .head h2 { margin-top: 14px; }
.hiw-body { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: start; }
.hiw-steps { list-style: none; counter-reset: step; }
.hiw-steps li { counter-increment: step; position: relative; padding: 22px 0 22px 60px; border-top: 1px solid var(--border); color: var(--ink-soft); font-size: 1.05rem; }
.hiw-steps li::before { content: counter(step); position: absolute; left: 0; top: 20px; font-family: var(--display); font-weight: 800; font-size: 1.6rem; color: var(--slate); line-height: 1; width: 44px; }
.hiw-steps strong { font-family: var(--display); font-weight: 700; color: var(--ink); display: block; margin-bottom: 4px; }
.hiw-aside { background: var(--slate-light); border-radius: 8px; padding: 28px 32px; }
.hiw-aside .aside-label { font-family: var(--display); font-weight: 700; font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 14px; display: block; }
.hiw-aside p { color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }

/* why it works */
.why { background: var(--accent); color: var(--paper); margin-top: 60px; padding: 80px 0; }
.why .kicker { color: var(--sage); }
.why .grid { display: grid; grid-template-columns: .52fr 1fr .62fr; gap: 40px; align-items: start; margin-top: 18px; }
.why-photo { border-radius: 6px; overflow: hidden; align-self: stretch; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.why h2 { color: var(--paper); max-width: 16ch; margin-bottom: 24px; }
.why .prose p { color: rgba(255, 255, 255, 0.8); font-size: 1.1rem; line-height: 1.65; }
.why .prose p + p { margin-top: 18px; }
.dropcap::first-letter {
  font-family: var(--display); font-weight: 800; float: left; font-size: 4rem; line-height: .78;
  padding: 6px 12px 0 0; color: var(--sage);
}
.why .effects { list-style: none; }
.why .effects li { border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 13px 0; font-size: 1.02rem; color: rgba(255, 255, 255, 0.82); }
.why .effects li em { color: var(--sage); font-style: italic; }
.why .effects .lead-in { font-family: var(--display); font-weight: 600; font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); border: none; padding-bottom: 4px; }

/* pull quote */
.pull { padding: 80px 0; background: var(--paper-2); }
.pull .mark { font-family: var(--display); font-weight: 800; font-size: 3.5rem; color: var(--sage); line-height: .5; }
.pull .big { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.8rem, 4.5vw, 3.2rem); line-height: 1.1; display: block; margin: 8px 0 20px; max-width: 20ch; color: var(--ink); }
.pull .by { font-family: var(--display); font-weight: 600; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-muted); }

/* proof */
.proof { border-top: 1px solid var(--border); padding: 72px 0; }
.proof .kicker { margin-bottom: 24px; }
.credits { font-family: var(--serif); font-size: 1.15rem; line-height: 1.8; max-width: 60ch; margin-bottom: 54px; color: var(--ink); }
.credits .who { font-family: var(--display); font-weight: 700; }
.credits .what { color: var(--ink-soft); font-style: italic; margin: 0 18px 0 8px; }
.testi { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.testi .q { font-family: var(--serif); font-style: italic; font-size: 1.45rem; line-height: 1.25; display: block; margin-bottom: 12px; color: var(--ink); }
.testi blockquote p { color: var(--ink-soft); font-size: 1rem; }
.testi .by { font-family: var(--display); font-weight: 700; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; color: var(--slate); margin-top: 14px; display: block; }

/* about centerpointe */
.about-cri { padding: 80px 0; border-top: 1px solid var(--border); }
.about-cri h2 { margin: 14px 0 24px; max-width: 22ch; }
.about-cri p { color: var(--ink-soft); font-size: 1.1rem; max-width: 62ch; line-height: 1.65; }
.about-cri p + p { margin-top: 18px; }

/* fbox chosen display */
.fbox-chosen { font-size: 1rem; color: var(--ink-soft); margin: 4px 0 14px; }
.fbox-chosen strong { font-family: var(--display); font-weight: 700; color: var(--ink); }
.fbox-change { color: var(--slate); font-weight: 600; font-family: var(--display); font-size: 1rem; text-decoration: none; }
.fbox-change:hover { text-decoration: underline; }

/* earbuds note */
.earbuds { background: var(--slate-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.earbuds .wrap { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; padding: 28px var(--gutter); }
.earbuds h3 { font-size: 1.25rem; color: var(--ink); }
.earbuds p { color: var(--ink-soft); font-size: 1rem; margin-top: 4px; max-width: 54ch; }
.earbuds .lnk { font-family: var(--display); font-weight: 700; font-size: 1rem; white-space: nowrap; border-bottom: 2px solid var(--slate); text-decoration: none; padding-bottom: 2px; color: var(--slate); }

/* go deeper */
.deeper { padding: 80px 0; }
.deeper .grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; align-items: center; }
.deeper h2 { margin: 14px 0 18px; max-width: 18ch; }
.deeper p { color: var(--ink-soft); font-size: 1.1rem; max-width: 50ch; }
.deeper p em { color: var(--ink); font-style: italic; font-weight: 500; }
.stamp {
  width: 190px; height: 190px; border-radius: 50%; margin: 0 auto;
  border: 2px solid var(--slate);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; transform: rotate(-7deg); color: var(--slate);
}
.stamp .n { font-family: var(--display); font-weight: 800; font-size: 4rem; line-height: .8; }
.stamp .t { font-family: var(--display); font-weight: 700; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; margin-top: 6px; }
.stamp .s { font-family: var(--serif); font-style: italic; font-size: 1rem; margin-top: 6px; color: var(--ink-soft); }

/* final cta */
.final { background: var(--ink); color: var(--paper); padding: 84px 0; }
.final .grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.final .kicker { color: var(--sage); }
.final h2 { color: var(--paper); margin: 14px 0 16px; max-width: 16ch; }
.final .deck { color: rgba(255, 255, 255, 0.7); max-width: 42ch; }
.final-photo { border-radius: 6px; overflow: hidden; margin-bottom: 24px; }
.final-photo img { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: center 20%; }
.fbox { background: var(--paper); color: var(--ink); border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 4px 24px rgba(28, 43, 58, 0.16); padding: 24px; }
.fbox .lbl { font-family: var(--display); font-weight: 600; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 6px; }
.fbox .chosen { font-family: var(--display); font-weight: 800; font-size: 1.25rem; margin-bottom: 16px; }
.fbox .chosen span { color: var(--slate); }
.fbox .chosen a { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1rem; color: var(--ink-soft); margin-left: 10px; }
.fbox input { width: 100%; font-family: var(--serif); font-size: 1rem; color: var(--ink); background: var(--paper-2); border: 1.5px solid var(--border); border-radius: 5px; padding: 12px 14px; }
.fbox input:focus { outline: none; border-color: var(--slate); box-shadow: 0 0 0 3px rgba(45, 74, 107, 0.12); }
.fbox .fine { font-size: 1rem; color: var(--ink-muted); margin-top: 12px; }
.fbox .success { display: none; }
.fbox .success.show { display: block; }
.fbox .success h3 { font-family: var(--display); font-weight: 800; font-size: 1.4rem; }
.fbox .success p { color: var(--ink-soft); margin-top: 8px; }

/* =================================================================
   THANK-YOU PAGE
   ================================================================= */
.ty { padding: 72px 0 40px; }
.ty-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.ty .kicker { margin-bottom: 16px; }
.ty h1 { margin-bottom: 22px; max-width: 14ch; }
.ty .deck { max-width: 46ch; margin-bottom: 30px; }
.ty .next { list-style: none; margin: 26px 0 30px; counter-reset: step; }
.ty .next li {
  position: relative; padding: 16px 0 16px 56px;
  border-top: 1px solid var(--border);
  font-size: 1.04rem; color: var(--ink); counter-increment: step;
}
.ty .next li::before {
  content: counter(step); position: absolute; left: 0; top: 14px;
  font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--slate);
  width: 40px; text-align: left;
}
.ty .next li strong { font-family: var(--display); font-weight: 700; }
.ty .actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.ty .ghost { font-family: var(--display); font-weight: 600; font-size: 1rem; text-decoration: none; border-bottom: 2px solid var(--sage); padding-bottom: 2px; color: var(--ink); }
.ty-card {
  background: var(--slate); color: var(--paper);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(45, 74, 107, 0.25);
  padding: 32px 28px;
}
.ty-card .kicker { color: var(--sage); }
.ty-card h2 { color: var(--paper); font-size: 1.9rem; margin: 12px 0 14px; }
.ty-card p { color: rgba(255, 255, 255, 0.78); font-size: 1rem; }
.ty-card .pick { color: var(--sage); font-style: italic; }

/* =================================================================
   DOWNLOAD PAGE — custom audio players
   ================================================================= */
.dl-hero { padding: 64px 0 32px; }
.dl-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.dl-hero .kicker { margin-bottom: 16px; }
.dl-hero h1 { margin-bottom: 20px; max-width: 16ch; }
.dl-hero .deck { max-width: 50ch; }

.note-bar { background: var(--slate-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.note-bar .wrap { display: flex; gap: 14px; align-items: center; padding: 16px var(--gutter); }
.note-bar svg { flex: 0 0 auto; }
.note-bar p { color: var(--ink); font-size: 1rem; }
.note-bar strong { font-family: var(--display); font-weight: 700; }

.players { padding: 52px 0 20px; }
.player {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
  padding: 28px 0; border-top: 1px solid var(--border);
}
.player:last-of-type { border-bottom: 1px solid var(--border); }
.player .badge {
  position: absolute; transform: translateY(-38px);
  font-family: var(--display); font-weight: 700; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase;
  background: var(--slate); color: var(--paper); padding: 4px 9px; border-radius: 3px;
}
.player .index { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 4.5vw, 3rem); color: var(--border); width: 1.6em; line-height: 1; }
.player.is-active .index { color: var(--slate); }
.player .pmain { min-width: 0; }
.player .ptop { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.player h3 { font-size: 1.45rem; }
.player .pdesc { color: var(--ink-soft); font-size: 1rem; margin-top: 2px; }
.player .controls { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.player .pp {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%;
  background: var(--slate); color: var(--paper); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(45, 74, 107, 0.25);
  transition: background .12s ease, transform .12s ease, box-shadow .12s ease;
}
.player .pp:hover { background: var(--slate-mid); transform: scale(1.05); box-shadow: 0 4px 12px rgba(45, 74, 107, 0.35); }
.player .pp .ico-pause { display: none; }
.player.is-playing .pp .ico-play  { display: none; }
.player.is-playing .pp .ico-pause { display: block; }
.player .seek-wrap { flex: 1 1 auto; min-width: 120px; display: flex; align-items: center; gap: 12px; }
.player .time { font-family: var(--display); font-weight: 600; font-size: .8rem; color: var(--ink-muted); white-space: nowrap; font-variant-numeric: tabular-nums; }
input[type="range"].seek {
  -webkit-appearance: none; appearance: none; width: 100%; height: 5px;
  background: var(--paper-3); border: none; border-radius: 3px; cursor: pointer;
}
input[type="range"].seek::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 16px; height: 16px;
  background: var(--slate); border: 2px solid var(--paper); border-radius: 50%; cursor: pointer;
  box-shadow: 0 1px 4px rgba(45, 74, 107, 0.3);
}
input[type="range"].seek::-moz-range-thumb {
  width: 14px; height: 14px; background: var(--slate); border: 2px solid var(--paper); border-radius: 50%; cursor: pointer;
}
.player .pactions { display: flex; align-items: center; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.player .perr { display: none; font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--error); }
.player.has-error .perr { display: inline; }
.player.has-error .controls { opacity: .45; pointer-events: none; }

.dl-tips { background: var(--paper-2); border-top: 1px solid var(--border); padding: 72px 0; }
.dl-tips .grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; }
.dl-tips h2 { max-width: 12ch; }
.dl-tips ol { list-style: none; counter-reset: tip; }
.dl-tips ol li { position: relative; padding: 16px 0 16px 52px; border-top: 1px solid var(--border); counter-increment: tip; font-size: 1.03rem; color: var(--ink); }
.dl-tips ol li::before { content: counter(tip, decimal-leading-zero); position: absolute; left: 0; top: 15px; font-family: var(--display); font-weight: 800; color: var(--slate); font-size: 1.15rem; }
.dl-tips ol li strong { font-family: var(--display); font-weight: 700; }

/* =================================================================
   404
   ================================================================= */
.nf { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px var(--gutter); }
.nf .big { font-family: var(--display); font-weight: 800; font-size: clamp(5rem, 18vw, 11rem); line-height: .85; color: var(--paper-3); }
.nf h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 18px 0 14px; }
.nf p { color: var(--ink-soft); margin-bottom: 28px; max-width: 40ch; }

/* =================================================================
   FOOTER
   ================================================================= */
footer { border-top: 1px solid var(--border); padding: 40px 0 56px; }
footer .disc { font-size: 1rem; color: var(--ink-muted); max-width: 70ch; line-height: 1.55; margin-bottom: 18px; }
footer .colo { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--display); font-weight: 600; font-size: 1rem; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-muted); }
footer .colo a { text-decoration: none; margin-left: 16px; }
footer .colo a:hover { color: var(--ink); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 920px) {
  .hero-grid, .why .grid, .deeper .grid, .final .grid, .ty-grid, .dl-tips .grid, .dl-hero-grid, .tracks-grid, .hiw-body { grid-template-columns: 1fr; gap: 34px; }
  .offer { position: static; }
  .feature .photo { display: none; }
  .testi { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 620px) {
  :root { --gutter: 20px; }
  .srow { grid-template-columns: 1fr; gap: 18px; }
  .srow:nth-child(even) .stext { order: 0; }
  .srow .photo { order: -1; }
  .figures .wrap { grid-template-columns: 1fr; }
  .fig { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 4px; }
  .fig:last-child { border-bottom: none; }
  .earbuds .wrap, .note-bar .wrap { grid-template-columns: 1fr; }
  .credits { font-size: 1rem; }
  .player { grid-template-columns: 1fr; gap: 14px; }
  .player .index { font-size: 1.8rem; }
}

/* =================================================================
   MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
