:root {
  --bg: #111111;
  --bg-2: #1a1a1a;
  --fg: #f5f5f5;
  --fg-muted: #888888;
  --accent: #7C3AED;
  --accent-dim: rgba(124, 58, 237, 0.12);
  --border: #2a2a2a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-link-plain {
  color: var(--fg-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link-plain:hover { color: var(--fg); }
.nav-link-accent {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-link-accent:hover { opacity: 0.75; }
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  color: var(--fg);
  flex-shrink: 0;
}
.nav-hamburger svg { width: 18px; height: 18px; }
.nav-hamburger:hover { border-color: var(--accent); }

/* footer flex helpers */
.footer-left { display: flex; flex-direction: column; gap: 4px; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; }

/* audio edge flex */
.ae-left { display: flex; flex-direction: column; gap: 4px; }
.ae-right { display: flex; flex-direction: column; gap: 16px; }

/* HERO */
.hero {
  padding: 80px 48px 0;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.65;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.stat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.hero-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.platform-tag {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* TIMELINE VISUAL */
.hero-visual {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 48px;
}
.timeline-bar {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
}
.timeline-track {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.clip {
  height: 32px;
  border-radius: 4px;
  flex-shrink: 0;
}
.c1 { width: 80px; background: rgba(124,58,237,0.4); }
.c2 { width: 140px; background: rgba(124,58,237,0.6); }
.c3 { width: 60px; background: rgba(124,58,237,0.3); }
.c4 { width: 100px; background: rgba(124,58,237,0.5); }
.playhead {
  position: absolute;
  left: 50%;
  top: -8px;
  width: 2px;
  height: 48px;
  background: var(--accent);
  border-radius: 1px;
}

/* SECTION SHARED */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 48px;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 48px;
}
.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {
  border-top: 2px solid var(--border);
  padding-top: 28px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-dim);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PRICING */
.pricing {
  padding: 100px 48px;
  background: var(--bg-2);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.65;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.plan-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), inset 0 0 40px rgba(255,92,0,0.04);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 16px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.per-mo {
  font-size: 18px;
  font-weight: 500;
  color: var(--fg-muted);
}
.plan-features {
  list-style: none;
}
.plan-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child {
  border-bottom: none;
}

/* AUDIO EDGE */
.audio-edge {
  padding: 100px 48px;
}
.ae-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ae-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
/* waveform/before-after classes removed — replaced by ae-cta-card */

/* AUDIO-EDGE CTA CARD (replaces before/after placeholder) */
.ae-cta-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}
.ae-cta-headline {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ae-cta-sub {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

/* PROCESS / PERSONAS */
.process {
  padding: 100px 48px;
  background: var(--bg-2);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.persona {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
}
.persona-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.persona-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.persona-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}
.cta-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.15s, transform 0.15s;
}
.cta-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.cta-btn:active { transform: translateY(0); }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-email {
  font-size: 14px;
  color: var(--accent);
}

/* PRICING PAGE */
.pricing-page-hero {
  padding: 80px 48px 60px;
  text-align: center;
}
.pricing-page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.pricing-page-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}
.pricing-page-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}
.pricing-page-tiers {
  padding: 0 48px 100px;
  background: var(--bg);
}
.pricing-page-tiers-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.plan-features-check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-cta {
  display: block;
  margin-top: 28px;
  padding: 13px 24px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}
.plan-cta:hover { opacity: 0.8; transform: translateY(-1px); }
.plan-cta-accent {
  background: var(--accent);
  color: var(--bg);
}
.plan-cta-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.plan-cta-outline:hover { border-color: var(--fg-muted); }
.pricing-faq {
  padding: 100px 48px;
  background: var(--bg-2);
}
.pricing-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.faq-a {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.pricing-footer-cta {
  padding: 56px 48px;
  text-align: center;
  background: var(--bg);
}
.pricing-footer-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.pricing-footer-cta-text {
  font-size: 17px;
  color: var(--fg-muted);
}
.pricing-footer-cta-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.15s;
}
.pricing-footer-cta-link:hover { opacity: 0.75; }

/* ===== PORTFOLIO / WORK SECTION ===== */

/* Shared section wrapper */
.work-section {
  padding: 100px 48px;
}
.work-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.work-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0;
}
.work-headline {
  margin-bottom: 0;
}
.work-view-all {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 48px;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.work-view-all:hover { opacity: 0.7; }

/* Grid — teaser (3 cols) and full (3 cols default) */
.work-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}
.work-grid-teaser { grid-template-columns: repeat(3, 1fr); }
.work-grid-full   { grid-template-columns: repeat(3, 1fr); }

/* Video card */
.work-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.work-card:hover {
  box-shadow: 0 0 0 2px var(--accent), 0 8px 32px rgba(124, 58, 237, 0.18);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* 9:16 video area — min-height is primary sizing, aspect-ratio is enhancement.
   aspect-ratio collapses in some mobile WebKit grid cells, so min-height is
   what ensures the card is always visible. */
.work-card-video {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
  min-height: 420px;
  aspect-ratio: 9 / 16;
}
.work-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Placeholder state — flow layout (not absolute) so it's visible even when
   aspect-ratio isn't computed by the browser. Inherits min-height from parent. */
.work-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  min-height: inherit;
  text-align: center;
  background: linear-gradient(160deg, var(--bg-2) 0%, rgba(124,58,237,0.08) 100%);
}
.work-placeholder-icon {
  color: var(--accent);
  opacity: 0.7;
}
.work-placeholder-text {
  font-size: 14px;
  color: var(--fg);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.work-placeholder-sub {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.8;
  line-height: 1.5;
}

/* Card metadata strip */
.work-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  flex-wrap: wrap;
}
.work-creator {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.work-creator-empty {
  color: var(--fg-muted);
  font-style: italic;
}
.work-niche-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.work-views {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* ---- /work full page ---- */
.work-page-header {
  padding: 80px 48px 48px;
  text-align: center;
}
.work-page-header-inner {
  max-width: 720px;
  margin: 0 auto;
}
.work-page-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
}
.work-page-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}

/* Filter pills bar */
.work-filters-bar {
  padding: 0 48px 8px;
  border-bottom: 1px solid var(--border);
}
.work-filters-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 16px;
}
.work-filter-pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.work-filter-pill:hover {
  color: var(--fg);
  border-color: var(--fg-muted);
}
.work-filter-active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* Full grid section */
.work-full-section {
  padding: 56px 48px 80px;
}
.work-full-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Empty state */
.work-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
}
.work-empty-text {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.work-empty-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* Bottom CTA on /work page */
.work-cta-section {
  padding: 64px 48px;
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.work-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.work-cta-text {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

/* ===== TABLET 900px ===== */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .nav-inner { gap: 12px; position: relative; }
  .nav-actions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    z-index: 50;
  }
  .nav-actions-open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-inner { gap: 12px; }

  .hero { padding: 48px 24px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { order: 1; }
  .hero-right { order: 2; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat { padding: 16px 12px; }
  .stat-value { font-size: 24px; }
  .hero-visual { padding: 0; margin-top: 40px; }

  .how-it-works, .pricing, .audio-edge, .process { padding: 72px 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .step-number { font-size: 40px; }
  .pricing-page-hero { padding: 56px 24px 40px; }
  .pricing-page-tiers { padding: 0 24px 72px; }
  .pricing-faq { padding: 72px 24px; }
  .pricing-footer-cta { padding: 40px 24px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .plan { padding: 28px 24px; }
  .plan-price { font-size: 36px; }

  .ae-inner { grid-template-columns: 1fr; gap: 40px; }
  .ae-visual { order: -1; }

  .process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Work section tablet */
  .work-section { padding: 72px 24px; }
  .work-grid-teaser { grid-template-columns: repeat(2, 1fr); }
  .work-grid-full   { grid-template-columns: repeat(2, 1fr); }
  .work-page-header { padding: 56px 24px 36px; }
  .work-filters-bar { padding: 0 24px 8px; }
  .work-full-section { padding: 40px 24px 64px; }
  .work-cta-section { padding: 48px 24px; }

  .closing { padding: 80px 24px; }

  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ===== MOBILE 600px ===== */
@media (max-width: 600px) {
  .nav { padding: 12px 16px; }
  .nav-inner { gap: 8px; flex-wrap: wrap; }
  .nav-logo { font-size: 18px; flex-shrink: 0; }
  .nav-actions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    z-index: 50;
  }
  .nav-actions-open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-link-plain, .nav-link-accent { font-size: 13px; }
  .nav a { font-size: 13px !important; }
  .nav-tagline { display: none; }

  /* Portal page containers */
  .page { padding: 24px 16px !important; max-width: 100% !important; }
  .page-header { flex-direction: column; gap: 12px; }
  .page-title { font-size: clamp(22px, 6vw, 30px) !important; }
  .page-sub { font-size: 13px; }

  /* Dashboard stat cards: 2x2 grid on mobile */
  .stat-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .stat-card { padding: 14px 10px; }
  .stat-card .val { font-size: 22px; }
  .stat-card .lbl { font-size: 10px; }

  /* Submission cards */
  .submission-card { padding: 14px 16px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .submission-title { white-space: normal; }

  /* Forms */
  .card { padding: 20px 16px !important; }
  .type-grid { grid-template-columns: 1fr !important; }
  .btn { padding: 12px 20px; font-size: 14px; }

  /* View page */
  .info-row { gap: 16px; }

  .hero { padding: 36px 20px 0; }
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 15px; }

  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats > *:last-child { grid-column: 1 / -1; }

  .hero-platforms { gap: 6px; }
  .platform-tag { font-size: 11px; padding: 5px 12px; }

  .how-it-works, .pricing, .audio-edge, .process { padding: 56px 20px; }
  .section-headline { font-size: 28px; margin-bottom: 36px; }
  .pricing-page-hero { padding: 40px 20px 32px; }
  .pricing-page-headline { font-size: 32px; }
  .pricing-page-sub { font-size: 15px; }
  .pricing-page-tiers { padding: 0 20px 56px; }
  .pricing-faq { padding: 56px 20px; }
  .faq-q { font-size: 16px; }
  .pricing-footer-cta { padding: 32px 20px; }
  .pricing-footer-cta-text { font-size: 15px; }

  .step { padding-top: 20px; }
  .step-number { font-size: 36px; margin-bottom: 14px; }
  .step-title { font-size: 20px; }
  .step-desc { font-size: 14px; }

  .plan { padding: 24px 20px; }
  .plan-name { font-size: 18px; }
  .plan-price { font-size: 32px; }
  .plan-features li { font-size: 13px; padding: 7px 0; }

  .process-grid { grid-template-columns: 1fr; gap: 12px; }
  .persona { padding: 20px 18px; }
  .persona-name { font-size: 16px; }

  /* Work section mobile — single column so cards are clearly visible */
  .work-section { padding: 56px 20px; }
  .work-grid-teaser { grid-template-columns: 1fr 1fr; }
  .work-grid-full   { grid-template-columns: 1fr; gap: 16px; display: grid !important; }
  .work-header-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .work-page-header { padding: 40px 20px 28px; }
  .work-page-headline { font-size: 32px; }
  .work-filters-bar { padding: 0 20px 8px; }
  .work-filters-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; flex-wrap: nowrap; }
  .work-filters-inner::-webkit-scrollbar { display: none; }
  .work-full-section { padding: 32px 20px 56px; }
  .work-cta-section { padding: 40px 20px; }
  .work-cta-text { font-size: 16px; }
  /* Force card visibility on mobile — ensure grid items cannot collapse */
  .work-card { visibility: visible; display: block !important; }
  .work-card-video { min-height: 420px; }

  .closing { padding: 64px 20px; }
  .closing-headline { font-size: 30px; }
  .closing-sub { font-size: 16px; }
  .cta-btn { padding: 12px 28px; font-size: 14px; }

  .footer { padding: 28px 20px; }
}

/* ===== SMALL MOBILE 380px ===== */
@media (max-width: 380px) {
  .nav { padding: 10px 12px; }
  .nav-actions { gap: 8px; }

  .page { padding: 20px 12px !important; }
  .page-title { font-size: 20px !important; }
  .stat-grid { gap: 6px !important; }
  .stat-card .val { font-size: 20px; }

  .hero-headline { font-size: 30px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats > *:last-child { grid-column: auto; }
  .plan-price { font-size: 28px; }
}