:root {
  color-scheme: dark;
  --ink: #06111d;
  --navy: #071827;
  --blue: #0b1f3a;
  --gold: #f4c95d;
  --orange: #f59e0b;
  --green: #4caf7d;
  --paper: #fff3da;
  --text: #f8fafc;
  --muted: #c4d0df;
  --line: rgba(248, 250, 252, 0.14);
  --max: 1160px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, #071827 0%, #0b1f3a 42%, #06111d 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 44px);
  border-bottom: 1px solid rgba(248, 250, 252, 0.08);
  background: rgba(6, 17, 29, 0.68);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 34px;
  width: auto;
  color: rgba(248, 250, 252, 0.94);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  object-position: top center;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.4vw, 28px);
  color: rgba(248, 250, 252, 0.78);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-action {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(244, 201, 93, 0.36);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--paper);
  background: rgba(244, 201, 93, 0.1);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 92px clamp(18px, 5vw, 72px) clamp(42px, 6vw, 66px);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(1.18) brightness(1.18) contrast(0.96);
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 17, 29, 0.82) 0%, rgba(6, 17, 29, 0.48) 42%, rgba(6, 17, 29, 0.04) 100%),
    linear-gradient(180deg, rgba(6, 17, 29, 0.1) 0%, rgba(6, 17, 29, 0.08) 50%, #071827 100%);
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.4%, -1%, 0);
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 690px);
}

.hero-badge {
  position: absolute;
  z-index: 2;
  top: 74px;
  right: clamp(18px, 5vw, 72px);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  border: 1px solid rgba(244, 201, 93, 0.34);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--gold);
  background: rgba(7, 24, 39, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 17ch;
  font-size: clamp(2.15rem, 4.1vw, 3.75rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(248, 250, 252, 0.9);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.primary-action,
.secondary-action {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.primary-action {
  color: #172033;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 18px 46px rgba(245, 158, 11, 0.24);
}

.primary-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.36) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: actionSheen 3.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes actionSheen {
  0%,
  52% {
    transform: translateX(-120%);
  }
  78%,
  100% {
    transform: translateX(120%);
  }
}

.secondary-action {
  border: 1px solid rgba(248, 250, 252, 0.22);
  color: rgba(248, 250, 252, 0.92);
  background: rgba(255, 255, 255, 0.08);
}

.primary-action:hover,
.secondary-action:hover,
.primary-action:focus-visible,
.secondary-action:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  outline: 0;
}

.hero-copy small {
  display: block;
  margin-top: 14px;
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.86rem;
}

.intro-section,
.story-section,
.emotion-band,
.parent-tension,
.scene-row,
.final-cta {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: clamp(46px, 6vw, 72px) 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.intro-copy h2,
.story-section h2,
.emotion-band h2,
.final-cta h2 {
  max-width: 15ch;
  font-size: clamp(1.95rem, 4.2vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-copy p:not(.eyebrow),
.story-section p,
.emotion-band > p,
.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.quote-panel {
  border-left: 3px solid var(--gold);
  padding: 18px 0 18px 24px;
}

.quote-panel p {
  color: var(--paper);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.16;
}

.quote-panel span {
  display: block;
  margin-top: 14px;
  color: rgba(248, 250, 252, 0.64);
  line-height: 1.45;
}

.parent-tension {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  padding-top: clamp(46px, 6vw, 72px);
  padding-bottom: clamp(46px, 6vw, 72px);
}

.tension-copy h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1;
}

.tension-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.tension-lines {
  display: grid;
  gap: 0;
}

.tension-lines p {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid rgba(248, 250, 252, 0.16);
  color: rgba(196, 208, 223, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.5;
}

.tension-lines p:last-child {
  border-bottom: 1px solid rgba(248, 250, 252, 0.16);
}

.tension-lines span {
  color: var(--paper);
  font-size: clamp(1.42rem, 2.6vw, 2.25rem);
  font-weight: 900;
  line-height: 1.08;
}

.emotion-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  border-top: 1px solid rgba(248, 250, 252, 0.12);
  border-bottom: 1px solid rgba(248, 250, 252, 0.12);
}

.scene-row {
  display: grid;
  gap: 28px;
  overflow: hidden;
  padding-top: clamp(30px, 5vw, 56px);
}

.scene-intro {
  max-width: 740px;
}

.scene-intro h2 {
  max-width: 17ch;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1;
}

.scene-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: sceneGlide 22s linear infinite alternate;
  will-change: transform;
}

@keyframes sceneGlide {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(min(-300px, calc(100vw - 100%)), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-image,
  .scene-track,
  .cinema-panel img,
  .reel-track,
  .heart-main,
  .heart-small,
  .primary-action::after {
    animation: none;
  }
}

.scene-row figure {
  width: min(74vw, 330px);
  flex: 0 0 auto;
  display: block;
  position: relative;
  gap: 15px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.scene-row img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.12);
  transition: transform 520ms ease;
}

.scene-row figure:hover img {
  transform: scale(1.045);
}

.scene-row figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 46px 18px 18px;
  color: rgba(248, 250, 252, 0.92);
  background: linear-gradient(180deg, transparent, rgba(6, 17, 29, 0.86));
  font-size: 0.96rem;
  line-height: 1.42;
}

.scene-row span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
  align-items: center;
  gap: clamp(26px, 6vw, 70px);
}

.story-section .primary-action {
  margin-top: 28px;
}

.story-section img {
  width: 100%;
  border: 1px solid rgba(244, 201, 93, 0.22);
  border-radius: 28px;
  filter: brightness(1.1) saturate(1.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: clamp(54px, 7vw, 84px);
  padding-bottom: clamp(64px, 9vw, 104px);
}

.final-cta img {
  width: 126px;
  margin-bottom: 22px;
  opacity: 0.92;
}

.final-cta h2 {
  max-width: 14ch;
}

.final-cta p:not(.eyebrow) {
  max-width: 540px;
}

.final-cta .primary-action {
  margin-top: 28px;
}

.site-footer {
  width: min(100% - 36px, var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(248, 250, 252, 0.1);
  color: rgba(196, 208, 223, 0.62);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer a {
  color: rgba(248, 250, 252, 0.72);
  font-weight: 750;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
  outline: 0;
}

.cinema-panel {
  position: relative;
  width: min(100% - 36px, var(--max));
  min-height: min(78vh, 760px);
  display: grid;
  align-items: end;
  margin: clamp(28px, 5vw, 64px) auto;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
}

.cinema-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) saturate(1.14);
  animation: cinemaFloat 16s ease-in-out infinite alternate;
}

.cinema-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 17, 29, 0.02) 0%, rgba(6, 17, 29, 0.18) 38%, rgba(6, 17, 29, 0.86) 100%),
    linear-gradient(90deg, rgba(6, 17, 29, 0.56), transparent 58%);
}

.cinema-panel div {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  padding: clamp(28px, 6vw, 68px);
}

.cinema-panel h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.2rem, 5.6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.cinema-panel span {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  font-size: clamp(1.2rem, 2.2vw, 1.72rem);
  font-weight: 900;
}

@keyframes cinemaFloat {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(1.8%, -1.4%, 0);
  }
}

.feeling-reel {
  width: 100%;
  overflow: hidden;
  padding: 24px 0 clamp(54px, 8vw, 92px);
}

.reel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  animation: reelMove 26s linear infinite;
}

.reel-track figure {
  position: relative;
  width: min(70vw, 310px);
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.reel-track img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.14);
}

.reel-track figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 58px 18px 18px;
  color: var(--paper);
  background: linear-gradient(180deg, transparent, rgba(6, 17, 29, 0.9));
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.18;
}

@keyframes reelMove {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-42%, 0, 0);
  }
}

.heart-section {
  width: min(100% - 36px, var(--max));
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 82px) 0;
}

.heart-copy h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.65rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.heart-copy .primary-action {
  margin-top: 28px;
}

.heart-visual {
  position: relative;
  min-height: 560px;
}

.heart-visual img {
  position: absolute;
  object-fit: cover;
  filter: brightness(1.1) saturate(1.12);
  box-shadow: 0 32px 82px rgba(0, 0, 0, 0.34);
}

.heart-main {
  inset: 0 8% auto auto;
  width: min(92%, 470px);
  border-radius: 36px;
  animation: cardFloat 7s ease-in-out infinite alternate;
}

.heart-small {
  width: min(42%, 210px);
  border-radius: 24px;
}

.heart-small.one {
  left: 0;
  bottom: 40px;
  animation: cardFloat 7.8s ease-in-out infinite alternate-reverse;
}

.heart-small.two {
  right: 0;
  bottom: 0;
  animation: cardFloat 8.2s ease-in-out infinite alternate;
}

@keyframes cardFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(-0.5deg);
  }
  to {
    transform: translate3d(0, -16px, 0) rotate(0.8deg);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand {
    height: 30px;
    width: auto;
    gap: 7px;
    font-size: 0.72rem;
  }

  .brand img {
    width: 24px;
    height: 24px;
  }

  nav a:not(.nav-action) {
    display: none;
  }

  .nav-action {
    min-height: 38px;
    padding: 0 18px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 88svh;
    align-items: end;
    padding: 88px 18px 34px;
  }

  .hero-image {
    object-position: 58% top;
    filter: saturate(1.2) brightness(1.32) contrast(0.95);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(6, 17, 29, 0.08) 0%, rgba(6, 17, 29, 0.46) 46%, #071827 100%),
      linear-gradient(90deg, rgba(6, 17, 29, 0.72), rgba(6, 17, 29, 0.12));
  }

  .hero-copy {
    width: 100%;
  }

  .hero-badge {
    top: 68px;
    right: 18px;
  }

  .eyebrow {
    margin-bottom: 14px;
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  h1 {
    max-width: 15ch;
    font-size: clamp(1.62rem, 8vw, 2rem);
    line-height: 1.06;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 34ch;
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .primary-action,
  .secondary-action {
    min-height: 46px;
    border-radius: 13px;
    padding: 0 15px;
    font-size: 0.94rem;
  }

  .hero-copy small {
    margin-top: 12px;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .intro-section,
  .story-section,
  .emotion-band,
  .parent-tension,
  .scene-row,
  .final-cta {
    width: min(100% - 32px, var(--max));
  }

  .intro-section,
  .story-section,
  .emotion-band,
  .parent-tension,
  .scene-row {
    grid-template-columns: 1fr;
  }

  .intro-section,
  .story-section,
  .emotion-band,
  .parent-tension,
  .final-cta {
    padding: 54px 0;
  }

  .parent-tension {
    gap: 28px;
    padding-top: 54px;
  }

  .tension-copy h2,
  .scene-intro h2 {
    max-width: 13ch;
    font-size: clamp(1.82rem, 8vw, 2.35rem);
    line-height: 1.04;
  }

  .tension-copy p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .tension-lines p {
    padding: 18px 0;
    font-size: 0.96rem;
  }

  .tension-lines span {
    font-size: 1.34rem;
  }

  .intro-copy h2,
  .story-section h2,
  .emotion-band h2,
  .final-cta h2 {
    max-width: 13ch;
    font-size: clamp(1.82rem, 8vw, 2.35rem);
    line-height: 1.04;
  }

  .intro-copy p:not(.eyebrow),
  .story-section p,
  .emotion-band > p,
  .final-cta p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .quote-panel {
    padding: 14px 0 14px 18px;
  }

  .quote-panel p {
    font-size: clamp(1.24rem, 6vw, 1.58rem);
    line-height: 1.18;
  }

  .scene-row {
    gap: 28px;
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .scene-track {
    gap: 14px;
    animation-duration: 18s;
  }

  .scene-row figure {
    width: min(78vw, 290px);
    border-radius: 20px;
  }

  .story-section img {
    border-radius: 22px;
  }

  .scene-row figcaption {
    padding: 42px 16px 16px;
    font-size: 0.9rem;
  }

  .story-section .primary-action,
  .final-cta .primary-action {
    width: 100%;
  }

  .final-cta {
    padding-bottom: 74px;
  }

  .final-cta img {
    width: 104px;
    margin-bottom: 18px;
  }

  .site-footer {
    width: min(100% - 32px, var(--max));
    display: grid;
    justify-items: start;
    gap: 10px;
    padding: 20px 0 28px;
    font-size: 0.78rem;
  }

  .site-footer div {
    flex-wrap: wrap;
    gap: 12px;
  }

  .cinema-panel {
    width: min(100% - 32px, var(--max));
    min-height: 72vh;
    border-radius: 24px;
    margin: 36px auto 18px;
  }

  .cinema-panel div {
    padding: 24px;
  }

  .cinema-panel h2 {
    max-width: 12ch;
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .cinema-panel span {
    margin-top: 14px;
    font-size: 1.08rem;
  }

  .feeling-reel {
    padding-top: 18px;
    padding-bottom: 46px;
  }

  .reel-track {
    gap: 14px;
    padding-left: 16px;
    animation-duration: 18s;
  }

  .reel-track figure {
    width: 72vw;
    border-radius: 22px;
  }

  .reel-track figcaption {
    padding: 48px 16px 16px;
    font-size: 1rem;
  }

  .heart-section {
    width: min(100% - 32px, var(--max));
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 44px 0 58px;
  }

  .heart-copy h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1;
  }

  .heart-copy .primary-action {
    width: 100%;
  }

  .heart-visual {
    min-height: 430px;
  }

  .heart-main {
    right: 0;
    width: 82%;
    border-radius: 26px;
  }

  .heart-small {
    width: 42%;
    border-radius: 18px;
  }

  .heart-small.one {
    bottom: 34px;
  }

  .heart-small.two {
    bottom: 4px;
  }
}
