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

:root {
  --bg-0:      #030712; /* Deep modern slate/black */
  --bg-1:      #0b0f19;
  --bg-2:      #111827;
  --bg-3:      #1f2937;
  --bg-4:      #374151;
  --border-1:  rgba(243, 244, 246, 0.07);
  --border-2:  rgba(243, 244, 246, 0.12);
  --border-3:  rgba(14, 165, 233, 0.35);
  --teal:      #0ea5e9; /* Professional sky/electric blue */
  --teal-mid:  #0284c7;
  --teal-dim:  rgba(14, 165, 233, 0.08);
  --teal-glow: rgba(14, 165, 233, 0.2);
  --amber:     #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.08);
  --emerald:   #10b981;
  --text-1:    #f9fafb;
  --text-2:    #9ca3af;
  --text-3:    #4b5563;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', sans-serif;
  --display: 'Inter', sans-serif; /* Set display font to Inter for serious professional numbers and headings */
  --radius: 8px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--text-1);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 3px; }

/* ─── REUSABLE ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.mono { font-family: var(--mono); }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  border: 1px solid var(--border-2);
  background: rgba(14, 165, 233, 0.05);
  font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--teal); text-transform: uppercase;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(0.7)} }

.section-label {
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::after { content:''; flex: 1; max-width: 60px; height: 1px; background: var(--border-2); }

h1,h2,h3 { font-family: var(--display); line-height: 1.15; font-weight: 700; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 6px; border: none;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  cursor: pointer; text-decoration: none; transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal); color: #ffffff;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.2);
}
.btn-primary:hover { background: #38bdf8; box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text-2);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { color: var(--text-1); border-color: var(--teal); background: rgba(14, 165, 233, 0.03); transform: translateY(-1px); }
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ─── NAV ─── */
nav.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px; display: flex; align-items: center;
  border-bottom: 1px solid var(--border-1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(3, 7, 18, 0.8);
  transition: background 0.3s;
}
nav.topnav .container { display: flex; align-items: center; gap: 40px; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 28px; height: 28px; border-radius: 6px;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 11px; color: #ffffff;
}
.nav-logo-name { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--text-1); letter-spacing: -0.01em; }
.nav-logo-version { font-family: var(--sans); font-size: 10px; color: var(--text-3); font-weight: 500; margin-left: 2px; }
.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-link {
  padding: 6px 12px; border-radius: 4px; color: var(--text-2);
  font-size: 13px; font-weight: 500; text-decoration: none; transition: all 0.15s;
}
.nav-link:hover { color: var(--text-1); background: rgba(255, 255, 255, 0.03); }
.nav-cta { margin-left: auto; }
.nav-cta .btn { padding: 8px 16px; font-size: 13px; }

/* ─── STATIC BACKGROUND ─── */
.static-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background-image: 
    linear-gradient(to right, rgba(3, 7, 18, 0.96) 25%, rgba(3, 7, 18, 0.6) 60%, rgba(3, 7, 18, 0.95) 100%), 
    linear-gradient(to bottom, rgba(3, 7, 18, 0.4) 0%, rgba(3, 7, 18, 0.98) 100%), 
    url('hero_bg.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding-top: 64px; position: relative; overflow: hidden;
  background: transparent;
}

/* Background grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border-1) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 80%);
}

/* Glow orbs */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(120px);
}
.hero-orb-1 {
  width: 600px; height: 400px; top: -50px; left: -100px;
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 500px; height: 350px; bottom: 50px; right: -50px;
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.03) 0%, transparent 70%);
}

/* Floating paragraph numbers */
.para-float {
  position: absolute; font-family: var(--sans); font-weight: 500;
  color: var(--teal); opacity: 0; pointer-events: none;
  animation: para-drift linear infinite;
  white-space: nowrap;
}
@keyframes para-drift {
  0%   { opacity: 0; transform: translateY(0) translateX(0); }
  8%   { opacity: 0.6; }
  90%  { opacity: 0.1; }
  100% { opacity: 0; transform: translateY(-120px) translateX(var(--drift-x)); }
}

.hero-inner {
  position: relative; z-index: 2;
  padding: 80px 0;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
}
.hero-content { max-width: 560px; }
.hero-badge { margin-bottom: 24px; }
.hero-title {
  font-size: clamp(38px, 4.8vw, 64px); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 24px;
}
.hero-title span {
  background: linear-gradient(135deg, var(--teal) 0%, #38bdf8 50%, var(--teal-mid) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px; color: var(--text-2); line-height: 1.7;
  max-width: 480px; margin-bottom: 32px; font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex; gap: 40px; padding-top: 28px;
  border-top: 1px solid var(--border-1);
}
.hero-stat-n {
  font-family: var(--display); font-size: 24px; font-weight: 700; color: var(--text-1);
  line-height: 1;
}
.hero-stat-l { font-size: 11px; color: var(--text-2); font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

.hero-privacy-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius);
  max-width: 480px;
}
.privacy-notice-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.privacy-notice-icon svg {
  width: 12px;
  height: 12px;
  color: var(--emerald);
}
.hero-privacy-notice span {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
}
.hero-privacy-notice span strong {
  color: var(--emerald);
  font-weight: 600;
}

/* ─── MOCK UI PANEL ─── */
.hero-visual {
  position: relative;
}
.mock-ui {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-2);
  background: rgba(17, 24, 39, 0.7);
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 20px 50px rgba(0,0,0,0.6),
    0 0 40px rgba(14, 165, 233, 0.03);
  animation: float-mock 8s ease-in-out infinite;
}
@keyframes float-mock { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.mock-hd {
  background: var(--bg-1); padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border-1);
}
.mock-dots { display: flex; gap: 5px; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #ef4444; }
.mock-dot:nth-child(2) { background: #f59e0b; }
.mock-dot:nth-child(3) { background: #10b981; }
.mock-title { font-family: var(--sans); font-size: 11px; font-weight: 500; color: var(--text-3); margin: 0 auto 0 12px; }

.mock-body { display: flex; }
.mock-sidebar {
  width: 130px; background: rgba(3, 7, 18, 0.3); padding: 12px 8px;
  border-right: 1px solid var(--border-1); flex-shrink: 0;
}
.mock-reg-tab {
  padding: 4px 6px; border-radius: 4px; font-family: var(--sans); font-weight: 500; font-size: 10px;
  color: var(--text-2); margin-bottom: 2px; cursor: default;
}
.mock-reg-tab.active { background: var(--teal-dim); color: var(--teal); }
.mock-prog-section { margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border-1); }
.mock-prog-label { font-size: 9px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.mock-prog-track { background: var(--bg-3); height: 3px; border-radius: 2px; margin-bottom: 4px; }
.mock-prog-fill { background: var(--teal); height: 100%; border-radius: 2px; transition: width 1s ease; }
.mock-prog-pct { font-family: var(--sans); font-weight: 600; font-size: 10px; color: var(--teal); }
.mock-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 6px; }
.mock-stat-item { background: var(--bg-1); padding: 4px; border-radius: 4px; text-align: center; }
.mock-stat-n { font-family: var(--sans); font-size: 11px; font-weight: 600; }
.mock-stat-l { font-size: 7.5px; color: var(--text-3); font-weight: 500; }

.mock-table-area { flex: 1; overflow: hidden; }
.mock-table-row {
  display: grid; grid-template-columns: 80px 1fr 65px 60px;
  padding: 8px 10px; border-bottom: 1px solid var(--border-1);
  align-items: center; gap: 6px;
  animation: row-appear 0.4s ease both;
}
.mock-table-row:hover { background: rgba(255,255,255,0.01); }
@keyframes row-appear { from{opacity:0;transform:translateX(6px)} to{opacity:1;transform:translateX(0)} }
.mock-table-hd {
  background: var(--bg-1);
  font-family: var(--sans); font-size: 9px; font-weight: 600; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.mock-para { font-family: var(--sans); font-size: 10px; font-weight: 600; color: var(--teal); }
.mock-req-title { font-size: 10px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-sys { font-size: 9px; color: var(--text-3); font-weight: 500; }
.mock-status {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 1px 6px; border-radius: 100px; font-size: 8px; font-weight: 600;
}
.mock-status-dot { width: 4px; height: 4px; border-radius: 50%; }
.st-compliant { background: rgba(16,185,129,0.08); color: #10b981; }
.st-compliant .mock-status-dot { background: #10b981; }
.st-progress  { background: rgba(14, 165, 233, 0.08); color: var(--teal); }
.st-progress  .mock-status-dot { background: var(--teal); }
.st-open      { background: rgba(245,158,11,0.08); color: var(--amber); }
.st-open      .mock-status-dot { background: var(--amber); }

/* decoration badge floating on the mock */
.mock-badge-float {
  position: absolute; bottom: -12px; left: -16px;
  background: var(--bg-1); border: 1px solid var(--border-2);
  border-radius: 8px; padding: 8px 12px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  animation: float-badge 8s ease-in-out infinite 1s;
}
@keyframes float-badge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.mock-badge-icon { width: 26px; height: 26px; border-radius: 6px; background: rgba(14, 165, 233, 0.08); display: flex; align-items: center; justify-content: center; }
.mock-badge-icon svg { width: 12px; height: 12px; color: var(--teal); }
.mock-badge-label { font-size: 10px; color: var(--text-2); font-weight: 500; }
.mock-badge-value { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--text-1); line-height: 1; }

.mock-badge-float-2 {
  position: absolute; top: -10px; right: -12px;
  background: var(--bg-1); border: 1px solid var(--border-2);
  border-radius: 8px; padding: 8px 12px;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  animation: float-badge 8s ease-in-out infinite 2.5s;
}

/* ─── ABOUT SECTION ─── */
.about { padding: 100px 0; background: transparent; position: relative; }
.about::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-1) 30%, var(--border-1) 70%, transparent);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-h { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; letter-spacing: -0.015em; margin-bottom: 20px; }
.about-h em { font-style: normal; color: var(--teal); }
.about-p { color: var(--text-2); font-size: 15px; line-height: 1.7; font-weight: 400; margin-bottom: 16px; }
.about-regs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px;
}
.about-reg-chip {
  padding: 5px 12px; border-radius: 4px;
  border: 1px solid var(--border-1); background: var(--bg-1);
  font-family: var(--sans); font-size: 11px; font-weight: 600; color: var(--text-2);
}
.about-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 14px;
  background: rgba(245, 158, 11, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: var(--radius);
  max-width: 480px;
}
.about-disclaimer svg {
  width: 14px;
  height: 14px;
  color: var(--amber);
  margin-top: 2px;
  flex-shrink: 0;
}
.about-disclaimer span {
  font-size: 11.5px;
  color: var(--text-2);
  line-height: 1.45;
}
.about-disclaimer span strong {
  color: var(--amber);
  font-weight: 600;
}
.about-visual-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.about-card {
  background: var(--bg-1); border: 1px solid var(--border-1);
  border-radius: var(--radius); padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.about-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.about-card-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--teal-dim); display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.about-card-icon svg { width: 16px; height: 16px; color: var(--teal); }
.about-card-n { font-family: var(--sans); font-size: 24px; font-weight: 700; margin-bottom: 2px; }
.about-card-l { font-size: 11px; color: var(--text-2); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.about-card.span-2 { grid-column: 1 / -1; }

/* ─── FEATURES ─── */
.features { padding: 100px 0; position: relative; }
.features-hd { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.features-hd h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; letter-spacing: -0.015em; margin-bottom: 16px; }
.features-hd p { color: var(--text-2); font-size: 16px; font-weight: 400; line-height: 1.6; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.feature-card {
  background: rgba(17, 24, 39, 0.4); padding: 32px; position: relative; overflow: hidden;
  transition: background 0.2s;
}
.feature-card:hover { background: rgba(17, 24, 39, 0.8); }
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-glow), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--teal-dim); border: 1px solid rgba(14, 165, 233, 0.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-icon svg { width: 18px; height: 18px; color: var(--teal); }
.feature-card h3 {
  font-family: var(--sans); font-size: 17px; font-weight: 700;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.feature-card p { color: var(--text-2); font-size: 13.5px; line-height: 1.6; font-weight: 400; }
.feature-tag {
  display: inline-block; margin-top: 14px; padding: 2px 8px;
  border-radius: 100px; font-family: var(--sans); font-weight: 600; font-size: 9px;
  background: var(--teal-dim); color: var(--teal); letter-spacing: 0.02em;
}

/* Border grid layout */
.features-grid-wrapper {
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg); overflow: hidden;
}
.features-grid { gap: 0; }
.feature-card { border-right: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1); }
.feature-card:nth-child(3n) { border-right: none; }
.feature-card:nth-last-child(-n+3) { border-bottom: none; }

/* ─── HOW IT WORKS ─── */
.how { padding: 100px 0; position: relative; }
.how::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-1) 30%, var(--border-1) 70%, transparent);
}
.how-hd { text-align: center; max-width: 560px; margin: 0 auto 60px; }
.how-hd h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; letter-spacing: -0.015em; margin-bottom: 16px; }
.how-hd p { color: var(--text-2); font-size: 16px; font-weight: 400; }

.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.how-steps::before {
  content: '';
  position: absolute; top: 24px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  opacity: 0.2;
}
.how-drift { text-align: center; }
.how-step { text-align: center; }
.how-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--border-2);
  background: var(--bg-1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--teal);
  margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.how-step h3 { font-family: var(--sans); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.how-step p { color: var(--text-2); font-size: 14px; line-height: 1.65; font-weight: 400; }

/* ─── PRICING ─── */
.pricing { padding: 100px 0; position: relative; }
.pricing::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-1) 30%, var(--border-1) 70%, transparent);
}

/* subtle bg pattern */
.pricing::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.02) 0%, transparent 65%);
}

.pricing-hd { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.pricing-hd h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; letter-spacing: -0.015em; margin-bottom: 16px; }
.pricing-hd p { color: var(--text-2); font-size: 16px; font-weight: 400; line-height: 1.6; }

.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }

.plan-card {
  border-radius: var(--radius-lg); padding: 32px;
  background: var(--bg-1); border: 1px solid var(--border-1);
  position: relative; transition: transform 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.15); }
.plan-card.featured {
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.04) 0%, var(--bg-1) 50%);
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.05), 0 20px 40px rgba(0,0,0,0.4);
}
.plan-card.featured:hover { transform: translateY(-4px); border-color: var(--teal); }

.plan-popular {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--teal-mid), var(--teal));
  color: #ffffff; font-family: var(--sans); font-size: 10px;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
}

.plan-name {
  font-family: var(--sans); font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 8px;
}
.plan-featured-name { color: var(--teal); }

.plan-price {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px;
}
.plan-currency { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--text-2); margin-top: 4px; }
.plan-amount { font-family: var(--display); font-size: 48px; font-weight: 800; letter-spacing: -0.03em; }
.plan-period { font-size: 13px; color: var(--text-3); align-self: flex-end; margin-bottom: 8px; font-weight: 500; }
.plan-desc { font-size: 13px; color: var(--text-2); margin-bottom: 24px; min-height: 36px; line-height: 1.5; }

.plan-divider { height: 1px; background: var(--border-1); margin-bottom: 20px; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
.plan-feature {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px; color: var(--text-2); line-height: 1.4;
}
.plan-feature-icon { flex-shrink: 0; margin-top: 2px; }
.plan-feature-icon svg { width: 14px; height: 14px; }
.plan-feature-icon.check svg { color: var(--teal); }
.plan-feature-icon.cross svg { color: var(--text-3); }
.plan-feature.dimmed { color: var(--text-3); }

.plan-highlight {
  background: var(--teal-dim); border: 1px solid rgba(14, 165, 233, 0.12);
  border-radius: 6px; padding: 8px 12px; margin-bottom: 20px;
  font-size: 12px; color: var(--teal); font-family: var(--sans); font-weight: 600; text-align: center;
}

.plan-card .btn { width: 100%; justify-content: center; }

/* ── Unavailable / Coming Soon card ── */
.plan-card-unavailable {
  opacity: 0.55;
  filter: grayscale(40%);
  pointer-events: none;
  position: relative;
}
.plan-card-unavailable:hover { transform: none; border-color: var(--border-1); }

.plan-coming-soon-badge {
  display: inline-flex; align-items: center; gap: 5px;
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  color: var(--text-3);
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  white-space: nowrap;
}

.btn-unavailable {
  cursor: not-allowed !important;
  opacity: 0.5;
  pointer-events: none;
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-1) 30%, var(--border-1) 70%, transparent);
}
.cta-orb {
  position: absolute; border-radius: 50%;
  width: 500px; height: 350px; top: -50px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; position: relative; z-index: 1; }
.cta-section p { color: var(--text-2); font-size: 17px; font-weight: 400; margin-bottom: 32px; position: relative; z-index: 1; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; position: relative; z-index: 1; }
.cta-note { margin-top: 16px; font-family: var(--sans); font-size: 11px; font-weight: 500; color: var(--text-3); position: relative; z-index: 1; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border-1);
  padding: 40px 0; background: rgba(3, 7, 18, 0.95);
  position: relative; z-index: 2;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo-mark {
  width: 24px; height: 24px; border-radius: 5px;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 10px; color: #ffffff;
}
.footer-logo-name { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--text-1); }
.footer-copy { font-size: 12px; color: var(--text-3); font-weight: 500; }
.footer-regs { display: flex; gap: 6px; }
.footer-reg {
  font-family: var(--sans); font-weight: 600; font-size: 9px; color: var(--text-3);
  padding: 3px 8px; border: 1px solid var(--border-1); border-radius: 4px;
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.08s; }
.fade-in-delay-2 { transition-delay: 0.16s; }
.fade-in-delay-3 { transition-delay: 0.24s; }
.fade-in-delay-4 { transition-delay: 0.32s; }
.fade-in-delay-5 { transition-delay: 0.4s; }

/* ─── SEPARATOR DECORATION ─── */
.reg-strip {
  padding: 16px 0; border-top: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1);
  background: var(--bg-1); overflow: hidden;
}
.reg-strip-inner { display: flex; gap: 40px; animation: strip-scroll 30s linear infinite; width: max-content; }
.reg-strip-item { font-family: var(--sans); font-size: 11px; font-weight: 600; color: var(--text-3); white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.reg-strip-item span { color: var(--teal); font-family: var(--mono); }
@keyframes strip-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(2n) { border-right: none; }
  .feature-card:nth-child(2n+1):nth-last-child(-n+2) { border-bottom: none; }
  .feature-card:nth-child(3n) { border-right: 1px solid var(--border-1); }
  .pricing-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan-card.featured { order: -1; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; }
  .nav-links { display: none; }
  .hero-stats { gap: 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ─── LEGAL MODAL ─── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}
.modal-backdrop.open {
  opacity: 1; pointer-events: all;
}
.modal-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 640px;
  max-height: 80vh; display: flex; flex-direction: column;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8);
  transform: translateY(16px);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.modal-backdrop.open .modal-card {
  transform: translateY(0);
}
.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-1);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 {
  font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--text-1); margin: 0;
}
.modal-close-btn {
  background: transparent; border: none; color: var(--text-3); cursor: pointer;
  width: 32px; height: 32px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; margin-left: auto;
}
.modal-close-btn:hover {
  color: var(--text-1); background: rgba(255, 255, 255, 0.05);
}
.modal-close-btn svg {
  width: 18px; height: 18px;
}
.modal-body {
  padding: 24px; overflow-y: auto;
  font-size: 14px; line-height: 1.6; color: var(--text-2);
  display: flex; flex-direction: column; gap: 16px;
}
.modal-body p {
  margin-bottom: 12px;
}
.modal-body p:last-child {
  margin-bottom: 0;
}
.modal-body strong {
  color: var(--text-1);
}
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-1);
  display: flex; justify-content: flex-end;
  background: rgba(3, 7, 18, 0.15);
}
.footer-links {
  display: flex; gap: 12px; align-items: center;
  margin-left: auto;
}
.footer-link {
  font-size: 12.5px; color: var(--text-3); text-decoration: none;
  transition: color 0.15s; cursor: pointer;
}
.footer-link:hover {
  color: var(--text-1);
}
.footer-divider {
  font-size: 12px; color: var(--text-3); user-select: none;
}
@media (max-width: 640px) {
  .footer-links { margin-left: 0; margin-top: 10px; width: 100%; justify-content: flex-start; }
}

.modal-body table {
  width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 13px;
  border: 1px solid var(--border-2); border-radius: var(--radius); overflow: hidden;
}
.modal-body th {
  background: var(--bg-1); color: var(--text-1); font-weight: 600;
  text-align: left; padding: 8px 12px; border-bottom: 1px solid var(--border-2);
}
.modal-body td {
  padding: 8px 12px; border-bottom: 1px solid var(--border-1); color: var(--text-2);
}
.modal-body tr:last-child td {
  border-bottom: none;
}
.modal-body ul, .modal-body ol {
  padding-left: 20px; margin-bottom: 10px;
}
.modal-body li {
  margin-bottom: 4px;
}
.modal-body h4 {
  font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--text-1); margin-top: 8px;
}

