/* Ovane — landing page. Self-contained (legal pages keep style.css).
   Cinematic dark treatment; palette matches the iOS app. System font stack on
   purpose: the app's Nexa license covers app embedding, not webfont serving. */

:root {
  --bg:       #101012;   /* near-black page */
  --bg2:      #17171A;
  --cream:    #FFF6EE;
  --cream2:   #E8DBCF;
  --card:     #FFFCF9;
  --obsidian: #262628;
  --lavender: #C6C2F2;
  --lavdeep:  #8D87D8;
  --lime:     #D6DC82;
  --limedeep: #AEB544;
  --cherry:   #D86072;
  --muted:    rgba(255, 246, 238, 0.66);
  --faint:    rgba(255, 246, 238, 0.42);
  --ink-mute: rgba(38, 38, 40, 0.66);
  --hair:     rgba(255, 246, 238, 0.10);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.shell { max-width: 1240px; margin: 0 auto; padding: 0 26px; }

/* ═══════════ Liquid-glass floating nav ═══════════ */

.nav {
  position: fixed; z-index: 90;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 28px); max-width: 1240px;
  border-radius: 20px;
  /* At the top of the page the bar is invisible — it just sits on the hero.
     The glass panel only materialises once you start scrolling. */
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease,
              backdrop-filter .3s ease;
  overflow: hidden;
}
/* specular sheen — the "liquid glass" highlight along the top edge */
.nav::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,.10), rgba(255,255,255,0));
  pointer-events: none; opacity: 0; transition: opacity .3s ease;
}
.nav.scrolled {
  background: rgba(16, 16, 18, 0.72);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}
.nav.scrolled::before { opacity: 1; }
.nav-in {
  position: relative; z-index: 1;
  padding: 11px 12px 11px 16px;
  display: flex; align-items: center; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { width: 40px; height: 40px; border-radius: 11px; display: block; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-size: 17px; font-weight: 800; letter-spacing: -0.3px; color: var(--cream); }
.brand-name span { color: var(--lavender); }
.brand-sub { font-size: 11.5px; color: var(--faint); }

.nav-links { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--cream); text-decoration: none; font-size: 15px; font-weight: 700; opacity: .85; }
.nav-links a:hover { opacity: 1; }

.btn {
  display: inline-block; border-radius: 999px; text-decoration: none;
  font-weight: 800; font-size: 15px; padding: 12px 24px;
  background: var(--cream); color: var(--obsidian);
  transition: transform .12s ease, filter .12s ease;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.04); transform: translateY(-1px); }
.btn-lime { background: var(--lime); }
.btn-lg { font-size: 16.5px; padding: 16px 34px; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .brand-sub { display: none; }
  .nav-in { padding: 9px 10px 9px 13px; }
  .btn { font-size: 14px; padding: 10px 18px; }
  /* links are hidden here, so the button needs its own push to the right corner */
  .nav .btn { margin-left: auto; }
}

/* ═══════════ Hero ═══════════ */

.hero-wrap {
  position: relative;
  padding-top: 122px;
  /* cinematic vignette + cool rim glow behind the device */
  background:
    radial-gradient(1100px 620px at 78% 32%, rgba(88, 120, 170, 0.20), transparent 62%),
    radial-gradient(760px 520px at 12% 8%, rgba(198, 194, 242, 0.07), transparent 65%);
}
/* Drop a real photo in later:  .hero-wrap { --shot: url('/hero.jpg'); }  */
.hero-wrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--shot, none);
  background-size: cover; background-position: center;
  opacity: .5;
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent);
          mask-image: linear-gradient(to bottom, #000 55%, transparent);
  z-index: 0;
}

.hero {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 30px;
  align-items: center; padding: 34px 0 96px;
}
.hero h1 {
  font-size: clamp(44px, 6.6vw, 78px);
  line-height: 1.0; font-weight: 800; letter-spacing: -2.4px;
  margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--lime); }
.hero-sub {
  font-size: clamp(16.5px, 1.8vw, 19px); color: var(--muted);
  max-width: 33em; margin-bottom: 34px;
}
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px;
  background: rgba(214, 220, 130, 0.13); color: var(--lime);
  border: 1px solid rgba(214, 220, 130, 0.22);
  font-size: 14px; font-weight: 700;
}
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 20px 0 70px; }
  .hero-wrap { padding-top: 104px; }
  /* device first on narrow screens — the reveal is the hook, so lead with it */
  .hero .phone-stage { order: -1; }
}

/* ═══════════ Phone mockup (CSS — mirrors the app's reveal screen) ═══════════ */

.phone-stage { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: 306px; padding: 11px;
  border-radius: 50px; background: linear-gradient(160deg, #3a3a3f, #171719 40%);
  box-shadow: 0 40px 90px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.08);
}
.phone-screen {
  border-radius: 40px; background: var(--obsidian); overflow: hidden;
  padding: 28px 18px 20px;
}
.notch { width: 92px; height: 26px; border-radius: 999px; background: #0a0a0b;
  position: absolute; top: 15px; left: 50%; transform: translateX(-50%); z-index: 2; }
.shot-frame {
  position: relative; aspect-ratio: 1; border-radius: 18px;
  background: linear-gradient(150deg, #46464b, #232325 72%);
  display: grid; place-items: center; margin-bottom: 15px; overflow: hidden;
}
.shot-frame img { width: 100%; height: 100%; object-fit: cover; }
.shot-frame .obj { font-size: 66px; }
.corner { position: absolute; width: 26px; height: 26px; border: 3px solid var(--lavender); }
.corner.tl { top: 10px; left: 10px;  border-right: 0; border-bottom: 0; border-radius: 12px 0 0 0; }
.corner.tr { top: 10px; right: 10px; border-left: 0;  border-bottom: 0; border-radius: 0 12px 0 0; }
.corner.bl { bottom: 10px; left: 10px;  border-right: 0; border-top: 0; border-radius: 0 0 0 12px; }
.corner.br { bottom: 10px; right: 10px; border-left: 0;  border-top: 0; border-radius: 0 0 12px 0; }
.stamp {
  position: absolute; top: 13px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  background: var(--lime); color: var(--obsidian);
  font-size: 10px; font-weight: 800; letter-spacing: 1.1px;
  padding: 7px 12px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
}
.item-name { font-size: 16.5px; font-weight: 800; letter-spacing: -0.3px; }
.item-meta { font-size: 12.5px; color: var(--faint); margin-bottom: 13px; }
.worth-label { font-size: 10px; font-weight: 800; letter-spacing: 2px; color: var(--faint); }
.worth { font-size: 47px; font-weight: 800; letter-spacing: -2.2px; color: var(--lime); line-height: 1.04; }
.worth-sub { font-size: 12.5px; color: var(--faint); margin-top: 2px; }
.verdict-row { margin-top: 15px; padding: 12px 14px; border-radius: 14px; background: var(--lime); color: var(--obsidian); }
.verdict-row b { font-size: 14.5px; font-weight: 800; display: block; }
.verdict-row span { font-size: 12px; opacity: .78; }

/* floating glass chips around the device */
.chip {
  position: absolute; z-index: 3;
  background: rgba(38, 38, 42, 0.58);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-radius: 18px; padding: 13px 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  min-width: 118px;
}
.chip small { display: block; font-size: 9.5px; font-weight: 800; letter-spacing: 1.4px; color: var(--faint); margin-bottom: 3px; }
.chip b { font-size: 17px; font-weight: 800; letter-spacing: -0.4px; }
.chip.a { top: 10%;  left: -6%;  }
.chip.b { top: 47%;  right: -8%; }
.chip.c { bottom: 9%; left: -9%; }
.chip .ok { color: var(--lime); }
@media (max-width: 1100px) { .chip.a { left: -2%; } .chip.b { right: -2%; } .chip.c { left: -2%; } }
@media (max-width: 560px)  { .chip { display: none; } }

/* ═══════════ Trust strip ═══════════ */

.strip {
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  padding: 32px 0; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; text-align: center;
}
.strip b { display: block; font-size: 16.5px; font-weight: 800; margin-bottom: 3px; }
.strip span { font-size: 13.5px; color: var(--faint); }
@media (max-width: 760px) { .strip { grid-template-columns: 1fr; gap: 20px; } }

/* ═══════════ Sections ═══════════ */

.sec { padding: 100px 0; }
.sec-kicker { font-size: 12px; font-weight: 800; letter-spacing: 2.4px; color: var(--lavender); margin-bottom: 14px; }
.sec h2 { font-size: clamp(32px, 4.6vw, 50px); font-weight: 800; letter-spacing: -1.6px; line-height: 1.06; margin-bottom: 18px; }
.sec-lede { font-size: 17.5px; color: var(--muted); max-width: 44em; }
.center { text-align: center; }
.center .sec-lede { margin-left: auto; margin-right: auto; }

/* split section with a showcase image + floating chips (Calz-style) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.showcase {
  position: relative; aspect-ratio: 4/3; border-radius: 28px;
  background:
    radial-gradient(60% 60% at 50% 45%, rgba(198,194,242,.16), transparent 70%),
    linear-gradient(160deg, #2b2b30, #151517 75%);
  display: grid; place-items: center; overflow: visible;
}
.showcase .art { font-size: 120px; filter: drop-shadow(0 24px 40px rgba(0,0,0,.6)); }
.showcase img { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; }
/* keep the floating chips inside the frame here (the hero's sit further out) */
.showcase .chip.a { top: 8%;   left: auto; right: -5%; }
.showcase .chip.b { top: 46%;  right: auto; left: -5%; }
.showcase .chip.c { bottom: 8%; left: auto; right: -3%; }
@media (max-width: 1180px) {
  .showcase .chip.a { right: 2%; }
  .showcase .chip.b { left: 2%; }
  .showcase .chip.c { right: 2%; }
}
@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; gap: 34px; }
  /* copy leads on narrow screens; the showcase image follows it */
  .split .showcase { order: 2; }
}

/* steps — quiet numbered rows, not heavy cards (keeps the dark treatment intact) */
.steps { list-style: none; margin-top: 34px; display: flex; flex-direction: column; gap: 4px; }
.step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 4px;
  border-top: 1px solid var(--hair);
}
.step:last-child { border-bottom: 1px solid var(--hair); }
.step-n {
  flex: none; display: grid; place-items: center;
  width: 27px; height: 27px; border-radius: 50%; margin-top: 1px;
  background: rgba(214, 220, 130, 0.14); color: var(--lime);
  border: 1px solid rgba(214, 220, 130, 0.30);
  font-size: 13px; font-weight: 800;
}
.step h3 { font-size: 17px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 3px; color: var(--cream); }
.step p { font-size: 14.5px; color: var(--faint); line-height: 1.5; }

/* ═══════════ Comparison (Calz-style 3-up, honest content) ═══════════ */

.compare {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; margin-top: 66px; text-align: center;
}
.cmp { position: relative; padding: 34px 22px; border-radius: 26px; }
/* glow behind the middle (us) — the visual "winner" cue */
.cmp.us::before {
  content: ""; position: absolute; inset: -6% -4%;
  background: radial-gradient(58% 52% at 50% 52%, rgba(214,220,130,.20), transparent 72%);
  pointer-events: none; z-index: 0;
}
.cmp > * { position: relative; z-index: 1; }
.cmp-ico {
  width: 78px; height: 78px; margin: 0 auto 20px; border-radius: 20px;
  display: grid; place-items: center; font-size: 38px;
  background: rgba(255,255,255,.05); border: 1px solid var(--hair);
}
.cmp.us .cmp-ico { background: var(--obsidian); border-color: rgba(214,220,130,.35); padding: 8px; }
.cmp.us .cmp-ico img { width: 100%; height: 100%; border-radius: 13px; }
.cmp h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 9px; }
.cmp p { font-size: 14.5px; color: var(--faint); line-height: 1.55; max-width: 22em; margin: 0 auto 22px; }
.cmp-big { font-size: clamp(40px, 5.4vw, 62px); font-weight: 800; letter-spacing: -2.4px; line-height: 1; }
.cmp.us .cmp-big { color: var(--lime); }
@media (max-width: 860px) { .compare { grid-template-columns: 1fr; gap: 46px; } }

/* honesty quote */
.quote { margin-top: 70px; background: var(--cream2); color: var(--obsidian); border-radius: 28px; padding: 42px 38px; }
.quote p { font-size: clamp(19px, 2.4vw, 26px); font-weight: 800; letter-spacing: -0.7px; line-height: 1.3; }
.quote small { display: block; margin-top: 12px; font-size: 14.5px; font-weight: 600; color: var(--ink-mute); letter-spacing: 0; }

/* final CTA */
.final { text-align: center; padding: 100px 0 110px; }
.final h2 { font-size: clamp(34px, 5.2vw, 58px); font-weight: 800; letter-spacing: -1.8px; margin-bottom: 16px; }
.final p { font-size: 18px; color: var(--muted); margin-bottom: 32px; }

/* footer */
.foot { border-top: 1px solid var(--hair); padding: 34px 0 64px; font-size: 14px; color: var(--muted); text-align: center; }
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; margin-bottom: 16px; }
.foot-links a { color: var(--cream); text-decoration: none; font-weight: 600; }
.foot-links a:hover { color: var(--lavender); }
.foot .disclaim { font-size: 12.5px; color: var(--faint); max-width: 56em; margin: 14px auto 0; }
