:root {
  --ocean-900: #06233a;
  --ocean-800: #0a3656;
  --ocean-700: #0c4a6e;
  --ocean-500: #0284c7;
  --ocean-400: #22b8cf;
  --lagoon: #2dd4bf;
  --sand: #f6e7c1;
  --gold: #f4c430;
  --sunset: #ff7a45;
  --coral: #ff5d73;
  --pink: #ff8fb3;
  --foam: #f4fbff;
  --ink: #0b1c2c;
  --muted: #5b7186;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 80px rgba(6, 35, 58, 0.28);
  --radius: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--foam);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  padding: 14px 0;
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(6, 35, 58, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand img {
  width: 42px; height: 42px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255,255,255,.86);
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--ocean-900);
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(244,196,48,.35); }
.menu-btn { display: none; color: #fff; font-size: 1.4rem; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 80px;
  color: #fff;
  overflow: hidden;
  background: #041828;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4,16,32,.58) 0%, rgba(4,16,32,.22) 36%, rgba(4,16,32,.78) 100%),
    radial-gradient(900px 420px at 72% 78%, rgba(0,0,0,.28), transparent 62%);
}
.hero::before { content: none; }
.pin-float {
  position: absolute;
  z-index: 2;
  width: 64px;
  height: auto;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.45));
  animation: pinBob 4.6s ease-in-out infinite;
  pointer-events: none;
}
.pin-float:nth-child(odd) { animation-duration: 5.4s; }
@keyframes pinBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(-140px); }
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sand);
  animation: fadeUp .8s ease both;
}
.lock-date {
  font-family: "Outfit", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255,255,255,.78);
  text-shadow: 0 8px 24px rgba(0,0,0,.35);
  animation: fadeUp .8s ease both;
}
.hero h1 {
  font-family: "Outfit", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 200;
  font-size: clamp(3.6rem, 11vw, 8.4rem);
  line-height: 0.84;
  letter-spacing: -0.045em;
  margin: 10px 0 18px;
  color: rgba(255,255,255,.9);
  text-shadow:
    0 1px 0 rgba(255,255,255,.4),
    0 18px 40px rgba(0,0,0,.35);
  -webkit-text-stroke: 1px rgba(255,255,255,.32);
  animation: fadeUp .9s .08s ease both;
}
.hero h1 span {
  display: block;
  font-weight: 200;
  color: rgba(255,255,255,.88);
}
.lede {
  font-size: 1.12rem;
  color: rgba(255,255,255,.82);
  max-width: 540px;
  animation: fadeUp 1s .16s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 18px;
  animation: fadeUp 1s .24s ease both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-play {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.btn-apple {
  background: #111827;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.16);
}
.btn-apple:hover { background: #000; }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.btn-ghost {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  animation: fadeUp 1s .3s ease both;
}
.meta-row strong { color: #fff; }

.phone-stage {
  position: relative;
  height: 640px;
  animation: fadeUp 1.1s .2s ease both;
}
.phone {
  position: absolute;
  width: 270px;
  background: #0b1220;
  border-radius: 36px;
  padding: 10px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255,255,255,.18);
}
.phone img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
}
.phone.main {
  right: 40px;
  top: 20px;
  z-index: 3;
  animation: float 5.5s ease-in-out infinite;
}
.phone.back {
  right: 170px;
  top: 90px;
  transform: rotate(-8deg) scale(.92);
  opacity: .92;
  z-index: 2;
  animation: float 6.5s .4s ease-in-out infinite;
}
.glow {
  position: absolute;
  width: 280px; height: 280px;
  right: 30px; top: 140px;
  background: radial-gradient(circle, rgba(244,196,48,.45), transparent 70%);
  filter: blur(20px);
  z-index: 1;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.phone.back { animation-name: floatTilt; }
@keyframes floatTilt {
  0%,100% { transform: rotate(-8deg) scale(.92) translateY(0); }
  50% { transform: rotate(-8deg) scale(.92) translateY(-12px); }
}

.wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 90px;
}
.wave svg { width: 100%; height: 100%; display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SECTIONS */
section { padding: 88px 0; }
.section-kicker {
  color: var(--ocean-500);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}
.section-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  margin: 8px 0 12px;
}
.section-sub { color: var(--muted); max-width: 640px; }

.how-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  margin-top: 28px;
}
.how-phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.how-phones .shot.mini {
  background: #0b1220;
  border-radius: 22px;
  padding: 7px;
  box-shadow: 0 14px 32px rgba(6,35,58,.14);
  margin: 0;
}
.how-phones .shot.mini img {
  border-radius: 16px;
  height: 380px;
  width: 100%;
  object-fit: cover;
}
.how-phones figcaption {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
  padding: 8px 4px 2px;
}
.feature-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.photo-card {
  padding: 0;
  overflow: hidden;
}
.photo-card > img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.photo-card .card-body { padding: 18px 20px 22px; }
.photo-card.slim { min-height: 140px; }
.photo-card.slim > img { height: 160px; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 16px 40px rgba(10, 54, 86, .06);
  border: 1px solid rgba(12, 74, 110, .06);
  transform: translateY(24px);
  opacity: 0;
  animation: rise .7s ease forwards;
}
.card:nth-child(2) { animation-delay: .08s; }
.card:nth-child(3) { animation-delay: .16s; }
.card:nth-child(4) { animation-delay: .12s; }
.card:nth-child(5) { animation-delay: .2s; }
.card:nth-child(6) { animation-delay: .28s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}
.icon-bubble {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  background: linear-gradient(160deg, #e8fbff, #d7f3ff);
}
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }

.showcase {
  background:
    linear-gradient(180deg, #f4fbff 0%, #e8f6fb 100%);
}
.shot-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 18px;
  overflow-x: auto;
  padding: 28px 4px 10px;
  scroll-snap-type: x mandatory;
}
.shot-track::-webkit-scrollbar { height: 8px; }
.shot-track::-webkit-scrollbar-thumb { background: #9ad4e6; border-radius: 99px; }
.shot {
  scroll-snap-align: start;
  background: #0b1220;
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(6,35,58,.16);
  transition: transform .3s;
}
.shot:hover { transform: translateY(-8px); }
.shot img { border-radius: 22px; height: 440px; object-fit: cover; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.steps { display: grid; gap: 18px; margin-top: 24px; }
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}
.num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--ocean-500), var(--lagoon));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chip {
  background: #e8f6fb;
  color: var(--ocean-800);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
}

.cta-band {
  position: relative;
  background:
    radial-gradient(600px 280px at 90% 20%, rgba(255,122,69,.35), transparent 60%),
    linear-gradient(135deg, #06233a, #0c4a6e);
  color: #fff;
  overflow: hidden;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-inner h2 { max-width: 560px; }
.store-note { color: rgba(255,255,255,.7); margin-top: 8px; }

footer {
  background: #041828;
  color: rgba(255,255,255,.72);
  padding: 40px 0 28px;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.foot a:hover { color: var(--gold); }
.legal { font-size: .85rem; margin-top: 18px; color: rgba(255,255,255,.5); }

.privacy-page {
  min-height: 100vh;
  background: #f4fbff;
  padding: 120px 0 60px;
}
.privacy-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 16px 40px rgba(10,54,86,.08);
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 20px; right: 20px;
    background: rgba(6,35,58,.96);
    padding: 18px;
    border-radius: 16px;
  }
  .menu-btn { display: block; }
  .hero-grid, .split, .features, .cta-inner, .how-grid, .feature-collage { grid-template-columns: 1fr; }
  .how-phones { grid-template-columns: repeat(2, 1fr); }
  .phone-stage { height: 560px; margin-top: 10px; }
  .phone.main { right: 50%; transform: translateX(50%); }
  .phone.back { display: none; }
  .hero { padding-top: 110px; }
  .pin-float { width: 48px; }
}

.hero-grid { z-index: 3; }
.pin-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: center;
  margin-top: 28px;
}
.pin-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 72px;
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 600;
}
.pin-item img { width: 52px; height: auto; filter: drop-shadow(0 6px 8px rgba(0,0,0,.35)); }

.collage-section {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.collage-backdrop {
  display: none;
}
.collage-copy {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}
.photo-mosaic {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 10px;
}
.photo-mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  min-height: 140px;
}
.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 140px;
  transition: transform .55s ease;
}
.photo-mosaic figure:hover img { transform: scale(1.07); }
.photo-mosaic .wide { grid-column: span 2; }
.photo-mosaic .tall { grid-row: span 2; }
@media (max-width: 900px) {
  .photo-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .photo-mosaic .wide,
  .photo-mosaic .tall { grid-column: span 1; grid-row: span 1; }
}