/* ================================================================
   25Bit Echo — Stylesheet
   ================================================================ */

:root {
  --charcoal: #3d3d3d;
  --dark: #1d242c;
  --darker: #1d242c;
  --pink: #ff3090;
  --pink-dim: rgba(255, 31, 138, 0.12);
  --pink-glow: rgba(255, 31, 138, 0.25);
  --blue: #00e8ff;
  --blue-dim: rgba(0, 232, 255, 0.10);
  --blue-glow: rgba(0, 232, 255, 0.22);
  --white: #f5f5f0;
  --pale: #8a8a85;
  --glass: rgba(245, 245, 240, 0.04);
  --glass-border: rgba(245, 245, 240, 0.08);
  --font: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  background-color: var(--darker);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.4;
}

/* ── SKIP NAV ── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 24px;
  z-index: 200;
  background: var(--pink);
  color: var(--darker);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 20px;
  transition: top 0.15s ease;
}
.skip-nav:focus {
  top: 24px;
}

/* ── FOCUS STYLES (2.4.7) ── */
/* Remove browser default only where we supply our own */
*:focus { outline: none; }

/* Keyboard-only focus ring for all interactive elements */
*:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

/* Form fields: shift to outline so it sits outside the border */
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 0;
}

/* Submit button sits flush — offset outward */
.form-submit:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

/* Skip-nav already moves into view on focus; reinforce with ring */
.skip-nav:focus-visible {
  outline: 2px solid var(--darker);
  outline-offset: 2px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px 20px clamp(64px, 6vw, 100px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
nav.scrolled {
  background: var(--darker);
  border-bottom-color: rgba(245, 245, 240, 0.08);
}
.nav-logo img {
  display: block;
  height: 32px;
  width: auto;
  transition: height 0.3s ease;
}
body.page-home nav:not(.scrolled) .nav-logo img {
  height: 48px;
}
body.page-home #hero {
  padding-top: 88px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pale);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active {
  color: var(--white);
  border-bottom: 1px solid var(--white);
  padding-bottom: 2px;
}
body.page-narration .nav-links a.active {
  border-bottom-color: var(--pink);
}
body.page-ai-voice .nav-links a.active {
  border-bottom-color: var(--blue);
}
.nav-cta {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  text-decoration: none;
  border: 1px solid rgba(255, 31, 138, 0.4);
  padding: 9px 22px;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: var(--pink-dim);
  border-color: var(--pink);
}
.nav-cta.active {
  background: var(--pink);
  color: var(--darker);
  border-color: var(--pink);
}
.nav-link--cta a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--white);
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--pink), var(--blue)) 1;
  padding: 9px 22px;
  transition: opacity 0.2s ease;
}
.nav-link--cta a:hover {
  opacity: 0.75;
}
.nav-link--cta a.active {
  background: linear-gradient(90deg, var(--pink), var(--blue));
  color: var(--darker);
  border: none;
  padding: 9px 22px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-mobile {
  display: none;
}

/* ── SECTIONS ── */
section, footer {
  position: relative;
  z-index: 1;
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  display: block;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(29, 36, 44, 0.8) 0%, rgba(29, 36, 44, 0.8) 20%, transparent 68%);
  pointer-events: none;
}
.hero-text {
  position: relative;
  z-index: 2;
  width: 40%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  padding: 0 40px 0 clamp(64px, 6vw, 100px);
}
.hero-eyebrow {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--pink);
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(44px, min(6.5vw, 7.5vh), 70px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 1200px;
  margin-bottom: 36px;
}
.hero-title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 300;
}
.hero-title em.blue {
  color: var(--blue);
}
.hero-sub {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  max-width: 1200px;
  line-height: 1.4;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--darker);
  background: var(--pink);
  padding: 16px 36px;
  transition: all 0.2s ease;
  display: inline-block;
}
.btn-primary:hover { background: #ff4da0; }
.btn-ghost {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--pale);
  border-bottom: 1px solid rgba(138, 138, 133, 0.4);
  padding-bottom: 2px;
  transition: all 0.2s ease;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }
.btn-gradient-border {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--pink), var(--blue)) 1;
  padding: 9px 22px;
  display: inline-block;
  transition: opacity 0.2s ease;
}
.btn-gradient-border:hover { opacity: 0.75; }

/* Waveform — used in Tamsin section */
.wave-bar {
  width: 3px;
  border-radius: 2px;
  background: var(--pink);
  animation: wavePulse 1.6s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes wavePulse {
  0%, 100% { transform: scaleY(0.25); }
  50% { transform: scaleY(1); }
}

/* ── DIVIDER ── */
.divider--mobile { display: none; }

.divider {
  width: 100%;
  height: 1px;
  background: var(--glass-border);
  max-width: 1200px;
  margin: 50px auto;
}

/* ── STUDIO SECTION ── */
#studio {
  padding: 0 48px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.studio-strands {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

/* ── PRIVACY SECTION ── */
#privacy,
#not-found {
  padding: 148px 48px 75px;
  max-width: 900px;
  margin: 0 auto;
}
#contact-header {
  padding: 148px 48px 0;
  max-width: 900px;
  margin: 0 auto;
}
#contact-header { text-align: center; }
.section-eyebrow {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
}
.section-eyebrow--blue { color: var(--blue); }
.hero-sub-label {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  color: #8a8a85;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.4;
}
.section-title {
  font-family: var(--font);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 300;
}
.section-title em.blue {
  color: var(--blue);
}
.section-body {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
}
.section-body p + p { margin-top: 18px; }
.section-body h3 {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 12px;
}
.section-body h4 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-top: 28px;
  margin-bottom: 8px;
}
.section-body ul {
  padding-left: 20px;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-body ul li {
  color: var(--white);
  font-size: 18px;
  line-height: 1.4;
}
.section-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section-body a:hover { opacity: 0.8; }


/* ── TAMSIN FEATURE ── */
#tamsin {
  padding: 50px 0;
  background: linear-gradient(135deg, rgba(255, 31, 138, 0.06) 0%, transparent 60%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.tamsin-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}
.tamsin-quote {
  font-family: var(--font);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 36px;
  border-left: 3px solid var(--pink);
  padding-left: 24px;
}
.tamsin-quote footer {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
  letter-spacing: 0.05em;
  background: transparent;
  padding: 0;
  border: none;
  backdrop-filter: none;
}
.tamsin-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 36px;
}
.tamsin-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
/* ── LABEL TAGS (non-interactive) ── */
.label-tag {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: none;
  background: none;
}
.label-tag::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.label-tag--header { margin-bottom: 12px; display: inline-flex; }
.label-tag--pink { color: var(--pink); }
.label-tag--pink::before { background: var(--pink); }
.label-tag--blue { color: var(--blue); }
.label-tag--blue::before { background: var(--blue); }
.label-tag--pale { color: var(--pale); }
.label-tag--pale::before { background: var(--pale); }
.service-card .label-tag { margin-bottom: 16px; }

/* Tamsin image panel */
.tamsin-visual {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
}
.tamsin-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.tamsin-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.92) 0%, transparent 100%);
}
.tamsin-visual-name {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 6px;
}
.tamsin-visual-title {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}
/* Waveform inside Tamsin panel */
.tamsin-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  bottom: 88px;
  left: 32px;
  right: 32px;
  z-index: 1;
  opacity: 0.35;
}
.tamsin-wave .wave-bar { width: 2px; background: var(--white); }

/* ── SERVICES ── */
#services {
  padding: 50px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  text-align: center;
  margin-bottom: 50px;
}
.services-tamsin-intro {
  max-width: 1200px;
  margin-bottom: 32px;
}
.services-tamsin-heading {
  font-family: var(--font);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.services-tamsin-heading em {
  font-style: italic;
  color: var(--white);
  font-weight: 300;
}
.services-tamsin-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.service-secondary {
  margin-top: 2px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-secondary-label {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  color: var(--pink);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.service-secondary-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.service-secondary-content {
  flex: 1;
}
.service-secondary-title {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.service-secondary-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}
.service-secondary-link {
  color: var(--pink);
  border-color: rgba(255, 31, 138, 0.4);
  flex-shrink: 0;
  font-size: 11px;
  padding: 6px 14px;
}
.service-secondary-link:hover {
  background: var(--pink-dim);
  border-color: var(--pink);
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-card:hover { background: rgba(245, 245, 240, 0.06); transform: translateY(-3px); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

/* Human narration — PINK-LED */
.service-card.pink::before { background: var(--pink); }
.service-card.pink .service-icon { color: var(--pink); }
.service-card.pink .service-num { color: var(--pink); }

/* AI voice — BLUE-LED */
.service-card.blue {
  background: rgba(0, 232, 255, 0.04);
  border-color: rgba(0, 232, 255, 0.15);
}
.service-card.blue:hover { background: rgba(0, 232, 255, 0.08); }
.service-card.blue::before { background: var(--blue); box-shadow: 0 0 16px rgba(0, 232, 255, 0.5); }
.service-card.blue .service-icon { color: var(--blue); }
.service-card.blue .service-num { color: var(--blue); }

/* Content and copywriting — pink-led (human) */
.service-card.pink-alt::before { background: linear-gradient(90deg, var(--pink), rgba(255, 31, 138, 0.4)); }
.service-card.pink-alt .service-icon { color: var(--pink); }
.service-card.pink-alt .service-num { color: var(--pink); }

.service-num {
  font-family: var(--font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.08;
  position: absolute;
  top: 28px;
  right: 32px;
}
.service-icon { margin-bottom: 28px; }
.service-icon svg { width: 32px; height: 32px; }
.service-title {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 32px;
}
.service-link {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid;
  transition: all 0.2s ease;
}
.service-card.pink .service-link,
.service-card.pink-alt .service-link {
  color: var(--pink);
  border-color: rgba(255, 31, 138, 0.4);
}
.service-card.pink .service-link:hover,
.service-card.pink-alt .service-link:hover {
  background: var(--pink-dim);
  border-color: var(--pink);
}
.service-card.blue .service-link {
  color: var(--blue);
  border-color: rgba(0, 232, 255, 0.4);
}
.service-card.blue .service-link:hover {
  background: var(--blue-dim);
  border-color: var(--blue);
}
.service-link--pink { color: var(--pink); border-color: rgba(255, 31, 138, 0.4); }
.service-link--pink:hover { background: var(--pink-dim); border-color: var(--pink); }
.service-link--blue { color: var(--blue); border-color: rgba(0, 232, 255, 0.4); }
.service-link--blue:hover { background: var(--blue-dim); border-color: var(--blue); }

.audio-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--pale);
  line-height: 1.4;
  margin-top: 20px;
}
.audio-soundcloud {
  margin-top: 12px;
}
.audio-soundcloud a {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--blue);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.audio-soundcloud a:hover {
  opacity: 1;
}

/* ── ETHICS STRIP ── */
#ethics {
  padding: 50px 0;
  background: linear-gradient(135deg, rgba(0, 232, 255, 0.05) 0%, var(--glass) 50%);
  border-top: 1px solid rgba(0, 232, 255, 0.15);
  border-bottom: 1px solid rgba(0, 232, 255, 0.15);
}
.ethics-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  overflow: hidden;
}
.ethics-bg-mark {
  position: absolute;
  top: -0.15em;
  left: -0.05em;
  font-family: var(--font);
  font-size: 480px;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.ethics-content {
  position: relative;
  z-index: 1;
}
.ethics-title {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
  padding-left: 20px;
  border-left: 2px solid var(--blue);
  letter-spacing: -0.01em;
}
.ethics-body {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  max-width: 900px;
}

/* ── CONTACT ── */
#contact {
  padding: 50px 48px 50px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.contact-title {
  font-family: var(--font);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.contact-title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 300;
}
.contact-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  max-width: 520px;
  margin: 0 auto 0;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 700px;
  margin: 0 auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-group { position: relative; }
.form-group.full { grid-column: 1 / -1; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  padding: 18px 22px;
  transition: border-color 0.2s;
  appearance: none;
  resize: none;
}
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible { border-color: var(--pink); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--pale); opacity: 0.6; }
.form-group select option { background: var(--darker); }
.form-group textarea { min-height: 140px; }
.field-error {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #ff6b6b;
  min-height: 0;
}
.field-error:empty { display: none; }
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #ff6b6b;
  border-width: 2px;
}
.form-submit {
  grid-column: 1 / -1;
  margin-top: 2px;
  background: var(--pink);
  border: none;
  color: var(--darker);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 20px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.form-submit:hover { background: #ff4da0; }

/* ── FOOTER ── */
footer {
  padding: 48px;
  border-top: 1px solid var(--glass-border);
  background: rgba(13, 13, 13, 0.6);
  backdrop-filter: blur(12px);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links-group {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.footer-logo img {
  display: block;
  height: 28px;
  width: auto;
  margin-bottom: 8px;
  opacity: 0.7;
}
.footer-tagline {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  color: var(--pale);
  letter-spacing: 0.06em;
  margin-top: 5px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.footer-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pale);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 11px;
  color: var(--pale);
  letter-spacing: 0.06em;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── TAMSIN AUDIO PLAYER ── */
.tamsin-player {
  margin-top: 36px;
}
.tamsin-player-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.tamsin-player-heading {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.player-blue,
.player-pink {
  display: flex;
  align-items: stretch;
  background: linear-gradient(to right, var(--player-fill-start) var(--progress, 0%), var(--player-fill-end) var(--progress, 0%));
  border: 1px solid var(--player-border);
  cursor: pointer;
  user-select: none;
  margin-bottom: 16px;
}
.player-blue {
  --player-accent: var(--blue);
  --player-fill-start: rgba(0, 232, 255, 0.14);
  --player-fill-end: rgba(0, 232, 255, 0.04);
  --player-border: rgba(0, 232, 255, 0.18);
  --player-divider: rgba(0, 232, 255, 0.25);
}
.player-pink {
  --player-accent: var(--pink);
  --player-fill-start: rgba(255, 31, 138, 0.14);
  --player-fill-end: rgba(255, 31, 138, 0.04);
  --player-border: rgba(255, 31, 138, 0.18);
  --player-divider: rgba(255, 31, 138, 0.25);
}
.tamsin-play-btn {
  background: var(--player-accent);
  border: none;
  border-right: 1px solid var(--player-divider);
  color: var(--darker);
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.tamsin-play-btn:hover { opacity: 0.85; }
.tamsin-track-title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.tamsin-track-info {
  flex: 1;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tamsin-track-sub {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  color: var(--player-accent);
  letter-spacing: 0.04em;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.tamsin-track-sub:hover { opacity: 1; }
.tamsin-time-display {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--pale);
  padding: 18px 24px;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  letter-spacing: 0.04em;
}
.tamsin-player-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tamsin-player-cta {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid;
  transition: all 0.2s ease;
}
.tamsin-player-cta--blue {
  color: var(--blue);
  border-color: rgba(0, 232, 255, 0.4);
}
.tamsin-player-cta--blue:hover {
  background: var(--blue-dim);
  border-color: var(--blue);
}
.tamsin-player-cta--pink {
  color: var(--pink);
  border-color: rgba(255, 31, 138, 0.4);
}
.tamsin-player-cta--pink:hover {
  background: var(--pink-dim);
  border-color: var(--pink);
}

@media (max-width: 960px) {
  .tamsin-player { padding-left: 0; }
  .tamsin-player-ctas { flex-direction: column; }
  .tamsin-player-cta { justify-content: center; }
}

/* ── VOICE PACKS ── */
#voice-packs {
  padding: 0 48px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.voice-packs-header {
  max-width: 1200px;
  margin-bottom: 50px;
}
.voice-packs-intro {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-top: 20px;
}
.voice-packs-shops {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.voice-packs-more {
  margin-top: 40px;
}

/* ElevenLabs licensing block */
.voice-packs-elevenlabs {
  background: rgba(0, 232, 255, 0.04);
  border: 1px solid rgba(0, 232, 255, 0.15);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 0;
}
.voice-packs-elevenlabs-title {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin: 12px 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.voice-packs-elevenlabs-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  max-width: 560px;
}
.voice-packs-elevenlabs .voice-pack-btn {
  font-size: 18px;
}

/* Gumroad packs subheader */
.voice-packs-subheader {
  margin-bottom: 32px;
}
.voice-packs-subheading {
  font-family: var(--font);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.voice-packs-subheading em {
  font-style: italic;
  color: var(--blue);
  font-weight: 300;
}
.voice-packs-subdesc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

.voice-packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.voice-pack-card {
  background: rgba(0, 232, 255, 0.04);
  border: 1px solid rgba(0, 232, 255, 0.15);
  padding: 28px 28px;
  position: relative;
  transition: all 0.3s ease;
}
.voice-pack-card:hover {
  background: rgba(0, 232, 255, 0.08);
  transform: translateY(-3px);
}
.voice-pack-card--coming {
  background: var(--glass);
  border-color: var(--glass-border);
  opacity: 0.7;
}
.voice-pack-card--coming:hover {
  background: rgba(245, 245, 240, 0.06);
  opacity: 1;
}
.voice-pack-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.voice-pack-num {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--blue);
  opacity: 0.5;
}
.voice-pack-icon {
  color: var(--blue);
  margin-bottom: 12px;
}
.voice-pack-icon svg {
  width: 28px;
  height: 28px;
}
.voice-pack-title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.voice-pack-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 28px;
}
.voice-pack-btn {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue);
  border: 1px solid rgba(0, 232, 255, 0.4);
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.voice-pack-btn:hover {
  background: var(--blue-dim);
  border-color: var(--blue);
}
.voice-pack-btn--ghost {
  color: var(--pale);
  border-color: var(--glass-border);
}
.voice-pack-btn--ghost:hover {
  color: var(--white);
  background: var(--glass);
  border-color: rgba(245, 245, 240, 0.2);
}

/* Voice packs list */
.voice-packs-list {
  list-style: none;
  border-top: 1px solid rgba(0, 232, 255, 0.15);
  margin-bottom: 24px;
}
.voice-pack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 232, 255, 0.15);
  gap: 24px;
}
.voice-pack-item-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.voice-pack-item-title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.voice-packs-more {
  font-size: 18px;
  font-weight: 400;
  color: var(--pale);
  line-height: 1.4;
}
.voice-packs-more a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Follow strip */
.voice-packs-follow {
  background: rgba(0, 232, 255, 0.04);
  border: 1px solid rgba(0, 232, 255, 0.15);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 2px;
}
.voice-packs-follow-title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.voice-packs-follow-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--pale);
  line-height: 1.4;
}
.gumroad-follow-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.gumroad-follow-form input[type="email"] {
  background: var(--glass);
  border: 1px solid rgba(0, 232, 255, 0.3);
  border-right: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 20px;
  outline: none;
  width: 260px;
  transition: border-color 0.2s;
}
.gumroad-follow-form input[type="email"]::placeholder {
  color: var(--pale);
  opacity: 0.6;
}
.gumroad-follow-form input[type="email"]:focus {
  border-color: rgba(0, 232, 255, 0.6);
}
.gumroad-follow-form button {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--darker);
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.gumroad-follow-form button:hover {
  opacity: 0.85;
}
.gumroad-follow-success {
  font-size: 14px;
  color: var(--blue);
  line-height: 1.5;
}

/* Collaboration CTA */
.voice-packs-collab {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.voice-packs-collab-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  max-width: 600px;
}
.voice-packs-collab-link {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--pink);
  border: 1px solid rgba(255, 31, 138, 0.4);
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.voice-packs-collab-link:hover {
  background: var(--pink-dim);
  border-color: var(--pink);
}

/* ── TWO STRANDS ── */
#two-strands {
  padding: 0 48px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── TAMSIN CTA ── */
.tamsin-cta-wrap {
  margin-top: 32px;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--darker);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover { opacity: 0.8; }
.back-to-top--pink { background: var(--pink); }
.back-to-top--white { background: var(--white); }

/* ── CTA STRIP ── */
#cta-strip {
  background: #ff1f8a;
  padding: 60px 0;
}
.cta-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip-heading {
  font-family: var(--font);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--darker);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-strip-btn {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ff1f8a;
  background: var(--darker);
  padding: 16px 36px;
  flex-shrink: 0;
  display: inline-block;
  transition: opacity 0.2s;
}
.cta-strip-btn:hover { opacity: 0.85; }
.cta-strip-btn--blue { color: #00e8ff; }
#cta-strip.cta-strip--blue { background: #00e8ff; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 148px 0 0;
}
#ai-hero { padding-bottom: 0; }
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── HERO EYEBROW BLUE ── */
.hero-eyebrow--blue { color: var(--blue); }
.hero-eyebrow--blue::before { background: var(--blue); }

/* ── BUTTON VARIANTS ── */
.btn-primary--blue { background: var(--blue); color: var(--darker); }
.btn-primary--blue:hover { background: rgba(0, 232, 255, 0.85); }
.btn-ghost--blue { color: var(--blue); border-bottom-color: rgba(0, 232, 255, 0.4); }
.btn-ghost--blue:hover { color: var(--white); border-bottom-color: var(--white); }

/* ── STEPS (How it works) ── */
.steps-section {
  padding: 50px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}
.step {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 40px 32px;
}
.step-num {
  font-family: var(--font);
  font-size: 48px;
  font-weight: 700;
  color: var(--pink);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

/* ── FEATURES (What you get) ── */
.features-section {
  padding: 50px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
#how-it-works { padding-bottom: 0; }
#what-you-get { padding-bottom: 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.feature {
  border-left: 2px solid var(--pink);
  padding-left: 24px;
}
.feature-title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

/* ── AUDIO SECTION ── */
.audio-section {
  padding: 20px 48px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── ELEVENLABS SECTION ── */
.elevenlabs-section {
  padding: 0 48px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── FAQ ── */
.faq-section {
  padding: 50px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.faq-item {
  border-left: 2px solid var(--blue);
  padding-left: 24px;
}
.faq-q {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.faq-a {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

/* ── HOME LISTEN ── */
#home-listen {
  padding: 75px 48px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.home-listen-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.home-listen-col--narration {
  padding-right: 60px;
  border-right: 1px solid var(--glass-border);
}
.home-listen-col--ai {
  padding-left: 60px;
}
.home-listen-heading {
  font-family: var(--font);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.home-listen-cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* ── WIDE SCREEN HERO ── */
@media (min-width: 1400px) {
  nav {
    padding-left: clamp(140px, 14vw, 220px);
  }
  .hero-text {
    width: 50%;
    padding-left: clamp(140px, 14vw, 220px);
  }
}

/* ── HERO INTERMEDIATE — stacked before text overlaps image ── */
@media (max-width: 1100px) {
  #hero {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0;
  }
  body.page-home #hero { padding-top: 0; }
  .hero-bg {
    position: relative;
    inset: auto;
    height: 55vh;
    min-height: 320px;
    max-height: 520px;
    flex-shrink: 0;
  }
  .hero-bg img { object-position: center top; }
  .hero-text {
    position: static;
    width: 100%;
    max-width: none;
    padding: 40px 48px 0;
    z-index: auto;
  }
  #hero::before { display: none; }
  .hero-title { font-size: clamp(44px, 5vw, 60px); }
  .divider--mobile { display: block; margin: 50px auto 0; }
  #home-listen { padding: 50px 48px 0; }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 18px 24px; }
  body.page-home nav:not(.scrolled) .nav-logo img { height: 32px; }
  nav.nav-open { background: var(--darker); border-bottom-color: rgba(245, 245, 240, 0.08); }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--darker);
    border-bottom: 1px solid rgba(245, 245, 240, 0.12);
    padding: 8px 24px 24px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }
  nav.nav-open .nav-mobile {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .nav-mobile ul { list-style: none; display: flex; flex-direction: column; }
  .nav-mobile a {
    display: block;
    padding: 16px 0;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pale);
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 245, 240, 0.1);
    transition: color 0.2s;
  }
  .nav-mobile li:last-child a { border-bottom: none; }
  .nav-mobile a:hover,
  .nav-mobile a.active { color: var(--white); }
  body.page-narration .nav-mobile a.active { color: var(--pink); }
  body.page-ai-voice .nav-mobile a.active { color: var(--blue); }
  nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  #hero {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0;
  }
  body.page-home #hero { padding-top: 0; }
  .hero-bg {
    position: relative;
    inset: auto;
    height: calc(46vh + 100px);
    min-height: 320px;
    max-height: 480px;
    flex-shrink: 0;
  }
  .hero-bg img { object-position: center top; }
  .hero-text {
    position: static;
    width: 100%;
    max-width: none;
    padding: 28px 24px 0;
    z-index: auto;
  }
  #hero::before { display: none; }
  .divider--mobile { display: block; margin: 50px auto 0; }
  .hero-sub { display: none; }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero-title { font-size: 40px; margin-bottom: 20px; }
  .hero-title em.blue { display: block; }
  .hero-title br { display: none; }
  #studio { padding: 0 24px 50px; }
  #privacy { padding: 148px 24px 50px; }
  #not-found { padding-bottom: 50px; }
  #contact-header { padding: 148px 24px 0; }
  .tamsin-inner { grid-template-columns: 1fr; padding: 0 24px; gap: 52px; }
  #tamsin { padding: 50px 0; }
  .tamsin-visual { aspect-ratio: 4 / 3; max-height: 360px; }
  #services { padding: 50px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-secondary { padding: 48px 40px; }
  .service-secondary-body { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ethics-inner { padding: 0 24px; }
  #ethics { padding: 50px 0; }
  #contact { padding: 50px 24px 50px; }
  .contact-form { grid-template-columns: 1fr; }
  .form-submit { font-size: 16px; }
  footer { padding: 36px 24px; }
  .footer-inner { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .footer-links-group { gap: 32px; justify-content: center; }
  .footer-links { align-items: center; }
  #voice-packs { padding: 0 24px 50px; }
  .voice-packs-grid { grid-template-columns: 1fr; }
  .voice-packs-follow { flex-direction: column; align-items: flex-start; gap: 24px; padding: 32px 24px; }
  .gumroad-follow-form { width: 100%; }
  .gumroad-follow-form input[type="email"] { width: 100%; }
  .voice-packs-collab { flex-direction: column; gap: 20px; padding: 32px 24px; }
  .voice-packs-elevenlabs { flex-direction: column; align-items: flex-start; gap: 24px; padding: 48px 40px; margin-bottom: 32px; }
  .voice-packs-subheader { margin-bottom: 24px; }
  .voice-pack-item { flex-direction: column; align-items: flex-start; gap: 16px; }
  #home-listen { padding: 50px 24px 0; }
  .home-listen-inner { grid-template-columns: 1fr; }
  .home-listen-col--narration { padding-right: 0; border-right: none; border-bottom: 1px solid var(--glass-border); padding-bottom: 48px; margin-bottom: 48px; }
  .home-listen-col--ai { padding-left: 0; }
  #two-strands { padding: 0 24px 50px; }
  #cta-strip { padding: 48px 0; }
  .cta-strip-inner { padding: 0 24px; flex-direction: column; align-items: flex-start; }

  .page-hero { padding: 148px 0 60px; }
  .page-hero-inner { padding: 0 24px; }
  .steps-section { padding: 50px 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-section { padding: 50px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .audio-section { padding: 50px 24px; }
  .elevenlabs-section { padding: 0 24px 50px; }
  .faq-section { padding: 50px 24px; }
}

/* ── ICON STATE ── */
.icon-pause { display: none; }

/* ── PAGE-SPECIFIC OVERRIDES ── */
#narration-hero { padding-bottom: 0; }

/* ── CONTACT EXTRAS ── */
.form-group.has-error input:focus-visible,
.form-group.has-error textarea:focus-visible,
.form-group.has-error select:focus-visible { border-color: #ff6b6b; }
.contact-notes {
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.contact-direct {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: #8a8a85;
  line-height: 1.5;
  margin-top: 10px;
}
.contact-direct a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.contact-direct a:hover { opacity: 0.75; }
