/* ═══════════ DAKOSHI · Design System ═══════════ */
:root {
  --navy-900: #000C26;
  --navy-800: #0a1530;
  --navy-700: #142237;
  --navy-600: #1b2b45;
  --slate: #5D6C83;
  --lime: #9dd158;
  --lime-dim: rgba(142, 211, 63, 0.14);
  --white: #FEFEFE;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: initial; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--lime); color: var(--navy-900); }

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
}
.preloader-inner { text-align: center; }
.preloader-logo { width: 130px; height: auto; }
.preloader-logo path {
  fill: var(--lime); fill-opacity: 0;
  stroke: var(--lime); stroke-width: 0.7; stroke-linejoin: round;
}
.preloader-count {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--white); margin-top: 22px; letter-spacing: 0.05em;
}
.preloader-bar {
  width: 220px; height: 3px; margin: 14px auto 0;
  background: var(--navy-600); border-radius: 3px; overflow: hidden;
}
.preloader-bar-fill { width: 0%; height: 100%; background: var(--lime); border-radius: 3px; }

/* ═══════════ CURSOR GLOW ═══════════ */
.cursor-glow {
  position: fixed; z-index: 999; pointer-events: none;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(142,211,63,0.07) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  left: 50vw; top: 50vh;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(0, 12, 38, 0.72);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(142,211,63,0.12);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-mark { width: 26px; height: auto; }
.nav-mark use { fill: var(--lime); }
.nav-word {
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--white);
  display: flex; flex-direction: column; line-height: 1;
}
.nav-word em {
  font-style: normal; font-weight: 400; font-size: 0.55rem;
  letter-spacing: 0.28em; color: var(--slate); margin-top: 3px;
}
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  color: var(--slate); text-decoration: none; font-size: 0.92rem; font-weight: 500;
  transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--lime); transition: width 0.3s; border-radius: 2px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 13px 28px; border-radius: 100px; text-decoration: none;
  display: inline-block; transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
  will-change: transform;
}
.btn-solid {
  background: var(--lime); color: var(--navy-900);
  box-shadow: 0 0 0 rgba(142,211,63,0.4);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(142,211,63,0.35); }
.btn-outline { border: 1.5px solid rgba(254,254,254,0.25); color: var(--white); }
.btn-outline:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.btn-ghost { color: var(--slate); }
.btn-ghost:hover { color: var(--lime); }
.btn-big { font-size: 1.15rem; padding: 18px 42px; }

/* ═══════════ SHARED ═══════════ */
.dots-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(93,108,131,0.35) 1.2px, transparent 1.2px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.section-kicker {
  color: var(--lime); font-family: var(--font-display); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.08; letter-spacing: -0.02em;
}
.split-words .w { display: inline-block; overflow: hidden; vertical-align: top; }
.split-words .w > span { display: inline-block; transform: translateY(110%); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 140px 24px 80px; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 900px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(142,211,63,0.09) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 3; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--slate); font-weight: 500;
  border: 1px solid rgba(93,108,131,0.35); padding: 9px 20px; border-radius: 100px;
  margin-bottom: 34px; background: rgba(20,34,55,0.5);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(142,211,63,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(142,211,63,0); }
}
.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3.4rem, 10vw, 7.5rem); line-height: 0.98; letter-spacing: -0.03em;
}
.ht-line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.ht-word { display: inline-block; }
.ht-word.accent { color: var(--lime); }
.hero-sub {
  margin-top: 30px; font-size: clamp(1rem, 2vw, 1.25rem); color: var(--slate); line-height: 1.65;
}
.hero-sub strong { color: var(--white); font-weight: 500; }
.hero-ctas { margin-top: 40px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero-asset { position: relative; z-index: 2; margin-top: 30px; width: min(620px, 92vw); }
.hero-svg { width: 100%; height: auto; overflow: visible; }
.dk-path { fill: none; stroke: var(--lime); stroke-width: 14; stroke-linejoin: round; stroke-linecap: round; }
.dk-inner { stroke-width: 12; }
.orbit-ring { fill: none; stroke: rgba(93,108,131,0.25); stroke-width: 1; stroke-dasharray: 4 7; }
.token circle { fill: var(--navy-700); stroke: var(--lime); stroke-width: 2.5; }
.token text {
  fill: var(--lime); font-family: var(--font-display); font-weight: 700; font-size: 24px;
  text-anchor: middle;
}
.token-dim circle { stroke: var(--slate); }
.token-dim text { fill: var(--slate); font-size: 18px; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 1.5px solid rgba(93,108,131,0.5); border-radius: 16px;
}
.scroll-hint span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; border-radius: 3px;
  background: var(--lime); transform: translateX(-50%);
  animation: scrollHint 1.8s infinite ease-in-out;
}
@keyframes scrollHint { 0% { top: 8px; opacity: 1; } 70% { top: 24px; opacity: 0; } 100% { top: 8px; opacity: 0; } }

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  border-top: 1px solid rgba(93,108,131,0.2); border-bottom: 1px solid rgba(93,108,131,0.2);
  padding: 22px 0; overflow: hidden; background: var(--navy-800);
}
.marquee-track { display: flex; width: max-content; will-change: transform; }
.marquee-group { display: flex; align-items: center; gap: 34px; padding-right: 34px; }
.marquee-group span {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--white); white-space: nowrap;
}
.marquee-group i { color: var(--lime); font-style: normal; font-size: 0.7rem; }

/* ═══════════ SERVICIOS ═══════════ */
.services { position: relative; padding: 140px 32px 120px; }
.services-inner { max-width: 1280px; margin: 0 auto; }
.section-sub { color: var(--slate); margin-top: 22px; font-size: 1.08rem; line-height: 1.7; max-width: 640px; }
.service-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .service-grid { grid-template-columns: 1fr; } }
.scard {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(20,34,55,0.85), rgba(10,21,48,0.9));
  border: 1px solid rgba(93,108,131,0.25); border-radius: 22px; padding: 90px 28px 32px;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  will-change: transform;
}
.scard:hover {
  transform: translateY(-8px); border-color: rgba(142,211,63,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.scard-num {
  position: absolute; top: 14px; right: 22px;
  font-family: var(--font-display); font-weight: 800; font-size: 3.4rem;
  color: transparent; -webkit-text-stroke: 1.5px rgba(142,211,63,0.4);
  transition: color 0.35s;
}
.scard:hover .scard-num { color: rgba(142,211,63,0.25); }
.scard h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 12px; }
.scard p { color: var(--slate); line-height: 1.65; font-size: 0.94rem; }

/* ═══════════ STATEMENT ═══════════ */
.statement { padding: 150px 32px; max-width: 1000px; margin: 0 auto; text-align: center; }
.statement-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.7rem); line-height: 1.35; letter-spacing: -0.01em;
}
.statement-text em { color: var(--lime); font-style: normal; }
.statement-sign { color: var(--slate); margin-top: 30px; font-size: 1.05rem; letter-spacing: 0.04em; }

/* ═══════════ COMPLIANCE ═══════════ */
.compliance { position: relative; padding: 140px 32px; background: var(--navy-800); overflow: hidden; }
.compliance-inner {
  max-width: 1280px; margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .compliance-inner { grid-template-columns: 1fr; } }
.compliance-cards { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 700px) { .compliance-cards { grid-template-columns: 1fr; } }
.ccard {
  background: rgba(0,12,38,0.6); border: 1px solid rgba(93,108,131,0.28);
  border-radius: 18px; padding: 24px 22px; display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.3s;
}
.ccard:hover { border-color: rgba(142,211,63,0.5); }
.ccard-label { color: var(--lime); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-display); }
.ccard-value { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.ccard-meta { color: var(--slate); font-size: 0.85rem; line-height: 1.5; }
.shield-svg { width: 100%; max-width: 340px; margin: 0 auto; display: block; overflow: visible; }
.shield-path { fill: rgba(20,34,55,0.6); stroke: var(--lime); stroke-width: 4; stroke-linejoin: round; }
use.shield-mark { fill: var(--lime); }
.shield-orbit { fill: none; stroke: rgba(93,108,131,0.3); stroke-width: 1; stroke-dasharray: 3 8; }

/* ═══════════ CTA CONTACTS ═══════════ */
.cta-contacts { margin-top: 46px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
.contact-chip {
  color: var(--white); text-decoration: none; font-size: 0.95rem;
  border: 1px solid rgba(93,108,131,0.4); padding: 12px 22px; border-radius: 100px;
  background: rgba(20,34,55,0.5); transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.contact-chip:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }

/* ═══════════ CAPAS ═══════════ */
.capas { position: relative; }
.capas-pin { min-height: 100vh; display: flex; align-items: center; padding: 80px 32px; }
.capas-grid {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .capas-grid { grid-template-columns: 1fr; } }
.capas-sub { color: var(--slate); margin-top: 20px; font-size: 1.05rem; }
.capas-list { list-style: none; margin-top: 44px; display: flex; flex-direction: column; gap: 8px; }
.capa-item {
  display: flex; gap: 22px; padding: 22px 24px; border-radius: 18px;
  border: 1px solid transparent; opacity: 0.3; transform: translateX(-8px);
  transition: opacity 0.5s, border-color 0.5s, background 0.5s, transform 0.5s;
}
.capa-item.on {
  opacity: 1; transform: translateX(0);
  background: rgba(20,34,55,0.55); border-color: rgba(142,211,63,0.25);
}
.capa-num { font-family: var(--font-display); font-weight: 700; color: var(--lime); font-size: 0.95rem; padding-top: 4px; }
.capa-item h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.capa-item p { color: var(--slate); line-height: 1.6; font-size: 0.95rem; }
.capas-3d {
  position: relative; width: 100%; max-width: 520px; margin: 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 26px; overflow: hidden;
  border: 1px solid rgba(93,108,131,0.28);
  background:
    radial-gradient(120% 90% at 50% 12%, rgba(157,209,88,0.10), transparent 55%),
    radial-gradient(90% 80% at 50% 108%, rgba(157,209,88,0.14), transparent 60%),
    linear-gradient(165deg, #0c1730 0%, #060d1e 60%, #04091a 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(157,209,88,0.08);
}
.logo3d-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
  opacity: 0; transition: opacity 0.6s ease;
}
.capas-3d.ready .logo3d-canvas { opacity: 1; }
.logo3d-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity 0.5s ease;
}
.capas-3d.ready .logo3d-fallback { opacity: 0; }
.xp3-label {
  position: absolute; left: 60%; display: flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateX(-16px); white-space: nowrap;
}
.xp3-label i { display: block; width: 58px; height: 1.5px; background: rgba(157,209,88,0.65); }
.xp3-label span {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--white);
  text-shadow: 0 2px 14px rgba(0,0,0,0.8);
}
@media (max-width: 560px) { .xp3-label i { width: 30px; } .xp3-label span { font-size: 0.95rem; } }

/* ═══════════ JOURNEY ═══════════ */
.journey { position: relative; background: var(--navy-800); }
.journey-pin { min-height: 100vh; padding: 90px 32px 60px; display: flex; flex-direction: column; }
.journey-head { max-width: 1280px; margin: 0 auto; width: 100%; }
.journey-grid {
  max-width: 1280px; margin: 40px auto 0; width: 100%; flex: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
@media (max-width: 900px) { .journey-grid { grid-template-columns: 1fr; gap: 30px; } }
.journey-visual { position: relative; }
.journey-progress {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: rgba(93,108,131,0.25); border-radius: 3px;
}
.journey-progress-fill { width: 100%; height: 0%; background: var(--lime); border-radius: 3px; box-shadow: 0 0 12px rgba(142,211,63,0.6); }
.journey-svg { width: 100%; max-width: 460px; display: block; margin: 0 auto; }
.jscene { opacity: 0; visibility: hidden; }
.js-card { fill: url(#cardGrad); stroke: rgba(142,211,63,0.35); stroke-width: 1.5; }
.js-accent-line { fill: none; stroke: var(--lime); stroke-width: 3; }
.js-bar { fill: rgba(142,211,63,0.8); }
.js-bar.dim { fill: rgba(93,108,131,0.6); }
.js-stripe { fill: rgba(0,12,38,0.7); }
.js-amount { fill: var(--lime); font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.js-check circle { fill: var(--lime); }
.js-check path { fill: none; stroke: var(--navy-900); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.js-coin circle, .js-big-coin circle { fill: var(--navy-700); stroke: var(--lime); stroke-width: 3; }
.js-coin text, .js-big-coin text { fill: var(--lime); font-family: var(--font-display); font-weight: 700; font-size: 18px; text-anchor: middle; }
.js-big-coin text { font-size: 40px; }
.js-big-coin-alt circle { stroke: var(--white); }
.js-big-coin-alt text { fill: var(--white); }
.js-arrow { fill: none; stroke: var(--lime); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 6 9; }
.js-rate { fill: var(--slate); font-family: var(--font-body); font-size: 16px; }
.js-globe { fill: rgba(20,34,55,0.6); stroke: rgba(93,108,131,0.5); stroke-width: 1.5; }
.js-globe-line { fill: none; stroke: rgba(93,108,131,0.4); stroke-width: 1.2; }
.js-flight { fill: none; stroke: var(--lime); stroke-width: 2.5; stroke-linecap: round; }
.js-dot { fill: var(--white); }
.journey-steps { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.jstep {
  display: flex; gap: 20px; padding: 20px 24px; border-radius: 16px;
  opacity: 0.28; transition: opacity 0.4s, background 0.4s, border-color 0.4s;
  border: 1px solid transparent;
}
.jstep.on { opacity: 1; background: rgba(0,12,38,0.55); border-color: rgba(142,211,63,0.3); }
.jstep span { font-family: var(--font-display); font-weight: 700; color: var(--lime); padding-top: 3px; }
.jstep h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 5px; }
.jstep p { color: var(--slate); font-size: 0.93rem; line-height: 1.55; }

/* ═══════════ FEATURES ═══════════ */
.features { position: relative; padding: 140px 32px; overflow: hidden; }
.features-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.feature-grid {
  margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 1000px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }
.fcard {
  background: linear-gradient(160deg, rgba(20,34,55,0.85), rgba(10,21,48,0.9));
  border: 1px solid rgba(93,108,131,0.25); border-radius: 22px; padding: 34px 30px;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  will-change: transform;
}
.fcard:hover {
  transform: translateY(-8px);
  border-color: rgba(142,211,63,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(142,211,63,0.2);
}
.fcard-icon {
  width: 58px; height: 58px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 15px; background: rgba(142,211,63,0.08);
  border: 1px solid rgba(142,211,63,0.22);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.fcard-icon svg {
  width: 32px; height: 32px;
  fill: none; stroke: var(--lime); stroke-width: 2.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.fcard-icon svg .dim { stroke: var(--slate); }
.fcard-icon svg .fill { fill: var(--lime); stroke: none; }
.fcard:hover .fcard-icon {
  background: rgba(142,211,63,0.14); border-color: rgba(142,211,63,0.55);
  box-shadow: 0 0 24px rgba(142,211,63,0.18);
}
.fcard h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 10px; }
.fcard p { color: var(--slate); line-height: 1.65; font-size: 0.95rem; }

/* ═══════════ STATS ═══════════ */
.stats {
  background: var(--navy-800);
  border-top: 1px solid rgba(93,108,131,0.2); border-bottom: 1px solid rgba(93,108,131,0.2);
  padding: 70px 32px;
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center;
}
@media (max-width: 800px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: var(--font-display); font-weight: 800; color: var(--lime);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem); letter-spacing: -0.02em;
}
.stat-label { color: var(--slate); margin-top: 8px; font-size: 0.95rem; }

/* ═══════════ ROADMAP ═══════════ */
.roadmap { position: relative; overflow: hidden; }
.roadmap-pin { min-height: 100vh; padding: 100px 0 60px; display: flex; flex-direction: column; justify-content: center; }
.roadmap-head { max-width: 1280px; margin: 0 auto 60px; width: 100%; padding: 0 32px; }
.roadmap-track {
  display: flex; gap: 28px; padding: 0 32px; width: max-content; will-change: transform;
}
.rcard {
  width: min(400px, 82vw); flex-shrink: 0;
  background: linear-gradient(160deg, rgba(20,34,55,0.85), rgba(10,21,48,0.9));
  border: 1px solid rgba(93,108,131,0.28); border-radius: 24px; padding: 38px 34px;
}
.rcard.done { border-color: rgba(142,211,63,0.45); }
.rcard.active { border-color: var(--lime); box-shadow: 0 0 50px rgba(142,211,63,0.12); }
.rq {
  font-family: var(--font-display); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.22em; color: var(--lime); text-transform: uppercase;
}
.rcard h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; margin: 14px 0 20px; }
.rcard ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.rcard li { color: var(--slate); font-size: 0.98rem; padding-left: 22px; position: relative; }
.rcard li::before { content: '◆'; color: var(--lime); font-size: 0.6rem; position: absolute; left: 0; top: 6px; }

/* ═══════════ CTA ═══════════ */
.cta {
  position: relative; text-align: center; padding: 170px 24px; overflow: hidden;
}
.cta-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 1100px; height: 800px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(142,211,63,0.13) 0%, transparent 60%);
}
.cta-mark { width: 90px; margin-bottom: 36px; }
.cta-mark use { fill: var(--lime); }
.cta-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.05; letter-spacing: -0.02em;
  position: relative; z-index: 2;
}
.cta-sub { color: var(--slate); margin: 26px 0 42px; font-size: 1.1rem; position: relative; z-index: 2; }

/* ═══════════ FOOTER ═══════════ */
.footer { border-top: 1px solid rgba(93,108,131,0.2); background: var(--navy-800); }
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 80px 32px 60px;
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px;
}
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: flex-start; gap: 16px; }
.footer-mark { width: 44px; }
.footer-mark use { fill: var(--lime); }
.footer-word { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; line-height: 1; display: flex; flex-direction: column; }
.footer-word span { font-weight: 400; font-size: 0.62rem; letter-spacing: 0.3em; color: var(--slate); margin-top: 6px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 640px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.fcol h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; margin-bottom: 20px; }
.fcol a { display: block; color: var(--slate); text-decoration: none; margin-bottom: 13px; font-size: 0.93rem; transition: color 0.25s; }
.fcol a:hover { color: var(--lime); }
.footer-badge {
  display: flex; justify-content: center; align-items: center; gap: 12px;
  padding: 30px 32px 26px; color: var(--slate); font-size: 0.92rem;
  font-family: var(--font-display); font-weight: 500; letter-spacing: 0.02em;
  text-align: center; flex-wrap: wrap;
}
.footer-legal {
  max-width: 1280px; margin: 0 auto; padding: 30px 32px 50px;
  border-top: 1px solid rgba(93,108,131,0.18);
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  color: var(--slate); font-size: 0.85rem; line-height: 1.7;
}

/* ═══════════ LOGO WEAVE (casing = interlocking occlusion) ═══════════ */
path.dkc {
  fill: none !important;
  stroke: var(--mark-bg, var(--navy-900)) !important;
  stroke-width: 26 !important;
  stroke-linejoin: round; stroke-linecap: round;
}
.footer-mark { --mark-bg: var(--navy-800); }

#dkStack use { fill: var(--lime); }

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
