:root {
  --blue: #2563eb;
  --sky: #2563eb;
  --ink: #1d1d1f;
  --paper: #f5f5f7;
  --muted: rgba(0, 0, 0, .8);
  --soft: rgba(0, 0, 0, .7);
  --line: rgba(0, 0, 0, .08);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.8,.2,1); }

.page {
  width: min(100%, 1440px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
}

.nav {
  width: 100%;
  height: 64px;
  padding: 0 max(32px, calc((100vw - 1376px) / 2 + 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 980px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
}

.hero {
  height: 764px;
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--paper);
}

.hero-copy {
  height: 352px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.hero h1 {
  width: 820px;
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.04;
}

.mobile-nowrap { display: inline; }

.hero-copy p {
  width: 760px;
  margin: 0;
  color: rgba(29, 29, 31, .72);
  font-size: 20px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 980px;
}

.pill.primary {
  padding: 11px 22px;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

.pill.ghost {
  padding: 11px 22px;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 17px;
}

.demo-art {
  position: relative;
  width: 1214px;
  height: 300px;
  perspective: 1200px;
}

.demo-card {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  transform:
    translate3d(calc(var(--mx) * var(--tilt-x, 0px)), calc(var(--my) * var(--tilt-y, 0px)), 0)
    rotateX(calc(var(--tilt-y, 0px) * -.01deg))
    rotateY(calc(var(--tilt-x, 0px) * .01deg));
  transition: transform 260ms ease-out;
}

.demo-light:hover .demo-card { filter: saturate(1.04); }
.demo-card-a { left: 0; top: 120px; width: 180px; height: 180px; background-image: url("./assets/hero-card-places-statue.webp"); }
.demo-card-b { right: 0; top: 120px; width: 180px; height: 180px; background-image: url("./assets/hero-card-magical-mermaids.webp"); }
.demo-card-c { left: 157px; top: 90px; width: 210px; height: 210px; background-image: url("./assets/hero-card-animals-dogs.webp"); }
.demo-card-d { left: 847px; top: 90px; width: 210px; height: 210px; background-image: url("./assets/hero-card-story-cinderella.webp"); }
.demo-card-e { left: 315px; top: 60px; width: 240px; height: 240px; background-image: url("./assets/hero-card-machines-firetrucks.webp"); }
.demo-card-f { left: 659px; top: 60px; width: 240px; height: 240px; background-image: url("./assets/hero-card-dinosaurs-trex.webp"); }
.demo-card-g { left: 457px; top: 0; width: 300px; height: 300px; background-image: url("./assets/hero-card-featured-unicorns.webp"); }

.product-examples {
  height: 1646.9907px;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
  background: var(--paper);
}

.product-row {
  width: 1214px;
  height: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.product-card,
.how-card,
.quote-grid article {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  transition: transform 450ms ease, box-shadow 450ms ease;
}

.product-card:hover,
.how-card:hover,
.quote-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .08);
}

.product-card:hover .product-image,
.how-card:hover .how-image,
.episode-card:hover img,
.quote-grid article:hover img:not(.reddit-icon) {
  transform: scale(1.018);
}

.product-copy {
  height: 280px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.product-copy h2 {
  width: 100%;
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
}

.product-copy p {
  width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.374px;
}

.proof { color: rgba(0, 102, 204, .9) !important; font-weight: 600; }

.product-image {
  position: relative;
  height: 320px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}

.homepod { background-image: url("./assets/homepod-listening.webp"); }
.grandma-parallax { background-image: url("./assets/grandma-distance-call.webp"); background-position-y: calc(50% + var(--parallax, 0px)); }

.distance-chip,
.record-chip {
  position: absolute;
  left: 22px;
  padding: 10px 16px;
  border-radius: 980px;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  font-size: 13px;
  font-weight: 600;
}

.distance-chip { top: 22px; }
.record-chip {
  bottom: 24px;
  border-radius: 14px;
  line-height: 1.2;
}
.record-chip small { color: rgba(0,0,0,.55); }

.episode-examples {
  position: relative;
  height: 855px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-heading.centered {
  align-items: center;
  text-align: center;
}

.section-heading p,
.trust-left p,
.pricing > p,
.why-copy p {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.06;
}

.episode-examples .section-heading h2 {
  width: min(100%, 600px);
}

.section-heading span {
  width: 540px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.374px;
}

.episode-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.episode-marquee.is-dragging {
  cursor: grabbing;
}

.episode-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: scroll-left 92s linear infinite;
}

.episode-track:hover,
.episode-marquee.is-dragging .episode-track,
.host-track:hover,
.art-field:hover .floating-art {
  animation-play-state: paused;
}

.episode-card {
  width: 253px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 16px;
  background: #0062ad;
  color: #fff;
  border: 1px solid rgba(0,0,0,.08);
  cursor: pointer;
}

.episode-card img {
  height: 252.9907px;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.episode-card div {
  min-height: 161px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.episode-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.374px;
}

.episode-card p {
  margin: 0;
  color: var(--paper);
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.374px;
}

.episode-card .episode-meta {
  padding: 6px 14px;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  background: rgba(40, 40, 40, .5);
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.episode-card .episode-meta b {
  color: #fff;
  font-weight: 700;
}

.firetrucks { background: #a20101; }
.trex { background: #c63c01; }
.pyramids { background: #cb820b; }
.raptors { background: #265e22; }
.statue { background: #30827a; }
.lionfish, .cinderella { background: #0062ad; }
.rapunzel { background: #9e49c5; }
.unicorns { background: #f95d93; }
.alpacas { background: #01686f; }
.helicopter { background: #015bc1; }

.how {
  height: 895px;
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  background: var(--paper);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.how-card {
  border: 1px solid rgba(0,0,0,.06);
}

.how-image {
  height: 260px;
  background-position: center;
  background-size: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}

.img-voice { background-image: url("./assets/voice-recording-demo.webp"); }
.img-episode { background-image: url("./assets/new-episode-from-grandma.webp"); }
.img-listen { background-image: url("./assets/family-listening-speaker.webp"); }

.how-copy {
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-copy img {
  width: 66px;
  height: 66px;
  object-fit: cover;
}

.how-copy h3 {
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
}

.how-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.trust.dark {
  height: 588px;
  padding: 64px;
  background: var(--ink);
}

.trust-inner,
.faq-inner {
  width: 1214px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
}

.trust-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-left h2 {
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
}

.trust.dark .trust-left h2 { color: #fff; }
.trust-left span {
  color: rgba(255,255,255,.5);
  font-size: 18px;
  line-height: 1.5;
}

.trust-list,
.faq-list {
  display: flex;
  flex-direction: column;
}

.trust-list article,
.faq-list article {
  min-height: 92px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.faq-list article {
  display: block;
  border-bottom-color: rgba(0,0,0,.08);
}

.trust-list i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: #fff;
}

.trust-list i svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-list h3,
.faq-list h3 {
  margin: 0 0 4px;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.trust-list h3 { color: #fff; }
.trust-list p,
.faq-list p {
  margin: 0;
  color: rgba(255,255,255,.38);
  font-size: 14px;
  line-height: 1.5;
}

.faq-list h3 { color: var(--ink); font-size: 18px; }
.faq-list p { color: #6e6e73; font-size: 15px; line-height: 1.6; }

.text-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.story-scene {
  position: relative;
  height: 808.6607px;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background-position: center calc(50% + var(--parallax, 0px));
  background-size: cover;
}

.story-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.5), rgba(0,0,0,0) 35%);
}

.scene-one { background-image: url("./assets/story-scene-family-room.webp"); }
.scene-two { background-image: url("./assets/story-scene-bedroom-listening.webp"); }

.story-scene > * { position: relative; z-index: 1; }
.story-scene h2 {
  width: 640px;
  margin: 0;
  color: #fff;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08;
}

.floating-card {
  position: absolute;
  left: 64px;
  top: 64px;
  transform: translateY(calc(var(--scroll-float, 0px) * .18));
  box-shadow: 0 26px 70px rgba(0,0,0,.25);
}

.quotes {
  height: 610px;
  padding: 84px 113px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: var(--paper);
}

.quotes .section-heading { width: 820px; }
.quotes .section-heading h2 { font-size: 42px; }

.quote-grid {
  width: 1214px;
  height: 285px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quote-grid article {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.04);
}

.quote-grid p {
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
}

.quote-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(0,0,0,.6);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.quote-grid .reddit-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 4px;
  object-fit: contain;
}

.faq-section {
  height: 738px;
  padding: 64px;
  background: var(--paper);
}

.faq-section .trust-left h2 {
  color: var(--ink);
}

.faq-section .trust-left span {
  color: #6e6e73;
}

.automagic {
  position: relative;
  height: 846px;
  padding: 64px 100px;
  display: grid;
  place-items: center;
  background: var(--paper);
}

.art-field {
  position: relative;
  width: 1214px;
  height: 718px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}

.floating-art {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0,0,0,.1);
  animation: float-left 78s linear infinite;
}

.floating-art:nth-child(1) { width: 130px; height: 130px; left: 767px; top: 130px; animation-delay: -2s; }
.floating-art:nth-child(2) { width: 180px; height: 180px; left: -29px; top: 309px; animation-delay: -6s; }
.floating-art:nth-child(3) { width: 130px; height: 130px; left: 1140px; top: 268px; animation-delay: -11s; }
.floating-art:nth-child(4) { width: 180px; height: 180px; left: -126px; top: 633px; animation-delay: -17s; }
.floating-art:nth-child(5) { width: 170px; height: 170px; left: 818px; top: 614px; animation-delay: -22s; }
.floating-art:nth-child(6) { width: 130px; height: 130px; left: 47px; top: -10px; animation-delay: -4s; }
.floating-art:nth-child(7) { width: 170px; height: 170px; left: 274px; top: 74px; animation-delay: -9s; }
.floating-art:nth-child(8) { width: 148px; height: 148px; left: 578px; top: 8px; animation-delay: -13s; }
.floating-art:nth-child(9) { width: 180px; height: 180px; left: 970px; top: 30px; animation-delay: -19s; }
.floating-art:nth-child(10) { width: 130px; height: 130px; left: 106px; top: 508px; animation-delay: -24s; }
.floating-art:nth-child(11) { width: 180px; height: 180px; left: 998px; top: 464px; animation-delay: -7s; }
.floating-art:nth-child(12) { width: 170px; height: 170px; left: 325px; top: 559px; animation-delay: -15s; }
.floating-art:nth-child(13) { width: 148px; height: 148px; left: 607px; top: 508px; animation-delay: -20s; }

.automagic-copy {
  position: absolute;
  width: 642px;
  left: 399px;
  top: 314px;
  z-index: 2;
}

.automagic-copy h2 {
  font-size: 52px;
  line-height: 1.04;
}

.automagic-copy span {
  width: 579px;
  font-size: 18px;
}

.pricing {
  min-height: 860px;
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: #fff;
  text-align: center;
}

.pricing > p { color: var(--blue); }
.pricing h2 {
  width: min(100%, 860px);
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.pricing-intro {
  width: min(100%, 720px);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.pricing-grid {
  width: min(100%, 1030px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}

.pricing-grid:has(.add-on-plan[hidden]) {
  width: min(100%, 505px);
  grid-template-columns: minmax(0, 1fr);
}

.pricing-card {
  min-height: 560px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 20px;
  background: #f9fafb;
}

.pricing-card.featured-plan {
  border-color: rgba(37,99,235,.34);
  background: #fff;
  box-shadow: 0 18px 54px rgba(37,99,235,.12);
}

.pricing-card[hidden] {
  display: none;
}

.plan-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.plan-copy > p {
  width: fit-content;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.plan-copy h3 {
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.05;
}

.plan-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
}

.reveal-plan {
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(37,99,235,.28);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.reveal-plan:focus-visible {
  outline: 3px solid rgba(37,99,235,.24);
  outline-offset: 3px;
}

.plan-price strong {
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 64px;
  line-height: .95;
  letter-spacing: -1.5px;
}

.plan-price span {
  color: rgba(0,0,0,.48);
  font-size: 18px;
  font-weight: 600;
}

.plan-copy ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.plan-copy li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
}

.plan-copy li::before,
.pricing-trust span::before {
  content: "✓";
  margin-right: 8px;
  color: #34c759;
  font-weight: 700;
}

.stripe-buy-wrap {
  min-height: 74px;
}

.stripe-buy-wrap stripe-buy-button {
  display: block;
  width: 100%;
}

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  color: rgba(0,0,0,.55);
  font-size: 14px;
  font-weight: 600;
}

.more-voices {
  margin: -8px 0 0;
  color: rgba(0,0,0,.58);
  font-size: 16px;
  font-weight: 600;
}

.more-voices a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hosts {
  height: 575px;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  background: var(--paper);
}

.hosts-heading {
  width: 760px;
}

.hosts-heading h2 {
  font-size: 40px;
}

.hosts-heading span {
  width: 760px;
  font-size: 18px;
}

.host-marquee {
  width: 100%;
  height: 230px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.host-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: scroll-left 96s linear infinite;
}

.host-track figure {
  width: 180px;
  height: 210px;
  margin: 0;
  flex: 0 0 auto;
  text-align: center;
}

.host-track span {
  width: 118px;
  height: 118px;
  margin: 14px auto 20px;
  display: block;
  border-radius: 50%;
  background: var(--bg);
}

.host-track img {
  width: 108px;
  height: 108px;
  margin: 5px auto 0;
  object-fit: contain;
}

.host-track figcaption {
  font-size: 18px;
  font-weight: 700;
}

.why {
  height: 548px;
  padding: 64px 0;
  background: var(--paper);
}

.why-inner {
  width: 1214px;
  height: 420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-image {
  height: 420px;
  border-radius: 16px;
  background: #fff url("./assets/podcast-hero-device.webp") center / contain no-repeat;
}

.why-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-copy h2 {
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.08;
}

.why-copy span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.scene-two { height: 808.6607px; }

.final-cta {
  height: 461px;
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: var(--blue);
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  width: 800px;
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.08;
}

.final-cta p {
  width: 600px;
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 18px;
  line-height: 1.55;
}

.final-cta a {
  padding: 16px 40px;
  border-radius: 980px;
  background: #fff;
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
}

.footer {
  height: 325px;
  background: var(--ink);
  color: #fff;
}

.footer-main {
  height: 269px;
  padding: 72px 80px 64px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand h2 {
  margin: 0 0 20px;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 22px;
}

.footer-brand p {
  width: 280px;
  margin: 0;
  color: rgba(255,255,255,.38);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer nav p {
  margin: 0;
  color: rgba(255,255,255,.25);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.footer nav a {
  color: rgba(255,255,255,.5);
  font-size: 14px;
}

.footer-bottom {
  height: 56px;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.21);
  font-size: 13px;
}

.legal-main {
  background: #fff;
}

.legal-hero {
  padding: 92px 32px 48px;
  text-align: center;
  background: var(--paper);
}

.legal-hero p {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.legal-hero h1 {
  width: min(100%, 760px);
  margin: 0 auto;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.05;
}

.legal-content {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 56px 32px 92px;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
}

.legal-content p,
.legal-content li {
  color: rgba(0,0,0,.72);
  font-size: 17px;
  line-height: 1.62;
}

.legal-content ul {
  padding-left: 22px;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}

@keyframes float-left {
  from { transform: translateX(0); }
  to { transform: translateX(-240px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 1100px) {
  .page { width: 100%; }
  .nav { padding: 0 28px; }
  .hero,
  .product-examples,
  .how,
  .trust.dark,
  .story-scene,
  .quotes,
  .faq-section,
  .automagic,
  .pricing,
  .hosts,
  .why,
  .final-cta,
  .footer {
    height: auto;
  }
  .hero { padding: 72px 32px 74px; }
  .hero-copy { height: auto; }
  .hero h1,
  .hero-copy p,
  .pricing h2,
  .final-cta h2,
  .final-cta p {
    width: min(100%, 760px);
  }
  .demo-art {
    width: 1214px;
    max-width: none;
    left: auto;
    margin-left: 0;
    margin-top: 36px;
    transform: scale(.78);
    transform-origin: top center;
    margin-bottom: -10px;
  }
  .product-examples { padding: 56px 32px; }
  .product-row,
  .trust-inner,
  .faq-inner,
  .why-inner {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
  }
  .product-row {
    width: min(100%, 760px);
    max-width: 760px;
    margin: 0 auto;
  }
  .product-card { min-height: 0; }
  .product-copy { height: auto; }
  .episode-examples { height: auto; padding-bottom: 24px; }
  .how { padding: 64px 32px; }
  .how-image {
    height: 300px;
    background-color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .quote-grid {
    grid-template-columns: 1fr;
    height: auto;
    width: 100%;
  }
  .how-grid {
    grid-template-columns: 1fr;
    height: auto;
    width: min(100%, 880px);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
  .how-card {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .how-image {
    height: 100%;
    min-height: 300px;
  }
  .how-copy {
    justify-content: center;
  }
  .why-inner {
    width: min(100%, 880px);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
  .trust.dark,
  .faq-section { padding: 64px 32px; }
  .story-scene {
    min-height: 620px;
  }
  .story-scene .floating-card {
    display: none;
  }
  .quotes {
    padding: 72px 32px;
    align-items: center;
  }
  .quotes .section-heading,
  .hosts-heading,
  .hosts-heading span {
    width: min(100%, 760px);
  }
  .quote-grid {
    width: min(100%, 760px);
    gap: 20px;
  }
  .quote-grid article {
    padding: 34px;
    gap: 30px;
  }
  .quote-grid p {
    font-size: 20px;
    line-height: 1.34;
  }
  .automagic {
    height: 720px;
    min-height: 0;
    padding: 0;
    display: block;
    overflow: hidden;
  }
  .art-field {
    position: absolute;
    left: 50%;
    top: 64px;
    width: 1214px;
    height: 718px;
    transform: translateX(-50%) scale(.72);
    transform-origin: top center;
  }
  .art-field .floating-art:nth-child(10),
  .art-field .floating-art:nth-child(12),
  .art-field .floating-art:nth-child(13) {
    display: none;
  }
  .automagic-copy {
    left: 50%;
    top: 230px;
    width: min(90%, 642px);
    transform: translateX(-50%);
  }
  .why { padding: 64px 32px; }
  .footer-main {
    height: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    height: auto;
    min-height: 64px;
    padding: 14px 20px;
    align-items: center;
    gap: 12px;
  }
  .nav-links {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0;
    font-size: 13px;
  }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta {
    padding: 9px 16px;
    font-size: 14px;
  }
  .hero { padding: 48px 20px 70px; }
  .hero h1 { font-size: 38px; }
  .hero-copy p { font-size: 18px; }
  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }
  .hero-actions .pill {
    min-width: 138px;
    padding: 10px 20px;
    font-size: 15px;
  }
  .hero-actions .pill.ghost { display: none; }
  .mobile-nowrap { white-space: nowrap; }
  .demo-art {
    margin-top: 28px;
    transform: scale(.47);
    margin-bottom: -128px;
  }
  .product-examples,
  .how,
  .trust.dark,
  .faq-section,
  .quotes,
  .why,
  .pricing,
  .final-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
  .product-row {
    width: 100%;
    max-width: 520px;
    grid-template-columns: 1fr;
  }
  .product-card {
    display: flex;
    flex-direction: column;
  }
  .product-card .product-image { order: 1; }
  .product-card .product-copy { order: 2; }
  .product-copy {
    padding: 36px 24px;
  }
  .product-copy p,
  .section-heading span,
  .hosts-heading span {
    width: 100%;
  }
  .section-heading h2,
  .automagic-copy h2,
  .story-scene h2,
  .pricing h2,
  .final-cta h2 {
    font-size: 34px;
  }
  .episode-marquee {
    width: 100vw;
    align-self: flex-start;
    margin-left: -20px;
    overflow-x: auto;
    overflow-y: hidden;
    mask-image: none;
    touch-action: pan-y;
    scrollbar-width: none;
  }
  .episode-marquee::-webkit-scrollbar { display: none; }
  .episode-track {
    gap: 12px;
    animation: none;
  }
  .episode-examples {
    gap: 24px;
    padding-bottom: 8px;
  }
  .episode-examples .episode-card {
    width: 126px;
    border-radius: 10px;
  }
  .episode-examples .episode-card img {
    height: 126px;
  }
  .episode-examples .episode-card div {
    min-height: 112px;
    padding: 10px;
    gap: 5px;
  }
  .episode-examples .episode-card h3 {
    font-size: 14px;
    line-height: 1.2;
  }
  .episode-examples .episode-card p {
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0;
  }
  .episode-examples .episode-card .episode-meta {
    margin-top: auto;
    padding: 6px 14px;
    gap: 5px;
    font-size: 9px;
    border-radius: 14px;
  }
  .how-image {
    height: 230px;
    min-height: 0;
    background-size: cover;
  }
  .how-card {
    display: block;
  }
  .how-copy { padding: 32px 24px; }
  .how-copy img {
    width: 50px;
    height: 50px;
  }
  .trust-inner,
  .faq-inner {
    gap: 36px;
  }
  .trust-left h2 { font-size: 34px; }
  .story-scene {
    padding: 40px 20px;
    min-height: 350px;
    background-position: center calc(48% + var(--parallax, 0px));
  }
  .scene-one { background-position-x: 40%; }
  .story-scene h2 { width: 100%; }
  .floating-card { width: 220px; }
  .quotes .section-heading { width: 100%; }
  .quote-grid article {
    padding: 32px;
    gap: 28px;
  }
  .quote-grid p {
    font-size: 18px;
    line-height: 1.4;
  }
  .automagic {
    height: 520px;
    min-height: 0;
    padding: 0;
  }
  .art-field {
    top: -20px;
    width: 1214px;
    height: 718px;
    transform: translateX(-50%) scale(.54);
  }
  .art-field .floating-art:nth-child(3),
  .art-field .floating-art:nth-child(5),
  .art-field .floating-art:nth-child(11) {
    display: none;
  }
  .automagic-copy {
    top: 150px;
    width: min(86%, 342px);
  }
  .automagic-copy span {
    width: 100%;
    font-size: 16px;
  }
  .pricing {
    gap: 22px;
  }
  .pricing h2 {
    font-size: 38px;
  }
  .pricing-intro {
    width: 100%;
    font-size: 16px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing-card {
    min-height: 0;
    padding: 22px;
    border-radius: 16px;
  }
  .plan-copy h3 {
    font-size: 30px;
  }
  .plan-price strong {
    font-size: 54px;
  }
  .pricing-trust {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }
  .host-track figure { width: 150px; }
  .why-inner { gap: 32px; }
  .why-image { height: 300px; }
  .footer-main,
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    height: auto;
    flex-direction: column;
    gap: 10px;
  }
  .legal-hero {
    padding: 64px 20px 36px;
  }
  .legal-hero h1 {
    font-size: 38px;
  }
  .legal-content {
    padding: 36px 20px 72px;
  }
}
