:root {
  --black: #050505;
  --white: #f5f5f7;
  --paper: #f2f2ef;
  --warm: #e7e2d8;
  --neutral: #e9e9e6;
  --ink: #141414;
  --muted-dark: rgba(20, 20, 20, .62);
  --muted-light: rgba(245, 245, 247, .62);
  --line-dark: rgba(20, 20, 20, .12);
  --line-light: rgba(255, 255, 255, .14);
  --page: min(1180px, calc(100vw - 48px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 54px;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5,5,5,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-color: rgba(255,255,255,.08);
}
.header-inner {
  width: min(980px, calc(100vw - 36px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { font-size: 20px; font-weight: 650; letter-spacing: -.04em; }
.nav-links { display: flex; align-items: center; gap: 27px; font-size: 12px; color: rgba(255,255,255,.72); }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: #fff; }
.nav-cta { padding: 7px 13px; border-radius: 999px; background: #fff; color: #111 !important; font-weight: 600; }

.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--paper); color: var(--ink); }
.section-warm { background: var(--warm); color: var(--ink); }
.section-neutral { background: var(--neutral); color: var(--ink); }
.eyebrow { margin: 0 0 20px; font-size: 14px; line-height: 1; font-weight: 650; letter-spacing: -.01em; color: rgba(255,255,255,.54); }
.eyebrow.dark { color: rgba(20,20,20,.48); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, 1.12fr);
  align-items: center;
  gap: 40px;
  padding: 120px max(24px, calc((100vw - 1180px)/2)) 80px;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; max-width: 570px; }
.hero h1 {
  margin: 0;
  font-size: clamp(66px, 8vw, 126px);
  line-height: .88;
  font-weight: 650;
  letter-spacing: -.075em;
}
.hero-lede {
  max-width: 500px;
  margin: 34px 0 28px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  letter-spacing: -.025em;
  color: var(--muted-light);
}
.text-link { display: inline-flex; gap: 9px; align-items: center; font-size: 15px; color: rgba(255,255,255,.86); }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateY(3px); }
.hero-visual { position: relative; min-height: 680px; display: grid; place-items: center; }
.hero-aura {
  position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(222,174,119,.16) 0%, rgba(125,80,52,.08) 36%, transparent 68%);
  filter: blur(12px);
}
.phone-shell {
  position: relative;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 60px 120px rgba(0,0,0,.42), inset 0 0 0 1px rgba(255,255,255,.06);
}
.hero-phone { width: min(370px, 77vw); aspect-ratio: 1179 / 2556; border-radius: 55px; transform: rotate(3deg); }
.phone-shell > img { width: 100%; height: 100%; object-fit: cover; }
.phone-island {
  position: absolute; z-index: 4; top: 12px; left: 50%; transform: translateX(-50%);
  width: 31%; height: 28px; border-radius: 999px; background: #050505;
  pointer-events: none;
}
.scroll-hint { position: absolute; left: 50%; bottom: 28px; width: 1px; height: 45px; background: rgba(255,255,255,.15); overflow: hidden; }
.scroll-hint span { display: block; width: 1px; height: 18px; background: rgba(255,255,255,.7); animation: scrollLine 2s infinite ease-in-out; }
@keyframes scrollLine { 0% { transform: translateY(-20px); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(48px); opacity: 0; } }

.statement { padding: clamp(120px, 16vw, 230px) 24px; }
.statement-inner { width: min(1040px, 100%); margin: auto; text-align: center; }
.statement h2, .section-heading h2, .camera-intro h2, .native h2, .download h2 {
  margin: 0; font-size: clamp(48px, 6.6vw, 100px); line-height: .97; font-weight: 630; letter-spacing: -.065em;
}
.statement p:last-child { max-width: 660px; margin: 38px auto 0; font-size: clamp(19px, 2vw, 25px); line-height: 1.42; color: var(--muted-dark); letter-spacing: -.025em; }

.films { padding: clamp(100px, 12vw, 180px) 0 clamp(120px, 14vw, 210px); overflow: hidden; }
.section-heading { width: var(--page); margin: 0 auto 90px; }
.section-heading h2 { max-width: 900px; }
.section-heading > p:last-child { max-width: 570px; margin: 30px 0 0; font-size: 19px; line-height: 1.5; color: var(--muted-dark); }
.film-gallery { width: var(--page); margin: auto; display: grid; grid-template-columns: 1.35fr .88fr; gap: 64px 38px; align-items: end; }
.film-frame:nth-child(3) { grid-column: 1 / -1; width: 62%; margin: 40px auto 0; }
.photo-slot { position: relative; overflow: hidden; background: rgba(20,20,20,.08); }
.photo-slot.landscape { aspect-ratio: 4 / 3; }
.photo-slot.portrait { aspect-ratio: 4 / 5; }
.photo-slot.square { aspect-ratio: 1 / 1; }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.film-frame:hover img { transform: scale(1.018); }
.film-meta { display: flex; justify-content: space-between; gap: 30px; padding-top: 16px; border-top: 1px solid rgba(20,20,20,.2); margin-top: 15px; font-size: 12px; }
.film-meta p { margin: 0; color: var(--muted-dark); }

.camera-story { padding: clamp(110px, 13vw, 190px) 24px; }
.camera-intro { width: var(--page); margin: 0 auto 110px; }
.camera-intro h2 { max-width: 960px; }
.camera-stage { width: min(1050px, 100%); margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: center; }
.camera-device { display: grid; place-items: center; }
.stage-phone { width: min(360px, 100%); aspect-ratio: 1179 / 2556; border-radius: 54px; }
.feature-notes { display: flex; flex-direction: column; }
.feature-note { display: grid; grid-template-columns: 40px 1fr; gap: 20px; padding: 34px 0; border-top: 1px solid var(--line-light); }
.feature-note:last-child { border-bottom: 1px solid var(--line-light); }
.feature-note > span { font-size: 11px; color: rgba(255,255,255,.38); padding-top: 4px; }
.feature-note h3 { margin: 0 0 9px; font-size: 24px; letter-spacing: -.035em; }
.feature-note p { margin: 0; max-width: 420px; font-size: 16px; line-height: 1.5; color: var(--muted-light); }

.full-bleed-photo { position: relative; min-height: 85svh; overflow: hidden; background: #1d1d1b; }
.full-bleed-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.full-bleed-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.56), rgba(0,0,0,.04) 65%); pointer-events: none; }
.photo-caption { position: absolute; z-index: 2; left: max(24px, calc((100vw - 1180px)/2)); bottom: 12%; }
.photo-caption p { margin: 0; font-size: clamp(44px, 5vw, 76px); line-height: .98; font-weight: 610; letter-spacing: -.06em; }

.native { padding: clamp(110px, 14vw, 200px) 24px; }
.native-heading { width: var(--page); margin: 0 auto 85px; }
.native-grid { width: var(--page); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.native-card { min-height: 360px; padding: 32px; background: rgba(255,255,255,.42); border: 1px solid rgba(20,20,20,.06); display: flex; flex-direction: column; }
.native-card .symbol { font-size: 40px; line-height: 1; margin-bottom: auto; font-weight: 300; }
.native-card h3 { margin: 70px 0 9px; font-size: 27px; letter-spacing: -.04em; }
.native-card p { margin: 0; max-width: 290px; color: var(--muted-dark); line-height: 1.5; }

.download { min-height: 92svh; padding: 130px max(24px, calc((100vw - 1080px)/2)); display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.download-icon { width: min(360px, 72vw); aspect-ratio: 1; border-radius: 28%; overflow: hidden; position: relative; box-shadow: 0 45px 100px rgba(0,0,0,.55); background: #191919; }
.download-icon img { width: 100%; height: 100%; object-fit: cover; }
.download-copy p:not(.eyebrow) { margin: 25px 0; color: var(--muted-light); font-size: 18px; }
.app-store-button { display: inline-flex; flex-direction: column; min-width: 178px; margin-top: 8px; padding: 9px 18px 10px; border: 1px solid rgba(255,255,255,.38); border-radius: 9px; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.app-store-button:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); transform: translateY(-1px); }
.app-store-button small { font-size: 9px; letter-spacing: .01em; }
.app-store-button strong { font-size: 22px; line-height: 1.05; letter-spacing: -.03em; }

.site-footer { background: var(--black); color: rgba(255,255,255,.48); border-top: 1px solid rgba(255,255,255,.09); }
.footer-inner { width: var(--page); min-height: 130px; margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; font-size: 12px; }
.footer-inner > p { margin: 0; }
.footer-inner > p:first-child { color: rgba(255,255,255,.86); font-weight: 600; font-size: 15px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: #fff; }
.copyright { text-align: right; }

.asset-placeholder { display: none; position: absolute; inset: 0; padding: 24px; place-content: center; text-align: center; background: linear-gradient(145deg, #1b1b1a, #090909); color: rgba(255,255,255,.7); }
.asset-placeholder span { display: block; margin: 0 auto 17px; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; line-height: 32px; font-size: 11px; }
.asset-placeholder strong { display: block; font-size: 15px; font-weight: 550; }
.asset-placeholder small { display: block; margin-top: 6px; color: rgba(255,255,255,.4); }
.asset-missing > .asset-placeholder { display: grid; }
.full-bleed-photo.asset-missing > .asset-placeholder { display: grid; position: absolute; z-index: 1; }
.photo-slot .asset-placeholder { background: linear-gradient(145deg, #d7d0c5, #bfb7aa); color: rgba(20,20,20,.72); }
.photo-slot .asset-placeholder span { border-color: rgba(20,20,20,.3); }
.photo-slot .asset-placeholder small { color: rgba(20,20,20,.45); }
.download-icon .asset-placeholder { background: linear-gradient(145deg, #292929, #0b0b0b); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 130px; text-align: center; }
  .hero-copy { margin: auto; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-visual { min-height: 570px; }
  .film-gallery { grid-template-columns: 1fr; gap: 62px; }
  .film-frame:nth-child(3) { grid-column: auto; width: 100%; margin: 0; }
  .film-frame:nth-child(2) { width: 76%; justify-self: end; }
  .camera-stage { grid-template-columns: 1fr; gap: 85px; }
  .stage-phone { width: min(340px, 78vw); }
  .feature-notes { width: min(620px, 100%); margin: auto; }
  .native-grid { grid-template-columns: 1fr; }
  .native-card { min-height: 260px; }
  .download { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; padding: 36px 0; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .copyright { text-align: center; }
}

@media (max-width: 560px) {
  :root { --page: calc(100vw - 36px); }
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: clamp(58px, 18vw, 82px); }
  .hero-visual { min-height: 500px; }
  .hero-phone { width: min(310px, 78vw); border-radius: 45px; }
  .phone-island { top: 10px; height: 23px; }
  .statement { padding-left: 18px; padding-right: 18px; }
  .statement h2, .section-heading h2, .camera-intro h2, .native h2, .download h2 { font-size: clamp(43px, 13vw, 62px); }
  .section-heading { margin-bottom: 58px; }
  .film-frame:nth-child(2) { width: 88%; }
  .camera-story { padding-left: 18px; padding-right: 18px; }
  .camera-intro { margin-bottom: 72px; }
  .feature-note { grid-template-columns: 30px 1fr; gap: 12px; }
  .full-bleed-photo { min-height: 70svh; }
  .photo-caption { left: 18px; bottom: 9%; }
  .native { padding-left: 18px; padding-right: 18px; }
  .native-card { padding: 26px; }
  .download { padding-left: 18px; padding-right: 18px; gap: 65px; }
  .download-icon { width: min(270px, 72vw); }
}

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

/* Support & Privacy */
.legal-body {
  min-height: 100svh;
  color: var(--ink);
  background: var(--paper);
}
.legal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 54px;
  color: var(--ink);
  background: rgba(242, 242, 239, .78);
  border-bottom: 1px solid rgba(20, 20, 20, .08);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.legal-header-inner {
  width: min(980px, calc(100vw - 36px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-brand { color: var(--ink); }
.legal-header-link {
  font-size: 12px;
  font-weight: 600;
  color: rgba(20, 20, 20, .58);
  transition: color .2s ease;
}
.legal-header-link:hover { color: var(--ink); }
.legal-main {
  padding: clamp(82px, 10vw, 140px) 24px clamp(110px, 13vw, 180px);
}
.legal-article {
  width: min(760px, 100%);
  margin: 0 auto;
}
.legal-hero {
  padding-bottom: clamp(64px, 8vw, 92px);
  border-bottom: 1px solid var(--line-dark);
}
.legal-hero h1 {
  margin: 0;
  max-width: 730px;
  font-size: clamp(54px, 8vw, 92px);
  line-height: .94;
  font-weight: 640;
  letter-spacing: -.065em;
}
.legal-date {
  margin: 28px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(20, 20, 20, .46);
}
.legal-intro {
  margin: 28px 0 0;
  max-width: 720px;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.48;
  letter-spacing: -.022em;
  color: var(--muted-dark);
}
.legal-content section {
  padding: 52px 0;
  border-bottom: 1px solid var(--line-dark);
}
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.05;
  font-weight: 620;
  letter-spacing: -.045em;
}
.legal-content p,
.legal-content li {
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: -.012em;
  color: rgba(20, 20, 20, .7);
}
.legal-content p { margin: 0 0 18px; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul {
  margin: 8px 0 24px;
  padding-left: 22px;
}
.legal-content li { padding: 3px 0; }
.legal-content strong {
  font-weight: 620;
  color: rgba(20, 20, 20, .9);
}
.legal-content a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(20, 20, 20, .3);
  transition: text-decoration-color .2s ease;
}
.legal-content a:hover { text-decoration-color: rgba(20, 20, 20, .8); }
.settings-path {
  display: inline-block;
  margin-top: 4px !important;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(20, 20, 20, .055);
  font-size: 15px !important;
  font-weight: 560;
  color: rgba(20, 20, 20, .82) !important;
}
.legal-footer {
  color: rgba(20, 20, 20, .48);
  background: var(--paper);
  border-top: 1px solid var(--line-dark);
}
.legal-footer-inner {
  width: min(980px, calc(100vw - 36px));
  min-height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  font-size: 12px;
}
.legal-footer-inner > a {
  font-size: 15px;
  font-weight: 620;
  color: rgba(20, 20, 20, .88);
}
.legal-footer-inner > div {
  display: flex;
  gap: 22px;
}
.legal-footer-inner a { transition: color .2s ease; }
.legal-footer-inner a:hover { color: var(--ink); }
.legal-footer-inner p { margin: 0; text-align: right; }

@media (max-width: 700px) {
  .legal-main { padding-left: 18px; padding-right: 18px; }
  .legal-content section { padding: 42px 0; }
  .legal-footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 0;
    text-align: center;
  }
  .legal-footer-inner > div { justify-content: center; flex-wrap: wrap; }
  .legal-footer-inner p { text-align: center; }
}
