/* ============================================================
   Template 19 — Neon Dark / AI-native
   Deep black bg · Violet + Cyan accents · Space Grotesk
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:           #060912;
  --bg-2:         #0b0f1a;
  --bg-3:         #111827;
  --surface:      rgba(255,255,255,0.04);
  --surface-2:    rgba(255,255,255,0.07);
  --border:       rgba(255,255,255,0.08);
  --border-glow:  rgba(124,58,237,0.5);
  --border-cyan:  rgba(6,182,212,0.4);
  --text:         #f1f5f9;
  --text-2:       #94a3b8;
  --muted:        #4b5563;
  --accent:       #7c3aed;
  --accent-2:     #a855f7;
  --accent-light: rgba(124,58,237,0.15);
  --cyan:         #06b6d4;
  --cyan-light:   rgba(6,182,212,0.12);
  --gold:         #f59e0b;
  --success:      #10b981;
  --danger:       #ef4444;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --shadow-glow:  0 0 32px rgba(124,58,237,0.25);
  --shadow-cyan:  0 0 24px rgba(6,182,212,0.2);
  --shadow-card:  0 8px 32px rgba(0,0,0,0.5);
  --header-h:     68px;
}

/* ---------- Base ---------- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }

body {
  font-family: 'Inter', 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width:100%; height:auto; display:block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Animated orb background ---------- */
.bg-orbs {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bg-orbs__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  animation: orbFloat 20s ease-in-out infinite;
}
.bg-orbs__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: -200px; right: -150px;
  animation-duration: 22s;
}
.bg-orbs__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
  bottom: 10%; left: -100px;
  animation-duration: 18s;
  animation-delay: -8s;
}
.bg-orbs__orb--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #a855f7 0%, transparent 70%);
  top: 50%; left: 40%;
  animation-duration: 25s;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-40px) scale(1.05); }
  66%      { transform: translate(-20px,25px) scale(0.97); }
}

/* ---------- Noise overlay ---------- */
.bg-orbs::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* ---------- Layout wrap ---------- */
.wrap { position:relative; z-index:1; min-height:100vh; display:flex; flex-direction:column; }
.container { max-width:1160px; margin:0 auto; padding:0 24px; }
main { flex:1; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(6,9,18,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; opacity: 0.9; }
.logo-img { height: 32px; width: auto; }
.logo-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(124,58,237,0.5);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  color: var(--text-2);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: var(--surface-2);
  text-decoration: none;
}

.header-right { display:flex; align-items:center; gap:10px; flex-shrink:0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(124,58,237,0.55);
  background: linear-gradient(135deg, #8b46ef 0%, #b369f8 100%);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--border-glow);
  box-shadow: 0 0 12px rgba(124,58,237,0.15);
}

.btn-cyan {
  background: linear-gradient(135deg, #0891b2 0%, var(--cyan) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6,182,212,0.3);
}
.btn-cyan:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(6,182,212,0.45);
}

.header-cta { padding: 8px 18px; font-size: 0.85rem; }

/* ---------- Mobile nav toggle ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle__bar {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6,9,18,0.95);
  backdrop-filter: blur(20px);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__inner {
  width: min(380px,100%);
  padding: 20px 24px 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--border);
  background: var(--bg-2);
}
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.mobile-nav__close {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
}
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav nav a {
  display: block;
  padding: 12px 16px;
  color: var(--text-2);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s;
}
.mobile-nav nav a:hover,
.mobile-nav nav a[aria-current="page"] {
  color: var(--text);
  background: var(--surface-2);
  text-decoration: none;
}
.mobile-nav__cta { margin-top: 16px; width: 100%; }

/* ---------- Lang dropdown ---------- */
.lang-dropdown { position: relative; }
.lang-dropdown__btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-2);
  font-family: inherit;
  font-weight: 500;
  transition: all 0.2s;
}
.lang-dropdown__btn:hover { border-color: var(--border-glow); color: var(--text); }
.lang-dropdown__arrow { transition: transform 0.2s; flex-shrink: 0; }
.lang-dropdown__btn[aria-expanded="true"] .lang-dropdown__arrow { transform: rotate(180deg); }
.lang-dropdown__list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  list-style: none;
  z-index: 50;
}
.lang-dropdown__list.is-open { display: block; }
.lang-dropdown__option {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-2);
  transition: all 0.15s;
}
.lang-dropdown__option:hover { background: var(--surface-2); color: var(--text); text-decoration: none; }
.lang-dropdown__option--active { color: var(--accent-2); font-weight: 600; }

.lang-flags-mobile { display: flex; gap: 8px; padding: 12px 0; }
.lang-flags-mobile__link { font-size: 1.3rem; opacity: 0.5; transition: opacity 0.2s; }
.lang-flags-mobile__link.is-active,
.lang-flags-mobile__link:hover { opacity: 1; }

/* ---------- Glow card util ---------- */
.glow-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(6,182,212,0.04) 100%);
  pointer-events: none;
}
.glow-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

/* ---------- Section headings ---------- */
.section-center {
  text-align: center;
  margin-bottom: 48px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(124,58,237,0.25);
  margin-bottom: 16px;
}
.section-label--cyan {
  background: var(--cyan-light);
  color: var(--cyan);
  border-color: rgba(6,182,212,0.25);
}
h2.section-h {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}
h2.section-h span {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- HERO ---------- */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 80px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(124,58,237,0.15) 0%, rgba(6,182,212,0.1) 100%);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-badge__dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; }
  50%      { opacity:0.3; }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 22px;
}
.hero-title .grad {
  background: linear-gradient(135deg, #a78bfa 0%, var(--cyan) 55%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradPulse 4s ease-in-out infinite;
  will-change: opacity;
}
@keyframes gradPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.75; }
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-2);
  font-weight: 500;
}
.hero-trust__item::before {
  content: '';
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='8' stroke='%2310b981' stroke-width='1.5'/%3E%3Cpath d='M5.5 9l2.5 2.5 4.5-4.5' stroke='%2310b981' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

/* Hero right — terminal widget */
.hero-terminal {
  background: var(--bg-2);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-glow), var(--shadow-card);
  animation: heroFloat 6s ease-in-out infinite;
  position: relative;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero-terminal::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2), var(--cyan), transparent);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.terminal-bar__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.terminal-bar__dot:nth-child(1) { background: #ef4444; }
.terminal-bar__dot:nth-child(2) { background: #f59e0b; }
.terminal-bar__dot:nth-child(3) { background: #10b981; }
.terminal-bar__title {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  font-family: 'Space Grotesk', monospace;
}

.terminal-body { padding: 20px; }

.ticker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.ticker-row:hover { border-color: var(--border-glow); }
.ticker-pair {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.ticker-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.ticker-change {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}
.ticker-change--up { color: var(--success); background: rgba(16,185,129,0.1); }
.ticker-change--down { color: var(--danger); background: rgba(239,68,68,0.1); }

.terminal-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  padding: 0 32px;
  overflow: hidden;
}
.stats-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.stat-item__label {
  font-size: 0.8rem;
  color: var(--text-2);
  font-weight: 500;
}

/* ---------- BENTO FEATURES ---------- */
.features-section {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.bento-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.bento-card--wide { grid-column: span 2; }
.bento-card--tall { grid-row: span 2; }
.bento-card--accent {
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(6,182,212,0.06) 100%);
  border-color: rgba(124,58,237,0.3);
}
.bento-card--cyan-accent {
  background: linear-gradient(135deg, rgba(6,182,212,0.1) 0%, rgba(124,58,237,0.06) 100%);
  border-color: var(--border-cyan);
}

.bento-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-light);
  border: 1px solid rgba(124,58,237,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-2);
  box-shadow: 0 0 16px rgba(124,58,237,0.2);
}
.bento-card__icon--cyan {
  background: var(--cyan-light);
  border-color: rgba(6,182,212,0.25);
  color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}
.bento-card__icon svg { width: 22px; height: 22px; }

.bento-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.bento-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}
.bento-card__tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Chart decoration inside wide card */
.bento-sparkline {
  margin-top: 24px;
  height: 60px;
  width: 100%;
}
.bento-sparkline path { stroke: var(--accent-2); }

/* ---------- HOW IT WORKS ---------- */
.how-section {
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(50% / 3 + 40px);
  right: calc(50% / 3 + 40px);
  height: 1px;
  background: linear-gradient(90deg, var(--border-glow), var(--border-cyan));
}
.how-step {
  padding: 0 32px;
  text-align: center;
  position: relative;
}
.how-step__num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(124,58,237,0.5);
}
.how-step:nth-child(2) .how-step__num {
  background: linear-gradient(135deg, #0891b2 0%, var(--cyan) 100%);
  box-shadow: var(--shadow-cyan);
}
.how-step:nth-child(3) .how-step__num {
  background: linear-gradient(135deg, var(--accent-2) 0%, #e879f9 100%);
  box-shadow: 0 0 30px rgba(168,85,247,0.5);
}
.how-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.how-step p { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; }

/* ---------- REVIEWS ---------- */
.reviews-section {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.07;
  font-family: Georgia, serif;
  line-height: 1;
}
.review-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}
.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-glow);
  object-fit: cover;
  flex-shrink: 0;
}
.review-avatar-placeholder {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  border: 2px solid var(--border-glow);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.review-name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.review-role { font-size: 0.78rem; color: var(--muted); }

/* ---------- CALCULATOR ---------- */
.calc-section {
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.calc-inner {
  max-width: 900px;
  margin: 0 auto;
}
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}
.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calc-field {}
.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.calc-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.calc-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-2);
}
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: var(--surface-2);
  outline: none;
  cursor: pointer;
  margin-bottom: 8px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 0 12px rgba(124,58,237,0.5);
  cursor: pointer;
  border: 2px solid var(--bg);
}
.calc-range {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
}
.calc-result-card {
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(6,182,212,0.08) 100%);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-glow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.calc-result-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}
.calc-result-label {
  font-size: 0.8rem;
  color: var(--text-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.calc-result-main {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.calc-result-row {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.calc-stat { text-align: center; }
.calc-stat-label { display: block; font-size: 0.75rem; color: var(--muted); margin-bottom: 4px; }
.calc-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.calc-stat-value.accent { color: var(--accent-2); }
.calc-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.calc-cta { display: block; margin: 0 auto; }

/* ---------- LEAD FORM ---------- */
.contact-block {
  padding: 100px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-copy h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.contact-copy p { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; margin-bottom: 12px; }
.contact-form-shell { }
.contact2-form-box-all { }
.contact-form {
  background: var(--bg-2);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -1px; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2), var(--cyan), transparent);
}
.hadding2 h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.form-sub { font-size: 0.88rem; color: var(--text-2); margin-bottom: 4px; }
.space24 { height: 24px; }
.input_group { margin-bottom: 18px; }
.input_group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}
.rf-form-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rf-form-input::placeholder { color: var(--muted); }
.rf-form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.has-error .rf-form-input {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.err { display: none; font-size: 0.78rem; color: var(--danger); margin-top: 5px; }
.has-error .err { display: block; }
.error-msg:not(.hide) { display: block; font-size: 0.78rem; color: var(--danger); margin-top: 5px; }
.error-msg.hide { display: none; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(124,58,237,0.55);
}
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.55;
}
.form-disclaimer a { color: var(--accent-2); }
.form_error { color: var(--danger); font-size: 0.85rem; margin-bottom: 12px; }
.form-preloader-orange.hidden { display: none; }

/* ---------- Form success ---------- */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.is-shown { display: block; }
.ok-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  border: 2px solid rgba(16,185,129,0.3);
  color: var(--success);
  margin-bottom: 20px;
}
.form-success h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.form-success p { color: var(--text-2); margin-bottom: 8px; }

/* dot spinner */
.dot-spinner { display: flex; gap: 6px; justify-content: center; padding: 16px; }
.dot-spinner .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: dotBounce 1.2s ease-in-out infinite;
}
.dot-spinner .dot:nth-child(2) { animation-delay: 0.2s; }
.dot-spinner .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
  0%,80%,100% { transform: scale(0.7); opacity: 0.5; }
  40%         { transform: scale(1); opacity: 1; }
}

/* ITI phone */
.iti-wrap { position: relative; }
.iti { width: 100%; }
.iti .rf-form-input { padding-left: 52px; }


/* ---------- FAQ ---------- */
.faq-section {
  padding: 100px 32px;
  max-width: 800px;
  margin: 0 auto;
}
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--border-glow); }
.faq-item summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-a {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  background: var(--bg-2);
}
.site-footer .container {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-2); text-decoration: none; }
.site-footer p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 8px;
}

/* ---------- SUBPAGES ---------- */
.subpage-intro {
  padding: 60px 32px 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.subpage-intro h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.subpage-intro .lead {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* About */
.about-body { max-width: 800px; margin: 0 auto; padding: 0 32px 40px; }
.about-body p { color: var(--text-2); line-height: 1.75; margin-bottom: 16px; font-size: 0.95rem; }
.about-grid {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.about-stat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about-stat:hover { border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.about-stat__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.about-stat__label { font-size: 0.8rem; color: var(--text-2); }

.owner-spotlight {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px 60px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}
.owner-photo img { border-radius: var(--radius-xl); border: 1px solid var(--border-glow); }
.owner-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.owner-role { font-size: 0.85rem; color: var(--accent-2); font-weight: 600; margin-bottom: 12px; }
.owner-body p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 10px; }
.owner-credentials { font-size: 0.8rem; color: var(--muted); font-style: italic; }
.about-content { max-width: 800px; margin: 0 auto; padding: 0 32px 40px; }
.about-content p { color: var(--text-2); line-height: 1.75; margin-bottom: 14px; font-size: 0.92rem; }
.text-center { text-align: center; }

/* Plans */
.plans-pricing { max-width: 1100px; margin: 0 auto; padding: 0 32px 60px; }
.plans-pricing-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
}
.plans-pricing-lead {
  text-align: center;
  color: var(--text-2);
  font-size: 0.95rem;
  margin-bottom: 40px;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.plan-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.plan-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.plan-card--featured {
  border-color: rgba(124,58,237,0.5);
  background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(6,182,212,0.05) 100%);
  box-shadow: var(--shadow-glow);
  position: relative;
}
.plan-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  margin-bottom: 14px;
}
.plan-card--featured .plan-card-name { color: var(--accent-2); }
.plan-card-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.plan-card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}
.plan-card-price-box--long { font-size: 1.3rem; }
.plan-badge {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.plan-card-note { font-size: 0.85rem; color: var(--text-2); line-height: 1.55; margin-bottom: 22px; }
.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  font-size: 0.85rem;
  color: var(--text-2);
  padding-left: 22px;
  position: relative;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='6' stroke='%2310b981' stroke-width='1.2'/%3E%3Cpath d='M4.5 7l2 2 3-3' stroke='%2310b981' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.plan-cta { margin-top: auto; }
.plans-footnote {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 28px;
}

/* Documents */
.docs-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 40px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}
.doc-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.doc-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  text-decoration: none;
}
.doc-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  border: 1px solid rgba(124,58,237,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
}
.doc-card__title { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.doc-card__desc { font-size: 0.82rem; color: var(--text-2); line-height: 1.55; }
.subpage-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 40px;
}
.subpage-card > div,
.subpage-card {
}
.subpage-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.subpage-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; }

/* Legal */
.legal-doc {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px 60px;
}
.legal-doc h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}
.legal-doc h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 10px;
}
.legal-doc p { font-size: 0.9rem; color: var(--text-2); line-height: 1.75; margin-bottom: 12px; }
.legal-doc ul { padding-left: 20px; margin-bottom: 12px; }
.legal-doc ul li { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 6px; }
.legal-doc section { margin-bottom: 12px; }
.legal-updated { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; }
.legal-lang-note {
  background: var(--cyan-light);
  border: 1px solid var(--border-cyan);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--cyan);
  margin-bottom: 24px;
}
.legal-note {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text-2);
  margin-bottom: 28px;
  line-height: 1.6;
}
.legal-note strong { color: var(--danger); }

/* Article */
.article-page { padding: 60px 32px 80px; }
.article-page__inner { max-width: 800px; margin: 0 auto; }
.article-page__head { margin-bottom: 40px; }
.article-page__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: 12px;
}
.article-page__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.article-page__date { font-size: 0.82rem; color: var(--muted); }
.article-page__body { font-size: 0.95rem; color: var(--text-2); line-height: 1.8; }
.article-page__body h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text); margin: 28px 0 12px; }
.article-page__body p { margin-bottom: 16px; }
.article-page__body ul,
.article-page__body ol { padding-left: 20px; margin-bottom: 16px; }
.article-page__body li { margin-bottom: 8px; }

/* Article byline */
.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.article-byline__avatar {
  border-radius: 50%;
  border: 2px solid var(--border-glow);
  object-fit: cover;
  flex-shrink: 0;
}
.article-byline__label { font-size: 0.75rem; color: var(--muted); display: block; }
.article-byline__name { font-weight: 700; font-size: 0.9rem; color: var(--text); display: block; }
.article-byline__role { font-size: 0.78rem; color: var(--text-2); display: block; }

/* Articles list */
.articles-page { padding: 60px 32px 80px; }
.articles-page__inner { max-width: 800px; margin: 0 auto; }
.articles-page__head { margin-bottom: 48px; text-align: center; }
.articles-page__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.articles-page__subtitle { font-size: 1rem; color: var(--text-2); }
.articles-list { display: flex; flex-direction: column; gap: 16px; }
.article-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.article-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.article-card__title { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.article-card__link { color: var(--text); }
.article-card__link:hover { color: var(--accent-2); text-decoration: none; }
.article-card__date { font-size: 0.78rem; color: var(--muted); margin-bottom: 10px; }
.article-card__description { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; margin-bottom: 14px; }
.article-card__read-more { font-size: 0.85rem; color: var(--accent-2); font-weight: 600; }
.articles-empty { text-align: center; color: var(--muted); padding: 60px 0; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2,1fr); }
  .bento-card--wide { grid-column: span 2; }
  .bento-card--tall { grid-row: auto; }
}

@media (max-width: 768px) {
  header { padding: 0 20px; }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    min-height: auto;
    gap: 48px;
  }
  .hero-terminal { order: -1; }

  .stats-bar__inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }

  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-grid::before { display: none; }

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

  .calc-layout { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-grid { grid-template-columns: repeat(2,1fr); }
  .owner-spotlight { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }

  .features-section,
  .how-section,
  .reviews-section,
  .calc-section,
  .faq-section { padding: 60px 20px; }

  .contact-block { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .stats-bar__inner { grid-template-columns: repeat(2,1fr); }
  .hero-title { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .terminal-cta-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bg-orbs__orb,
  .hero-terminal,
  .hero-title .grad,
  .hero-badge__dot { animation: none !important; }
}
