*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B2C;
  --gold: #F5A623;
  --dark: #0d0d0d;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --border: #2a2a2a;
  --text: #f0f0f0;
  --muted: #888;
  --green: #22c55e;
  --red: #e05555;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1040px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand img { display: block; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
@media (max-width: 640px) { .nav-links { display: none; } }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 10px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: all 0.15s; cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #ff7d3f; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,44,0.35); }

/* STORE BADGES */
.store-badge-link { display: inline-block; transition: all 0.15s; }
.store-badge-link:hover { transform: translateY(-2px); filter: drop-shadow(0 4px 12px rgba(255,107,44,0.3)); }
.store-badge-img { display: block; height: 44px; width: auto; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; align-items: center; }
.coming-soon-wrap { display: flex; flex-direction: column; gap: 14px; }
.coming-soon-pill {
  display: inline-block; width: fit-content;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.35);
  background: rgba(245,166,35,0.07);
  padding: 6px 16px; border-radius: 20px;
}
.early-access-cta {
  display: inline-block; width: fit-content;
  background: var(--orange);
  color: #fff;
  font-size: 16px; font-weight: 700;
  padding: 14px 28px; border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.early-access-cta:hover { opacity: 0.85; }
.early-access-sub { font-size: 13px; color: var(--muted); }
.badge-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; align-items: center; margin-top: 28px; }

/* APP ICON */
.app-icon-wrap { display: flex; flex-direction: column; align-items: center; margin-bottom: 28px; }
.app-icon-store {
  width: 100px; height: 100px; object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(255,107,44,0.25), 0 0 0 1px rgba(255,255,255,0.06);
}
.app-icon-label { font-size: 13px; color: var(--muted); margin-top: 10px; font-weight: 600; letter-spacing: 0.3px; }

/* HERO */
.hero { padding: 80px 0 72px; }
.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.hero-text { flex: 1; }
.hero-logo { flex-shrink: 0; }
.hero-logo-img { width: 468px; height: 468px; object-fit: contain; filter: drop-shadow(0 0 40px rgba(255,107,44,0.2)); }
@media (max-width: 700px) {
  .hero-inner { flex-direction: column-reverse; text-align: center; }
  .hero-logo-img { width: 180px; height: 180px; }
  .hero-btns { justify-content: center; }
}
.eyebrow { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.brand-name { font-size: clamp(42px, 6vw, 72px); font-weight: 900; line-height: 1; margin-bottom: 10px; letter-spacing: -1px; }
.brand-quote {
  background: linear-gradient(to bottom, #FFF0A0 0%, #FFB347 45%, #E84800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-licious {
  background: linear-gradient(to bottom, #F8F8F8 0%, #D0D0D0 50%, #909090 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-tm { font-size: 0.35em; vertical-align: super; color: var(--muted); font-weight: 400; -webkit-text-fill-color: var(--muted); }
h1 { font-size: clamp(20px, 2.8vw, 32px); font-weight: 600; line-height: 1.3; color: var(--muted); margin-bottom: 20px; }
.highlight { color: var(--orange); font-weight: 700; }
.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.65; max-width: 480px; }
@media (max-width: 700px) { .hero-sub { margin: 0 auto; } }

/* GUARANTEE STRIP */
.guarantee-strip {
  background: linear-gradient(135deg, #1a0f00, #0d0d0d);
  border-top: 1px solid #2a1800; border-bottom: 1px solid #2a1800;
  padding: 18px 0;
}
.strip-items { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 0; }
.strip-item { display: flex; align-items: center; gap: 8px; padding: 0 20px; font-size: 13px; font-weight: 600; color: #ccc; }
.strip-icon { color: var(--orange); font-weight: 900; font-size: 15px; }
.strip-divider { width: 1px; height: 16px; background: #333; }
@media (max-width: 700px) { .strip-divider { display: none; } .strip-item { width: 50%; } }

/* SECTIONS */
.section { padding: 88px 0; }
.bg-alt { background: var(--dark2); }
.section-eyebrow { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.section-h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: #fff; margin-bottom: 52px; line-height: 1.15; }

/* STEPS */
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 28px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #fff; font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,107,44,0.3);
}
.step-body h3 { font-size: 21px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.step-body p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* COMPARE */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-col { padding: 32px; border-radius: 16px; border: 1px solid var(--border); }
.compare-bad { background: #150d0d; border-color: #3a1515; }
.compare-good { background: #0a150a; border-color: #1a3a1a; border-left: 3px solid var(--green); }
.compare-col h3 { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.compare-bad h3 { color: var(--red); }
.compare-good h3 { color: var(--green); }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.compare-col li { font-size: 14px; color: var(--muted); line-height: 1.5; padding-left: 4px; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 700px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--dark3); border: 1px solid var(--border); border-radius: 16px; padding: 26px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature:hover { border-color: var(--orange); transform: translateY(-2px); }
.feature-icon { font-size: 30px; margin-bottom: 14px; }
.feature h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* DATA SAFETY */
.safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
@media (max-width: 700px) { .safety-grid { grid-template-columns: 1fr; } }
.safety-card {
  background: var(--dark3); border: 1px solid var(--border); border-radius: 16px; padding: 28px;
  border-top: 3px solid var(--orange);
}
.safety-icon { font-size: 30px; margin-bottom: 14px; }
.safety-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.safety-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.safety-note {
  background: #1a1000; border: 1px solid #3a2800; border-left: 3px solid var(--gold);
  border-radius: 12px; padding: 20px; font-size: 14px; color: var(--muted); line-height: 1.65;
}
.safety-note strong { color: var(--gold); }

/* PRICING */
.pricing-box {
  max-width: 580px; margin: 0 auto;
  background: var(--dark3); border: 1px solid var(--border);
  border-top: 3px solid var(--orange); border-radius: 20px; padding: 52px;
  text-align: center;
}
.price-amount { font-size: 72px; font-weight: 900; color: var(--orange); line-height: 1; }
.price-period { font-size: 28px; color: var(--muted); font-weight: 500; }
.price-sub { font-size: 16px; color: var(--muted); margin: 12px 0 32px; }
.price-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-list li { font-size: 15px; color: var(--text); padding: 0 0 0 4px; }
.price-list li::before { content: ''; }
.price-guarantee {
  background: #1a1000; border: 1px solid #3a2800; border-left: 3px solid var(--gold);
  border-radius: 12px; padding: 20px; font-size: 14px; color: var(--muted); line-height: 1.65; text-align: left;
}
.price-guarantee strong { color: var(--gold); }

/* CONTACT */
.contact-box { max-width: 520px; }
.contact-box p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
.contact-email {
  display: inline-block; font-size: 22px; font-weight: 700;
  color: var(--orange); text-decoration: none; margin-bottom: 20px;
  border-bottom: 2px solid transparent; transition: border-color 0.15s;
}
.contact-email:hover { border-color: var(--orange); }
.contact-sub { font-size: 14px; color: #555; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 52px 0 28px; background: var(--dark); }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-tagline { font-size: 14px; color: var(--orange); font-weight: 600; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom p { font-size: 12px; color: #444; }
.footer-legal { font-size: 11px; color: #333; line-height: 1.6; }
.footer-legal a { color: #555; text-decoration: none; }
.footer-legal a:hover { color: var(--muted); }

/* PRIVACY PAGE */
.privacy-wrap { max-width: 680px; }
.privacy-block { margin-bottom: 40px; }
.privacy-block h2 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.privacy-block p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
