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

:root {
  --orange: #f97316;
  --orange-light: #fed7aa;
  --orange-dark: #ea6c04;
  --bg: #ffffff;
  --surface: #fafaf9;
  --border: #e7e5e4;
  --text-1: #1c1917;
  --text-2: #57534e;
  --text-3: #a8a29e;
  --font: 'Instrument Sans', system-ui, sans-serif;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-1);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand.small { font-size: 1rem; }

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-dark);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--orange);
  top: -200px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: #fb923c;
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--orange-dark);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-1);
}

.highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 3px;
  background: var(--orange-light);
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.count-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 64px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.5rem;
}

.count-val {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-1);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.count-label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}

.count-sep {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-3);
  margin-bottom: 18px;
}

/* Email form */
.email-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 480px;
}

.input-wrap {
  flex: 1;
  position: relative;
}

.input-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-3);
  pointer-events: none;
}

.email-input {
  width: 100%;
  height: 46px;
  padding: 0 1rem 0 2.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-1);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.email-input::placeholder { color: var(--text-3); }

.email-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  height: 46px;
  padding: 0 1.25rem;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.35);
}

.cta-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.cta-btn:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
  transform: translateY(-1px);
}

.cta-btn:hover svg { transform: translateX(3px); }
.cta-btn:active { transform: translateY(0); }

#form-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #16a34a;
}

#form-success svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: -0.5rem;
}

/* ── Features ─────────────────────────────────────── */
.features {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
}

.features-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.features-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.features-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-1);
  margin-bottom: 3rem;
}

.br-desktop { display: block; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.card:hover {
  border-color: #fbd5b5;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.08);
  transform: translateY(-3px);
}

.card-featured {
  border-color: var(--orange);
  background: linear-gradient(145deg, #fff7ed 0%, var(--bg) 60%);
}

.card-featured:hover {
  border-color: var(--orange-dark);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.18);
}

.card-label {
  position: absolute;
  top: -11px;
  left: 1.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  background: var(--orange);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-featured .card-icon {
  background: var(--orange);
  border-color: var(--orange-dark);
}

.card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.card-featured .card-icon svg {
  color: white;
}

.card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

.card p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}

.card-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.card-tags li {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--orange-dark);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

/* ── Stats ────────────────────────────────────────── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}

.stats-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-val {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--orange);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-3);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  padding: 2rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-3);
}

.footer-brand strong {
  color: var(--text-2);
  font-weight: 600;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-3);
}

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

@media (max-width: 640px) {
  .nav-inner { padding: 0 1.25rem; }
  .hero { padding: 72px 1.25rem 3rem; }
  .hero-inner { gap: 1.25rem; }

  .countdown { gap: 0.3rem; }
  .count-unit { min-width: 52px; padding: 0.6rem 0.4rem; }
  .count-val { font-size: 1.4rem; }
  .count-sep { font-size: 1.2rem; margin-bottom: 14px; }

  .email-form { flex-direction: column; }
  .cta-btn { height: 46px; justify-content: center; }

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

  .features { padding: 3.5rem 1.25rem; }
  .features-title { margin-bottom: 2rem; }
  .br-desktop { display: none; }

  .stats-inner { gap: 1.5rem; }
  .stat-divider { display: none; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { align-items: center; }
}
