/* ============================================================
   CADENCE — styles.css
   ============================================================ */

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

:root {
  --bg:          #080c14;
  --bg-card:     #0e1421;
  --bg-card-2:   #131a28;
  --border:      rgba(47, 107, 255, 0.18);
  --blue:        #2F6BFF;
  --blue-light:  #5b8fff;
  --cyan:        #00c8e0;
  --text:        #e2e8f0;
  --text-muted:  #7a8aaa;
  --text-dim:    #4a5568;
  --radius:      12px;
  --radius-lg:   20px;
  --max-w:       1200px;
  --max-w-prose: 900px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--blue-light); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.container-prose {
  width: 100%;
  max-width: var(--max-w-prose);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section-sm {
  padding: 64px 0;
}

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.centered { text-align: center; }
.centered .section-sub { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-light);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(47, 107, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue-light);
  text-decoration: none;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
}

.nav-logo span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }

.nav-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 16px;
}

.nav-cta > a {
  flex: 0 0 auto;
  margin: 0;
}

.nav-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 41px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-login:hover { color: var(--text); text-decoration: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ---- Hero ---- */
.hero {
  padding: 168px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(47, 107, 255, 0.13) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

/* Centered hero-first layout */
.hero-centered {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-centered .hero-eyebrow { justify-content: center; }
.hero-centered .hero-supporting { margin-left: auto; margin-right: auto; }
.hero-centered .hero-buttons { justify-content: center; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero-eyebrow-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero-headline {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-headline .accent { color: var(--blue-light); }

.hero-tagline {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.hero-supporting {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 22px;
}

/* ---- Subtle section divider ---- */
.soft-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0 0;
}

/* ---- Listen section ---- */
.section-listen {
  padding-top: 40px;
}
.listen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.audio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.audio-card:hover {
  border-color: rgba(47, 107, 255, 0.45);
  transform: translateY(-2px);
}

.audio-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.audio-card-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.audio-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.audio-card-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 40px;
  margin-bottom: 16px;
}

.audio-card-waveform .wb {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--blue), var(--cyan));
  opacity: 0.45;
}

.audio-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(47, 107, 255, 0.15);
  border: 1.5px solid var(--blue);
  cursor: pointer;
  color: var(--blue-light);
  transition: all 0.18s;
}

.audio-play-btn:hover {
  background: var(--blue);
  color: #fff;
}

.audio-play-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.audio-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.audio-duration {
  font-size: 12px;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}

/* ---- How It Works ---- */
.hiw-bg { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.hiw-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(47, 107, 255, 0.12);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-light);
}

.hiw-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.hiw-step-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.hiw-connector {
  display: none;
}

/* ---- Email Signup ---- */
.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  justify-content: flex-start;
}

.signup-form input[type="email"] {
  flex: 1 1 260px;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.18s;
}

.signup-form input[type="email"]:focus { border-color: var(--blue); }
.signup-form input[type="email"]::placeholder { color: var(--text-dim); }

.signup-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 14px;
}

/* ---- Get started: free brief + pricing grid ---- */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 940px;
  margin: 48px auto 0;
  align-items: stretch;
  text-align: left;
}

.offer-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.offer-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.offer-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.offer-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ---- Pricing ---- */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: left;
  box-shadow: 0 0 48px rgba(47, 107, 255, 0.12);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.15);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 24px;
}

.pricing-price {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}

.pricing-price sup {
  font-size: 26px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 12px;
  display: inline-block;
}

.pricing-mo {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.pricing-features li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(47, 107, 255, 0.18);
  border: 1.5px solid var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%235b8fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 16px;
}

/* ---- Manage subscription (subtle) ---- */
.manage-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 28px;
}

.manage-sub-line {
  font-size: 13px;
  color: var(--text-muted);
}

.manage-sub-line a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.manage-sub-line a:hover {
  color: var(--text);
}

.manage-sub-note {
  font-size: 11px;
  color: var(--text-dim);
}

/* ---- YouTube placeholder ---- */
.yt-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 820px;
  margin: 48px auto 0;
}

.yt-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0a1020 0%, #0d1828 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.yt-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(47,107,255,0.08) 0%, transparent 70%);
}

.yt-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  position: relative;
  z-index: 1;
}

.yt-play-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 4px;
}

.yt-placeholder:hover .yt-play-icon {
  background: var(--blue);
  border-color: var(--blue);
}

.yt-caption {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ---- Replay YouTube CTA ---- */
.replay-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.yt-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 8px;
  background: #1a1f2e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}

.yt-btn-dark:hover {
  background: #222838;
  border-color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: #fff;
}

.yt-icon-red {
  width: 18px;
  height: 18px;
  fill: #ff0000;
  flex-shrink: 0;
}

/* ---- Contact ---- */
.contact-bg { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 12px;
}

.contact-submit {
  width: fit-content;
  align-self: flex-start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border-radius: 8px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.18s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.contact-info {
  padding-top: 8px;
}

.contact-info-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.contact-info-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.footer-logo span { color: var(--blue); }

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: color 0.15s;
  text-decoration: none;
}

.footer-social-link:hover {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social-yt {
  fill: #ff0000;
}

.footer-social-link:hover .footer-social-yt {
  fill: #ff3333;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--text); text-decoration: none; }

.footer-divider {
  border: none;
  border-top: 1px solid var(--border);
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 780px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* ---- Subscriber app ---- */
.app-main {
  padding: 120px 0 72px;
  min-height: 100vh;
}

.app-intro {
  margin-bottom: 48px;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.app-card-featured {
  margin-bottom: 24px;
  box-shadow: 0 0 48px rgba(47, 107, 255, 0.06);
}

.app-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.app-card-copy {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 560px;
}

.app-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.app-cards-row .app-card {
  display: flex;
  flex-direction: column;
}

.app-cards-row .app-card-copy {
  flex: 1;
}

.app-player {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  margin-bottom: 20px;
}

.app-player-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(47, 107, 255, 0.1);
  border: 1.5px solid var(--border);
  color: var(--text-dim);
  margin-bottom: 12px;
}

.app-player-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-left: 3px;
}

.app-player-label {
  font-size: 13px;
  color: var(--text-dim);
}

.app-status-row {
  margin-bottom: 20px;
}

.app-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.app-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 14px;
}

.app-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

/* ---- Legal page ---- */
.legal-hero {
  padding: 120px 0 48px;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.legal-meta {
  font-size: 13px;
  color: var(--text-dim);
}

.legal-body {
  padding: 64px 0 96px;
}

.legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 40px 0 12px;
}

.legal-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 8px;
}

.legal-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body ul,
.legal-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-body li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-body a { color: var(--blue-light); }

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }

  .nav-links,
  .nav-cta { display: none; }

  .nav-hamburger { display: flex; }

  .nav-mobile-open .nav-inner {
    flex-wrap: wrap;
    height: auto;
    align-content: flex-start;
  }

  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 3;
    position: static;
    padding: 20px 0 12px;
    gap: 16px;
    align-items: flex-start;
    background: transparent;
    border: none;
  }

  .nav-mobile-open .nav-cta {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 4;
    position: static;
    padding: 12px 0 20px;
    gap: 12px;
    align-items: stretch;
    background: transparent;
    border-top: 1px solid var(--border);
    margin-top: 0;
  }

  .nav-mobile-open .nav-cta .btn,
  .nav-mobile-open .nav-cta .nav-login {
    width: 100%;
    justify-content: center;
  }

  .hero { padding: 132px 0 72px; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: fit-content; }

  .hiw-steps { grid-template-columns: 1fr; max-width: 420px; }

  .offer-grid { grid-template-columns: 1fr; max-width: 480px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .offer-card,
  .pricing-card { padding: 36px 24px; }

  .footer-top { flex-direction: column; }

  .legal-hero { padding: 100px 0 36px; }

  .app-main { padding: 108px 0 56px; }

  .app-card { padding: 28px 24px; }

  .app-cards-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .listen-grid { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; }
  .pricing-price { font-size: 52px; }
}
