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

:root {
  --bg: #0F0F10;
  --bg-card: #1C1C1E;
  --bg-card-hover: #242426;
  --border: #3A3A3C;
  --text: #F2F2F2;
  --text-muted: #A8A29E;
  --text-subtle: #78716C;
  --orange-start: #E07830;
  --orange-end: #D05A1A;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 25, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  color: white;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.85; }

.btn-small {
  font-size: 14px;
  padding: 8px 18px;
}

.btn-large {
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 14px;
}

/* Hero */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.badge {
  display: inline-block;
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.4);
  color: var(--orange-start);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 780px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #fff 60%, #A8A29E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  margin-bottom: 16px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-subtle);
}


/* Early access form */
.early-access-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.early-access-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.early-access-form input[type="email"] {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 16px;
  color: white;
  font-family: 'Inter', sans-serif;
  width: 280px;
  outline: none;
  transition: border-color 0.2s;
}

.early-access-form input[type="email"]::placeholder {
  color: var(--text-subtle);
}

.early-access-form input[type="email"]:focus {
  border-color: var(--orange-start);
}

/* Features */
.features {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

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

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: #57534E;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* How it works */
.how {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 48px auto 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-top: 10px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-divider {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange-end), transparent);
  margin-left: 21px;
}

/* Privacy */
.privacy {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.privacy-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.privacy-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.privacy-inner h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.privacy-inner p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA section */
.cta-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

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

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

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 13px;
  color: var(--text-subtle);
  max-width: 500px;
  line-height: 1.6;
}

/* Legal pages */
.legal-content {
  max-width: 720px;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.legal-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--text-muted);
}

.legal-section p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section a {
  color: var(--orange-start);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .hero { padding: 72px 0 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .privacy-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
