:root {
  --bg: #08090b;
  --bg-elevated: #0f1114;
  --bg-card: #121418;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text-primary: #f2f3f5;
  --text-secondary: #9a9ea6;
  --text-muted: #5c6067;
  --accent: #c9a876;
  --accent-soft: rgba(201, 168, 118, 0.12);
  --success: #7fbf8f;
  --danger: #d97a7a;
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(201, 168, 118, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

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

svg[data-lucide],
i[data-lucide] svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}#42445A

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(8, 9, 11, 0.72);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.brand svg { width: 22px; height: 22px; stroke: var(--accent); }

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

.nav-links a { transition: color 0.25s var(--ease); }
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-hover);
  font-size: 13px;
  transition: all 0.25s var(--ease);
}

.nav-cta:hover { background: var(--accent-soft); border-color: var(--accent); }

.hero { padding: 120px 24px 90px; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) forwards;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 760px;
  margin: 0 auto 24px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.1s forwards;
}

.hero h1 span { color: var(--accent); }

.hero p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.3s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--accent); color: #14120d; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -8px rgba(201, 168, 118, 0.45); }
.btn-ghost { border-color: var(--border-hover); color: var(--text-primary); background: transparent; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.04); transform: translateY(-2px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.section { padding: 70px 24px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(24px, 4vw, 34px); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.section-head p { color: var(--text-secondary); font-size: 15px; max-width: 480px; margin: 0 auto; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
  opacity: 0;
  transform: translateY(20px);
}

.card.in-view { opacity: 1; transform: translateY(0); }
.card:hover { transform: translateY(-4px); border-color: var(--border-hover); background: #14171b; }

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon svg { width: 20px; height: 20px; stroke: var(--accent); }
.card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--text-secondary); }

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

.step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.step.in-view { opacity: 1; transform: translateY(0); }
.step:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

.step-body h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.step-body p { font-size: 14px; color: var(--text-secondary); }

.activate-wrap {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.activate-card {
  width: 100%;
  max-width: 460px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 34px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}

.activate-head { text-align: center; margin-bottom: 30px; }

.activate-head .icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.activate-head .icon-badge svg { width: 24px; height: 24px; stroke: var(--accent); }
.activate-head h1 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.activate-head p { font-size: 13px; color: var(--text-secondary); }

.progress-track { display: flex; align-items: center; gap: 6px; margin-bottom: 32px; }

.progress-seg {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}

.progress-seg::after {
  content: "";
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.5s var(--ease);
}

.progress-seg.done::after, .progress-seg.active::after { width: 100%; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12.5px; color: var(--text-secondary); margin-bottom: 8px; }

.field input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.field input::placeholder { color: var(--text-muted); }
.field input:focus { outline: none; border-color: var(--accent); background: #14171b; }
.field-hint { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

.btn-block { width: 100%; justify-content: center; padding: 14px; }

.status-box {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  display: none;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.status-box svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.status-box.show { display: flex; }
.status-box.info { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border); color: var(--text-secondary); }
.status-box.success { background: rgba(127, 191, 143, 0.08); border: 1px solid rgba(127, 191, 143, 0.3); color: var(--success); }
.status-box.error { background: rgba(217, 122, 122, 0.08); border: 1px solid rgba(217, 122, 122, 0.3); color: var(--danger); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 22px;
  transition: color 0.25s var(--ease);
}

.back-link:hover { color: var(--text-secondary); }
.back-link svg { width: 13px; height: 13px; }

.spinner {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(20, 18, 13, 0.3);
  border-top-color: #14120d;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12.5px;
}

.footer strong { color: var(--text-secondary); font-weight: 500; }

@media (max-width: 860px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .navbar-inner { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { padding: 90px 20px 60px; }
  .grid { grid-template-columns: 1fr; }
  .section { padding: 50px 20px; }
  .activate-card { padding: 30px 22px; }
}