:root {
  --page: #f7f7f4;
  --paper: #ffffff;
  --wash: #fff2df;
  --ink: #12100e;
  --muted: #69645d;
  --soft: #ebe7df;
  --line: rgba(18, 16, 14, 0.12);
  --line-strong: rgba(18, 16, 14, 0.22);
  --orange: #ff4b12;
  --orange-deep: #c9380d;
  --aqua: #73c7d3;
  --charcoal: #181716;
  --shadow: 0 28px 80px rgba(23, 18, 14, 0.18);
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100% - 28px, var(--max));
  margin: 12px auto 0;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(247, 247, 244, 0.74);
  backdrop-filter: blur(22px) saturate(150%);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-elevated {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(18, 16, 14, 0.11);
}

.brand,
.site-header nav,
.header-link,
.text-link {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-height: 44px;
  padding-right: 4px;
  font-size: 1rem;
  font-weight: 840;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(255, 75, 18, 0.24);
}

.site-header nav {
  justify-content: center;
  gap: 4px;
}

.site-header nav a,
.header-link {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.header-link:hover,
.header-link:focus-visible {
  color: var(--ink);
  background: rgba(255, 75, 18, 0.08);
  outline: none;
}

.header-link {
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  min-height: calc(100svh - 76px);
  margin-top: -64px;
  padding: 132px max(24px, calc((100vw - var(--max)) / 2)) 54px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(112deg, rgba(255, 242, 223, 0.98) 0%, rgba(255, 255, 255, 0.94) 42%, rgba(115, 199, 211, 0.18) 100%),
    radial-gradient(circle at 87% 14%, rgba(255, 75, 18, 0.2), transparent 34%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -28vw;
  z-index: -1;
  width: 72vw;
  height: 72vw;
  border-radius: 50%;
  border: 1px solid rgba(18, 16, 14, 0.08);
  background: rgba(255, 255, 255, 0.34);
}

.hero-copy {
  max-width: 610px;
  animation: hero-copy-in 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(255, 75, 18, 0.28);
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(5.2rem, 15vw, 11.5rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 560px;
  margin: 34px 0 0;
  color: #322d27;
  font-size: clamp(1.15rem, 2.1vw, 1.52rem);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.store-badge {
  display: inline-flex;
  width: 182px;
  min-height: 54px;
  border-radius: 10px;
  box-shadow: 0 15px 34px rgba(18, 16, 14, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.store-badge img {
  width: 100%;
  height: auto;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(18, 16, 14, 0.22);
  filter: saturate(1.06);
  outline: none;
}

.text-link {
  min-height: 44px;
  color: var(--ink);
  font-weight: 780;
  text-decoration-line: underline;
  text-decoration-color: rgba(255, 75, 18, 0.46);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--orange-deep);
  outline: none;
}

.hero-media {
  position: relative;
  min-height: clamp(560px, 78svh, 810px);
  animation: hero-media-in 820ms cubic-bezier(0.16, 1, 0.3, 1) 90ms both;
}

.phone-shot {
  position: absolute;
  width: min(44vw, 330px);
  border-radius: 36px;
  box-shadow: var(--shadow);
  transform: translateY(var(--float-y, 0));
  transition: transform 130ms linear;
}

.phone-shot-home {
  right: min(19vw, 210px);
  bottom: 2%;
  z-index: 2;
}

.phone-shot-player {
  right: 0;
  top: 0;
  z-index: 3;
}

.intro {
  padding: clamp(50px, 7vw, 96px) max(24px, calc((100vw - 920px) / 2));
  background: var(--ink);
  color: #fff;
}

.intro p {
  margin: 0;
  max-width: 900px;
  font-size: clamp(1.75rem, 4vw, 4.2rem);
  font-weight: 860;
  line-height: 1.02;
  letter-spacing: 0;
}

.highlights,
.all-features,
.experience,
.privacy-band,
.final-cta,
.legal-page,
.site-footer {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.highlights {
  padding: clamp(82px, 11vw, 142px) 0 36px;
}

.highlights > h2,
.all-features > h2,
.experience h2,
.privacy-band h2,
.final-cta h2,
.legal-hero h1 {
  margin: 12px 0 0;
  max-width: 840px;
  font-size: clamp(2.6rem, 6.2vw, 6rem);
  line-height: 0.96;
  font-weight: 890;
  letter-spacing: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  min-height: 720px;
  padding: clamp(54px, 8vw, 106px) 0;
  border-bottom: 1px solid var(--line);
}

.feature-row-flip {
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 0.92fr);
}

.feature-row-flip .feature-copy {
  order: 2;
}

.feature-row-flip .screen-frame {
  order: 1;
}

.feature-copy span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 900;
}

.feature-copy h3 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.35rem, 5.6vw, 5.4rem);
  line-height: 0.97;
  font-weight: 890;
  letter-spacing: 0;
}

.feature-copy p,
.experience-copy p,
.privacy-copy p,
.legal-hero p,
.legal-section p,
.privacy-points p,
.launch-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.62;
}

.screen-frame {
  position: relative;
  justify-self: center;
  width: min(100%, 340px);
  margin: 0;
}

.screen-frame::before {
  content: "";
  position: absolute;
  inset: 5% -10% -5% 10%;
  z-index: -1;
  border-radius: 40px;
  background: var(--wash);
  transform: rotate(5deg);
}

.screen-frame img {
  width: 100%;
  border: 1px solid rgba(18, 16, 14, 0.1);
  border-radius: 34px;
  box-shadow: 0 30px 78px rgba(18, 16, 14, 0.18);
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
  margin-top: 58px;
  padding: clamp(62px, 8vw, 106px) 0;
  color: #fff;
}

.experience::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  height: min(820px, 82vw);
  background: var(--charcoal);
}

.experience-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 18px;
}

.gallery-strip img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  transform: translateY(var(--float-y, 0));
  transition: transform 130ms linear;
}

.gallery-strip img:nth-child(1) {
  margin-top: 74px;
}

.gallery-strip img:nth-child(2) {
  margin-bottom: 54px;
}

.all-features {
  padding: clamp(92px, 11vw, 150px) 0 64px;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.feature-list {
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}

.feature-list h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.feature-list ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.privacy-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  padding: clamp(76px, 9vw, 126px) 0;
  border-top: 1px solid var(--line);
}

.privacy-copy p {
  max-width: 770px;
}

.privacy-points {
  display: grid;
  gap: 24px;
  padding-top: 9px;
}

.privacy-points p {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.privacy-points strong {
  display: block;
  color: var(--ink);
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: clamp(72px, 10vw, 132px) 24px clamp(78px, 10vw, 130px);
  border-radius: 38px;
  background:
    linear-gradient(144deg, rgba(255, 75, 18, 0.18), rgba(115, 199, 211, 0.2)),
    #fff;
  text-align: center;
}

.final-cta > img {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
  border-radius: 27px;
  box-shadow: 0 18px 42px rgba(255, 75, 18, 0.25);
}

.final-cta h2 {
  max-width: 900px;
  margin-bottom: 28px;
}

.launch-note {
  max-width: 460px;
  margin-top: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 42px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer a {
  font-weight: 760;
}

.legal-page {
  max-width: 880px;
  padding: clamp(72px, 10vw, 124px) 0 70px;
}

.legal-hero {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 8.5vw, 6.8rem);
}

.legal-section {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.legal-section p {
  max-width: 780px;
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-media-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 126px;
  }

  .hero h1 {
    font-size: clamp(5rem, 22vw, 8rem);
  }

  .hero-media {
    min-height: 700px;
  }

  .phone-shot {
    width: min(58vw, 330px);
  }

  .phone-shot-home {
    left: 0;
    right: auto;
  }

  .phone-shot-player {
    right: 0;
  }

  .feature-row,
  .feature-row-flip,
  .experience,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .feature-row-flip {
    min-height: auto;
  }

  .feature-row-flip .feature-copy,
  .feature-row-flip .screen-frame {
    order: initial;
  }

  .screen-frame {
    width: min(100%, 360px);
  }

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

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 20px, var(--max));
    margin-top: 8px;
    padding: 7px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .header-link {
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero {
    margin-top: -58px;
    padding: 118px 20px 42px;
  }

  .hero-icon {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 24vw, 6.3rem);
  }

  .hero-subtitle {
    margin-top: 26px;
  }

  .hero-media {
    min-height: 520px;
  }

  .phone-shot {
    width: min(64vw, 260px);
    border-radius: 28px;
  }

  .phone-shot-home {
    bottom: 0;
  }

  .phone-shot-player {
    top: 0;
  }

  .intro {
    padding-inline: 22px;
  }

  .intro p {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .highlights,
  .all-features,
  .experience,
  .privacy-band,
  .final-cta,
  .legal-page,
  .site-footer {
    width: min(100% - 34px, var(--max));
  }

  .feature-row {
    padding: 70px 0;
  }

  .feature-copy h3,
  .highlights > h2,
  .all-features > h2,
  .experience h2,
  .privacy-band h2,
  .final-cta h2 {
    font-size: clamp(2.35rem, 12vw, 4.4rem);
  }

  .gallery-strip {
    grid-template-columns: repeat(3, 74vw);
    margin-inline: calc((100vw - 100%) / -2);
    padding-inline: 17px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .gallery-strip img {
    scroll-snap-align: start;
  }

  .gallery-strip img:nth-child(1),
  .gallery-strip img:nth-child(2) {
    margin: 0;
  }

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

  .final-cta {
    border-radius: 28px;
  }

  .site-footer {
    flex-direction: column;
  }
}
