/* =============================================
   24live.site — White / YouTube Red Ad LP
   ============================================= */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --ink: #111827;
  --ink-soft: #374151;
  --muted: #6b7280;
  --line: #e8ebf0;
  --red: #ff0033;
  --red-hover: #e6002e;
  --red-soft: #fff1f4;
  --shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
  --shadow-lg: 0 18px 50px rgba(17, 24, 39, 0.1);
  --radius: 18px;
  --radius-lg: 22px;
  --header-h: 72px;
  --dock-h: 76px;
  --font: "Noto Sans JP", system-ui, sans-serif;
  --display: "Plus Jakarta Sans", "Noto Sans JP", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1160px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  padding-bottom: var(--dock-h);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, p { margin: 0; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

em {
  font-style: normal;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--red);
  color: #fff;
}

.skip:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease);
}

.header.is-scrolled { border-bottom-color: var(--line); }

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.04em;
}

.logo__mark {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s var(--ease);
}

.nav a:hover { color: var(--ink); }

.header__cta { display: none; }

.menu-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-content: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

.drawer {
  display: grid;
  gap: .9rem;
  padding: 1rem 1.25rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.drawer a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.drawer[hidden] { display: none; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-weight: 700;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}

.btn--red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 0, 51, 0.28);
}

.btn--red:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
}

.btn--sm {
  min-height: 2.4rem;
  padding: 0 1.1rem;
  font-size: .8125rem;
}

.btn--lg {
  min-height: 3.2rem;
  padding: 0 1.5rem;
  font-size: .95rem;
  width: 100%;
}

.btn--xl {
  min-height: 3.6rem;
  padding: 0 1.9rem;
  font-size: 1.05rem;
  width: 100%;
  max-width: 360px;
}

.btn:active { transform: none; }

/* ---------- Hero ---------- */

.hero {
  padding: 2.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(255, 0, 51, 0.05), transparent 55%),
    #fff;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__copy { text-align: center; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.1rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--red);
  background: var(--red-soft);
}

.pill__icon {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
}

.hero h1 {
  font-size: clamp(1.85rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.25;
  margin-bottom: .75rem;
}

.hero h1 span { color: var(--red); }

.hero__lead {
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin-bottom: 1.6rem;
}

.hero__tags li {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow);
}

.hero__tags svg { color: var(--red); flex-shrink: 0; }

.hero__price { margin-bottom: 1.35rem; }

.hero__price-label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: .15rem;
}

.hero__price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .1rem;
  line-height: 1;
  color: var(--red);
}

.hero__price-value em {
  font-size: clamp(3.4rem, 14vw, 5rem);
}

.hero__price-value span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: .2rem;
}

.hero__price-note {
  margin-top: .55rem;
  font-size: .78rem;
  color: var(--muted);
}

.hero__copy .btn { margin-inline: auto; }

/* Player */

.player {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.player__screen {
  position: relative;
  background: #0f1115;
  aspect-ratio: 16 / 10.5;
}

.player__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
  height: 100%;
  padding: 3px;
}

@media (min-width: 480px) {
  .player__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}

.player__grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  min-height: 0;
}

.player__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player__grid figcaption {
  position: absolute;
  left: .35rem;
  bottom: .3rem;
  padding: .15rem .35rem;
  border-radius: 4px;
  font-size: .58rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}

.player__hud {
  position: absolute;
  inset: .65rem .65rem auto;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .45rem;
  border-radius: 4px;
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  background: var(--red);
  color: #fff;
}

.live-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: block;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}

.player__timer,
.player__viewers {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .2rem .45rem;
  border-radius: 4px;
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

.player__viewers { margin-left: auto; }

.player__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .4rem .55rem .5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.player__progress {
  height: 3px;
  border-radius: 2px;
  background: var(--red);
  margin-bottom: .4rem;
}

.player__controls {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
}

.ctrl {
  width: 14px;
  height: 14px;
  background: center / contain no-repeat;
  opacity: .95;
}

.ctrl.play {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
}

.ctrl.next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M6 6v12l8.5-6L6 6zm9 0h2v12h-2V6z'/%3E%3C/svg%3E");
}

.ctrl.vol {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M3 10v4h4l5 4V6L7 10H3zm13.5 2a4.5 4.5 0 0 0-2.3-3.9v7.8a4.5 4.5 0 0 0 2.3-3.9z'/%3E%3C/svg%3E");
}

.ctrl.time {
  width: auto;
  height: auto;
  font-family: var(--display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--red);
  background: none;
}

.ctrl.full {
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z'/%3E%3C/svg%3E");
}

.player__meta {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.05rem 1.1rem;
  background: #fff;
}

.player__channel {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.player__avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 800;
  color: #fff;
  background: var(--red);
  flex-shrink: 0;
}

.player__channel strong {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .88rem;
}

.player__channel span {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  margin-top: .15rem;
}

.verified { display: inline-block; }

.player__chat {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fafbfc;
}

.player__chat-head {
  padding: .45rem .7rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.player__chat-body {
  padding: .55rem .7rem;
  display: grid;
  gap: .35rem;
  max-height: 7.5rem;
  overflow: hidden;
}

.player__chat-body p {
  font-size: .72rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.player__chat-body b {
  color: #1a73e8;
  margin-right: .3rem;
}

.player__chat-input {
  padding: .5rem .7rem;
  font-size: .72rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

/* ---------- Sections ---------- */

.section {
  padding: 5rem 0;
}

.section--soft { background: var(--bg-soft); }

.section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__head h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.03em;
}

.section__head p {
  margin-top: .7rem;
  color: var(--muted);
  font-size: .98rem;
}

/* Reasons */

.reason-grid {
  display: grid;
  gap: 1rem;
}

.reason-card {
  padding: 1.6rem 1.35rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.icon {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--red);
  background: var(--red-soft);
}

.icon svg { width: 1.25rem; height: 1.25rem; }

.reason-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: .45rem;
  letter-spacing: -.02em;
}

.reason-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Genres */

.genre-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 240px);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .5rem;
  -webkit-overflow-scrolling: touch;
}

.genre-card { scroll-snap-align: start; }

.genre-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: .7rem;
}

.genre-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3rem;
  height: 3rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 0, 51, 0.92);
  box-shadow: 0 8px 24px rgba(255, 0, 51, 0.35);
}

.play-btn::before {
  content: "";
  position: absolute;
  left: 53%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
}

.genre-card h3 {
  font-size: .95rem;
  font-weight: 700;
  text-align: center;
}

.genre-dots {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-top: 1.25rem;
}

.genre-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d1d5db;
}

.genre-dots span.is-active { background: var(--red); }

/* Trio */

.trio {
  display: grid;
  gap: 1.15rem;
}

.trio-card {
  padding: 1.75rem 1.45rem;
}

.trio-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 1.2rem;
}

.check-list {
  display: grid;
  gap: .75rem;
  margin-bottom: 1.4rem;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='m5 12 5 5L19 7'/%3E%3C/svg%3E") center / 70% no-repeat;
}

.trio-card__visual {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.trio-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trio-card--price {
  text-align: center;
  background: linear-gradient(180deg, #fff, #fff8f9);
}

.trio-price-label {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .2rem;
}

.trio-price {
  color: var(--red);
  line-height: 1;
  margin-bottom: 1.1rem;
}

.trio-price em {
  font-size: clamp(2.8rem, 10vw, 3.6rem);
  margin-right: .1rem;
}

.trio-price span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
}

.trio-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.trio-badges span {
  padding: .4rem .8rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--red);
  background: var(--red-soft);
}

.steps {
  display: grid;
  gap: 1.1rem;
}

.steps li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .85rem;
  align-items: start;
}

.steps span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  background: var(--red);
}

.steps strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: .15rem;
}

.steps p {
  font-size: .82rem;
  color: var(--muted);
}

/* FAQ */

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-card {
  padding: 1.5rem 1.35rem;
}

.faq-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .55rem;
  letter-spacing: -.02em;
}

.faq-card p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* CTA band */

.cta-band {
  padding: 3.5rem 0;
  border-block: 1px solid var(--line);
  background: #fff;
}

.cta-band__row {
  display: grid;
  gap: 1.25rem;
  text-align: center;
  justify-items: center;
}

.cta-band h2 {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: .45rem;
}

.cta-band p {
  color: var(--muted);
  font-size: .95rem;
}

/* Footer */

.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 2.25rem 0;
}

.footer__row {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  text-align: center;
}

.logo--light { color: #fff; }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer__nav a {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer__nav a:hover { color: #fff; }

.footer__copy {
  font-size: .72rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Dock */

.dock {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

.dock__btn { max-width: none; }

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Subpages */

.page-hero {
  padding: 3.25rem 0 1.75rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -.03em;
}

.page-hero p {
  margin-top: .55rem;
  color: var(--muted);
  font-size: .92rem;
}

.page-body { padding: 2.75rem 0 4.5rem; }

.container--narrow {
  width: min(100% - 2rem, 760px);
  margin-inline: auto;
}

/* Legal / tokusho card */

.legal-card {
  padding: 0.35rem 1.35rem;
}

.legal-list {
  margin: 0;
}

.legal-row {
  display: grid;
  gap: 0.45rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-row:last-child {
  border-bottom: 0;
}

.legal-row dt {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.legal-row dd {
  margin: 0;
  font-size: 0.9875rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.75;
}

.legal-row a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (min-width: 768px) {
  .legal-card {
    padding: 0.5rem 2rem;
  }

  .legal-row {
    grid-template-columns: 11.5rem 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem 0;
  }

  .legal-row dt {
    font-size: 0.875rem;
    padding-top: 0.15rem;
  }

  .legal-row dd {
    font-size: 1rem;
  }
}

/* Terms article */

.terms-card {
  padding: 1.75rem 1.35rem 2rem;
}

.terms-section {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.terms-section:first-child {
  padding-top: 0.35rem;
}

.terms-section:last-child {
  border-bottom: 0;
  padding-bottom: 0.25rem;
}

.terms-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.terms-section p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.terms-section p:last-child {
  margin-bottom: 0;
}

.terms-section ul {
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.terms-section li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.terms-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.terms-section a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.terms-section--meta p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

@media (min-width: 768px) {
  .terms-card {
    padding: 2.25rem 2.25rem 2.5rem;
  }

  .terms-section {
    padding: 1.6rem 0;
  }

  .terms-section h2 {
    font-size: 1.125rem;
  }

  .terms-section p,
  .terms-section li {
    font-size: 0.9875rem;
  }
}

.prose {
  display: grid;
  gap: 1.5rem;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.85;
}

.prose h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: -.4rem;
}

.prose a { color: var(--red); text-decoration: underline; }

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.prose th,
.prose td {
  padding: .85rem .7rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.prose th {
  width: 34%;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-soft);
}

.form {
  display: grid;
  gap: 1.1rem;
  max-width: 520px;
}

.form label {
  display: grid;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
}

.form input,
.form textarea {
  width: 100%;
  padding: .85rem .95rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: rgba(255, 0, 51, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 0, 51, 0.1);
}

.form textarea { min-height: 150px; resize: vertical; }

.form-note {
  font-size: .8rem;
  font-weight: 400;
  color: var(--muted);
}

.form--card {
  padding: 1.75rem 1.35rem 2rem;
  max-width: none;
  gap: 1.25rem;
}

.form-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35rem;
}

.form .req,
.form .opt {
  display: inline-block;
  padding: .1rem .4rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
}

.form .req {
  color: var(--red);
  background: var(--red-soft);
}

.form .opt {
  color: var(--muted);
  background: var(--bg-soft);
}

.hp-wrap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-result {
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.contact-result__icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: var(--red-soft);
}

.contact-result h2 {
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.45;
  margin-bottom: .75rem;
}

.contact-result p {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.contact-result a:not(.btn) {
  color: var(--red);
  text-decoration: underline;
}

.contact-result .btn {
  margin-inline: auto;
  width: auto;
  min-width: 200px;
}

.contact-result--error h2 {
  color: var(--ink);
}

@media (min-width: 768px) {
  .form--card {
    padding: 2.25rem 2.25rem 2.5rem;
  }

  .contact-result {
    padding: 3.25rem 2.5rem;
  }
}

.page .header__cta { display: inline-flex; }
.page .menu-btn { display: none; }
.page .dock { display: none; }
.page { padding-bottom: 0; }

/* ---------- Breakpoints ---------- */

@media (min-width: 640px) {
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .player__meta {
    grid-template-columns: 1.15fr .85fr;
    align-items: stretch;
  }

  .player__chat {
    display: flex;
    flex-direction: column;
  }

  .player__chat-body {
    flex: 1;
    max-height: none;
  }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .dock { display: none; }
  .menu-btn { display: none; }
  .drawer { display: none !important; }

  .nav { display: flex; }
  .header__cta { display: inline-flex; }

  .section { padding: 6.5rem 0; }
  .section__head { margin-bottom: 3rem; }

  .hero {
    padding: 3.5rem 0 4.5rem;
    min-height: calc(100svh - var(--header-h));
    display: flex;
    align-items: center;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 1.05fr);
    gap: 3rem;
  }

  .hero__copy { text-align: left; }
  .hero__tags { justify-content: flex-start; }
  .hero__price-value { justify-content: flex-start; }
  .hero__copy .btn { margin-inline: 0; width: auto; min-width: 280px; }

  .reason-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reason-grid li:nth-child(4),
  .reason-grid li:nth-child(5) {
    /* keep natural flow on 3-col */
  }

  .trio {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
  }

  .cta-band__row {
    grid-template-columns: 1fr auto;
    text-align: left;
    align-items: center;
    justify-items: stretch;
  }

  .cta-band .btn {
    width: auto;
    min-width: 240px;
  }

  .footer__row {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    text-align: left;
    justify-items: stretch;
  }

  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.4rem;
  }

  .footer__copy { justify-self: end; }
}

@media (min-width: 1024px) {
  .reason-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .hero h1 { font-size: 3.1rem; }

  .hero__price-value em { font-size: 5rem; }

  .genre-track {
    grid-auto-flow: unset;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
