:root {
  color-scheme: light;
  --page: #fbf8f3;
  --surface: #ffffff;
  --surface-soft: #fff8ef;
  --ink: #1d1d1f;
  --midnight: #17213b;
  --muted: #666673;
  --subtle: #83808b;
  --line: rgba(0, 0, 0, 0.08);
  --blue: #356dff;
  --blue-hover: #285df1;
  --violet: #8d6cff;
  --pink: #ff6ea8;
  --mint: #4fcdbb;
  --aqua: #59c4ff;
  --warm: #ffc75f;
  --peach: #ff9f74;
  --green: #9adf87;
  --shadow: 0 28px 80px rgba(39, 36, 85, 0.18);
  --soft-shadow: 0 14px 36px rgba(39, 36, 85, 0.11);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

/* Premium cleanup pass: calmer surfaces, stronger hero, controlled color. */
:root {
  --page: #f4f6fb;
  --surface-soft: #f8faff;
  --ink: #181926;
  --midnight: #12172b;
  --muted: #626779;
  --subtle: #858b9b;
  --line: rgba(24, 25, 38, 0.1);
  --blue: #2870ff;
  --violet: #7a5cff;
  --pink: #ff5f98;
  --mint: #24c6b1;
  --warm: #ffbd4a;
  --shadow: 0 30px 90px rgba(18, 23, 43, 0.2);
  --soft-shadow: 0 16px 44px rgba(24, 25, 38, 0.09);
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(122, 92, 255, 0.12), transparent 22rem),
    radial-gradient(circle at 86% 12%, rgba(36, 198, 177, 0.12), transparent 22rem),
    linear-gradient(180deg, #f8f9fd 0%, #f4f6fb 48%, #f8f9fd 100%);
}

.site-header {
  background: rgba(248, 249, 253, 0.96);
  border-bottom-color: rgba(24, 25, 38, 0.08);
}

.site-header nav {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(24, 25, 38, 0.08);
  box-shadow: 0 12px 28px rgba(24, 25, 38, 0.07);
}

.hero {
  margin-top: 1.25rem;
  padding: clamp(3rem, 6vw, 5.8rem) clamp(1.4rem, 4vw, 3rem);
  border-radius: 1.8rem;
  background:
    linear-gradient(90deg, rgba(17, 23, 43, 0.94) 0%, rgba(17, 23, 43, 0.76) 48%, rgba(17, 23, 43, 0.3) 100%),
    radial-gradient(circle at 76% 28%, rgba(36, 198, 177, 0.28), transparent 18rem),
    radial-gradient(circle at 28% 20%, rgba(122, 92, 255, 0.34), transparent 20rem),
    radial-gradient(circle at 80% 82%, rgba(255, 189, 74, 0.18), transparent 16rem),
    url("assets/screens/new/hero-background.jpg") center right / cover no-repeat,
    linear-gradient(135deg, #11172b 0%, #202044 52%, #151a31 100%);
  box-shadow: 0 36px 100px rgba(18, 23, 43, 0.22);
}

.hero::before,
.hero::after,
.hero-orbit,
.section-spark {
  display: none;
}

.hero .eyebrow {
  color: #83f4e6;
}

.hero h1 {
  max-width: 13.5ch;
  color: #fff;
  font-size: clamp(3.25rem, 6vw, 5.9rem);
  text-shadow: none;
}

.hero .lede,
.hero .actions,
.hero .actions span {
  color: rgba(255, 255, 255, 0.74);
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.hero-stats article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.hero-stats strong {
  color: #83f4e6;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-device::before {
  width: min(88%, 31rem);
  height: min(78%, 28rem);
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 28% 24%, rgba(131, 244, 230, 0.2), transparent 10rem),
    radial-gradient(circle at 80% 74%, rgba(122, 92, 255, 0.24), transparent 11rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.ambient-icon {
  opacity: 0.46;
}

.section-heading {
  max-width: 48rem;
}

.feature-strip,
.privacy-section,
.showcase,
.screens,
.watch-section,
.download-section {
  padding: clamp(3.6rem, 6vw, 5.6rem) 0;
}

.feature-strip::before,
.privacy-section::before,
.screens::before,
.watch-section::before,
.download-section::before,
.showcase::before {
  display: none;
}

.feature-grid {
  gap: 1.15rem;
}

.feature-grid article,
.screen-story-card,
.animal-row article {
  border-color: rgba(24, 25, 38, 0.08);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 16px 46px rgba(24, 25, 38, 0.08);
}

.feature-grid article {
  position: relative;
  min-height: 14rem;
  overflow: hidden;
}

.feature-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.28rem;
  background: var(--accent-line, linear-gradient(90deg, var(--blue), var(--mint)));
}

.feature-grid article[data-accent="sunrise"] {
  --accent-line: linear-gradient(90deg, #ff8a5c, #ffbd4a);
}

.feature-grid article[data-accent="mint"] {
  --accent-line: linear-gradient(90deg, #24c6b1, #2870ff);
}

.feature-grid article[data-accent="violet"] {
  --accent-line: linear-gradient(90deg, #7a5cff, #ff5f98);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
}

.showcase {
  margin-top: 0;
  padding-inline: clamp(1.2rem, 3vw, 2.2rem);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 189, 74, 0.14), transparent 18rem),
    linear-gradient(135deg, #fff 0%, #f8faff 100%);
  box-shadow: inset 0 0 0 1px rgba(24, 25, 38, 0.07);
}

.animal-row {
  align-items: stretch;
}

.animal-row article {
  min-height: 12.5rem;
}

.screen-feature {
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(36, 198, 177, 0.18), transparent 16rem),
    radial-gradient(circle at 86% 78%, rgba(122, 92, 255, 0.22), transparent 16rem),
    linear-gradient(135deg, #11172b 0%, #24224a 100%);
}

.screen-story-card {
  padding: 1.15rem;
}

.watch-section {
  padding-inline: clamp(1.2rem, 3vw, 2.2rem);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 16% 26%, rgba(36, 198, 177, 0.14), transparent 17rem),
    linear-gradient(135deg, #f8fffd 0%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px rgba(24, 25, 38, 0.07);
}

.watch-visual::before {
  background: #fff;
  border-color: rgba(24, 25, 38, 0.08);
}

.download-section {
  min-height: 24rem;
  align-content: center;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 26% 22%, rgba(255, 95, 152, 0.18), transparent 16rem),
    radial-gradient(circle at 74% 26%, rgba(122, 92, 255, 0.18), transparent 16rem),
    linear-gradient(135deg, #12172b 0%, #26214a 100%);
  box-shadow: 0 30px 90px rgba(18, 23, 43, 0.18);
}

.download-section::before {
  display: none;
}

.download-section h2,
.download-section p {
  color: #fff;
}

.download-section p {
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 860px) {
  .hero {
    padding-inline: clamp(1rem, 5vw, 2rem);
  }

  .hero h1 {
    max-width: 11.5ch;
  }
}

@media (max-width: 620px) {
  .hero {
    margin-top: 0.8rem;
    border-radius: 1.1rem;
    padding: 2.1rem 1rem 2.5rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.05rem, 8vw, 2.35rem);
  }

  .hero .lede {
    max-width: 18.5rem;
  }

  .hero-proof {
    margin-top: 1.1rem;
  }

  .hero-stats {
    max-width: 18.5rem;
  }

  .phone-primary {
    width: min(66vw, 14.5rem);
  }

  .showcase,
  .privacy-section,
  .watch-section,
  .download-section {
    border-radius: 1rem;
    padding-inline: 1rem;
  }

  .feature-strip,
  .privacy-section,
  .screens,
  .watch-section,
  .showcase,
  .download-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .download-section {
    min-height: 20rem;
  }
}

/* Screenshot/content update: support four distinct app story cards. */
.feature-grid,
.screen-story-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.screen-story-card .iphone {
  width: min(100%, 12.6rem);
}

@media (min-width: 980px) {
  .screen-story-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .screen-story-card h3 {
    font-size: 1.18rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(255, 199, 95, 0.36), transparent 18rem),
    radial-gradient(circle at 88% 0%, rgba(141, 108, 255, 0.28), transparent 20rem),
    linear-gradient(180deg, #fff9f1 0%, #f7fbff 37%, #fff8f6 68%, #f7fbff 100%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  min-height: 4rem;
  background: rgba(255, 250, 244, 0.96);
  border-bottom: 1px solid rgba(68, 55, 105, 0.09);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.site-header-inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 650;
}

.brand img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.6rem;
  box-shadow: var(--soft-shadow);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.28rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(93, 74, 142, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(39, 36, 85, 0.08);
}

.site-header nav a {
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.site-header nav a:hover {
  color: #5436c9;
  background: rgba(141, 108, 255, 0.11);
}

.mobile-cta {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: 0.75rem;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  background: #fffaf5;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  box-shadow: var(--soft-shadow);
  text-decoration: none;
  transform: translateX(-50%);
}

.mobile-cta img {
  width: 9.4rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
  padding: clamp(2.8rem, 5vw, 5rem) 0 clamp(2.8rem, 5vw, 4.4rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 -4vw;
  z-index: 0;
  border-radius: 0 0 3rem 3rem;
  background:
    radial-gradient(circle at 76% 34%, rgba(89, 196, 255, 0.27), transparent 18rem),
    radial-gradient(circle at 32% 24%, rgba(255, 110, 168, 0.2), transparent 17rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 244, 232, 0.2));
}

.hero::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141, 108, 255, 0.35), rgba(255, 199, 95, 0.45), transparent);
}

.hero-orbit,
.section-spark {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 20px 30px rgba(39, 36, 85, 0.16));
}

.orbit-star {
  left: 44%;
  top: 6%;
  width: clamp(4.6rem, 8vw, 7.5rem);
  opacity: 0.8;
  animation: softFloat 8.5s ease-in-out infinite;
}

.orbit-mask {
  left: 4%;
  bottom: 9%;
  width: clamp(4.8rem, 9vw, 8.2rem);
  opacity: 0.84;
  animation: softFloat 9s ease-in-out infinite reverse;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #6546dc;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.3;
}

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

h1,
h2 {
  text-wrap: balance;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.15rem;
  font-size: clamp(3.35rem, 7vw, 6.6rem);
  line-height: 0.96;
  font-weight: 760;
  color: var(--midnight);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 4.8vw, 4.7rem);
  line-height: 1;
  font-weight: 740;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
  line-height: 1.16;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.lede {
  max-width: 36rem;
  margin-bottom: 1.45rem;
  font-size: clamp(1.14rem, 1.8vw, 1.38rem);
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  color: var(--subtle);
  font-size: 0.95rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.45rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.35rem 0.76rem;
  color: #352e5f;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(113, 84, 168, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(22, 32, 51, 0.08);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 10.5rem));
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-stats article {
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(141, 108, 255, 0.14);
  border-radius: 0.7rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 246, 233, 0.62)),
    #fff;
  box-shadow: 0 12px 26px rgba(39, 36, 85, 0.09);
}

.hero-stats strong {
  display: block;
  color: #5038c2;
  font-size: 1.8rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  text-decoration: none;
}

.app-store-badge img {
  width: 11.6rem;
  transition: transform 180ms ease;
}

.app-store-badge:hover img {
  transform: translateY(-2px);
}

.hero-device {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: clamp(24rem, 43vw, 34rem);
  display: grid;
  place-items: center;
  isolation: isolate;
  perspective: 1200px;
}

.hero-device::before {
  content: "";
  position: absolute;
  width: min(86%, 30rem);
  height: min(76%, 27rem);
  border: 1px solid rgba(124, 96, 184, 0.12);
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 199, 95, 0.34), transparent 9rem),
    radial-gradient(circle at 82% 72%, rgba(79, 205, 187, 0.28), transparent 11rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(240, 232, 255, 0.66)),
    rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  animation: haloPulse 8s ease-in-out infinite;
}

.ambient-icon {
  position: absolute;
  z-index: 3;
  width: clamp(4rem, 8vw, 6.6rem);
  opacity: 0.88;
  pointer-events: none;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.14));
  transform: translate3d(var(--ambient-x, 0), var(--ambient-y, 0), 0);
  animation: softFloat 7.5s ease-in-out infinite;
}

.moon-icon {
  left: 3%;
  top: 12%;
}

.watch-icon {
  right: 0;
  bottom: 16%;
  width: clamp(4.8rem, 9vw, 7.4rem);
  animation-delay: -3.2s;
}

.iphone {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1260 / 2736;
  border: 0.45rem solid #121017;
  border-radius: 2.1rem;
  background: #111;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.6),
    var(--shadow);
  transform-style: preserve-3d;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.iphone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-primary {
  z-index: 2;
  width: min(52%, 17rem);
  transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translate3d(0, var(--lift, 0), 0);
}

.phone-secondary {
  position: absolute;
  z-index: 1;
  right: 4%;
  bottom: 7%;
  width: min(39%, 12.8rem);
  opacity: 0.72;
  transform: translate3d(var(--phone-shift-x, 0), var(--phone-shift-y, 0), 0) rotate(6deg);
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  margin-bottom: clamp(1.4rem, 4vw, 2.4rem);
}

.section-heading p:last-child {
  max-width: 40rem;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.feature-strip,
.privacy-section,
.screens,
.watch-section,
.showcase,
.download-section {
  position: relative;
  padding: clamp(2.8rem, 5.5vw, 4.8rem) 0;
}

.feature-strip {
  padding-top: clamp(2.8rem, 5.5vw, 4.8rem);
  isolation: isolate;
}

.feature-strip::before,
.privacy-section::before,
.screens::before,
.watch-section::before,
.download-section::before,
.showcase::before {
  content: "";
  position: absolute;
  inset: 0 -4vw;
  z-index: 0;
  border-radius: 1.4rem;
}

.feature-strip::before {
  background:
    radial-gradient(circle at 90% 14%, rgba(255, 199, 95, 0.2), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(245, 255, 252, 0.68));
}

.privacy-section {
  isolation: isolate;
}

.privacy-section::before {
  background:
    radial-gradient(circle at 12% 16%, rgba(79, 205, 187, 0.16), transparent 14rem),
    radial-gradient(circle at 90% 78%, rgba(141, 108, 255, 0.12), transparent 14rem),
    linear-gradient(135deg, rgba(248, 255, 252, 0.78), rgba(255, 255, 255, 0.62));
}

.privacy-grid article {
  min-height: 13.5rem;
}

.feature-spark {
  right: 2%;
  top: 2.4rem;
  width: clamp(4.8rem, 9vw, 8rem);
  opacity: 0.7;
}

.feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid article {
  min-height: 15rem;
  padding: clamp(1.25rem, 3vw, 1.7rem);
  border: 1px solid rgba(86, 73, 136, 0.09);
  border-radius: 0.8rem;
  background:
    radial-gradient(circle at 84% 10%, var(--card-glow, rgba(255, 199, 95, 0.18)), transparent 8rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 245, 0.9)),
    var(--surface);
  box-shadow: var(--soft-shadow);
  transform: translateY(var(--card-lift, 0)) rotateX(var(--card-tilt-y, 0deg)) rotateY(var(--card-tilt-x, 0deg));
  transform-style: preserve-3d;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.feature-grid article[data-accent="sunrise"] {
  --card-glow: rgba(255, 159, 116, 0.26);
  --icon-bg: linear-gradient(135deg, rgba(255, 159, 116, 0.24), rgba(255, 199, 95, 0.2));
  --icon-border: rgba(255, 159, 116, 0.16);
}

.feature-grid article[data-accent="mint"] {
  --card-glow: rgba(79, 205, 187, 0.24);
  --icon-bg: linear-gradient(135deg, rgba(79, 205, 187, 0.22), rgba(89, 196, 255, 0.16));
  --icon-border: rgba(79, 205, 187, 0.16);
}

.feature-grid article[data-accent="violet"] {
  --card-glow: rgba(141, 108, 255, 0.23);
  --icon-bg: linear-gradient(135deg, rgba(141, 108, 255, 0.2), rgba(255, 110, 168, 0.15));
  --icon-border: rgba(141, 108, 255, 0.15);
}

.feature-grid article:hover {
  --card-lift: -0.35rem;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.11);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.1rem;
  height: 4.1rem;
  margin-bottom: 1.75rem;
  color: var(--blue);
  background: var(--icon-bg, linear-gradient(135deg, rgba(53, 109, 255, 0.11), rgba(79, 205, 187, 0.16)));
  border: 1px solid var(--icon-border, rgba(53, 109, 255, 0.08));
  border-radius: 0.8rem;
  font-weight: 700;
  transform: translateZ(24px);
}

.feature-icon img {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: contain;
}

.feature-grid p {
  margin-bottom: 0;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  margin-top: 1rem;
  border-top: 0;
  isolation: isolate;
}

.showcase::before {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 110, 168, 0.18), transparent 15rem),
    radial-gradient(circle at 86% 80%, rgba(255, 199, 95, 0.22), transparent 14rem),
    linear-gradient(135deg, rgba(255, 246, 253, 0.78), rgba(255, 250, 234, 0.76));
}

.animal-spark {
  right: 3%;
  top: 8%;
  width: clamp(5rem, 9vw, 8rem);
  opacity: 0.65;
}

.showcase-copy {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}

.showcase-copy p:last-child {
  margin-bottom: 0;
}

.animal-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.animal-row article {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  min-height: 14rem;
  padding: 1.25rem 0.85rem;
  text-align: center;
  border: 1px solid rgba(119, 79, 141, 0.1);
  border-radius: 0.9rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 199, 95, 0.17), transparent 7rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 240, 0.76)),
    var(--surface-soft);
  box-shadow: var(--soft-shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.animal-row article:hover {
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.11);
  transform: translateY(-6px);
}

.animal-row img {
  width: min(8.2rem, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  animation: softBob 6s ease-in-out infinite;
}

.animal-row article:nth-child(2) img {
  animation-delay: -1.8s;
}

.animal-row article:nth-child(3) img {
  animation-delay: -3.4s;
}

.animal-row strong {
  font-size: 1.1rem;
}

.animal-row span {
  color: var(--muted);
  font-size: 0.95rem;
}

.screens {
  border-top: 0;
  isolation: isolate;
}

.screens::before {
  background:
    radial-gradient(circle at 9% 16%, rgba(89, 196, 255, 0.18), transparent 14rem),
    radial-gradient(circle at 94% 28%, rgba(141, 108, 255, 0.16), transparent 14rem),
    linear-gradient(135deg, rgba(242, 249, 255, 0.78), rgba(255, 255, 255, 0.58));
}

.screens-spark {
  left: 78%;
  top: 2.2rem;
  width: clamp(4.6rem, 8vw, 7.6rem);
  opacity: 0.58;
}

.screen-feature {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(12rem, 18rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 3.8rem);
  align-items: center;
  margin-bottom: clamp(2.2rem, 5vw, 3.6rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 199, 95, 0.22), transparent 13rem),
    radial-gradient(circle at 84% 82%, rgba(79, 205, 187, 0.2), transparent 13rem),
    linear-gradient(135deg, rgba(25, 29, 65, 0.97), rgba(68, 51, 116, 0.92)),
    var(--midnight);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screen-feature .iphone {
  width: min(100%, 17rem);
  justify-self: center;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.36);
}

.screen-feature-copy {
  max-width: 34rem;
}

.screen-feature-copy .eyebrow {
  color: var(--mint);
}

.screen-feature-copy h3 {
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: clamp(1.75rem, 3.3vw, 3rem);
  line-height: 1.04;
}

.screen-feature-copy p:not(.eyebrow) {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.screen-story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.screen-story-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(76, 64, 126, 0.09);
  border-radius: 0.9rem;
  background:
    radial-gradient(circle at 88% 4%, rgba(255, 199, 95, 0.13), transparent 7rem),
    #fff;
  box-shadow: var(--soft-shadow);
}

.screen-story-card .iphone {
  width: min(100%, 13.5rem);
  justify-self: center;
  box-shadow: 0 18px 52px rgba(22, 32, 51, 0.14);
}

.screen-story-card .eyebrow {
  margin-bottom: 0.45rem;
  font-size: 0.86rem;
}

.screen-story-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.3rem;
}

.screen-story-card p:last-child {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.watch-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
  border-top: 0;
  isolation: isolate;
}

.watch-section::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(79, 205, 187, 0.19), transparent 14rem),
    linear-gradient(135deg, rgba(247, 255, 251, 0.86), rgba(255, 250, 239, 0.66));
}

.watch-visual {
  position: relative;
  z-index: 2;
  position: relative;
  min-height: 19rem;
  display: grid;
  place-items: center;
  isolation: isolate;
  align-content: center;
}

.watch-visual::before {
  content: "";
  position: absolute;
  width: min(90%, 20rem);
  height: 13rem;
  border: 1px solid rgba(76, 64, 126, 0.09);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 199, 95, 0.22), transparent 9rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(226, 255, 249, 0.72));
  box-shadow: var(--soft-shadow);
  animation: haloPulse 8s ease-in-out infinite;
}

.watch-icon-large {
  position: absolute;
  z-index: 3;
  left: 4%;
  bottom: 4%;
  width: min(7rem, 32%);
  opacity: 0.78;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.14));
  animation: softFloat 7s ease-in-out infinite;
}

.watch-screen {
  position: relative;
  z-index: 2;
  width: min(13rem, 72%);
  border-radius: 3.8rem;
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.watch-screen.secondary {
  position: absolute;
  z-index: 1;
  right: 13%;
  top: 20%;
  width: min(9.4rem, 52%);
  opacity: 0.58;
  transform: rotate(8deg);
}

.watch-screen:hover {
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.16);
  transform: translateY(-6px);
}

.watch-copy {
  position: relative;
  z-index: 2;
  max-width: 39rem;
}

.download-section {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 1rem;
  padding-inline: 1rem;
  border-top: 0;
  isolation: isolate;
}

.download-section::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 110, 168, 0.18), transparent 13rem),
    radial-gradient(circle at 80% 30%, rgba(255, 199, 95, 0.22), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(244, 237, 255, 0.72));
  box-shadow: inset 0 0 0 1px rgba(118, 92, 164, 0.08);
}

.download-section > * {
  position: relative;
  z-index: 2;
}

.download-section > img {
  width: 5.4rem;
  height: 5.4rem;
  margin-bottom: 1.35rem;
  border-radius: 1.2rem;
  box-shadow: var(--soft-shadow);
  animation: appIconFloat 7s ease-in-out infinite;
}

.download-section h2 {
  margin-bottom: 0.75rem;
}

.download-section p {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.25rem;
  justify-content: center;
  padding: 1.4rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

footer a {
  text-decoration: none;
}

footer a:hover {
  color: var(--blue);
}

body.motion-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

body.motion-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes softFloat {
  50% {
    transform: translate3d(calc(var(--ambient-x, 0) + 0.25rem), calc(var(--ambient-y, 0) - 0.75rem), 0) rotate(2deg);
  }
}

@keyframes softBob {
  50% {
    transform: translateY(-0.45rem);
  }
}

@keyframes haloPulse {
  50% {
    transform: scale(1.04);
    opacity: 0.72;
  }
}

@keyframes appIconFloat {
  50% {
    transform: translateY(-0.35rem);
  }
}

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .hero,
  .showcase,
  .watch-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-copy {
    text-align: center;
    justify-self: center;
  }

  .hero-stats {
    justify-content: center;
  }

  h1 {
    max-width: 12ch;
    margin-inline: auto;
  }

  .actions {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-device {
    min-height: 32rem;
  }

  main,
  footer {
    width: min(100% - 32px, 1120px);
  }

  .site-header-inner {
    width: min(100% - 32px, 1120px);
  }

  .ambient-icon {
    opacity: 0.58;
  }

  .orbit-star {
    left: auto;
    right: 4%;
    top: 5%;
  }

  .orbit-mask {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .screen-feature {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .screen-feature-copy {
    justify-self: center;
  }

  .screen-story-grid {
    grid-template-columns: 1fr;
  }

  .screen-story-card {
    grid-template-columns: minmax(8rem, 13rem) minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
  }

  .showcase-copy,
  .watch-copy {
    max-width: none;
  }

  .animal-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  footer {
    width: auto;
    max-width: none;
    margin-left: 14px;
    margin-right: 14px;
  }

  .site-header-inner {
    width: auto;
    max-width: none;
    margin-left: 14px;
    margin-right: 14px;
  }

  .site-header {
    min-height: 3.6rem;
  }

  .site-header-inner {
    min-height: 3.6rem;
  }

  .site-header nav {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
  }

  main {
    padding-bottom: 4.75rem;
  }

  h1 {
    width: 100%;
    max-width: 11ch;
    font-size: clamp(2.12rem, 8.4vw, 2.42rem);
    line-height: 1.04;
    text-wrap: balance;
    white-space: normal;
    overflow-wrap: normal;
  }

  h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.68rem, 7.2vw, 1.98rem);
    line-height: 1.08;
    text-wrap: balance;
    white-space: normal;
    overflow-wrap: normal;
  }

  h3,
  p,
  span {
    overflow-wrap: break-word;
  }

  .hero {
    padding-top: 2.4rem;
    display: block;
  }

  .hero-copy,
  .hero-device,
  .section-heading,
  .showcase-copy,
  .watch-copy,
  .feature-grid,
  .showcase,
  .screens,
  .screen-feature,
  .screen-story-grid,
  .watch-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy,
  .section-heading,
  .showcase-copy,
  .watch-copy,
  .screen-feature-copy {
    overflow: hidden;
  }

  .lede {
    font-size: 1.08rem;
    max-width: 21rem;
    margin-inline: auto;
  }

  .actions > span {
    max-width: 18rem;
  }

  .hero-proof span {
    flex: none;
    justify-content: center;
    min-width: 0;
    max-width: 100%;
    text-align: center;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 21rem;
    margin-inline: auto;
  }

  .hero-stats {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.6rem;
    width: 100%;
    max-width: 21rem;
    margin-inline: auto;
  }

  .hero-stats article {
    padding: 0.75rem;
  }

  .hero-device {
    min-height: auto;
    margin-top: 2rem;
  }

  .hero-device::before {
    width: min(92%, 22rem);
    height: 18rem;
    border-radius: 1.2rem;
  }

  .phone-primary {
    width: min(72vw, 15.5rem);
  }

  .phone-secondary {
    display: none;
  }

  .ambient-icon {
    display: none;
  }

  .moon-icon {
    left: -3%;
  }

  .watch-icon {
    right: -5%;
    bottom: 12%;
  }

  .feature-strip,
  .privacy-section,
  .screens,
  .watch-section,
  .showcase,
  .download-section {
    padding: 3.2rem 0;
  }

  .feature-strip::before,
  .privacy-section::before,
  .screens::before,
  .watch-section::before,
  .download-section::before,
  .showcase::before {
    inset: 0;
    border-radius: 1rem;
  }

  .section-spark,
  .hero-orbit {
    display: none;
  }

  .feature-grid article {
    min-height: auto;
    overflow: hidden;
  }

  .feature-icon {
    margin-bottom: 1.4rem;
  }

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

  .animal-row article {
    min-height: auto;
  }

  .animal-row img {
    width: 6.8rem;
  }

  .screen-feature {
    margin-inline: -0.25rem;
    padding: 1rem;
    border-radius: 0.9rem;
  }

  .screen-feature .iphone {
    width: min(13.5rem, 72vw);
  }

  .screen-feature-copy h3 {
    font-size: clamp(1.55rem, 7.8vw, 2rem);
  }

  .screen-story-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .screen-story-card .iphone {
    width: min(12.5rem, 70vw);
  }

  .iphone {
    border-width: 0.34rem;
    border-radius: 1.85rem;
  }

  .watch-visual {
    min-height: 15.5rem;
  }

  .watch-screen {
    width: min(11rem, 68%);
    border-radius: 3.2rem;
  }

  .watch-screen.secondary {
    right: 7%;
    width: min(8rem, 48%);
  }

  .watch-icon-large {
    left: -0.2rem;
    bottom: 4%;
    width: 4.9rem;
  }
}

/* Final visual direction: premium, app-like, and intentionally restrained. */
:root {
  --page: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f8faff;
  --ink: #191a26;
  --midnight: #11172b;
  --muted: #626778;
  --subtle: #858b9b;
  --line: rgba(25, 26, 38, 0.1);
  --blue: #2870ff;
  --blue-hover: #185ee8;
  --violet: #745cff;
  --mint: #21c7b4;
  --warm: #ffbd4a;
  --shadow: 0 30px 90px rgba(17, 23, 43, 0.2);
  --soft-shadow: 0 16px 44px rgba(25, 26, 38, 0.09);
}

body {
  background:
    radial-gradient(circle at 15% 7%, rgba(116, 92, 255, 0.12), transparent 23rem),
    radial-gradient(circle at 88% 8%, rgba(33, 199, 180, 0.12), transparent 22rem),
    linear-gradient(180deg, #fbfcff 0%, #f5f7fb 46%, #fbfcff 100%);
}

.site-header {
  background: rgba(251, 252, 255, 0.96);
  border-bottom: 1px solid rgba(25, 26, 38, 0.08);
  box-shadow: none;
}

.site-header nav {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(25, 26, 38, 0.08);
  box-shadow: 0 12px 28px rgba(25, 26, 38, 0.07);
}

.site-header nav a:hover {
  color: var(--blue);
  background: rgba(40, 112, 255, 0.09);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(21rem, 1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
  margin-top: 1.25rem;
  padding: clamp(3.2rem, 6vw, 5.8rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: 1.7rem;
  background:
    linear-gradient(90deg, rgba(17, 23, 43, 0.94) 0%, rgba(17, 23, 43, 0.76) 48%, rgba(17, 23, 43, 0.3) 100%),
    radial-gradient(circle at 74% 28%, rgba(33, 199, 180, 0.28), transparent 18rem),
    radial-gradient(circle at 24% 22%, rgba(116, 92, 255, 0.34), transparent 20rem),
    radial-gradient(circle at 82% 82%, rgba(255, 189, 74, 0.16), transparent 16rem),
    url("assets/screens/new/hero-background.jpg") center right / cover no-repeat,
    linear-gradient(135deg, #11172b 0%, #202044 52%, #151a31 100%);
  box-shadow: 0 36px 100px rgba(17, 23, 43, 0.22);
}

.hero::before,
.hero::after,
.hero-orbit,
.section-spark,
.ambient-icon {
  display: none;
}

.hero-copy {
  max-width: 42rem;
}

.hero .eyebrow {
  color: #8ff4e8;
}

.hero h1 {
  max-width: 13.5ch;
  color: #fff;
  font-size: clamp(3.25rem, 6vw, 5.9rem);
  text-shadow: none;
}

.hero .lede {
  color: rgba(255, 255, 255, 0.76);
}

.hero .actions,
.hero .actions span {
  color: rgba(255, 255, 255, 0.68);
}

.hero-proof span,
.hero-stats article {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.hero-stats strong {
  color: #8ff4e8;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-device {
  min-height: clamp(24rem, 42vw, 34rem);
}

.hero-device::before {
  width: min(88%, 31rem);
  height: min(78%, 28rem);
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 28% 24%, rgba(143, 244, 232, 0.18), transparent 10rem),
    radial-gradient(circle at 80% 74%, rgba(116, 92, 255, 0.24), transparent 11rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.feature-strip,
.privacy-section,
.showcase,
.screens,
.watch-section,
.download-section {
  padding: clamp(3.6rem, 6vw, 5.6rem) 0;
}

.feature-strip::before,
.privacy-section::before,
.showcase::before,
.screens::before,
.watch-section::before,
.download-section::before {
  display: none;
}

.feature-grid article,
.screen-story-card,
.animal-row article {
  border: 1px solid rgba(25, 26, 38, 0.08);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 16px 46px rgba(25, 26, 38, 0.08);
}

.feature-grid article {
  position: relative;
  min-height: 14rem;
  overflow: hidden;
}

.feature-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.28rem;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.feature-grid article[data-accent="sunrise"]::before {
  background: linear-gradient(90deg, #ff8a5c, var(--warm));
}

.feature-grid article[data-accent="mint"]::before {
  background: linear-gradient(90deg, var(--mint), var(--blue));
}

.feature-grid article[data-accent="violet"]::before {
  background: linear-gradient(90deg, var(--violet), #ff5f98);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
}

.showcase,
.watch-section {
  margin-top: 0;
  padding-inline: clamp(1.2rem, 3vw, 2.2rem);
  border-radius: 1.35rem;
  box-shadow: inset 0 0 0 1px rgba(25, 26, 38, 0.07);
}

.showcase {
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 189, 74, 0.14), transparent 18rem),
    linear-gradient(135deg, #fff 0%, #f8faff 100%);
}

.watch-section {
  background:
    radial-gradient(circle at 16% 26%, rgba(33, 199, 180, 0.14), transparent 17rem),
    linear-gradient(135deg, #f8fffd 0%, #fff 100%);
}

.animal-row article {
  min-height: 12.5rem;
}

.screen-feature {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(33, 199, 180, 0.18), transparent 16rem),
    radial-gradient(circle at 86% 78%, rgba(116, 92, 255, 0.22), transparent 16rem),
    linear-gradient(135deg, #11172b 0%, #24224a 100%);
}

.watch-visual::before {
  background: #fff;
  border-color: rgba(25, 26, 38, 0.08);
}

.download-section {
  min-height: 24rem;
  align-content: center;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 26% 22%, rgba(255, 95, 152, 0.18), transparent 16rem),
    radial-gradient(circle at 74% 26%, rgba(116, 92, 255, 0.18), transparent 16rem),
    linear-gradient(135deg, #11172b 0%, #26214a 100%);
  box-shadow: 0 30px 90px rgba(17, 23, 43, 0.18);
}

.download-section h2,
.download-section p {
  color: #fff;
}

.download-section p {
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-inline: clamp(1rem, 5vw, 2rem);
  }

  .hero-copy {
    justify-self: center;
    text-align: center;
  }

  .hero h1 {
    max-width: 11.5ch;
    margin-inline: auto;
  }

  .actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .hero {
    display: block;
    margin-top: 0.8rem;
    padding: 2.1rem 1rem 2.5rem;
    border-radius: 1.1rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.05rem, 8vw, 2.35rem);
  }

  .hero .lede {
    max-width: 18.5rem;
  }

  .hero-device {
    margin-top: 2rem;
  }

  .phone-primary {
    width: min(66vw, 14.5rem);
  }

  .showcase,
  .privacy-section,
  .watch-section,
  .download-section {
    padding-inline: 1rem;
    border-radius: 1rem;
  }

  .feature-strip,
  .privacy-section,
  .screens,
  .watch-section,
  .showcase,
  .download-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .download-section {
    min-height: 20rem;
  }
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(25, 26, 38, 0.07);
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.theme-toggle:hover {
  color: var(--blue);
  background: rgba(40, 112, 255, 0.09);
  transform: translateY(-1px);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(40, 112, 255, 0.32);
  outline-offset: 3px;
}

.theme-icon {
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.theme-icon-sun {
  opacity: 0;
  transform: rotate(-20deg) scale(0.82);
}

.theme-icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.legal-page {
  padding-top: clamp(2rem, 4vw, 3.2rem);
}

.legal-hero {
  margin-top: 1.25rem;
  padding: clamp(3rem, 6vw, 5.2rem) clamp(1.4rem, 4vw, 3rem);
  border-radius: 1.7rem;
  background:
    linear-gradient(90deg, rgba(17, 23, 43, 0.94) 0%, rgba(17, 23, 43, 0.74) 58%, rgba(17, 23, 43, 0.42) 100%),
    radial-gradient(circle at 78% 24%, rgba(33, 199, 180, 0.26), transparent 18rem),
    radial-gradient(circle at 24% 28%, rgba(116, 92, 255, 0.3), transparent 20rem),
    url("assets/screens/new/hero-background.jpg") center right / cover no-repeat,
    linear-gradient(135deg, #11172b 0%, #202044 52%, #151a31 100%);
  box-shadow: 0 36px 100px rgba(17, 23, 43, 0.2);
}

.legal-hero .eyebrow {
  color: #8ff4e8;
}

.legal-hero h1 {
  max-width: 13.5ch;
  color: #fff;
  text-shadow: none;
}

.legal-hero .lede {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.76);
}

.legal-updated {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  font-weight: 600;
}

.legal-section,
.contact-section {
  margin-top: clamp(1.4rem, 4vw, 2.4rem);
  padding: clamp(2rem, 5vw, 3.4rem);
  border: 1px solid rgba(25, 26, 38, 0.08);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 16px 46px rgba(25, 26, 38, 0.08);
}

.legal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.legal-content article {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.legal-content h3 {
  font-size: 1.16rem;
}

.legal-content p {
  margin-bottom: 0;
}

.legal-document {
  max-width: 48rem;
}

.legal-document h2 {
  margin: 2rem 0 0.8rem;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.legal-document h2:first-child {
  margin-top: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
}

.legal-document h3 {
  margin: 1.55rem 0 0.55rem;
  font-size: 1.16rem;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  line-height: 1.6;
}

.legal-document ul {
  margin: 0.2rem 0 1rem;
  padding-left: 1.25rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  background:
    radial-gradient(circle at 12% 20%, rgba(33, 199, 180, 0.12), transparent 16rem),
    linear-gradient(135deg, #fff 0%, #f8faff 100%);
}

.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-section p {
  max-width: 42rem;
  margin-bottom: 0;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--blue);
  border-radius: 0.65rem;
  box-shadow: 0 12px 28px rgba(40, 112, 255, 0.24);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.contact-button:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #101522;
  --surface: #181f2f;
  --surface-soft: #20283a;
  --ink: #f4f7ff;
  --midnight: #f4f7ff;
  --muted: #b9c0cf;
  --subtle: #8f99ad;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #7eb0ff;
  --blue-hover: #a6c7ff;
  --violet: #a898ff;
  --mint: #63e0d1;
  --warm: #ffd36e;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --soft-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 14% 8%, rgba(126, 176, 255, 0.14), transparent 22rem),
    radial-gradient(circle at 88% 10%, rgba(99, 224, 209, 0.12), transparent 22rem),
    linear-gradient(180deg, #0d1220 0%, #111827 48%, #0d1220 100%);
}

html[data-theme="dark"] .site-header {
  background: rgba(13, 18, 32, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .site-header nav,
html[data-theme="dark"] .theme-toggle {
  background: rgba(24, 31, 47, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .site-header nav a:hover,
html[data-theme="dark"] .theme-toggle:hover {
  color: var(--mint);
  background: rgba(99, 224, 209, 0.11);
}

html[data-theme="dark"] .theme-icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

html[data-theme="dark"] .theme-icon-moon {
  opacity: 0;
  transform: rotate(20deg) scale(0.82);
}

html[data-theme="dark"] .mobile-cta {
  background: rgba(24, 31, 47, 0.94);
  border-color: var(--line);
}

html[data-theme="dark"] .feature-strip,
html[data-theme="dark"] .privacy-section,
html[data-theme="dark"] .showcase,
html[data-theme="dark"] .screens,
html[data-theme="dark"] .watch-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(126, 176, 255, 0.1), transparent 16rem),
    radial-gradient(circle at 86% 82%, rgba(99, 224, 209, 0.08), transparent 16rem),
    linear-gradient(135deg, rgba(18, 25, 39, 0.92), rgba(13, 18, 32, 0.72));
  border-radius: 1.3rem;
}

html[data-theme="dark"] .feature-grid article,
html[data-theme="dark"] .animal-row article,
html[data-theme="dark"] .screen-story-card {
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 10%, var(--card-glow, rgba(126, 176, 255, 0.13)), transparent 8rem),
    linear-gradient(180deg, rgba(27, 35, 52, 0.96), rgba(20, 27, 42, 0.94));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--soft-shadow);
}

html[data-theme="dark"] .animal-row article {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 211, 110, 0.12), transparent 7rem),
    linear-gradient(180deg, rgba(27, 35, 52, 0.96), rgba(20, 27, 42, 0.9));
}

html[data-theme="dark"] .feature-icon {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .watch-visual::before {
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 211, 110, 0.11), transparent 9rem),
    linear-gradient(135deg, rgba(31, 39, 57, 0.86), rgba(18, 25, 39, 0.86));
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .screen-feature,
html[data-theme="dark"] .download-section {
  box-shadow: var(--shadow);
}

html[data-theme="dark"] footer {
  color: var(--subtle);
}

html[data-theme="dark"] .legal-section,
html[data-theme="dark"] .contact-section {
  background:
    radial-gradient(circle at 84% 10%, rgba(126, 176, 255, 0.1), transparent 8rem),
    linear-gradient(180deg, rgba(27, 35, 52, 0.96), rgba(20, 27, 42, 0.94));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--soft-shadow);
}

html[data-theme="dark"] .contact-button {
  color: #0d1220;
  background: var(--mint);
  box-shadow: 0 12px 28px rgba(99, 224, 209, 0.16);
}

html[data-theme="dark"] .contact-button:hover {
  background: #8ff4e8;
}

@media (max-width: 860px) {
  .legal-content,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .legal-page {
    padding-top: 0.8rem;
  }

  .legal-hero,
  .legal-section,
  .contact-section {
    border-radius: 1rem;
  }

  .legal-hero {
    margin-top: 0.8rem;
    padding: 2.1rem 1rem 2.5rem;
  }

  .legal-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.05rem, 8vw, 2.35rem);
  }

  .legal-section,
  .contact-section {
    padding: 1.2rem;
  }

  .contact-button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .theme-toggle {
    width: 2.2rem;
    height: 2.2rem;
  }
}
