/* ============================================
   ESSENTIALS KIT — Landing Page Styles
   ============================================ */

/* ---------- PRELOADER ---------- */
body.is-loading {
  overflow: hidden;
}

body.is-loading > *:not(.preloader) {
  opacity: 0;
}

body:not(.is-loading) > *:not(.preloader) {
  opacity: 1;
  transition: opacity .5s ease;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #222;
  border-top-color: #c8ff00;
  border-radius: 50%;
  animation: preloaderSpin .7s linear infinite;
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --bg:        #0a0a0a;
  --bg-card:   #111111;
  --bg-card-hover: #161616;
  --surface:   #1a1a1a;
  --border:    #222222;
  --text:      #e0e0e0;
  --text-dim:  #777777;
  --text-muted:#555555;
  --accent:    #c8ff00;
  --accent-dim:#a0cc00;
  --white:     #ffffff;
  --red:       #ff3b3b;
  --green:     #00d26a;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --container: 1120px;
  --gap: 24px;

  /* Radius */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 4px;

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --duration: .3s;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ---------- UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.text-accent { color: var(--accent); }

sup {
  font-size: .55em;
  color: var(--text-muted);
  vertical-align: super;
  line-height: 0;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
  color: var(--white);
}

.section-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-top: 12px;
  margin-bottom: 48px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 0 24px rgba(200, 255, 0, .2);
}
.btn--primary:hover {
  background: var(--white);
  box-shadow: 0 0 32px rgba(200, 255, 0, .35);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  color: var(--white);
  border-color: var(--text-dim);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200, 255, 0, .06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200, 255, 0, .03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

/* Hero top: artwork left, copy right */
.hero__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 48px;
}

.hero__artwork {
  flex-shrink: 0;
}

.hero__artwork img {
  width: clamp(240px, 26vw, 360px);
  height: auto;
  border-radius: var(--radius);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, .5),
    0 0 80px rgba(200, 255, 0, .06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.hero__artwork img:hover {
  transform: scale(1.03);
  box-shadow:
    0 12px 50px rgba(0, 0, 0, .6),
    0 0 100px rgba(200, 255, 0, .1);
}

.hero__copy {
  text-align: left;
}

.hero__badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--text-dim);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__title-line { display: block; }

.hero__title-line--accent {
  color: var(--accent);
  -webkit-text-stroke: 2px var(--accent);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 440px;
  margin: 0;
  line-height: 1.5;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__stat { text-align: center; }

.hero__stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}

.hero__stat-label {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero__cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__waveform {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 0;
  opacity: .35;
}

.hero__waveform canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- FULL-SCREEN SECTION LAYOUT ---------- */
.features,
.previews,
.pricing,
.proof,
.final-cta {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features > .container,
.previews > .container,
.pricing > .container,
.proof > .container,
.final-cta > .container {
  width: 100%;
}

/* ---------- FEATURES ---------- */
.features {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.feature-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.feature-card:hover {
  border-color: rgba(200, 255, 0, .2);
  background: var(--bg-card-hover);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ---------- KIT BREAKDOWN ---------- */
.kit-breakdown {
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
}

.kit-breakdown__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.kit-breakdown__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.kit-breakdown__total {
  font-size: .75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .04em;
}

.kit-breakdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.kit-breakdown__item {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--duration) var(--ease);
}

.kit-breakdown__item:nth-child(4n) {
  border-right: none;
}

.kit-breakdown__item:nth-last-child(-n+4) {
  border-bottom: none;
}

.kit-breakdown__item:hover {
  background: var(--bg-card-hover);
}

.kit-breakdown__num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.kit-breakdown__name {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.kit-breakdown__detail {
  display: block;
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .02em;
}

/* ---------- BEAT PREVIEWS ---------- */
.previews {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.previews__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* --- Player row (Splice-style) --- */
.player {
  display: flex;
  align-items: center;
  gap: 0;
  height: 64px;
  background: var(--bg-card);
  transition: background var(--duration) var(--ease);
  position: relative;
}

.player:hover {
  background: var(--bg-card-hover);
}

.player.is-playing {
  background: #131313;
}

/* Play button */
.player__btn {
  width: 56px;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: color var(--duration) var(--ease);
  border-right: 1px solid var(--border);
}

.player__btn:hover {
  color: var(--white);
}

.player.is-playing .player__btn {
  color: var(--accent);
}

.player__icon-pause { display: none; }
.player.is-playing .player__icon-play { display: none; }
.player.is-playing .player__icon-pause { display: block; }

/* Meta: title + tag */
.player__meta {
  flex-shrink: 0;
  width: 140px;
  padding: 0 16px;
  overflow: hidden;
}

.player__title {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player.is-playing .player__title {
  color: var(--white);
}

.player__tag {
  display: block;
  font-size: .65rem;
  color: var(--text-muted);
  letter-spacing: .03em;
  margin-top: 3px;
  white-space: nowrap;
}

/* Waveform canvas area */
.player__wave {
  flex: 1;
  height: 100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.player__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Played overlay — clips the canvas with accent color */
.player__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--accent);
  mix-blend-mode: color;
  pointer-events: none;
  transition: width .05s linear;
}

/* Hover seek indicator */
.player__wave::after {
  content: '';
  position: absolute;
  top: 0;
  left: var(--hover-x, -10px);
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, .2);
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s;
}

.player__wave:hover::after {
  opacity: 1;
}

/* Time display */
.player__right {
  flex-shrink: 0;
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-left: 1px solid var(--border);
  height: 100%;
}

.player__time {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.player.is-playing .player__time {
  color: var(--accent);
}

.player__duration {
  font-size: .62rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  margin-top: 3px;
  line-height: 1;
}

/* ---------- PRICING ---------- */
.pricing {
  padding: 80px 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: start;
}

.pricing-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 36px 28px 32px;
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.pricing-card:hover {
  border-color: #333;
}

/* Featured card (ULTIMATE) */
.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #141410 0%, var(--bg-card) 100%);
  transform: scale(1.03);
  z-index: 2;
  box-shadow: 0 0 60px rgba(200, 255, 0, .07);
}
.pricing-card--featured:hover {
  border-color: var(--accent);
  transform: scale(1.05);
}

.pricing-card__glow {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.pricing-card__tag--accent { color: var(--accent); }

.pricing-card__price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card--featured .pricing-card__price { color: var(--accent); }

.pricing-card__old-price {
  font-size: .45em;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  vertical-align: middle;
  margin-right: 4px;
}

.pricing-card__desc {
  font-size: .85rem;
  color: var(--text-muted);
}

.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-card__item {
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
}

.pricing-card__item::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card__item--yes { color: var(--text); }
.pricing-card__item--yes::before {
  content: '✓';
  font-size: .7rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(0, 210, 106, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card__item--no { color: var(--text-muted); }
.pricing-card__item--no::before {
  content: '✗';
  font-size: .7rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, .03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card__item--muted {
  color: var(--text-muted);
  font-size: .8rem;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.pricing-card__item--muted::before { display: none; }

.pricing-card__btn { width: 100%; text-align: center; }

.pricing-card--featured .pricing-card__btn {
  background: var(--accent);
  color: #0a0a0a;
  border: none;
  box-shadow: 0 0 24px rgba(200, 255, 0, .2);
}
.pricing-card--featured .pricing-card__btn:hover {
  background: var(--white);
  box-shadow: 0 0 32px rgba(200, 255, 0, .35);
}

/* ---------- SOCIAL PROOF ---------- */
.proof {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  flex-direction: column;
}

.proof__card {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 48px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.proof__waveform {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 32px;
  margin-bottom: 28px;
}

.proof__bar {
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  opacity: .4;
  animation: proofWave 1.2s ease-in-out infinite alternate;
}
.proof__bar:nth-child(1)  { height: 30%; animation-delay: 0s; }
.proof__bar:nth-child(2)  { height: 55%; animation-delay: .1s; }
.proof__bar:nth-child(3)  { height: 80%; animation-delay: .2s; }
.proof__bar:nth-child(4)  { height: 100%; animation-delay: .3s; }
.proof__bar:nth-child(5)  { height: 70%; animation-delay: .4s; }
.proof__bar:nth-child(6)  { height: 45%; animation-delay: .5s; }
.proof__bar:nth-child(7)  { height: 90%; animation-delay: .6s; }
.proof__bar:nth-child(8)  { height: 60%; animation-delay: .7s; }
.proof__bar:nth-child(9)  { height: 100%; animation-delay: .8s; }
.proof__bar:nth-child(10) { height: 50%; animation-delay: .9s; }
.proof__bar:nth-child(11) { height: 75%; animation-delay: 1s; }
.proof__bar:nth-child(12) { height: 35%; animation-delay: 1.1s; }

@keyframes proofWave {
  0%   { transform: scaleY(.4); }
  100% { transform: scaleY(1); }
}

.proof__quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 16px;
}

.proof__attr {
  font-size: .8rem;
  color: var(--text-muted);
  font-style: italic;
}

.proof__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.proof__logo-item {
  font-size: .8rem;
  color: var(--text-muted);
  letter-spacing: .05em;
}

.proof__logo-item--bold {
  font-weight: 700;
  color: var(--text-dim);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(200, 255, 0, .04) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta .container { position: relative; z-index: 1; }

.final-cta__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.final-cta__sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 40px;
}

.final-cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__brand {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--text-dim);
}

.footer__license {
  text-align: center;
  flex: 1;
}

.footer__license p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__license strong { color: var(--text-dim); }

.footer__note {
  font-size: .75rem !important;
  margin-top: 4px;
}

.footer__copy {
  font-size: .75rem;
  color: var(--text-muted);
}

/* ---------- MODAL ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  width: 90%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  transform: translateY(20px) scale(.97);
  transition: transform .3s var(--ease);
}

.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
  padding: 4px;
}

.modal__close:hover {
  color: var(--white);
}

.modal__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.modal__sub {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 24px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--white);
  font-family: var(--font);
  font-size: .9rem;
  outline: none;
  transition: border-color var(--duration) var(--ease);
}

.modal__input::placeholder {
  color: var(--text-muted);
}

.modal__input:focus {
  border-color: var(--accent);
}

.modal__submit {
  margin-top: 4px;
  width: 100%;
}

.modal__note {
  text-align: center;
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ---------- REVEAL ANIMATION ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE: TABLET (<=960px) ---------- */
@media (max-width: 960px) {
  :root {
    --gap: 16px;
  }

  .hero__top {
    flex-direction: column;
    gap: 28px;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__sub {
    margin: 0 auto;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }
  .pricing-card--featured:hover {
    transform: none;
  }

  .kit-breakdown__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kit-breakdown__item:nth-child(4n) {
    border-right: 1px solid var(--border);
  }

  .kit-breakdown__item:nth-child(2n) {
    border-right: none;
  }

  .kit-breakdown__item:nth-last-child(-n+4) {
    border-bottom: 1px solid var(--border);
  }

  .kit-breakdown__item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__license {
    flex: unset;
  }

  .section-sub {
    margin-bottom: 32px;
  }
}

/* ---------- RESPONSIVE: MOBILE (<=600px) ---------- */
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  /* — Hero — */
  .hero {
    padding: 80px 0 48px;
  }

  .hero__top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__badge {
    font-size: .68rem;
    padding: 5px 14px;
    margin-bottom: 16px;
  }

  .hero__title {
    font-size: clamp(2.8rem, 14vw, 5rem);
    margin-bottom: 12px;
  }

  .hero__title-line--accent {
    -webkit-text-stroke: 1px var(--accent);
  }

  .hero__sub {
    font-size: .95rem;
    margin: 0 auto;
    max-width: 90%;
  }

  .hero__artwork img {
    width: clamp(180px, 52vw, 240px);
  }

  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__stat {
    padding: 12px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
  }

  .hero__stat-num {
    font-size: 1.4rem;
  }

  .hero__stat-label {
    font-size: .68rem;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero__cta-group .btn {
    width: 100%;
    padding: 16px 24px;
  }

  .hero__waveform {
    height: 80px;
  }

  /* — Features — */
  .features__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 20px 18px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .feature-card__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-bottom: 0;
  }

  .feature-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .feature-card__title {
    font-size: .9rem;
    margin-bottom: 4px;
  }

  .feature-card__text {
    font-size: .82rem;
  }

  /* — Kit Breakdown — */
  .kit-breakdown {
    margin-top: 32px;
  }

  .kit-breakdown__header {
    padding: 12px 16px;
  }

  .kit-breakdown__item {
    padding: 14px 10px;
  }

  .kit-breakdown__num {
    font-size: 1.25rem;
  }

  .kit-breakdown__name {
    font-size: .76rem;
  }

  .kit-breakdown__detail {
    font-size: .65rem;
  }

  /* — Players — */
  .player {
    height: 56px;
  }

  .player__btn {
    width: 44px;
  }

  .player__meta {
    width: 100px;
    padding: 0 10px;
  }

  .player__title {
    font-size: .76rem;
  }

  .player__tag {
    font-size: .58rem;
  }

  .player__right {
    width: 56px;
    padding: 0 8px;
  }

  .player__time {
    font-size: .65rem;
  }

  .player__duration {
    font-size: .56rem;
  }

  /* — Pricing — */
  .pricing__grid {
    max-width: 100%;
  }

  .pricing-card {
    padding: 28px 20px 24px;
  }

  .pricing-card__price {
    font-size: 2.5rem;
  }

  .pricing-card__header {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .pricing-card__list {
    gap: 8px;
    margin-bottom: 20px;
  }

  .pricing-card__item {
    font-size: .82rem;
    gap: 8px;
  }

  .pricing-card__item::before {
    width: 16px;
    height: 16px;
    font-size: .6rem;
  }

  .pricing-card__btn {
    padding: 14px 20px;
    font-size: .88rem;
  }

  /* — Proof — */
  .proof__card {
    padding: 28px 16px;
    margin-bottom: 32px;
  }

  .proof__waveform {
    height: 24px;
    margin-bottom: 20px;
  }

  .proof__quote {
    font-size: .95rem;
    line-height: 1.55;
  }

  .proof__attr {
    font-size: .75rem;
  }

  .proof__logos {
    gap: 10px;
  }

  .proof__logo-item {
    font-size: .72rem;
  }

  .proof__logo-item--bold {
    padding: 6px 12px;
    font-size: .72rem;
  }

  /* — Final CTA — */
  .final-cta__title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    margin-bottom: 12px;
  }

  .final-cta__sub {
    font-size: .9rem;
    margin-bottom: 28px;
  }

  .final-cta__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .final-cta__buttons .btn {
    width: 100%;
  }

  .btn--lg {
    padding: 16px 28px;
    font-size: .95rem;
  }

  /* — Footer — */
  .footer__brand {
    font-size: .8rem;
  }

  .footer__license p {
    font-size: .75rem;
  }

  .footer__copy {
    font-size: .7rem;
  }

  /* — Reveal less movement on mobile — */
  [data-reveal] {
    transform: translateY(16px);
  }
}

/* ---------- RESPONSIVE: SMALL MOBILE (<=380px) ---------- */
@media (max-width: 380px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero__stat-num {
    font-size: 1.2rem;
  }

  .pricing-card__price {
    font-size: 2.2rem;
  }

  .pricing-card__item {
    font-size: .78rem;
  }

  .proof__quote {
    font-size: .88rem;
  }

  .proof__logos {
    gap: 8px;
  }

  .proof__logo-item--bold {
    padding: 5px 10px;
    font-size: .68rem;
  }

  .final-cta__title {
    font-size: 1.5rem;
  }
}
