@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Syne+Mono&family=Instrument+Serif:ital@0;1&display=swap');

/* ═══════════════════════════════════════════════════════
   NIKMANI — Ultra-bold editorial design system
   Syne (geometric grotesque) + Instrument Serif (italic display)
   Dark: near-black + electric green
   Light: bone white + deep forest green
═══════════════════════════════════════════════════════ */

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

:root {
  --ink:        #060907;
  --ink-2:      #0c110d;
  --ink-3:      #121a13;
  --ink-4:      #1a2419;
  --g:          #00e87a;
  --g-dim:      #00a855;
  --g-deep:     #007a3d;
  --g-glow:     rgba(0,232,122,0.15);
  --g-glow-sm:  rgba(0,232,122,0.08);
  --paper:      #f2f0ea;
  --paper-2:    rgba(242,240,234,0.7);
  --paper-3:    rgba(242,240,234,0.35);
  --paper-4:    rgba(242,240,234,0.12);
  --paper-5:    rgba(242,240,234,0.05);
  --amber:      #f0a500;
  --red:        #e03e3e;
  --display:    'Instrument Serif', Georgia, serif;
  --body:       'Syne', sans-serif;
  --mono:       'Syne Mono', monospace;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
}

/* LIGHT THEME */
[data-theme="light"] {
  --ink:       #f2f0ea;
  --ink-2:     #e8e5dd;
  --ink-3:     #dedad0;
  --ink-4:     #ccc8bc;
  --g:         #008f47;
  --g-dim:     #006633;
  --g-deep:    #004d26;
  --g-glow:    rgba(0,143,71,0.12);
  --g-glow-sm: rgba(0,143,71,0.06);
  --paper:     #0e1510;
  --paper-2:   rgba(14,21,16,0.65);
  --paper-3:   rgba(14,21,16,0.4);
  --paper-4:   rgba(14,21,16,0.14);
  --paper-5:   rgba(14,21,16,0.06);
  --amber:     #c07800;
  --red:       #b02020;
}

html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb { background: var(--g-dim); }

/* ── CURSOR ── */
.cursor-dot {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 6px; height: 6px; border-radius: 50%; background: var(--g);
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid rgba(0,232,122,0.5);
  transform: translate(-50%,-50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
body.h .cursor-dot { width: 10px; height: 10px; background: var(--g); }
body.h .cursor-ring { width: 48px; height: 48px; border-color: var(--g); }
@media (hover:none),(pointer:coarse) { .cursor-dot,.cursor-ring { display:none; } body { cursor:auto; } }

/* ── LAYOUT ── */
.wrap    { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.wrap-sm { max-width: 760px;  margin: 0 auto; padding: 0 40px; }
@media (max-width:600px) { .wrap,.wrap-sm { padding: 0 20px; } }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 68px; display: flex; align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.s {
  background: rgba(6,9,7,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  border-color: var(--paper-4);
}
[data-theme="light"] .nav.s {
  background: rgba(242,240,234,0.9);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  width: 100%; display: flex; align-items: center; gap: 40px;
}
@media (max-width:600px) { .nav-inner { padding: 0 20px; gap: 10px; } }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-logo-word {
  font-family: var(--body); font-size: 18px; font-weight: 800;
  letter-spacing: -0.5px; line-height: 1;
}
.logo-nik  { color: var(--paper); }
.logo-mani { color: var(--g); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; flex: 1; }
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--paper-3);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--paper); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.btn-theme {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--paper-5); border: 1px solid var(--paper-4);
  color: var(--paper-3); cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.btn-theme:hover { background: var(--paper-4); color: var(--paper); transform: rotate(15deg); }

.btn-lang {
  font-family: var(--mono); font-size: 10px; font-weight: 400;
  letter-spacing: 1px; color: var(--g);
  background: var(--g-glow-sm); border: 1px solid rgba(0,232,122,0.2);
  border-radius: 4px; padding: 6px 10px; cursor: pointer;
  transition: all 0.2s; flex-shrink: 0;
}
.btn-lang:hover { background: var(--g-glow); }

.btn-nav-login {
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--paper-3); text-decoration: none;
  padding: 8px 16px; border-radius: 6px;
  border: 1px solid var(--paper-4);
  transition: all 0.2s;
}
.btn-nav-login:hover { color: var(--paper); border-color: var(--paper-3); }

.btn-nav-cta {
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--ink); text-decoration: none;
  background: var(--g); padding: 9px 20px; border-radius: 6px;
  transition: all 0.2s; white-space: nowrap;
  box-shadow: 0 0 20px var(--g-glow);
}
.btn-nav-cta:hover {
  background: var(--paper); color: var(--ink);
  box-shadow: 0 0 32px rgba(242,240,234,0.2);
}

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.nav-burger span {
  width: 20px; height: 1.5px; background: var(--paper);
  display: block; border-radius: 2px; transition: all 0.3s;
}
.nav-mobile {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(6,9,7,0.97); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--paper-4);
  padding: 24px 20px 32px; z-index: 499;
  flex-direction: column; gap: 0;
}
[data-theme="light"] .nav-mobile { background: rgba(242,240,234,0.97); }
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 14px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--paper-2);
  text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid var(--paper-5); transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--paper); }
.nav-mobile-actions { display: flex; gap: 8px; align-items: center; margin-top: 20px; }

@media (max-width:900px) {
  .nav-links { display: none; }
  .btn-nav-login { display: none; }
  .nav-burger { display: flex; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 700; letter-spacing: 0.3px;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.22s var(--ease); position: relative;
  overflow: hidden; white-space: nowrap;
}
.btn-primary {
  background: var(--g); color: var(--ink);
  font-size: 14px; padding: 15px 32px; border-radius: 6px;
  box-shadow: 0 0 30px var(--g-glow), 0 0 60px rgba(0,232,122,0.08);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px var(--g-glow); }
.btn-outline {
  background: transparent; color: var(--paper);
  font-size: 14px; padding: 14px 32px; border-radius: 6px;
  border: 1px solid var(--paper-4);
}
.btn-outline:hover { border-color: var(--paper-2); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--g);
  font-size: 14px; padding: 14px 32px; border-radius: 6px;
  border: 1px solid rgba(0,232,122,0.25);
}
.btn-ghost:hover { background: var(--g-glow-sm); border-color: var(--g); }
.btn-lg { font-size: 15px; padding: 18px 40px; border-radius: 8px; }

/* ── TYPOGRAPHY ── */
.display {
  font-family: var(--display); font-style: italic;
  line-height: 0.95; letter-spacing: -2px; font-weight: 400;
}
.sans-xl {
  font-family: var(--body); font-weight: 800;
  line-height: 0.92; letter-spacing: -3px;
}
.label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--g); display: flex; align-items: center; gap: 10px;
}
.label::before { content: ''; width: 20px; height: 1px; background: var(--g); }
.body { font-size: 17px; line-height: 1.75; color: var(--paper-2); font-weight: 400; }
.body-sm { font-size: 14px; line-height: 1.8; color: var(--paper-3); }
em.g { color: var(--g); font-style: italic; font-family: var(--display); }

/* ── REVEAL ── */
.r {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.r.up    { transform: translateY(50px); }
.r.left  { transform: translateX(-50px); }
.r.right { transform: translateX(50px); }
.r.scale { transform: scale(0.9); }
.r.on { opacity: 1; transform: none; }
.r.d1 { transition-delay: 0.1s; }
.r.d2 { transition-delay: 0.2s; }
.r.d3 { transition-delay: 0.3s; }
.r.d4 { transition-delay: 0.4s; }
.r.d5 { transition-delay: 0.5s; }
.r.d6 { transition-delay: 0.6s; }

/* ── HERO ── */
.hero {
  min-height: 100svh; padding: 0; position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-canvas {
  position: absolute; inset: 0; pointer-events: none;
}
#particle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.35; }
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' 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");
  pointer-events: none; opacity: 0.4;
}
.hero-glow-1 {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,232,122,0.07) 0%, transparent 65%);
  top: -200px; right: -200px; pointer-events: none;
  animation: drift 12s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,85,0.05) 0%, transparent 65%);
  bottom: 0; left: 10%; pointer-events: none;
  animation: drift 9s ease-in-out infinite reverse;
}
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(30px,-20px) scale(1.08); }
}

.hero-content {
  position: relative; z-index: 2;
  padding: 140px 40px 80px; max-width: 1200px; margin: 0 auto; width: 100%;
}
@media (max-width:600px) { .hero-content { padding: 110px 20px 60px; } }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 40px;
}
.hero-kicker-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--g);
  animation: pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 var(--g-glow);
}
@keyframes pulse {
  0%  { box-shadow: 0 0 0 0 rgba(0,232,122,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(0,232,122,0); }
  100%{ box-shadow: 0 0 0 0 rgba(0,232,122,0); }
}
.hero-kicker-text {
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--g);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(64px, 10vw, 148px);
  font-style: italic; font-weight: 400;
  line-height: 0.9; letter-spacing: -3px;
  color: var(--paper); margin-bottom: 0;
}
.hero-title .g { color: var(--g); }
.hero-title-row { display: block; overflow: hidden; }
.hero-title-row span { display: block; }

.hero-sub-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-top: 48px; flex-wrap: wrap;
}
.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px); color: var(--paper-2);
  line-height: 1.75; max-width: 420px; font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-tagline {
  font-family: var(--display); font-style: italic;
  font-size: 16px; color: var(--paper-3); margin-top: 10px;
}

/* hero line anim */
.hero-line {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--g), transparent);
  opacity: 0.4;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--ink-2);
  border-top: 1px solid var(--paper-4);
  border-bottom: 1px solid var(--paper-4);
  padding: 0; overflow: hidden;
}
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
@media (max-width:600px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; padding: 0 20px; }
}
.stat-item {
  padding: 32px 0; border-right: 1px solid var(--paper-4);
  padding-right: 40px; padding-left: 40px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }
@media (max-width:600px) {
  .stat-item { border-right: 1px solid var(--paper-4); border-bottom: 1px solid var(--paper-4); padding: 24px 16px; }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(3),.stat-item:nth-child(4) { border-bottom: none; }
}
.stat-n {
  font-family: var(--body); font-weight: 800; letter-spacing: -2px;
  font-size: clamp(32px, 4vw, 52px); color: var(--g); display: block;
  line-height: 1;
}
.stat-l { font-size: 12px; color: var(--paper-3); margin-top: 6px; display: block; line-height: 1.4; }

/* ── SECTION ── */
.section     { padding: 120px 0; }
.section-alt { padding: 120px 0; background: var(--ink-2); position: relative; }
.section-alt::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--paper-4) 30%, var(--paper-4) 70%, transparent 100%);
}
@media (max-width:768px) { .section,.section-alt { padding: 72px 0; } }

.section-head { margin-bottom: 72px; }
.section-head.center { text-align: center; }
.section-head.center .label { justify-content: center; }
.section-head.center .label::before { display: none; }

.h2 {
  font-family: var(--body); font-weight: 800;
  font-size: clamp(36px, 5vw, 68px);
  letter-spacing: -2.5px; line-height: 0.95;
  color: var(--paper); margin-top: 16px;
}
.h2 em { font-family: var(--display); font-style: italic; font-weight: 400; color: var(--g); letter-spacing: -1px; }
.h3 {
  font-family: var(--body); font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -2px; line-height: 1; color: var(--paper);
  margin-bottom: 20px;
}
.h3 em { font-family: var(--display); font-style: italic; font-weight: 400; color: var(--g); }
.sub { font-size: 16px; color: var(--paper-2); line-height: 1.8; margin-top: 18px; font-weight: 400; }

/* ── PROBLEM SECTION ── */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--paper-4);
  border: 1px solid var(--paper-4);
}
@media (max-width:600px) { .problem-grid { grid-template-columns: 1fr; } }
.prob-card {
  background: var(--ink); padding: 44px 36px;
  transition: background 0.25s;
  position: relative; overflow: hidden;
}
.prob-card:hover { background: var(--ink-3); }
.prob-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--g); transition: width 0.4s var(--ease);
}
.prob-card:hover::after { width: 100%; }
.prob-n {
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  color: var(--paper-4); margin-bottom: 20px; display: block;
}
.prob-card h3 {
  font-size: 16px; font-weight: 700; color: var(--paper);
  margin-bottom: 12px; letter-spacing: -0.3px; line-height: 1.3;
}
.prob-card p { font-size: 14px; color: var(--paper-3); line-height: 1.75; }
@media (max-width:600px) { .prob-card { padding: 32px 24px; } }

/* ── FEATURE ROWS ── */
.feat-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 120px;
}
.feat-row:last-child { margin-bottom: 0; }
.feat-row.rev { direction: rtl; }
.feat-row.rev > * { direction: ltr; }
@media (max-width:860px) {
  .feat-row, .feat-row.rev {
    grid-template-columns: 1fr; direction: ltr; gap: 48px; margin-bottom: 72px;
  }
}

.feat-list { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.feat-item {
  display: flex; gap: 20px; padding: 22px 0;
  border-bottom: 1px solid var(--paper-5);
  transition: padding-left 0.3s var(--ease);
}
.feat-item:last-child { border-bottom: none; }
.feat-item:hover { padding-left: 10px; }
.feat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--paper-4); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--g); margin-top: 2px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.feat-item:hover .feat-icon {
  border-color: var(--g); background: var(--g-glow-sm);
  box-shadow: 0 0 16px var(--g-glow);
}
.feat-icon svg { flex-shrink: 0; }
.feat-body h4 {
  font-size: 15px; font-weight: 700; color: var(--paper);
  margin-bottom: 5px; letter-spacing: -0.2px;
}
.feat-body p { font-size: 13px; color: var(--paper-3); line-height: 1.75; }

/* ── PANEL ── */
.panel {
  background: var(--ink-2);
  border: 1px solid var(--paper-4);
  border-radius: 2px; padding: 28px;
  position: relative; overflow: hidden;
}
.panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--g), transparent);
  opacity: 0.4;
}
.panel-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--paper-5);
}
.p-dot { width: 8px; height: 8px; border-radius: 50%; }
.p-dot.r { background: #e05555; }
.p-dot.a { background: var(--amber); }
.p-dot.g { background: var(--g); }
.p-title { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; color: var(--paper-3); margin-left: 4px; }
.p-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--paper-5);
  font-size: 12px;
}
.p-row:last-of-type { border-bottom: none; }
.p-k { color: var(--paper-3); }
.p-v { font-weight: 700; font-size: 13px; }
.p-v.g  { color: var(--g); }
.p-v.a  { color: var(--amber); }
.p-v.w  { color: var(--paper-2); }
.p-bar-wrap { margin-top: 20px; }
.p-bar-label { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 11px; color: var(--paper-3); }
.p-bar { height: 4px; background: var(--paper-5); border-radius: 2px; overflow: hidden; margin-bottom: 14px; }
.p-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--g-dim), var(--g));
  border-radius: 2px; width: 0;
  transition: width 1.4s var(--ease);
}
.p-bar-fill.on { width: var(--w); }
.p-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g-glow-sm); border: 1px solid rgba(0,232,122,0.2);
  padding: 5px 14px; font-family: var(--mono);
  font-size: 10px; color: var(--g); letter-spacing: 1px; margin-top: 16px;
}
.p-tag::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--g); animation: pulse 2.5s infinite;
  box-shadow: 0 0 0 0 var(--g-glow);
}

/* ── AI CARD ── */
.ai-card {
  background: var(--ink-2); border: 1px solid var(--paper-4);
  border-radius: 2px; padding: 28px; position: relative; overflow: hidden;
}
.ai-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--g), transparent);
  opacity: 0.5;
}
.ai-top {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--paper-5);
}
.ai-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--g);
  animation: pulse 2.5s infinite; box-shadow: 0 0 0 0 var(--g-glow);
}
.ai-label { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; color: var(--paper-3); }
.ai-q {
  font-family: var(--display); font-style: italic;
  font-size: 16px; color: var(--paper); line-height: 1.5; margin-bottom: 14px;
}
.ai-a { font-size: 13px; color: var(--paper-2); line-height: 1.85; margin-bottom: 20px; }
.ai-a strong { color: var(--g); font-weight: 700; }
.ai-metrics { display: flex; flex-direction: column; gap: 8px; }
.ai-row { display: flex; justify-content: space-between; align-items: center; }
.ai-k { font-size: 11px; color: var(--paper-3); font-family: var(--mono); }
.ai-v { font-size: 13px; font-weight: 700; font-family: var(--mono); }
.ai-v.g { color: var(--g); }
.ai-v.a { color: var(--amber); }
.ai-v.w { color: var(--paper-2); }
.typing-caret {
  display: inline-block; width: 2px; height: 15px;
  background: var(--g); vertical-align: middle; margin-left: 2px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ── CANADA SECTION ── */
.canada-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width:768px) { .canada-wrap { grid-template-columns: 1fr; gap: 48px; } }
.pill-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--paper-4); padding: 8px 16px;
  font-size: 13px; color: var(--paper-2); font-weight: 500;
  transition: all 0.2s; cursor: default;
}
.pill:hover { border-color: var(--g); color: var(--g); background: var(--g-glow-sm); }
.pill-check { color: var(--g); font-size: 12px; }
.canada-q {
  font-family: var(--display); font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px); color: var(--paper);
  line-height: 1.45; margin-bottom: 24px;
  padding-left: 28px; border-left: 2px solid var(--g);
}
.canada-story { font-size: 15px; color: var(--paper-2); line-height: 1.85; padding-left: 28px; }

/* ── HOW IT WORKS ── */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
@media (max-width:768px) { .how-grid { grid-template-columns: 1fr; gap: 48px; } }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--paper-5);
  transition: padding-left 0.3s var(--ease);
}
.step:last-child { border-bottom: none; }
.step:hover { padding-left: 10px; }
.step-n {
  font-family: var(--mono); font-size: 11px; letter-spacing: 1px;
  color: var(--g); flex-shrink: 0; margin-top: 4px; min-width: 28px;
}
.step-body h3 {
  font-size: 16px; font-weight: 700; color: var(--paper);
  margin-bottom: 6px; letter-spacing: -0.3px;
}
.step-body p { font-size: 14px; color: var(--paper-3); line-height: 1.75; }

.setup-box {
  border: 1px solid var(--paper-4); background: var(--ink-2); padding: 0;
  overflow: hidden; position: relative;
}
.setup-box::before {
  content: ''; display: block; height: 3px;
  background: linear-gradient(90deg, var(--g-dim), var(--g), var(--g-dim));
}
.setup-head {
  padding: 18px 24px; border-bottom: 1px solid var(--paper-5);
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  color: var(--paper-3); text-transform: uppercase;
}
.setup-items { padding: 0 24px; }
.setup-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--paper-5);
}
.setup-item:last-child { border-bottom: none; }
.setup-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}
.setup-check.done { background: var(--g); color: var(--ink); }
.setup-check.pend {
  background: var(--g-glow-sm); border: 1px solid rgba(0,232,122,0.3);
  color: var(--g); font-family: var(--mono); font-size: 9px;
}
.setup-text { font-size: 13px; color: var(--paper-2); }
.setup-foot {
  padding: 14px 24px; background: var(--g-glow-sm);
  border-top: 1px solid rgba(0,232,122,0.15);
  font-family: var(--mono); font-size: 10px; letter-spacing: 1px;
  color: var(--g); text-transform: uppercase;
}

/* ── COMPARE TABLE ── */
.cmp-wrap { overflow-x: auto; margin-top: 48px; border: 1px solid var(--paper-4); }
.cmp { width: 100%; border-collapse: collapse; min-width: 540px; }
.cmp thead { background: var(--ink-3); }
.cmp th {
  padding: 14px 18px; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--paper-3); text-align: left;
  border-bottom: 1px solid var(--paper-4);
}
.cmp th:not(:first-child) { text-align: center; }
.cmp th:last-child { color: var(--g); }
.cmp td {
  padding: 13px 18px; font-size: 13px; color: var(--paper-3);
  border-bottom: 1px solid var(--paper-5);
}
.cmp td:first-child { color: var(--paper-2); font-weight: 500; }
.cmp td:not(:first-child) { text-align: center; }
.cmp tr:hover td { background: var(--paper-5); }
.ck { color: var(--g); font-size: 16px; font-weight: 700; }
.cx { color: var(--paper-4); font-size: 14px; }
.cp { color: var(--amber); font-size: 11px; font-weight: 700; font-family: var(--mono); }

/* ── PRICING ── */
.price-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--paper-4);
  border: 1px solid var(--paper-4); margin-top: 48px;
}
@media (max-width:900px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:480px) { .price-grid { grid-template-columns: 1fr; } }
.tier {
  background: var(--ink); padding: 32px 24px;
  display: flex; flex-direction: column; position: relative;
  transition: background 0.25s;
}
.tier:hover { background: var(--ink-3); }
.tier.feat { background: var(--ink-2); }
.tier.feat:hover { background: var(--ink-3); }
.tier-badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--g); color: var(--ink);
  font-family: var(--mono); font-size: 9px; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 14px;
}
.tier-name {
  font-family: var(--mono); font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--paper-3); margin-bottom: 16px; display: block;
}
.tier.feat .tier-name { color: var(--g); }
.tier-price {
  font-family: var(--body); font-weight: 800; font-size: 44px;
  letter-spacing: -2px; color: var(--paper); line-height: 1;
}
.tier.feat .tier-price { color: var(--g); }
.tier-period { font-size: 12px; color: var(--paper-3); font-weight: 400; font-family: var(--body); letter-spacing: 0; }
.tier-desc { font-size: 13px; color: var(--paper-3); margin: 14px 0 18px; line-height: 1.65; }
.tier-sep { height: 1px; background: var(--paper-4); margin-bottom: 18px; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier-features li {
  font-size: 12px; color: var(--paper-3);
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.5;
}
.tier-features li::before { content: '+'; color: var(--g); font-weight: 700; flex-shrink: 0; font-family: var(--mono); }
.tier-cta { margin-top: auto; padding-top: 24px; }
.tier-btn {
  width: 100%; padding: 12px; font-family: var(--body); font-weight: 700;
  font-size: 13px; letter-spacing: 0.5px; cursor: pointer; border: none;
  text-align: center; text-decoration: none; display: block;
  transition: all 0.2s;
}
.tier-btn.p  { background: var(--g); color: var(--ink); }
.tier-btn.p:hover { opacity: 0.9; }
.tier-btn.o  { background: transparent; color: var(--g); border: 1px solid rgba(0,232,122,0.3); }
.tier-btn.o:hover { background: var(--g-glow-sm); border-color: var(--g); }

/* ── SECURITY ── */
.sec-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--paper-4);
  border: 1px solid var(--paper-4); margin-top: 48px;
}
@media (max-width:600px) { .sec-grid { grid-template-columns: 1fr; } }
.sec-card {
  background: var(--ink); padding: 40px 32px;
  transition: background 0.25s; position: relative; overflow: hidden;
}
.sec-card:hover { background: var(--ink-3); }
.sec-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--g); transform: scaleY(0); transition: transform 0.3s var(--ease);
  transform-origin: bottom;
}
.sec-card:hover::before { transform: scaleY(1); }
.sec-icon {
  width: 42px; height: 42px; margin-bottom: 20px;
  border: 1px solid var(--paper-4); display: flex;
  align-items: center; justify-content: center; color: var(--g);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sec-card:hover .sec-icon {
  border-color: var(--g); box-shadow: 0 0 16px var(--g-glow);
}
.sec-card h3 { font-size: 16px; font-weight: 700; color: var(--paper); margin-bottom: 10px; letter-spacing: -0.3px; }
.sec-card p  { font-size: 14px; color: var(--paper-3); line-height: 1.75; }

/* ── FAQ ── */
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--paper-5); }
.faq-item:first-child { border-top: 1px solid var(--paper-5); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 22px 0; cursor: pointer; list-style: none;
  font-size: 16px; font-weight: 600; color: var(--paper); text-align: left;
  background: none; border: none; font-family: var(--body); line-height: 1.4;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--g); }
.faq-q::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 28px; height: 28px; flex-shrink: 0; border: 1px solid var(--paper-4);
  display: flex; align-items: center; justify-content: center;
  color: var(--g); font-size: 18px; font-weight: 300; transition: all 0.3s;
  font-family: var(--mono); line-height: 1;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); border-color: var(--g); background: var(--g-glow-sm); }
.faq-a { font-size: 15px; color: var(--paper-2); line-height: 1.85; padding: 0 48px 22px 0; max-width: 680px; }

/* ── CTA FINAL ── */
.cta-section {
  padding: 140px 0; position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,232,122,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-line-top, .cta-line-bot {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--paper-4), transparent);
}
.cta-line-top { top: 0; }
.cta-line-bot { bottom: 0; }
.cta-big {
  font-family: var(--body); font-weight: 800;
  font-size: clamp(56px, 10vw, 140px);
  letter-spacing: -5px; line-height: 0.88;
  color: var(--paper); margin: 20px 0 40px;
}
.cta-big em { color: var(--g); font-family: var(--display); font-style: italic; font-weight: 400; letter-spacing: -2px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width:480px) { .cta-big { font-size: clamp(42px,12vw,80px); letter-spacing: -3px; } }
.cta-note { font-size: 12px; color: var(--paper-3); margin-top: 20px; font-family: var(--mono); letter-spacing: 0.5px; }

/* ── FOOTER ── */
.footer { background: var(--ink-2); padding: 0; }
.footer-top {
  border-top: 1px solid var(--paper-4);
  border-bottom: 1px solid var(--paper-4);
  padding: 72px 0 56px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo svg { width: 30px; height: 30px; }
.footer-logo-word {
  font-family: var(--body); font-size: 17px; font-weight: 800;
  letter-spacing: -0.5px;
}
.footer-tagline {
  font-family: var(--display); font-style: italic;
  font-size: 14px; color: var(--paper-3); margin-bottom: 10px;
}
.footer-desc { font-size: 13px; color: var(--paper-3); line-height: 1.75; max-width: 220px; }
.footer-loc { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; color: var(--paper-4); margin-top: 16px; text-transform: uppercase; }
.footer-col h4 {
  font-family: var(--mono); font-size: 9px; font-weight: 400;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--paper-4);
  margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--paper-3);
  text-decoration: none; margin-bottom: 12px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-family: var(--mono); font-size: 10px; letter-spacing: 1px; color: var(--paper-4); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-family: var(--mono); font-size: 10px; letter-spacing: 0.5px; color: var(--paper-4); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--paper-2); }

/* ── LEGAL PAGES ── */
.legal-hero { padding: 140px 0 60px; border-bottom: 1px solid var(--paper-4); margin-bottom: 72px; }
.legal-body { padding-bottom: 120px; }
.legal-grid { display: grid; grid-template-columns: 220px 1fr; gap: 72px; align-items: start; }
@media (max-width:768px) { .legal-grid { grid-template-columns: 1fr; gap: 40px; } }
.legal-toc {
  position: sticky; top: 88px;
  border: 1px solid var(--paper-4); padding: 24px;
}
.legal-toc-head {
  font-family: var(--mono); font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--paper-3); margin-bottom: 16px;
}
.legal-toc a {
  display: block; font-size: 12px; color: var(--paper-3);
  text-decoration: none; padding: 7px 0;
  border-bottom: 1px solid var(--paper-5); transition: color 0.2s;
}
.legal-toc a:last-child { border-bottom: none; }
.legal-toc a:hover { color: var(--g); }
.legal-section { margin-bottom: 56px; }
.legal-section h2 {
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; color: var(--paper);
  margin-bottom: 16px; letter-spacing: -0.5px; scroll-margin-top: 90px;
}
.legal-section p { font-size: 15px; color: var(--paper-2); line-height: 1.85; margin-bottom: 14px; }
.legal-section ul, .legal-section ol { margin: 10px 0 16px; display: flex; flex-direction: column; gap: 8px; }
.legal-section li { font-size: 15px; color: var(--paper-2); line-height: 1.75; padding-left: 18px; position: relative; }
.legal-section ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; background: var(--g); border-radius: 50%; }
.legal-section ol { list-style: decimal; padding-left: 20px; }
.legal-section ol li::before { display: none; }
.legal-section a { color: var(--g); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.legal-divider { height: 1px; background: var(--paper-4); margin: 48px 0; }
.legal-note {
  background: var(--g-glow-sm); border: 1px solid rgba(0,232,122,0.15);
  padding: 18px 22px; margin: 20px 0;
}
.legal-note p { font-size: 14px; color: var(--paper-2); margin: 0; line-height: 1.75; }
.legal-note strong { color: var(--paper); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media (max-width:768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-card {
  border: 1px solid var(--paper-4); padding: 24px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: border-color 0.2s, background 0.2s;
}
.contact-card:hover { border-color: rgba(0,232,122,0.3); background: var(--g-glow-sm); }
.cc-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--paper-4); display: flex;
  align-items: center; justify-content: center; color: var(--g);
}
.cc-body h3 { font-size: 14px; font-weight: 700; color: var(--paper); margin-bottom: 5px; }
.cc-body p  { font-size: 13px; color: var(--paper-3); line-height: 1.65; }
.cc-body a  { color: var(--g); text-decoration: none; font-weight: 600; }
.contact-form-box { border: 1px solid var(--paper-4); padding: 36px; position: sticky; top: 88px; }
.contact-form-box::before {
  content: ''; display: block; height: 3px; margin-bottom: 32px;
  background: linear-gradient(90deg, var(--g-dim), var(--g), var(--g-dim));
}
.cf-group { margin-bottom: 18px; }
.cf-label {
  display: block; font-family: var(--mono); font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--paper-3); margin-bottom: 8px;
}
.cf-input, .cf-select, .cf-textarea {
  width: 100%; background: var(--ink);
  border: 1px solid var(--paper-4);
  padding: 13px 16px; font-size: 14px; color: var(--paper);
  font-family: var(--body); outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--paper-4); }
.cf-input:focus, .cf-textarea:focus { border-color: var(--g); background: var(--ink-3); }
.cf-select { color: var(--paper-2); cursor: pointer; }
.cf-select option { background: var(--ink-2); }
.cf-textarea { resize: vertical; min-height: 110px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width:480px) { .cf-grid { grid-template-columns: 1fr; } }
.cf-submit {
  width: 100%; padding: 16px; background: var(--g); color: var(--ink);
  font-size: 14px; font-weight: 800; letter-spacing: 0.5px;
  border: none; cursor: pointer; font-family: var(--body);
  transition: all 0.2s;
  box-shadow: 0 0 24px var(--g-glow);
}
.cf-submit:hover { background: var(--paper); box-shadow: 0 0 24px rgba(242,240,234,0.15); }
.cf-note { font-family: var(--mono); font-size: 10px; letter-spacing: 0.5px; color: var(--paper-4); text-align: center; margin-top: 10px; }

/* ── ADVISOR PAGE ── */
.adv-table { border: 1px solid var(--paper-4); overflow: hidden; }
.adv-head {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: var(--ink-3); padding: 13px 20px;
  border-bottom: 1px solid var(--paper-4);
}
.adv-head span {
  font-family: var(--mono); font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--paper-3); text-align: center;
}
.adv-head span:first-child { text-align: left; }
.adv-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 20px; border-bottom: 1px solid var(--paper-5);
  transition: background 0.15s;
}
.adv-row:last-child { border-bottom: none; }
.adv-row:hover { background: var(--paper-5); }
.adv-row span { font-size: 13px; color: var(--paper-2); text-align: center; }
.adv-row span:first-child { text-align: left; color: var(--paper); font-weight: 600; }
.adv-row .earn { color: var(--g); font-weight: 700; font-family: var(--mono); }

.advisor-form-wrap { border: 1px solid var(--paper-4); overflow: hidden; }
.advisor-form-wrap::before {
  content: ''; display: block; height: 3px;
  background: linear-gradient(90deg, var(--g-dim), var(--g), var(--g-dim));
}
.advisor-form-inner { padding: 36px; }
.af-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width:540px) { .af-grid { grid-template-columns: 1fr; } }
.af-full { grid-column: 1/-1; }
.af-input, .af-select {
  width: 100%; background: var(--ink);
  border: 1px solid var(--paper-4); padding: 13px 16px;
  font-size: 14px; color: var(--paper); font-family: var(--body); outline: none;
  transition: border-color 0.2s;
}
.af-input::placeholder { color: var(--paper-4); }
.af-input:focus, .af-select:focus { border-color: var(--g); }
.af-select { color: var(--paper-2); cursor: pointer; }
.af-select option { background: var(--ink-2); }
.af-submit {
  width: 100%; padding: 16px; background: var(--g); color: var(--ink);
  font-size: 14px; font-weight: 800; border: none;
  cursor: pointer; font-family: var(--body); transition: all 0.2s;
  box-shadow: 0 0 24px var(--g-glow);
}
.af-submit:hover { background: var(--paper); }
.af-note { font-family: var(--mono); font-size: 10px; color: var(--paper-4); text-align: center; margin-top: 10px; letter-spacing: 0.5px; }
.af-success {
  display: none; padding: 36px; text-align: center;
  background: var(--g-glow-sm); border-top: 3px solid var(--g);
}
.af-success h3 { font-size: 22px; font-weight: 800; color: var(--paper); margin-bottom: 8px; letter-spacing: -0.5px; }
.af-success p  { font-size: 14px; color: var(--paper-2); line-height: 1.75; }

/* ── ADVISOR STEPS ── */
.adv-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--paper-4); margin-top: 48px; }
@media (max-width:768px) { .adv-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width:420px) { .adv-steps { grid-template-columns: 1fr; } }
.adv-step {
  padding: 32px 24px; border-right: 1px solid var(--paper-4);
  position: relative; overflow: hidden; transition: background 0.2s;
}
.adv-step:last-child { border-right: none; }
.adv-step:hover { background: var(--ink-3); }
.adv-step::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--g); transition: width 0.4s var(--ease);
}
.adv-step:hover::after { width: 100%; }
.adv-step-n { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--g); margin-bottom: 16px; display: block; }
.adv-step h3 { font-size: 15px; font-weight: 700; color: var(--paper); margin-bottom: 8px; letter-spacing: -0.2px; }
.adv-step p  { font-size: 13px; color: var(--paper-3); line-height: 1.7; }
@media (max-width:768px) { .adv-step:nth-child(2) { border-right: none; } }

/* ── LIGHT THEME OVERRIDES ── */
[data-theme="light"] body { background: #f2f0ea; color: #0e1510; }
[data-theme="light"] .section-alt { background: #e8e5dd; }
[data-theme="light"] .section-alt::before { background: linear-gradient(90deg, transparent, rgba(14,21,16,0.1), transparent); }
[data-theme="light"] .nav.s { background: rgba(242,240,234,0.9); border-color: rgba(14,21,16,0.1); }
[data-theme="light"] .stats-bar { background: #e8e5dd; border-color: rgba(14,21,16,0.1); }
[data-theme="light"] .stat-item { border-color: rgba(14,21,16,0.1); }
[data-theme="light"] .prob-card { background: #f2f0ea; }
[data-theme="light"] .prob-card:hover { background: #e8e5dd; }
[data-theme="light"] .tier { background: #f2f0ea; }
[data-theme="light"] .tier:hover { background: #e8e5dd; }
[data-theme="light"] .tier.feat { background: #e8e5dd; }
[data-theme="light"] .sec-card { background: #f2f0ea; }
[data-theme="light"] .sec-card:hover { background: #e8e5dd; }
[data-theme="light"] .panel,.ai-card,[data-theme="light"] .setup-box,
[data-theme="light"] .panel { background: #ffffff; border-color: rgba(14,21,16,0.1); }
[data-theme="light"] .footer { background: #e8e5dd; }
[data-theme="light"] .footer-top { border-color: rgba(14,21,16,0.1); }
[data-theme="light"] .footer-bottom { border-color: rgba(14,21,16,0.08); }
[data-theme="light"] .cmp thead { background: rgba(14,21,16,0.04); }
[data-theme="light"] .nav-mobile { background: rgba(242,240,234,0.97); border-color: rgba(14,21,16,0.08); }
[data-theme="light"] .nav-mobile a { border-color: rgba(14,21,16,0.06); }
[data-theme="light"] .nav-burger span { background: #0e1510; }
[data-theme="light"] .btn-nav-login { color: rgba(14,21,16,0.5); border-color: rgba(14,21,16,0.2); }
[data-theme="light"] .btn-nav-login:hover { color: #0e1510; border-color: rgba(14,21,16,0.4); }
[data-theme="light"] .btn-outline { color: #0e1510; border-color: rgba(14,21,16,0.25); }
[data-theme="light"] .btn-theme { background: rgba(14,21,16,0.06); border-color: rgba(14,21,16,0.12); color: rgba(14,21,16,0.5); }
[data-theme="light"] .btn-theme:hover { background: rgba(14,21,16,0.1); color: #0e1510; }
[data-theme="light"] .cmp-wrap { border-color: rgba(14,21,16,0.12); }
[data-theme="light"] .cmp th { border-color: rgba(14,21,16,0.1); color: rgba(14,21,16,0.4); }
[data-theme="light"] .cmp td { border-color: rgba(14,21,16,0.06); }
[data-theme="light"] .price-grid,.sec-grid,.problem-grid { background: rgba(14,21,16,0.08); border-color: rgba(14,21,16,0.1); }
[data-theme="light"] .adv-table,.adv-head,.advisor-form-wrap { border-color: rgba(14,21,16,0.1); }
[data-theme="light"] .adv-head { background: rgba(14,21,16,0.05); border-color: rgba(14,21,16,0.1); }
[data-theme="light"] .cf-input,.cf-select,.cf-textarea,.af-input,.af-select { background: #f2f0ea; border-color: rgba(14,21,16,0.15); }
[data-theme="light"] .contact-form-box,.advisor-form-inner { background: #ffffff; }
[data-theme="light"] .setup-box { border-color: rgba(14,21,16,0.1); }
[data-theme="light"] .setup-head { border-color: rgba(14,21,16,0.08); color: rgba(14,21,16,0.4); }
[data-theme="light"] .setup-item { border-color: rgba(14,21,16,0.06); }
[data-theme="light"] .legal-toc { border-color: rgba(14,21,16,0.1); }
[data-theme="light"] .legal-toc a { border-color: rgba(14,21,16,0.06); }
[data-theme="light"] .legal-divider { background: rgba(14,21,16,0.08); }
[data-theme="light"] .contact-card { border-color: rgba(14,21,16,0.1); }
[data-theme="light"] .faq-item { border-color: rgba(14,21,16,0.08); }
[data-theme="light"] .cta-line-top,.cta-line-bot { background: linear-gradient(90deg,transparent,rgba(14,21,16,0.1),transparent); }
[data-theme="light"] ::-webkit-scrollbar-track { background: #e8e5dd; }
[data-theme="light"] .hero-grid { background: none; }

/* ── MOBILE FINAL ── */
@media (max-width:768px) {
  .feat-row,.feat-row.rev { grid-template-columns:1fr; direction:ltr; gap:40px; margin-bottom:60px; }
  .feat-row .panel,.feat-row .ai-card { display:none; }
  .canada-wrap { grid-template-columns:1fr; gap:40px; }
  .how-grid { grid-template-columns:1fr; gap:40px; }
  .setup-box { display:none; }
}
@media (max-width:480px) {
  .nav-inner { padding:0 16px; gap:8px; }
  .btn-nav-cta { padding:8px 14px; font-size:11px; }
  .btn-lang { padding:5px 8px; font-size:10px; }
  .btn-theme { width:28px; height:28px; }
  .hero-sub-row { flex-direction:column; align-items:flex-start; }
  .hero-actions { width:100%; }
  .hero-actions .btn { width:100%; justify-content:center; }
}

/* ── FEAT-ROW REV INNER DIRECTION FIX ── */
.feat-row.rev > * {
  direction: ltr;
}
.feat-row.rev .feat-list,
.feat-row.rev .feat-item,
.feat-row.rev .feat-body,
.feat-row.rev .label,
.feat-row.rev .h3,
.feat-row.rev .sub {
  direction: ltr;
  text-align: left;
}

/* ── STAT-N SIZE FIX ── */
.stat-n {
  font-family: var(--body);
  font-weight: 800;
  letter-spacing: -2px;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--g);
  display: block;
  line-height: 1;
}

/* ── CTA TEXT ALIGNMENT ── */
.cta-section .label { display: flex; justify-content: center; }
.cta-section .sub   { text-align: center; }

/* ── HERO CANVAS FULL SIZE ── */
.hero-canvas { position: absolute; inset: 0; pointer-events: none; }
.hero-canvas canvas { width: 100%; height: 100%; display: block; }

/* ── CANADA SECTION LABEL MARGIN ── */
.canada-wrap .label { margin-bottom: 16px; }

