/* Spash — shared styles. Mercury-calm, gold-on-black, app-matched. */

:root {
  --bg: #000000;
  --bg-soft: #070707;
  --card: #111111;
  --card-2: #0c0b08;
  --gold: #c9a563;
  --gold-bright: #dab877;
  --gold-soft: rgba(201, 165, 99, 0.12);
  --text: #f4f4f2;
  --muted: #8a8a87;
  --muted-2: #5f5f5c;
  --border: #1c1c1c;
  --border-2: #161616;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --maxw: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* page-top ambient vignette for depth (still gold-on-black) */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(120% 60% at 70% -10%, rgba(201,165,99,0.07), transparent 55%);
}

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(16px);
  background: rgba(0,0,0,0.5); border-bottom: 1px solid transparent; transition: border-color 0.4s var(--ease); }
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.brand-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--card-2); border: 1px solid var(--gold);
  display: grid; place-items: center; padding: 5px; object-fit: contain; }
.brand-logo { height: 30px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color 0.25s var(--ease); }
.nav-links a:hover { color: var(--text); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: inherit;
  font-weight: 600; font-size: 15px; padding: 13px 24px; border-radius: var(--radius-sm); cursor: pointer;
  border: 1px solid transparent; transition: transform 0.2s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease); }
.btn-primary { background: var(--gold); color: #1a1505; }
.btn-primary:hover { transform: translateY(-2px); background: var(--gold-bright); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Hero ---------- */
.hero { position: relative; z-index: 1; padding: 100px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); background: var(--gold-soft);
  padding: 7px 15px; border-radius: 999px; }
.hero h1 { font-size: clamp(2.9rem, 6.5vw, 4.6rem); line-height: 1.02; font-weight: 800; letter-spacing: -0.04em; }
.hero h1 .accent { color: var(--gold); }
.hero p.lede { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--muted); max-width: 34ch; line-height: 1.5; }
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-note { font-size: 13.5px; color: var(--muted-2); display: flex; align-items: center; gap: 8px; }
.hero-note i { color: var(--gold); }

/* staged entrance for hero text */
.rise { opacity: 0; transform: translateY(22px); animation: rise 0.9s var(--ease) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ambient glow */
.glow { position: absolute; width: 660px; height: 660px; right: -140px; top: -80px; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(201,165,99,0.20) 0%, rgba(201,165,99,0.05) 40%, transparent 70%);
  filter: blur(10px); animation: glowpulse 8s ease-in-out infinite; }
@keyframes glowpulse { 0%,100% { opacity: 0.65; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }

/* ---------- Phone mock ---------- */
.phone-stage { position: relative; z-index: 1; display: flex; justify-content: center;
  opacity: 0; transform: translateY(28px); animation: rise 1s var(--ease) 0.15s forwards; }
.phone { width: 300px; border-radius: 44px; background: #050505; border: 1px solid #242424; padding: 13px;
  box-shadow: 0 50px 90px -34px rgba(0,0,0,0.92), 0 0 0 1px rgba(201,165,99,0.06);
  animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.phone-screen { background: var(--bg); border-radius: 33px; padding: 28px 22px; overflow: hidden; }
.ps-greet { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.ps-live { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
.ps-title { font-size: 25px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 22px; }
.ps-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; margin-bottom: 13px; }
.ps-label { font-size: 12.5px; color: var(--muted); margin-bottom: 6px; }
.ps-net { font-size: 31px; font-weight: 800; letter-spacing: -0.03em; }
.ps-net .r { color: var(--gold); }
.ps-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.ps-head .add { color: var(--gold); font-size: 12.5px; font-weight: 600; }
.ps-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); }
.ps-row:last-child { border-bottom: 0; }
.ps-row-l { display: flex; align-items: center; gap: 12px; }
.ps-ico { width: 36px; height: 36px; border-radius: 11px; background: var(--card-2); display: grid; place-items: center; color: var(--gold); font-size: 18px; }
.ps-name { font-size: 14px; font-weight: 600; }
.ps-sub { font-size: 11.5px; color: var(--muted-2); }
.ps-amt { font-size: 14px; font-weight: 700; }
.ps-amt.out { color: var(--text); }
/* the live-logged row */
.ps-new { max-height: 0; opacity: 0; overflow: hidden; border-bottom: 1px solid transparent;
  transition: max-height 0.6s var(--ease), opacity 0.5s var(--ease), padding 0.6s var(--ease); padding: 0; }
.ps-new.show { max-height: 64px; opacity: 1; padding: 12px 0; border-bottom: 1px solid var(--border); }
.ps-new.flash { box-shadow: inset 3px 0 0 var(--gold); }

/* ---------- Thin trust line ---------- */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; position: relative; z-index: 1; }
.trust-inner { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14.5px; font-weight: 500; }
.trust-item i { color: var(--gold); font-size: 18px; }

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; z-index: 1; }
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { font-size: clamp(2.1rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.06; }
.section-head p { color: var(--muted); font-size: 1.12rem; margin-top: 18px; line-height: 1.5; }

.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 36px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.feature:hover { transform: translateY(-5px); border-color: #2c2620; }
.feature-ico { width: 52px; height: 52px; border-radius: 15px; background: var(--card-2);
  border: 1px solid rgba(201,165,99,0.22); display: grid; place-items: center; color: var(--gold); font-size: 25px; margin-bottom: 22px; }
.feature h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 11px; }
.feature p { color: var(--muted); font-size: 1rem; line-height: 1.55; }

/* ---------- Signature statement ---------- */
.statement { padding: 130px 0; text-align: center; position: relative; z-index: 1; }
.statement .big { font-size: clamp(3rem, 10vw, 7rem); font-weight: 800; letter-spacing: -0.05em; line-height: 0.95; }
.statement .big .r { color: var(--gold); }
.statement .cap { color: var(--muted); font-size: 1.15rem; margin-top: 22px; max-width: 40ch; margin-left: auto; margin-right: auto; }

/* ---------- Privacy band ---------- */
.band { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; z-index: 1; }
.band .wrap { padding-top: 110px; padding-bottom: 110px; text-align: center; }
.band .lock { width: 66px; height: 66px; margin: 0 auto 26px; border-radius: 19px; background: var(--card-2);
  border: 1px solid var(--gold); display: grid; place-items: center; color: var(--gold); font-size: 31px; }
.band h2 { font-size: clamp(1.9rem, 4.5vw, 2.7rem); font-weight: 800; letter-spacing: -0.035em; max-width: 19ch; margin: 0 auto 20px; line-height: 1.1; }
.band p { color: var(--muted); max-width: 54ch; margin: 0 auto; font-size: 1.12rem; line-height: 1.55; }

/* ---------- Final CTA ---------- */
.cta-final { padding: 130px 0; text-align: center; position: relative; z-index: 1; }
.cta-final h2 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 20px; line-height: 1.05; }
.cta-final p { color: var(--muted); margin-bottom: 34px; font-size: 1.15rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 50px 0; position: relative; z-index: 1; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer .brand { font-size: 18px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color 0.25s var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--muted-2); font-size: 13.5px; width: 100%; }

/* ---------- Legal pages ---------- */
.legal { padding: 80px 0 100px; position: relative; z-index: 1; }
.legal-head { margin-bottom: 48px; }
.legal-head .eyebrow { margin-bottom: 18px; }
.legal-head h1 { font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -0.04em; }
.legal-head .updated { color: var(--muted-2); font-size: 14px; margin-top: 14px; }
.legal-note { background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--gold);
  border-radius: 12px; padding: 17px 19px; margin-bottom: 44px; color: var(--muted); font-size: 14.5px; }
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 1.45rem; font-weight: 700; letter-spacing: -0.02em; margin: 42px 0 15px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: #c9c9c6; margin-bottom: 14px; }
.legal-body ul { color: #c9c9c6; margin: 0 0 14px 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--gold); }
.legal-body strong { color: var(--text); font-weight: 700; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive: tablet ---------- */
@media (max-width: 880px) {
  .hero { padding: 64px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; justify-items: center; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero p.lede { max-width: 40ch; }
  .hero-cta { justify-content: center; }
  .phone-stage { order: -1; }
  .features { grid-template-columns: 1fr; }
  .nav-links .nav-hide { display: none; }
  .glow { right: 50%; transform: translateX(50%); top: -40px; width: 520px; height: 520px; opacity: 0.6; }
  @keyframes glowpulse { 0%,100% { opacity: 0.45; transform: translateX(50%) scale(1); } 50% { opacity: 0.65; transform: translateX(50%) scale(1.05); } }
  .section { padding: 84px 0; }
  .section-head { margin: 0 auto 44px; }
  .statement { padding: 90px 0; }
  .band .wrap { padding-top: 80px; padding-bottom: 80px; }
  .cta-final { padding: 90px 0; }
}

/* ---------- Responsive: phone ---------- */
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 15px 20px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 30px; height: 30px; font-size: 16px; }
  .brand-logo { height: 26px; }
  .hero { padding: 44px 0 52px; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 3.1rem); line-height: 1.05; }
  .hero p.lede { font-size: 1.08rem; max-width: 34ch; }
  .hero-cta { width: 100%; flex-direction: column; gap: 11px; }
  .hero-cta .btn { width: 100%; }
  .hero-note { justify-content: center; text-align: center; }
  .phone { width: 87vw; max-width: 310px; border-radius: 40px; padding: 11px; }
  .phone-screen { border-radius: 31px; padding: 24px 19px; }
  .ps-title { font-size: 22px; }
  .ps-net { font-size: 28px; }
  .trust { padding: 24px 0; }
  .trust-inner { gap: 16px 28px; }
  .trust-item { font-size: 13.5px; }
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 38px; }
  .section-head h2 { font-size: 2rem; }
  .section-head p { font-size: 1.02rem; }
  .feature { padding: 28px; border-radius: var(--radius-sm); }
  .feature h3 { font-size: 1.2rem; }
  .statement { padding: 76px 0; }
  .statement .cap { font-size: 1.05rem; }
  .band .wrap { padding-top: 66px; padding-bottom: 66px; }
  .band h2, .cta-final h2 { font-size: 1.85rem; }
  .cta-final { padding: 76px 0; }
  .cta-final .btn { width: 100%; }
  .footer { padding: 40px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-links { flex-wrap: wrap; gap: 18px; }
  .legal { padding: 52px 0 70px; }
  .legal-head h1 { font-size: 2.2rem; }
  .legal-body h2 { font-size: 1.28rem; }
}

@media (prefers-reduced-motion: reduce) {
  .phone, .glow, .ps-live { animation: none; }
  .rise, .phone-stage { opacity: 1; transform: none; animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ps-new { max-height: 64px; opacity: 1; padding: 12px 0; border-bottom: 1px solid var(--border); }
  html { scroll-behavior: auto; }
}
