:root {
  --bg: #050505;
  --surface: #0b0b0b;
  --surface-2: #111111;
  --surface-3: #1a1a1a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f5f5;
  --muted: #9ca3af;
  --accent: #f5b726;
  --accent-2: #d48b0a;
  --accent-glow: rgba(245, 183, 38, 0.25);
  --success: #22c55e;
  --radius: 24px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(245, 183, 38, 0.04) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(245, 183, 38, 0.02) 0%, transparent 30%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.nav-logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--accent-glow));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
  font-weight: 500;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  background: var(--accent);
  color: #08090c;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 99px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 20px rgba(245, 183, 38, 0.2);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(245, 183, 38, 0.3);
}

.nav-cta-mobile {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #08090c;
  font-weight: 700;
  border-radius: 99px;
  text-align: center;
}

.nav-toggle {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(245, 183, 38, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(245, 183, 38, 0.04) 0%, transparent 40%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}

.hero-ascii {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.hero-ascii pre {
  font-family: 'SF Mono', 'Menlo', 'Monaco', 'Cascadia Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 2px;
  color: rgba(245, 183, 38, 0.22);
  white-space: pre;
  text-align: center;
  user-select: none;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-ascii pre {
    font-size: 11px;
    letter-spacing: 1px;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.hero-logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 32px rgba(245, 183, 38, 0.35));
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #fff 0%, #e5e5e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 0.75rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.live-stats {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 99px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 90px;
  padding: 0.45rem 0.9rem;
}

.stat strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
}

.stat span {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 99px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #08090c;
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(245, 183, 38, 0.35);
}

.btn-secondary {
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--surface-2);
  border-color: var(--accent);
}

/* Sections */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.section.alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section > .container {
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.section-kicker {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.step-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #08090c;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Agent / Profit */
.agent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.agent-text,
.agent-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-height: 540px;
  overflow-y: auto;
}

.agent-text p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.agent-text strong {
  color: var(--text);
}

.agent-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.agent-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.block-title {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.block-lead {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  text-align: center;
  line-height: 1.55;
}

.agent-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
}

.agent-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ops-empty {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem 0;
}

.ops-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.ops-type {
  color: var(--muted);
  text-transform: capitalize;
  min-width: 85px;
}

.ops-type.deposit {
  color: var(--success);
}

.ops-type.withdrawal {
  color: #ff6b6b;
}

.ops-type.buy {
  color: var(--success);
}

.ops-type.sell {
  color: #ff6b6b;
}

.ops-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  flex: 1;
  min-height: 0;
}

@media (max-width: 900px) {
  .ops-columns {
    grid-template-columns: 1fr;
  }
}

.ops-column {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.ops-column h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.ops-feed {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.ops-mint {
  color: var(--accent);
  font-size: 0.75rem;
  text-decoration: none;
  margin-right: auto;
  margin-left: 0.5rem;
}

.ops-mint:hover {
  text-decoration: underline;
}

.ops-amount {
  font-weight: 700;
  color: var(--text);
  margin-right: auto;
}

.ops-time {
  color: var(--muted);
  font-size: 0.75rem;
}

.ops-status {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.4rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--muted);
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.plan-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.plan-card.featured {
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.9rem;
  background: var(--accent);
  color: #08090c;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 99px;
}

.plan-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.plan-rate {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.plan-label {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.plan-min,
.plan-max,
.plan-duration {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.plan-total {
  color: var(--success);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0.75rem;
}

/* Referrals */
.referral-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.referral-step {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.referral-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.referral-step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--accent);
}

.referral-step-icon svg {
  width: 28px;
  height: 28px;
}

.referral-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.referral-step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.referral-commissions {
  margin-bottom: 3rem;
}

.commission-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.commission-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.commission-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--commission);
  background: linear-gradient(90deg, rgba(245, 183, 38, 0.25), rgba(245, 183, 38, 0.05));
  z-index: 0;
}

.commission-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.commission-name {
  font-weight: 700;
  font-size: 1rem;
}

.commission-desc {
  color: var(--muted);
  font-size: 0.85rem;
}

.commission-rate {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.matching-salary {
  margin-bottom: 2rem;
}

.matching-example {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.matching-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 120px;
}

.matching-side-label {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.matching-side-value {
  font-size: 1.25rem;
  font-weight: 700;
}

.matching-equals,
.matching-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
}

.matching-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 150px;
  padding: 0.75rem 1rem;
  background: rgba(245, 183, 38, 0.12);
  border: 1px solid rgba(245, 183, 38, 0.3);
  border-radius: var(--radius-sm);
}

.matching-result-salary {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.matching-result-package {
  font-size: 0.9rem;
  color: var(--muted);
}

.matching-hint {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

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

.matching-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.matching-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.matching-target {
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.matching-reward {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.matching-package {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.matching-note {
  font-size: 0.75rem;
  color: var(--muted);
}

.referral-note {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  background: rgba(245, 183, 38, 0.08);
  border: 1px solid rgba(245, 183, 38, 0.25);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

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

  .matching-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .referral-steps {
    grid-template-columns: 1fr;
  }

  .matching-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .matching-example {
    flex-direction: column;
    text-align: center;
  }

  .commission-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 560px) {
  .matching-grid {
    grid-template-columns: 1fr;
  }
}

/* Privacy */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.privacy-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.privacy-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.privacy-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--accent);
}

.privacy-icon svg {
  width: 26px;
  height: 26px;
}

.privacy-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.privacy-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.download-guide {
  text-align: center;
  margin-top: 2.5rem;
}

.download-guide .btn {
  min-width: 220px;
}

/* Glow animation for primary action buttons */
@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 183, 38, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(245, 183, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 183, 38, 0);
  }
}

.nav-cta,
.nav-cta-mobile,
.hero-actions .btn-primary,
.cta .btn-primary,
.contact-links .btn-secondary,
.download-guide .btn {
  animation: glow-pulse 2s infinite;
}

/* Pop-glow for Open Bot buttons */
.pop {
  position: relative;
  z-index: 1;
  animation: pop-glow 1.4s ease-in-out infinite alternate !important;
}

@keyframes pop-glow {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(245, 183, 38, 0.35), 0 10px 30px rgba(245, 183, 38, 0.15);
    text-shadow: 0 0 0 rgba(245, 183, 38, 0);
  }
  50% {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 0 0 14px rgba(245, 183, 38, 0), 0 0 28px rgba(245, 183, 38, 0.55);
    text-shadow: 0 0 12px rgba(245, 183, 38, 0.8), 0 0 24px rgba(245, 183, 38, 0.4);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(245, 183, 38, 0.35), 0 10px 30px rgba(245, 183, 38, 0.15);
    text-shadow: 0 0 0 rgba(245, 183, 38, 0);
  }
}

/* CTA */
.cta {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  text-align: center;
}

.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta p {
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact */
.contact {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  text-align: center;
  background: var(--bg);
}

.contact h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.contact p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.contact-links .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-links .btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

@media (max-width: 640px) {
  .contact-links {
    flex-direction: column;
    align-items: center;
  }
}

/* Footer */
.footer {
  padding: 3rem 0;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-small {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer-small a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-small a:hover {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.75rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--accent);
  opacity: 1;
}

/* Legal pages */
.legal-page {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.legal-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.legal-brand img {
  width: 32px;
  height: 32px;
}

.legal-back {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.legal-content {
  padding: 3rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.legal-content .last-updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin: 0 0 1rem 1.25rem;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
}

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

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

  .agent-text,
  .agent-card {
    max-height: none;
    overflow-y: visible;
  }

  .ops-feed {
    max-height: 220px;
  }

  .privacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 1.5rem 1.5rem;
    background: var(--surface-2);
    border-left: 1px solid var(--border);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 105;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-cta-mobile {
    display: inline-block;
    margin-top: 1rem;
  }

  .hero {
    padding: 7rem 1rem 4rem;
  }

  .hero-card {
    padding: 2rem 1.25rem;
  }

  .hero-logo {
    width: 90px;
    height: 90px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

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

  .levels {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 480px) {
  .levels {
    grid-template-columns: 1fr;
  }

  .live-stats {
    gap: 1rem;
  }

  .stat strong {
    font-size: 1.25rem;
  }
}

/* Typography refresh */
:root {
  --font: 'Avenir Next', 'Avenir', 'Helvetica Neue', Helvetica, 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p {
  line-height: 1.65;
}

.nav-brand {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-links a {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.6;
}

.hero-badge {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.section-lead {
  font-size: 1.05rem;
  line-height: 1.65;
}

.step h3 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.step p {
  line-height: 1.6;
}

.block-title {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.plan-card h3 {
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.plan-rate {
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan-label {
  letter-spacing: 0.1em;
}

.plan-min,
.plan-max,
.plan-duration {
  font-size: 0.9rem;
}

.plan-total {
  font-weight: 700;
}

.plan-example {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.agent-text p {
  font-size: 1.05rem;
  line-height: 1.65;
}

.agent-list li {
  line-height: 1.55;
}

.matching-card {
  padding: 0.85rem;
}

.matching-target {
  font-size: 0.7rem;
}

.matching-reward {
  font-size: 1.1rem;
}

.matching-package {
  font-size: 0.9rem;
}

.commission-rate {
  font-size: 1.25rem;
}

.referral-note {
  font-size: 0.85rem;
  line-height: 1.55;
}

.privacy-card h3 {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.privacy-card p {
  line-height: 1.6;
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.cta p,
.contact p {
  font-size: 1.15rem;
  line-height: 1.65;
}

.footer {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-small {
  font-size: 0.75rem;
}

