:root {
  --bg: #0e0e10;
  --bg-2: #131318;
  --surface: #1a1a1f;
  --surface-2: #242429;
  --border: #2e2e36;
  --text: #f5f5f7;
  --muted: #9a9aa5;
  --primary: #d4af37;
  --primary-2: #b8941f;
  --on-primary: #1a1400;
  --success: #3dd68c;
  --radius: 14px;
  --maxw: 1140px;
  font-family: system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color-scheme: dark;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.gold { color: var(--primary); }
section { padding: 90px 0; }
h1, h2, h3 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
.eyebrow { color: var(--primary); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(26px, 4vw, 38px); margin: 10px 0 12px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 10px; font-weight: 700; font-size: 15px; border: 1px solid transparent; cursor: pointer; transition: transform .15s, filter .15s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: var(--on-primary); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { background: var(--surface-2); border-color: var(--border); color: var(--text); }
.btn-lg { padding: 15px 28px; font-size: 16px; }

/* Header */
header.nav { position: sticky; top: 0; z-index: 50; background: rgba(14,14,16,.8); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding-top: env(safe-area-inset-top); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand .logo { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: var(--on-primary); display: grid; place-items: center; font-size: 18px; }
.brand small { display: block; font-size: 11px; color: var(--muted); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a.link { color: var(--muted); font-weight: 600; font-size: 15px; }
.nav-links a.link:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.menu-btn { display: none; background: var(--surface-2); border: 1px solid var(--border); color: var(--text); width: 42px; height: 42px; border-radius: 10px; font-size: 20px; cursor: pointer; }

/* Hero */
.hero { position: relative; padding: 80px 0 60px; text-align: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 900px; height: 600px; background: radial-gradient(closest-side, rgba(212,175,55,.18), transparent); z-index: 0; }
.hero .container { position: relative; z-index: 1; }
.badge-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--border); color: var(--muted); padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 22px; }
.hero h1 { font-size: clamp(34px, 6vw, 60px); }
.hero h1 .gold { background: linear-gradient(135deg, var(--primary), #f0d770); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.sub { color: var(--muted); font-size: clamp(16px, 2.5vw, 20px); max-width: 640px; margin: 20px auto 30px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { color: var(--muted); font-size: 13px; margin-top: 16px; }

/* Browser mockup */
.mock { margin: 50px auto 0; max-width: 1000px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); box-shadow: 0 40px 90px -30px rgba(0,0,0,.8); overflow: hidden; }
.mock .bar { height: 38px; background: var(--surface-2); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 7px; padding: 0 14px; }
.mock .bar i { width: 11px; height: 11px; border-radius: 50%; background: #3a3a42; display: inline-block; }
.mock .bar i:nth-child(1) { background: #ff5f57; } .mock .bar i:nth-child(2) { background: #febc2e; } .mock .bar i:nth-child(3) { background: #28c840; }
.mock img { width: 100%; display: block; }

/* Stats strip */
.stats { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 44px; }
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px 22px; min-width: 150px; text-align: center; }
.stat b { display: block; font-size: 24px; color: var(--primary); }
.stat span { color: var(--muted); font-size: 13px; }

/* Features */
.features { background: var(--bg-2); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: border-color .2s, transform .2s; }
.feat:hover { border-color: var(--primary); transform: translateY(-3px); }
.feat .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(212,175,55,.12); display: grid; place-items: center; font-size: 22px; margin-bottom: 14px; }
.feat h3 { font-size: 17px; margin-bottom: 6px; }
.feat p { color: var(--muted); font-size: 14px; }

/* Showcase (alternating) */
.showcase + .showcase { padding-top: 0; }
.show-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.show-row.rev .show-text { order: 2; }
.show-text .eyebrow { margin-bottom: 8px; display: block; }
.show-text h2 { font-size: clamp(24px, 3.5vw, 32px); margin-bottom: 14px; }
.show-text p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
.show-text ul { list-style: none; display: grid; gap: 10px; }
.show-text li { display: flex; gap: 10px; align-items: flex-start; color: var(--text); font-size: 15px; }
.show-text li::before { content: '✓'; color: var(--primary); font-weight: 800; }

/* Mobile section */
.mobile-sec { background: var(--bg-2); }
.mobile-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.phone { width: 290px; margin: 0 auto; border: 10px solid #1c1c22; border-radius: 38px; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0,0,0,.9); background: #000; }
.phone img { width: 100%; display: block; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.price { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; position: relative; }
.price.featured { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), 0 30px 70px -40px rgba(212,175,55,.5); }
.price .tag { position: absolute; top: -12px; right: 22px; background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: var(--on-primary); font-size: 12px; font-weight: 800; padding: 5px 12px; border-radius: 999px; }
.price h3 { font-size: 20px; }
.price .desc { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.price .amount { font-size: 40px; font-weight: 800; }
.price .amount span { font-size: 15px; color: var(--muted); font-weight: 600; }
.price ul { list-style: none; display: grid; gap: 10px; margin: 20px 0 24px; }
.price li { display: flex; gap: 10px; color: var(--text); font-size: 14px; }
.price li::before { content: '✓'; color: var(--primary); font-weight: 800; }
.price .btn { width: 100%; justify-content: center; }

/* Final CTA */
.cta-final { text-align: center; }
.cta-card { background: linear-gradient(135deg, rgba(212,175,55,.14), rgba(212,175,55,.03)); border: 1px solid var(--border); border-radius: 22px; padding: 56px 24px; }
.cta-card h2 { font-size: clamp(26px, 4vw, 38px); }
.cta-card p { color: var(--muted); font-size: 17px; margin: 12px auto 26px; max-width: 520px; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 40px 0; color: var(--muted); font-size: 14px; }
.foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 900px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .show-row, .mobile-wrap { grid-template-columns: 1fr; gap: 30px; }
  .show-row.rev .show-text { order: 0; }
  .show-text { text-align: center; }
  .show-text ul { display: inline-grid; text-align: left; }
}
@media (max-width: 680px) {
  section { padding: 64px 0; }
  .nav-links { position: fixed; inset: calc(66px + env(safe-area-inset-top)) 0 auto 0; flex-direction: column; background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px 22px 22px; gap: 16px; align-items: stretch; transform: translateY(-120%); transition: transform .25s; z-index: 40; }
  .nav-links.open { transform: translateY(0); }
  .nav-links .link { font-size: 16px; }
  .nav-cta .btn-ghost { display: none; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .feat-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .stats { gap: 10px; }
  .stat { min-width: 120px; padding: 12px 16px; }
}
