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

:root {
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --teal-400:  #2dd4bf;
  --teal-500:  #14b8a6;
  --blue-500:  #3b82f6;
  --indigo-500:#6366f1;

  --bg:        #0a0f1a;
  --bg-card:   #111827;
  --bg-alt:    #0d1420;
  --border:    rgba(255,255,255,0.08);

  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #475569;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 60px rgba(34,197,94,0.18);

  --font: 'Inter', system-ui, sans-serif;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

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

/* ─── Gradient text ─────────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--green-400) 0%, var(--teal-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  border: none;
  white-space: nowrap;
}

.btn--sm  { font-size: 0.8rem;  padding: 8px 18px; }
.btn--md  { font-size: 0.95rem; padding: 12px 26px; }
.btn--lg  { font-size: 1rem;    padding: 15px 32px; }

.btn--primary {
  background: linear-gradient(135deg, var(--green-500), var(--teal-500));
  color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(34,197,94,0.5); }
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-primary);
}
.btn--outline:hover { border-color: var(--green-400); color: var(--green-400); }

.btn--ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }

/* ─── Badge ─────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  color: var(--green-400);
  border: 1px solid rgba(34,197,94,0.3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.badge--light {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border-color: var(--border);
}

/* ─── Nav ───────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10,15,26,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon { font-size: 1.5rem; }

.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, var(--green-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero__bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}
.blob--1 { width: 600px; height: 600px; background: var(--green-500); top: -150px; left: -200px; }
.blob--2 { width: 400px; height: 400px; background: var(--teal-400);  top: 100px;  right: -100px; }
.blob--3 { width: 300px; height: 300px; background: var(--blue-500);  bottom: -50px; left: 50%; }

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero__content { display: flex; flex-direction: column; gap: 24px; }

.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
}

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__stores {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ─── Store Badges ──────────────────────────────────────────────────────────── */
.store-badge {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.store-badge img { height: 44px; width: auto; border-radius: var(--radius-sm); }

.store-badge--md img { height: 50px; }

.store-badge--disabled img {
  filter: grayscale(1) brightness(0.4);
  pointer-events: none;
  user-select: none;
}

.store-badge__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 999px;
}

/* ─── Phone Mockup ──────────────────────────────────────────────────────────── */
.hero__phone { display: flex; justify-content: center; align-items: center; }

.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  background: #1a2235;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), var(--shadow-glow);
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.phone-mockup__notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #0a0f1a;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-mockup__screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #0d1a2e 0%, #111827 100%);
  padding: 50px 16px 20px;
  overflow: hidden;
}

/* ─── Mock App UI ───────────────────────────────────────────────────────────── */
.mock-app { display: flex; flex-direction: column; gap: 10px; height: 100%; }

.mock-app__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px 6px;
}

.mock-app__title { font-size: 0.85rem; font-weight: 700; color: #e2e8f0; }
.mock-icon { font-size: 0.9rem; }

.mock-app__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 12px;
}

.mock-app__card--warning { border-color: rgba(248,113,113,0.3); background: rgba(248,113,113,0.05); }

.mock-app__row { display: flex; align-items: center; gap: 8px; }
.mock-app__icon-app { font-size: 1.2rem; }

.mock-app__app-name { font-size: 0.72rem; font-weight: 600; color: #cbd5e1; margin-bottom: 4px; }

.mock-progress { height: 5px; width: 100px; background: rgba(255,255,255,0.1); border-radius: 999px; overflow: hidden; }
.mock-progress__bar { height: 100%; border-radius: 999px; }
.mock-progress__bar--full  { width: 100%; background: #f87171; }
.mock-progress__bar--half  { width: 55%;  background: linear-gradient(90deg, var(--green-400), var(--teal-400)); }

.mock-app__tag { font-size: 0.6rem; font-weight: 700; padding: 2px 7px; border-radius: 999px; margin-left: auto; flex-shrink: 0; }
.mock-app__tag--locked { background: rgba(248,113,113,0.2); color: #fca5a5; }
.mock-app__tag--ok     { background: rgba(34,197,94,0.2);  color: var(--green-400); }

.mock-unlock {
  margin-top: auto;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 12px;
  padding: 12px;
}

.mock-unlock__title    { font-size: 0.75rem; font-weight: 700; color: var(--green-400); margin-bottom: 2px; }
.mock-unlock__subtitle { font-size: 0.62rem; color: var(--text-secondary); margin-bottom: 8px; }

.mock-steps-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 5px;
}

.mock-steps-fill {
  height: 100%;
  width: 34%;
  background: linear-gradient(90deg, var(--green-400), var(--teal-400));
  border-radius: 999px;
  transition: width 0.8s ease;
}

.mock-steps-count { font-size: 0.6rem; color: var(--text-muted); }

/* ─── Sections ──────────────────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }

.section__header { text-align: center; max-width: 600px; margin: 0 auto 64px; }

.section__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section__desc { font-size: 1rem; color: var(--text-secondary); }

/* ─── Steps ─────────────────────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.step__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--teal-500));
  align-self: center;
  flex-shrink: 0;
  opacity: 0.4;
}

.step__number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green-400);
  opacity: 0.6;
  margin-bottom: 12px;
}

.step__icon  { font-size: 2.5rem; margin-bottom: 16px; }
.step__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step__desc  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── Features ──────────────────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,197,94,0.3);
  box-shadow: 0 8px 32px rgba(34,197,94,0.08);
}

.feature-card__icon  { font-size: 2rem; margin-bottom: 16px; }
.feature-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card__desc  { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* ─── Notify / CTA ──────────────────────────────────────────────────────────── */
.section--cta {
  background: linear-gradient(135deg, #0a1628 0%, #071a12 50%, #0a1628 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.notify {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.notify__content { display: flex; flex-direction: column; gap: 20px; }

.notify__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.notify__desc { font-size: 1rem; color: var(--text-secondary); max-width: 500px; line-height: 1.7; }

.notify__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notify__input {
  flex: 1;
  min-width: 240px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 15px 24px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition);
}

.notify__input::placeholder { color: var(--text-muted); }
.notify__input:focus { border-color: var(--green-400); }

.notify__fine-print { font-size: 0.78rem; color: var(--text-muted); }

.notify__confirmation {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green-400);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
}

.confirm-icon { font-size: 1.1rem; }

.notify__stores { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.notify__stores-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }

.store-badges-row { display: flex; flex-direction: column; gap: 14px; }

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__brand { display: flex; align-items: center; gap: 8px; }

.footer__copy { font-size: 0.82rem; color: var(--text-muted); }

.footer__tagline { font-size: 0.82rem; color: var(--text-muted); font-style: italic; }

/* ─── Scroll reveal animations ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }

  .notify { grid-template-columns: 1fr; gap: 40px; }
  .notify__stores { flex-direction: row; align-items: center; gap: 24px; }
  .store-badges-row { flex-direction: row; }
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content { align-items: center; }
  .hero__cta { justify-content: center; }
  .hero__stores { justify-content: center; }

  .hero__phone { display: none; }

  .steps { flex-direction: column; align-items: center; gap: 20px; }
  .step { max-width: 100%; width: 100%; }
  .step__connector { width: 2px; height: 30px; background: linear-gradient(180deg, var(--green-500), var(--teal-500)); }

  .features { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .notify__form { flex-direction: column; }
  .notify__input { min-width: unset; }
  .btn--lg { width: 100%; }
}
