/* ═══════════════════════════════════════════════
   UNIHODL — Premium Dark Landing
   Linear meets Raycast. Emerald + Purple.
   ═══════════════════════════════════════════════ */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --surface: #1a1a1a;
  --surface-2: #222;
  --border: #222;
  --border-2: #2a2a2a;
  --text: #f0eeeb;
  --text-2: #888;
  --text-3: #555;
  --green: #10b981;
  --green-dim: rgba(16, 185, 129, 0.15);
  --purple: #8b5cf6;
  --purple-dim: rgba(139, 92, 246, 0.15);
  --amber: #f59e0b;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── Noise Texture ────────────────────── */

.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ── Scroll Reveal ────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Nav ──────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.nav-inner { display: flex; justify-content: space-between; align-items: center; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-logo {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo.small { width: 22px; height: 22px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 8px 18px !important;
  background: var(--green) !important;
  color: #000 !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.02em;
  transition: all var(--transition) !important;
}
.nav-cta:hover { background: #0fd690 !important; transform: translateY(-1px); }

/* ── Hero ─────────────────────────────── */

.hero {
  position: relative;
  padding: 180px 0 120px;
  text-align: center;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
}

.orb-1 {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0) 70%);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  top: 30%;
  left: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0) 70%);
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -52%) scale(1.08); }
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 32px;
  background: rgba(255,255,255,0.03);
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green); }
  50% { opacity: 0.4; box-shadow: 0 0 2px var(--green); }
}

.hero h1 {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  position: relative;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-3);
}

.avatars { display: flex; }
.avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid var(--bg);
  margin-left: -6px;
}
.avatar:first-child { margin-left: 0; }

/* ── Buttons ──────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-glow {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-glow:hover {
  background: #0fd690;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { border-color: var(--text-3); color: var(--text); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
  width: 100%;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

/* ── Hero Canvas ─────────────────────── */

.hero-canvas-wrap {
  width: 100%;
  max-width: 720px;
  margin: 52px auto 0;
}

.hero-anim {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  display: block;
}

@media (max-width: 768px) {
  .hero-anim { height: 210px; }
}

/* ── Ticker ───────────────────────────── */

.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: tickerScroll 20s linear infinite;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Sections ─────────────────────────── */

.section { padding: 120px 0; }
.section-alt { background: var(--bg-2); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub { font-size: 16px; color: var(--text-2); max-width: 480px; margin-bottom: 48px; }

/* ── Stats ────────────────────────────── */

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: default;
}
.stat-card:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

.stat-num {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--green), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stat-num span { font-size: 24px; }

.stat-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.stat-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ── Steps ────────────────────────────── */

.steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 48px;
}

.step-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
  cursor: default;
}
.step-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 0 24px rgba(16,185,129,0.08); }

.step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.step-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

kbd {
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid var(--border-2);
  border-radius: 4px;
  background: var(--bg);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
}

.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--text-3);
}

/* ── Resume Levels ────────────────────── */

.levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.level-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.level-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

.level-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.level-indicator.exact { background: linear-gradient(90deg, var(--green), transparent); }
.level-indicator.strong { background: linear-gradient(90deg, var(--purple), transparent); }
.level-indicator.soft { background: linear-gradient(90deg, var(--amber), transparent); }

.level-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.exact-tag { background: var(--green-dim); color: var(--green); }
.strong-tag { background: var(--purple-dim); color: var(--purple); }
.soft-tag { background: rgba(245,158,11,0.15); color: var(--amber); }

.level-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.level-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ── Features ─────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  cursor: default;
}
.feature-card:hover { border-color: var(--border-2); transform: translateY(-2px); }

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-dim);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ── Platforms ─────────────────────────── */

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.platform-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--transition);
  cursor: default;
}
.platform-pill:hover { border-color: var(--border-2); }
.platform-pill.available { border-color: var(--green); color: var(--text); }

.platform-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}
.platform-dot.green { background: var(--green); box-shadow: 0 0 6px var(--green); }
.platform-dot.purple { background: var(--purple); opacity: 0.6; }
.platform-dot.dim { background: var(--text-3); }

.soon {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Pricing ──────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
  align-items: start;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.price-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.08);
}

.price-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--green);
  color: #000;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.price-tier { font-size: 13px; font-weight: 700; color: var(--text-2); margin-bottom: 4px; }
.price-amount { font-size: 44px; font-weight: 900; letter-spacing: -0.03em; }
.price-amount span { font-size: 16px; font-weight: 500; color: var(--text-2); }
.price-period { font-size: 13px; color: var(--text-3); margin-bottom: 24px; }

.price-card ul { list-style: none; margin-bottom: 24px; }
.price-card li {
  padding: 7px 0;
  font-size: 14px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.price-card li:last-child { border: none; }
.price-card li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  margin-right: 8px;
}

/* ── CTA Section ──────────────────────── */

.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, rgba(139,92,246,0.05) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 6s ease-in-out infinite;
}

.cta-section h2 { position: relative; }
.cta-section p { font-size: 16px; color: var(--text-2); margin-bottom: 32px; position: relative; }

.waitlist-form {
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.waitlist-form input:focus { border-color: var(--green); }
.waitlist-form input::placeholder { color: var(--text-3); }

.waitlist-msg {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
  position: relative;
}
.waitlist-msg.success { color: var(--green); }
.waitlist-msg.info { color: var(--purple); }
.waitlist-msg.error { color: #ef4444; }

/* ── Footer ───────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 24px; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.footer-tagline { font-size: 13px; color: var(--text-3); }

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-3); text-decoration: none; font-size: 13px; transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-3);
  margin-top: 16px;
}

/* ── Responsive ───────────────────────── */

@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 140px 0 80px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .hero-sub br { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 8px 0; justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .waitlist-form { flex-direction: column; }
  .footer-inner { flex-direction: column; }
}
