/* ============================================
   Skave Landing Page — Custom Theme
   ============================================ */

:root {
  --bg-primary: #0C0C0E;
  --bg-surface: #131316;
  --bg-elevated: #1A1A1F;
  --accent: #FF6120;
  --accent-muted: rgba(255, 97, 32, 0.12);
  --text-primary: #F4EFE6;
  --text-secondary: rgba(244, 239, 230, 0.55);
  --text-muted: rgba(244, 239, 230, 0.35);
  --border: rgba(244, 239, 230, 0.08);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1200px;
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 3px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255, 97, 32, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 97, 32, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  width: fit-content;
  margin-bottom: 40px;
  background: var(--accent-muted);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 32px;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

/* ── OVERLINE ── */
.overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ── FEATURES ── */
.features {
  background: var(--bg-primary);
  padding: 100px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.features-header {
  margin-bottom: 64px;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 500px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.2s, background 0.2s;
}

.feature-card:hover {
  border-color: rgba(255, 97, 32, 0.25);
  background: var(--bg-elevated);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-muted);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hiw-header { margin-bottom: 72px; }

.hiw-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.step:last-child { border-bottom: 1px solid var(--border); }

.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding-top: 4px;
  min-width: 28px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 540px;
  line-height: 1.65;
}

/* ── RESULTS ── */
.results {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 80px 64px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.results-inner { max-width: 900px; margin: 0 auto; }

.results-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.comp-old, .comp-new { padding: 36px; }

.comp-old { background: rgba(255,255,255,0.02); }
.comp-new { background: rgba(255, 97, 32, 0.04); }

.comp-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 24px;
}

.comp-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}

.comp-item:last-child { border-bottom: none; }

.x { color: rgba(255, 80, 80, 0.6); font-size: 16px; }
.check { color: var(--accent); font-size: 16px; }

.comp-new .comp-item { color: var(--text-primary); }

/* ── URGENCY ── */
.urgency {
  padding: 80px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.urgency-card {
  border: 1px solid rgba(255, 97, 32, 0.2);
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 56px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.urgency-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.urgency-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.urgency-sub {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

.urgency-divider {
  width: 1px;
  height: 100px;
  background: rgba(255, 97, 32, 0.2);
  flex-shrink: 0;
}

.urgency-copy h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.urgency-copy p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
  max-width: 460px;
}

.urgency-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.perk svg { color: var(--accent); flex-shrink: 0; }

/* ── HERO FORM (inline, top of page) ── */
.hero-form-wrap {
  width: 100%;
  max-width: 540px;
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.btn-cta-full {
  width: 100%;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
}

.form-micro-copy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  margin-top: 2px;
}

/* ── WAITLIST FORM (legacy / below-section) ── */
.waitlist-cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.waitlist-counter {
  font-size: 14px;
  color: var(--text-muted);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.waitlist-counter span { color: var(--accent); font-weight: 600; }

.waitlist-form {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F4EFE6' stroke-opacity='0.35' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus { border-color: rgba(255, 97, 32, 0.4); }

.form-submit-row { display: flex; justify-content: center; margin-top: 8px; }

.btn-waitlist {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  padding: 14px 48px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.01em;
}

.btn-waitlist:hover:not(:disabled) { background: #e5571d; }
.btn-waitlist:active:not(:disabled) { transform: scale(0.98); }
.btn-waitlist:disabled { opacity: 0.6; cursor: not-allowed; }

.form-error {
  font-size: 13px;
  color: #ff6b6b;
  text-align: center;
  min-height: 20px;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin: 0 auto 24px;
}

.closing-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-tagline {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-meta {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── WHAT HAPPENS NEXT ── */
.whats-next {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 80px 64px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.whats-next-inner { max-width: 860px; margin: 0 auto; }

.whats-next .overline { margin-bottom: 40px; }

.whats-next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 32px;
}

.wn-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.wn-day {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  min-width: 56px;
}

.wn-arrow {
  font-size: 16px;
  color: var(--text-muted);
}

.wn-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.wn-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ── FOUNDER SECTION ── */
.founder-section {
  padding: 100px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.founder-inner { max-width: 640px; }

.founder-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 16px 0 32px;
}

.founder-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.founder-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 15px;
  color: var(--text-secondary);
}

.founder-contact a {
  color: var(--accent);
  text-decoration: none;
}

.founder-contact a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .features { padding: 60px 24px; }
  .how-it-works { padding: 60px 24px; }
  .results { padding: 48px 24px; }
  .whats-next { padding: 48px 24px; }
  .founder-section { padding: 60px 24px; }
  .urgency { padding: 48px 24px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; flex-direction: column; gap: 16px; text-align: center; }

  .features-grid { grid-template-columns: 1fr; }
  .comparison { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; align-items: flex-start; }
  .stat-divider { display: none; }
  .stat { padding: 0; }

  .urgency-card { flex-direction: column; gap: 32px; padding: 36px; }
  .urgency-divider { width: 60px; height: 1px; }
  .urgency-count { flex-direction: row; align-items: baseline; gap: 12px; }
  .urgency-num { font-size: 56px; }

  .footer-meta { flex-direction: column; gap: 8px; }
  .whats-next-grid { grid-template-columns: 1fr; }
  .wn-item { padding: 16px; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
}