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

/* ── Tokens ── */
:root {
  --orange:  #E8701A;
  --orange2: #C95E0F;
  --amber:   #FF9F43;
  --dark:    #0A0A0A;
  --surface: rgba(255,255,255,0.05);
  --border:  rgba(255,255,255,0.08);
  --text:    #F0F0F0;
  --muted:   rgba(255,255,255,0.45);
  --cream:   #F5E6C8;
  --radius:  16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 900; }
h2 { font-size: clamp(1.8rem, 5vw, 3rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 700; }
p  { line-height: 1.75; color: var(--muted); }

.gradient-text {
  background: linear-gradient(135deg, var(--amber), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 96px 0; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  font-size: 1.4rem; font-weight: 900;
  color: var(--amber); letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: #fff; }
.nav-cta {
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--amber), var(--orange2));
  color: #fff; font-weight: 700; font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,112,26,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,112,26,0.55); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(232,112,26,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(29,78,216,0.12) 0%, transparent 50%),
    #0A0A0A;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,159,67,0.10) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: drift 25s linear infinite;
}
@keyframes drift { to { background-position: 40px 40px; } }

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  background: rgba(232,112,26,0.15);
  border: 1px solid rgba(232,112,26,0.3);
  color: var(--amber);
  font-size: 0.82rem; font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 440px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--amber), var(--orange2));
  color: #fff; font-weight: 700; font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(232,112,26,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(232,112,26,0.6); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.9rem 1.6rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text); font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--amber); background: rgba(255,159,67,0.07); }

/* ── Fox SVG ── */
.hero-fox {
  display: flex; justify-content: center; align-items: center;
}
.fox-wrap {
  width: min(340px, 80vw);
  filter: drop-shadow(0 24px 48px rgba(232,112,26,0.4));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.speech-bubble {
  position: relative;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,159,67,0.25);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 1rem;
  display: inline-block;
  backdrop-filter: blur(8px);
}
.speech-bubble::after {
  content: '';
  position: absolute; bottom: -10px; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(255,159,67,0.25);
}

/* ── HOW IT WORKS ── */
#how {
  background: linear-gradient(180deg, #0A0A0A 0%, #0f0f18 100%);
}
.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--amber); text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 0.8rem; }
.section-sub { font-size: 1.05rem; max-width: 520px; margin-bottom: 3.5rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.step-card:hover { border-color: rgba(255,159,67,0.3); transform: translateY(-4px); }

.step-num {
  font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-card h3 { margin-bottom: 0.6rem; }
.step-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* ── FEATURES ── */
#features { background: #0A0A0A; }
.feature-grid { display: flex; flex-direction: column; gap: 5rem; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-badge {
  display: inline-block;
  background: rgba(232,112,26,0.12);
  border: 1px solid rgba(232,112,26,0.25);
  color: var(--amber);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.8rem;
}
.feature-title { margin-bottom: 0.8rem; }
.feature-desc { margin-bottom: 1.5rem; }
.feature-points { list-style: none; }
.feature-points li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  color: var(--muted); font-size: 0.95rem;
  margin-bottom: 0.55rem;
}
.feature-points li::before {
  content: '✦';
  color: var(--amber); font-size: 0.7rem;
  margin-top: 0.3rem; flex-shrink: 0;
}

/* Phone mockup */
.phone-mockup {
  background: #111;
  border: 2px solid #333;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  max-width: 240px;
  margin: 0 auto;
}
.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  background: #0f0f0f;
  aspect-ratio: 9/19;
  display: flex; flex-direction: column;
  padding: 1rem;
}
.screen-header {
  font-size: 0.65rem; color: rgba(255,255,255,0.3);
  text-align: center; margin-bottom: 0.8rem;
}
.screen-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.7rem;
  margin-bottom: 0.5rem;
}
.screen-card-title { font-size: 0.6rem; font-weight: 700; color: var(--amber); margin-bottom: 0.25rem; }
.screen-card-body  { font-size: 0.55rem; color: rgba(255,255,255,0.5); }
.screen-tag {
  display: inline-block; background: rgba(232,112,26,0.2);
  color: var(--amber); font-size: 0.5rem; font-weight: 700;
  padding: 0.15rem 0.4rem; border-radius: 4px; margin-right: 0.25rem; margin-bottom: 0.25rem;
}
.screen-btn {
  background: linear-gradient(135deg, var(--amber), var(--orange2));
  color: #fff; font-size: 0.6rem; font-weight: 700;
  text-align: center; border-radius: 8px; padding: 0.5rem;
  margin-top: auto;
}
.screen-timer {
  font-size: 1.5rem; font-weight: 900; color: var(--amber);
  text-align: center; margin: 0.5rem 0;
}
.screen-small { font-size: 0.55rem; color: rgba(255,255,255,0.35); text-align: center; }
.screen-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.screen-label { font-size: 0.55rem; color: rgba(255,255,255,0.4); }
.screen-value { font-size: 0.6rem; font-weight: 700; color: #fff; }

/* ── FOR WHOM ── */
#for-whom { background: linear-gradient(180deg, #0A0A0A 0%, #0d0d14 100%); }
.whom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.whom-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  display: flex; align-items: flex-start; gap: 0.9rem;
  transition: border-color 0.3s;
}
.whom-card:hover { border-color: rgba(255,159,67,0.25); }
.whom-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 0.1rem; }
.whom-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.whom-card p  { font-size: 0.85rem; }

/* ── SOCIAL PROOF ── */
#proof { background: #0A0A0A; }
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.review-card:hover { border-color: rgba(255,159,67,0.25); transform: translateY(-4px); }
.review-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 0.8rem; }
.review-text { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.review-author { font-size: 0.82rem; color: rgba(255,255,255,0.35); font-weight: 600; }

.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 3rem;
  text-align: center;
}
.stat-num {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }

/* ── FINAL CTA ── */
#cta-final {
  text-align: center;
  background: linear-gradient(180deg, #0A0A0A 0%, #0f0a05 100%);
  position: relative; overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,112,26,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-fox {
  font-size: 5rem; margin-bottom: 1rem;
  animation: float 4s ease-in-out infinite;
  display: block;
}
#cta-final h2 { margin-bottom: 1rem; }
#cta-final p  { max-width: 480px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-note { font-size: 0.82rem; color: var(--muted); margin-top: 1rem; }

/* ── FOOTER ── */
footer {
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 0.82rem; color: rgba(255,255,255,0.22);
}
footer a { color: rgba(255,255,255,0.35); text-decoration: none; }
footer a:hover { color: var(--amber); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-fox { order: -1; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse { direction: ltr; }
  .whom-grid { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 1rem; }
  .phone-mockup { max-width: 180px; }
}
