:root {
  --ink: #f4fff8;
  --muted: #9bb5a6;
  --deep: #03110c;
  --forest: #051912;
  --card: #0a261c;
  --mint: #3ddc97;
  --mint-2: #7dffc4;
  --gold: #e8c36a;
  --line: rgba(61, 220, 151, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--deep);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--mint), var(--gold));
  z-index: 80; box-shadow: 0 0 18px var(--mint);
}

.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 25, 18, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0.04em; }
.brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; }
.brand span { color: var(--mint); }
.nav-links { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; font-weight: 700; font-family: inherit;
  border-radius: 999px; padding: 12px 20px; transition: transform .25s, box-shadow .25s, background .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-mint { background: var(--mint); color: #042015; box-shadow: 0 10px 30px rgba(61,220,151,.28); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-gold { background: var(--gold); color: #2a1c04; }

.hero {
  position: relative; min-height: 92vh; display: grid; place-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(3,17,12,.2), rgba(3,17,12,.82)),
    url("./media/hero-dining.jpg") center/cover;
  transform: scale(1.08);
  animation: ken 28s ease-in-out infinite alternate;
  filter: saturate(1.05);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(61,220,151,.18), transparent 42%);
}
@keyframes ken { to { transform: scale(1.18) translate(-2%, -1%); } }
.float-bolt {
  position: absolute; width: min(52vw, 520px); opacity: .12; right: -6%; top: 8%;
  animation: drift 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes drift {
  50% { transform: translateY(24px) rotate(-6deg); }
}
.hero-copy { position: relative; z-index: 2; padding: 90px 0 70px; }
.kicker {
  color: var(--mint); letter-spacing: .28em; text-transform: uppercase; font-size: 12px; font-weight: 700;
}
h1 {
  font-family: var(--display); font-weight: 500; font-size: clamp(42px, 7vw, 92px);
  line-height: .95; margin: 14px 0 18px; max-width: 14ch;
}
h1 em { font-style: italic; color: var(--mint-2); }
.lede { max-width: 46ch; color: #d7efe4; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.meta-row { display: flex; gap: 28px; margin-top: 40px; color: var(--muted); font-size: 13px; }
.meta-row strong { display: block; color: var(--ink); font-size: 22px; font-family: var(--display); }

.marquee {
  border-block: 1px solid var(--line);
  background: #061c14;
  overflow: hidden; white-space: nowrap; padding: 16px 0;
}
.marquee-track { display: inline-flex; gap: 48px; animation: slide 28s linear infinite; }
.marquee-track span { color: var(--muted); letter-spacing: .18em; text-transform: uppercase; font-size: 13px; }
@keyframes slide { to { transform: translateX(-50%); } }

section { padding: 92px 0; }
.sec-title { font-family: var(--display); font-size: clamp(32px, 4vw, 56px); line-height: 1.05; }
.sec-sub { color: var(--muted); max-width: 52ch; margin-top: 12px; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.shot {
  border-radius: var(--radius); overflow: hidden; position: relative; min-height: 420px;
  box-shadow: var(--shadow);
}
.shot img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.shot-card {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  background: rgba(5,25,18,.78); backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: 18px; padding: 16px 18px;
}
.shot-card b { color: var(--mint); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.card {
  background: linear-gradient(180deg, #0c2d22, #081c16);
  border: 1px solid var(--line); border-radius: 24px; padding: 22px;
  min-height: 220px; transition: transform .35s, border-color .35s;
}
.card:hover { transform: translateY(-8px); border-color: rgba(61,220,151,.45); }
.card img { height: 120px; width: 100%; object-fit: cover; border-radius: 16px; margin-bottom: 14px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.step { padding: 22px; border-radius: 22px; background: var(--card); border: 1px solid var(--line); }
.num { font-family: var(--display); color: var(--gold); font-size: 36px; }

.download-band {
  position: relative; overflow: hidden; border-radius: 36px;
  padding: 48px; border: 1px solid var(--line);
  background: linear-gradient(135deg, #0a2a1e 0%, #051912 55%, #123226 100%);
}
.download-band::before {
  content: ""; position: absolute; inset: auto -10% -40% auto; width: 380px; height: 380px;
  background: url("./media/bolt.png") center/contain no-repeat; opacity: .16;
  animation: drift 8s ease-in-out infinite;
}
.dl-row { display: flex; justify-content: space-between; gap: 24px; align-items: end; position: relative; }
#apk-tag, #apk-size { color: var(--mint); font-weight: 700; }
.note { color: var(--muted); font-size: 13px; margin-top: 10px; }

.faq { display: grid; gap: 10px; margin-top: 28px; }
details {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px;
}
summary { cursor: pointer; font-weight: 700; }
details p { color: var(--muted); margin-top: 8px; }

.contact {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center;
}
.trial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.trial-form {
  display: grid; gap: 14px; padding: 28px; border-radius: 28px;
  background: var(--card); border: 1px solid var(--line);
}
.trial-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; color: var(--muted); }
.trial-form input, .trial-form select {
  font: inherit; font-weight: 500; color: var(--ink);
  background: #03140e; border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 14px; outline: none;
}
.trial-form input:focus, .trial-form select:focus { border-color: var(--mint); }
.trial-form .btn { width: 100%; margin-top: 6px; }
.wa {
  display: flex; flex-direction: column; gap: 12px; padding: 28px; border-radius: 28px;
  background: url("./media/hero-tablet.jpg") center/cover;
  min-height: 280px; position: relative; overflow: hidden;
}
.wa::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, #03110c 85%); }
.wa > * { position: relative; z-index: 1; }

footer { border-top: 1px solid var(--line); padding: 28px 0 48px; color: var(--muted); font-size: 13px; }
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.reveal { opacity: 0; transform: translateY(28px); animation: up .9s ease forwards; }
.d1 { animation-delay: .08s; } .d2 { animation-delay: .18s; } .d3 { animation-delay: .3s; }
@keyframes up { to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .split, .grid-3, .steps, .dl-row, .contact, .trial-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .download-band { padding: 28px; }
}
