:root {
  --gold: #ffc857;
  --orange: #ff8a3d;
  --deep-orange: #ff5a1f;
  --red: #e94f37;
  --cream: #fff7df;
  --white: #ffffff;
  --dark: #1a0f0a;
  --card-dark: #2a1710;
  --line: rgba(255,255,255,.20);
  --glass: rgba(255,255,255,.13);
  --glass-dark: rgba(26,15,10,.28);
  --shadow: rgba(93, 24, 0, .28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 16% 8%, rgba(255,255,255,.32), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.18), transparent 24%),
    linear-gradient(180deg, var(--gold) 0%, var(--orange) 44%, var(--red) 100%);
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: .42;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(42, 23, 16, .34);
  border-bottom: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}
.nav-shell { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 950; letter-spacing: -.02em; }
.brand img, .footer-brand img { width: 42px; height: 42px; border-radius: 14px; box-shadow: 0 10px 26px rgba(87,20,0,.22); }
.brand span { font-size: 20px; }
.lang-center { position: absolute; left: 50%; transform: translateX(-50%); }
.lang-select {
  appearance: none;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(26,15,10,.24);
  color: var(--cream);
  border-radius: 999px;
  padding: 10px 38px 10px 16px;
  font-weight: 850;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.lang-select option { color: #111; }
.main-nav { display: flex; align-items: center; gap: 16px; font-weight: 820; }
.main-nav a { text-decoration: none; opacity: .92; }
.main-nav a:hover { opacity: 1; }
.nav-cta { padding: 11px 16px; border-radius: 999px; background: rgba(26,15,10,.42); border: 1px solid rgba(255,255,255,.20); }
.hamburger { display: none; width: 46px; height: 46px; border-radius: 16px; border: 1px solid rgba(255,255,255,.18); background: rgba(26,15,10,.22); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--cream); margin: 4px auto; transition: .2s ease; }
.hamburger.active span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
.nav-backdrop { position: fixed; inset: 0; z-index: 40; background: rgba(0,0,0,.42); }

.section { position: relative; padding: 92px 0; }
.section-pad { padding: 72px 0 92px; }
.hero-grid { min-height: calc(100vh - 166px); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 44px; }
.hero-copy { position: relative; z-index: 2; }
.pill, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.pill { padding: 10px 15px; border-radius: 999px; background: rgba(26,15,10,.22); border: 1px solid rgba(255,255,255,.20); box-shadow: inset 0 1px 0 rgba(255,255,255,.18); }
.pill span { width: 9px; height: 9px; border-radius: 50%; background: #fff3ba; box-shadow: 0 0 18px #fff3ba; animation: pulse 1.4s ease-in-out infinite; }
.hero h1 { margin-top: 22px; font-size: clamp(58px, 8vw, 114px); line-height: .86; letter-spacing: -.065em; color: var(--cream); text-shadow: 0 20px 52px rgba(105,24,0,.26); }
.hero-text { width: min(650px, 100%); margin-top: 24px; color: rgba(255,255,255,.88); font-size: clamp(18px, 2.2vw, 23px); line-height: 1.5; font-weight: 680; }
.hero-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height:56px; padding:0 24px; border-radius:999px; text-decoration:none; font-size:16px; font-weight:920; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { color:#561600; background:#fff6c9; box-shadow: 0 18px 44px rgba(100, 20, 0, .22); }
.btn-secondary { color:var(--cream); background:rgba(26,15,10,.20); border:1px solid rgba(255,255,255,.24); }
.trust-row { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.trust-row span { padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.18); font-size: 13px; font-weight: 820; }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.cube-wrap { width: min(74vw, 390px); animation: candyFloat 4.2s ease-in-out infinite; filter: drop-shadow(0 30px 52px rgba(89,18,0,.34)); }
.cube-wrap::after { content:""; position:absolute; left:50%; bottom:11%; width:56%; height:16%; transform:translateX(-50%); border-radius:999px; background:rgba(88,16,0,.36); filter:blur(24px); z-index:-1; }
.phone-card { position: absolute; width: 235px; height: 330px; border-radius: 38px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.24); box-shadow: 0 34px 90px rgba(88,18,0,.24), inset 0 1px 0 rgba(255,255,255,.24); backdrop-filter: blur(18px); }
.phone-back { right: 4%; top: 7%; transform: rotate(9deg); }
.mini-profile { width: 86px; height: 86px; border-radius: 30px; margin: 36px auto 22px; background: linear-gradient(135deg, #fff8c8, #ff7a2a); }
.mini-lines { display:grid; gap:12px; padding: 0 34px; }
.mini-lines span { height: 14px; border-radius: 999px; background: rgba(255,255,255,.30); }
.spark { position:absolute; display:grid; place-items:center; width:50px; height:50px; border-radius:18px; background:rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.22); font-weight:950; box-shadow:0 18px 44px rgba(95,20,0,.18); }
.spark-one { left: 10%; top: 21%; transform: rotate(-12deg); }
.spark-two { right: 10%; bottom: 23%; transform: rotate(16deg); }
.spark-three { left: 17%; bottom: 13%; transform: rotate(8deg); color:#fff3ba; }

.section-carded { background: linear-gradient(180deg, rgba(26,15,10,.10), rgba(26,15,10,.18)); }
.section-head { width: min(760px, 100%); margin-bottom: 34px; }
.section-head.compact { text-align: center; margin-left:auto; margin-right:auto; }
.section-head h2, .safety-card h2, .download-card h2 { margin-top: 10px; font-size: clamp(34px, 5vw, 62px); line-height: .95; letter-spacing: -.055em; }
.section-head p, .safety-card p, .download-card p { margin-top: 15px; color: rgba(255,255,255,.80); font-size: 18px; line-height: 1.55; font-weight: 630; }
.feature-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid article, .faq-grid details { padding: 24px; border-radius: 30px; background: var(--glass); border:1px solid var(--line); box-shadow: 0 24px 70px rgba(95,20,0,.18), inset 0 1px 0 rgba(255,255,255,.25); backdrop-filter: blur(20px); }
.icon { width: 50px; height: 50px; display:grid; place-items:center; border-radius: 18px; background: rgba(26,15,10,.22); margin-bottom: 18px; }
.feature-grid h3 { font-size: 23px; letter-spacing: -.035em; margin-bottom: 10px; }
.feature-grid p, .faq-grid p { color: rgba(255,255,255,.78); line-height: 1.52; font-weight: 620; }

.screens-grid { display:grid; grid-template-columns: repeat(6, 1fr); gap: 16px; align-items:start; }
.screen { width: 100%; aspect-ratio: 9/19.5; object-fit: cover; border-radius: 26px; border: 1px solid rgba(255,255,255,.22); background: rgba(26,15,10,.18); box-shadow: 0 24px 70px rgba(95,20,0,.20); }
.screen:nth-child(even) { margin-top: 34px; }

.safety-card, .download-card { border-radius: 42px; padding: clamp(26px, 5vw, 52px); background: rgba(26,15,10,.26); border: 1px solid rgba(255,255,255,.22); box-shadow: 0 28px 90px rgba(82,15,0,.22), inset 0 1px 0 rgba(255,255,255,.20); backdrop-filter: blur(20px); }
.safety-card { display:grid; grid-template-columns: 1fr .8fr; gap: 30px; align-items:center; }
.safety-list { display:grid; gap: 12px; }
.safety-list span { padding: 16px 18px; border-radius: 20px; background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.18); font-weight:850; }
.faq-grid { display:grid; gap: 14px; width:min(850px,100%); margin: 0 auto; }
.faq-grid summary { cursor:pointer; font-size: 19px; font-weight: 920; }
.faq-grid p { margin-top: 12px; }
.download-card { text-align: center; width:min(820px,100%); margin: 0 auto; }
.download-icon { width: 96px; height: 96px; margin: 0 auto 18px; }
.store-row { margin-top: 22px; display:flex; justify-content:center; gap: 14px; flex-wrap: wrap; }
.store { min-width: 160px; padding: 14px 20px; border-radius: 18px; text-decoration:none; border:1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.12); font-weight: 920; }
.store.disabled { opacity: .72; cursor: not-allowed; }

.site-footer { padding: 26px 0; border-top:1px solid rgba(255,255,255,.16); background: rgba(26,15,10,.20); }
.footer-grid { display:flex; align-items:center; justify-content:space-between; gap: 18px; flex-wrap: wrap; }
.footer-brand img { width: 34px; height: 34px; border-radius: 12px; }
.footer-links { display:flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.78); text-decoration:none; font-weight:750; }

@keyframes candyFloat { 0%,100%{ transform: translateY(0) rotate(-1deg) scale(1); } 50%{ transform: translateY(-15px) rotate(1deg) scale(1.025); } }
@keyframes pulse { 0%,100%{ opacity:.45; transform:scale(.84); } 50%{ opacity:1; transform:scale(1.2); } }

@media (max-width: 980px) {
  .lang-center { position: static; transform: none; margin-left: auto; }
  .hamburger { display: block; }
  .main-nav { position: fixed; top: 74px; right: 14px; z-index: 60; width: min(360px, calc(100vw - 28px)); display: grid; gap: 10px; padding: 16px; border-radius: 26px; background: rgba(42,23,16,.94); border:1px solid rgba(255,255,255,.18); box-shadow:0 28px 90px rgba(0,0,0,.32); transform: translateY(-14px); opacity:0; pointer-events:none; transition:.2s ease; }
  .main-nav.open { transform: translateY(0); opacity:1; pointer-events:auto; }
  .main-nav a { padding: 13px 14px; border-radius: 16px; background: rgba(255,255,255,.08); }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; text-align: center; }
  .hero-copy { display:grid; justify-items:center; }
  .hero-actions, .trust-row { justify-content:center; }
  .hero-visual { min-height: 430px; }
  .phone-card { display:none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .screens-grid { grid-template-columns: repeat(3, 1fr); }
  .safety-card { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 26px, 1120px); }
  .nav-shell { height: 68px; }
  .brand span { display:none; }
  .lang-select { max-width: 172px; padding: 9px 14px; }
  .main-nav { top: 68px; }
  .section { padding: 66px 0; }
  .section-pad { padding: 44px 0 66px; }
  .hero h1 { font-size: clamp(52px, 16vw, 78px); }
  .hero-text { font-size: 17px; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .screens-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .screen { border-radius: 16px; }
  .screen:nth-child(even) { margin-top: 18px; }
  .footer-grid { justify-content:center; text-align:center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
