/* ===== ADVANCED ANIMATIONS ===== */

/* Hero text shimmer on load */
@keyframes co-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Live transaction ticker */
@keyframes co-ticker {
  0% { transform: translateY(0); opacity: 0.3; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-30px); opacity: 0; }
}

/* Animated glow halo behind hero */
@keyframes co-halo {
  0%, 100% { transform: translate(-50%, -60%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -60%) scale(1.15); opacity: 1; }
}
.co-hero-glow { animation: co-halo 8s ease-in-out infinite; }

/* Card tilt on hover */
.co-card-visual { transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); transform-style: preserve-3d; perspective: 1000px; }
.co-card-visual:hover { transform: rotateY(-4deg) rotateX(2deg) translateY(-4px); }

.co-virtual-card {
  overflow: visible;
}

/* Card shine sweep on load */
.co-virtual-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.05) 45%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.05) 55%, transparent 70%);
  transform: translateX(-100%);
  animation: co-shine 4s ease-in-out 1.2s infinite;
  pointer-events: none;
}
@keyframes co-shine {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* Counter number tick on view */
.co-counter { display: inline-block; font-variant-numeric: tabular-nums; }

/* Magnetic CTA */
.co-btn-primary { will-change: transform; }

/* Section noise overlay */
.co-section::before, .co-auto-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.co-section, .co-auto-section { position: relative; }
.co-section > .container, .co-auto-section > .container { position: relative; z-index: 1; }

/* Border sweep on feature cards */
.co-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(39,122,255,0.4) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: 200% 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.co-feature-card:hover::after { opacity: 1; animation: co-border-sweep 1.4s linear infinite; }
@keyframes co-border-sweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* WebGL hero canvas layer */
#co-webgl-hero { opacity: 0; transition: opacity 1.2s ease; }
#co-webgl-hero.co-ready { opacity: 1; }

/* Marquee logo strip */
@keyframes co-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.co-marquee-track {
  display: flex;
  gap: 4rem;
  animation: co-marquee 28s linear infinite;
  white-space: nowrap;
}

/* Glow CTA pulse ring */
.co-cta-section::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  border: 1px solid rgba(39,122,255,0.18);
  border-radius: 50%;
  animation: co-pulse-ring 4s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes co-pulse-ring {
  0% { width: 280px; height: 280px; opacity: 0.6; }
  100% { width: 700px; height: 700px; opacity: 0; }
}

/* Live ticker chip */
.co-ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(40,200,64,0.1);
  border: 1px solid rgba(40,200,64,0.25);
  color: var(--co-green);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  overflow: hidden;
  height: 1.6rem;
  min-width: 180px;
  position: relative;
}
.co-ticker-chip .co-ticker-num {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), opacity 0.4s ease;
}
.co-ticker-chip .co-ticker-num.up { transform: translateY(-100%); opacity: 0; }
.co-ticker-chip .co-ticker-num.in { transform: translateY(100%); opacity: 0; }

/* Holographic sheen on section labels (subtle, doesn't kill contrast) */
.co-section-label {
  background: linear-gradient(90deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.35) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: co-shimmer 6s linear infinite;
  display: inline-block;
}

/* CTA button hover shimmer */
.co-btn-primary { position: relative; overflow: hidden; }
.co-btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.6s ease;
}
.co-btn-primary:hover::after { left: 100%; }

/* Custom cursor for interactive card */
.co-card-visual { cursor: grab; }
.co-card-visual:active { cursor: grabbing; }

/* Focus rings */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--cnvs-themecolor);
  outline-offset: 3px;
}

/* Cursor follow blob */
.co-cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(39,122,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
  mix-blend-mode: screen;
}
body.co-cursor-active .co-cursor-glow { opacity: 1; }

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Space+Grotesk:wght@300;400;500;600&display=swap');

:root {
  --cnvs-themecolor: #3da4dc;
  --cnvs-themecolor-rgb: 61, 164, 220;
  --co-black: #000000;
  --co-near-black: #0d0d0d;
  --co-card-bg: #111111;
  --co-card-border: #222222;
  --co-white: #ffffff;
  --co-muted: rgba(255,255,255,0.45);
  --co-orange: #f26522;
  --co-green: #28c840;
}

/* Base */
body.stretched {
  background: var(--co-black);
  color: var(--co-white);
}

h1, h2, h3, h4, h5 {
  text-wrap: balance;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--co-white);
}

body, p, span, li, a, input, button, nav {
  font-family: 'Inter', sans-serif;
}

#wrapper {
  background: var(--co-black);
}

/* Hero */
#co-hero {
  background: var(--co-black);
  height: calc(100vh - 121px);
  min-height: calc(100vh - 121px);
  display: flex !important;
  align-items: center !important;
  padding-top: 3rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.is-expanded-menu #co-hero {
  padding-top: 10rem;
}

.co-hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.35;
}

.co-hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(39,122,255,0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  filter: blur(100px);
  pointer-events: none;
}

.co-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(39,122,255,0.12);
  border: 1px solid rgba(39,122,255,0.25);
  color: var(--cnvs-themecolor);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.co-hero-badge .co-dot {
  width: 6px;
  height: 6px;
  background: var(--cnvs-themecolor);
  border-radius: 50%;
  animation: co-pulse 2s infinite;
}

@keyframes co-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.co-hero h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.co-hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.5);
}

.co-hero-grad {
  background: linear-gradient(135deg, var(--cnvs-themecolor) 0%, #1b4279 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.co-hero-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.co-hero-sub2 {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.co-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cnvs-themecolor);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.co-btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  color: #fff;
}

.co-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.6);
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
  border: none;
}

.co-btn-ghost:hover {
  color: #fff;
}

/* Virtual Card UI */
.co-card-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.co-virtual-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.586;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}

.co-virtual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 30%, rgba(39,122,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.co-card-chip {
  width: 36px;
  height: 28px;
  background: linear-gradient(135deg, #c8a96e 0%, #a07c3e 100%);
  border-radius: 5px;
  margin-bottom: auto;
  position: absolute;
  top: 1.8rem;
  left: 2rem;
}

.co-card-number {
  position: absolute;
  bottom: 3.5rem;
  left: 2rem;
  font-family: 'Inter', monospace;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}

.co-card-logo-row {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.co-card-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.co-card-badge-stack {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.co-card-name {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.co-card-expiry {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.co-card-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cnvs-themecolor);
  border-radius: 16px 16px 0 0;
}

.co-card-badge {
  background: var(--co-orange);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.co-float-widget {
  position: absolute;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.co-float-1 {
  bottom: -20px;
  right: -30px;
  width: 200px;
  animation: co-float 4s ease-in-out infinite;
}

.co-float-2 {
  top: 30px;
  left: -40px;
  width: 170px;
  animation: co-float 4s ease-in-out infinite 1s;
}

@keyframes co-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.co-widget-label {
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.co-widget-value {
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.co-widget-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--co-green);
}

/* Sections */
.co-section {
  padding: 7rem 0;
  background: var(--co-black);
}

.co-section-sm {
  padding: 4rem 0;
}

.co-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 0;
}

.co-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3rem;
  display: inline-block;
}

.co-section-heading {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.co-section-heading em {
  font-style: italic;
  color: rgba(255,255,255,0.4);
}

/* Feature Cards */
.co-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4rem;
}

.co-feature-card {
  background: var(--co-black);
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s ease;
}

.co-feature-card:hover {
  background: #090909;
}

.co-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(39,122,255,0.1);
  border: 1px solid rgba(39,122,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--cnvs-themecolor);
  font-size: 1rem;
}

.co-feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.co-feature-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 0.2rem;
}

/* Code Block */
.co-code-block {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.25rem;
  font-family: 'Inter', monospace;
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-top: auto;
}

.co-code-key { color: var(--cnvs-themecolor); }
.co-code-str { color: rgba(255,255,255,0.85); }
.co-code-num { color: var(--co-orange); }
.co-code-bool { color: var(--co-green); }

/* Auth Widget */
.co-auth-widget {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.25rem;
  margin-top: 1rem;
}

.co-auth-prompt {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}

.co-auth-question {
  font-size: 0.875rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1rem;
}

.co-auth-btns {
  display: flex;
  gap: 0.5rem;
}

.co-auth-btn-yes {
  flex: 1;
  background: var(--cnvs-themecolor);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.co-auth-btn-yes:hover { opacity: 0.85; }

.co-auth-btn-no {
  flex: 1;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
}

.co-auth-btn-no:hover { background: rgba(255,255,255,0.08); }

/* Fraud Widget */
.co-fraud-alert {
  background: rgba(242,101,34,0.08);
  border: 1px solid rgba(242,101,34,0.2);
  border-radius: 10px;
  padding: 1.1rem;
  margin-top: 1rem;
}

.co-fraud-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--co-orange);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.co-fraud-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  padding: 0.25rem 0;
}

.co-fraud-row span:last-child {
  color: rgba(255,255,255,0.8);
}

.co-fraud-blocked {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(242,101,34,0.15);
  color: var(--co-orange);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
}

/* Glow section */
.co-glow-section {
  background: var(--co-black);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.co-glow-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at bottom, rgba(39,122,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.co-glow-section .co-section-heading {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

/* Impl section */
.co-impl-section {
  background: #050505;
  padding: 7rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.co-impl-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  margin-bottom: 2rem;
  cursor: pointer;
}

.co-impl-terminal {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.co-terminal-bar {
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.co-terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.co-terminal-body {
  padding: 1.75rem;
  font-family: 'Inter', monospace;
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
}

.co-terminal-comment { color: rgba(255,255,255,0.25); }
.co-terminal-key { color: var(--cnvs-themecolor); }
.co-terminal-val { color: rgba(255,255,255,0.85); }
.co-terminal-str { color: #7ec8e3; }
.co-terminal-num { color: var(--co-orange); }
.co-terminal-fn { color: #c3a6ff; }
.co-terminal-bool { color: var(--co-green); }

/* Automated section */
.co-auto-section {
  background: var(--co-black);
  padding: 7rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.co-auto-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.co-auto-card-label {
  font-size: 0.7rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.5rem;
}

.co-auto-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
}

.co-limit-bar-wrap {
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  height: 4px;
  margin: 0.5rem 0 0.25rem;
  overflow: hidden;
}

.co-limit-bar {
  height: 100%;
  background: var(--cnvs-themecolor);
  border-radius: 100px;
}

.co-limit-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

/* CTA */
.co-cta-section {
  background: var(--co-black);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.co-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at top, rgba(39,122,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.co-cta-section .co-section-heading {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 2rem;
}

/* Logos strip */
.co-logos-strip {
  background: var(--co-black);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.co-logo-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.co-logo-item:hover {
  color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 991.98px) {
  .co-feature-grid {
    grid-template-columns: 1fr;
  }

  .co-card-visual {
    margin-top: 3rem;
    max-width: 380px;
  }

  .co-float-1, .co-float-2 {
    display: none;
  }

  #co-hero {
    height: auto;
    min-height: 100vh;
    padding-top: 7.5rem;
    padding-bottom: 3rem;
  }
  .is-expanded-menu #co-hero {
    padding-top: 8.5rem;
  }
}

@media (max-width: 767.98px) {
  .co-section {
    padding: 4rem 0;
  }
  .co-glow-section, .co-impl-section, .co-auto-section, .co-cta-section {
    padding: 4rem 0;
  }

  #co-hero {
    height: auto;
    min-height: 100vh;
    padding-top: 7.5rem;
    padding-bottom: 3rem;
  }
  .is-expanded-menu #co-hero {
    padding-top: 8.5rem;
  }
}

/* Focus */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--cnvs-themecolor);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .co-float-1, .co-float-2, .co-hero-badge .co-dot {
    animation: none;
  }
  * { transition-duration: 0.01ms !important; }
}

	.content-wrap {
		padding-top: 0;
		padding-bottom: 0;
	}

	.section {
		margin-top: 0;
		margin-bottom: 0;
	}

  .cp-hero-glow {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 640px;
  height: 640px;
  background: radial-gradient(ellipse 50% 60% at 70% 50%, rgba(61,164,220,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cp-terminal-wrapper {
  position: relative;
  border-radius: 17px;
}
.cp-terminal-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(61,164,220,0.65) 0%, transparent 35%, transparent 65%, rgba(27,66,121,0.55) 100%);
  background-size: 100% 200%;
  animation: cp-border-shimmer 3s linear infinite;
  z-index: 0;
}
.cp-terminal-inner {
  position: relative;
  z-index: 1;
  background: rgba(13,13,20,0.92);
  border: 1px solid rgba(61,164,220,0.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(61,164,220,0.12), 0 0 0 1px rgba(61,164,220,0.08);
}
.cp-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--cnvs-themecolor);
  vertical-align: text-bottom;
  animation: cp-blink 1s step-end infinite;
  margin-left: 1px;
}
.cp-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cnvs-themecolor);
  display: block;
  margin-bottom: 1rem;
}
.cp-marquee-track {
  display: flex;
  width: max-content;
  animation: cp-marquee 22s linear infinite;
}

#how-it-works .hiw-radial {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(61, 164, 220, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
#how-it-works .hiw-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A84C;
  display: block;
  margin-bottom: 1rem;
}
#how-it-works .hiw-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
#how-it-works .hiw-step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(61, 164, 220, 0.3);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  height: 100%;
}
#how-it-works .hiw-step-card:hover {
  box-shadow: 0 0 32px rgba(61, 164, 220, 0.35);
  border-color: rgba(61, 164, 220, 0.65);
  transform: translateY(-4px);
}
#how-it-works .hiw-step-num {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 2px rgb(61, 164, 220, 1);
  color: transparent;
  display: block;
  margin-bottom: 1.25rem;
  font-variant-numeric: tabular-nums;
}
#how-it-works .hiw-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(61, 164, 220, 0.15);
  border: 1px solid rgba(61, 164, 220, 0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
#how-it-works .hiw-icon-wrap i {
  font-size: 1.375rem;
  color: #3da4dc;
}
#how-it-works .hiw-step-title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
#how-it-works .hiw-step-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
}
#how-it-works .hiw-wallet-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
#how-it-works .hiw-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.25rem 0.625rem;
  letter-spacing: 0.02em;
}
#how-it-works .hiw-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3da4dc;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap 0.25s ease, color 0.25s ease;
}
#how-it-works .hiw-cta-link:hover {
  color: #3da4dc;
  gap: 0.65rem;
}
#how-it-works .hiw-cta-link-gold {
  color: #C9A84C;
}
#how-it-works .hiw-cta-link-gold:hover {
  color: #DFC06A;
}
#how-it-works .hiw-connector {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  position: relative;
  top: -2.5rem;
}
@media (min-width: 992px) {
  #how-it-works .hiw-connector {
    display: flex;
  }
  #how-it-works .hiw-steps-row {
    align-items: stretch;
  }
}
#how-it-works .hiw-connector-line {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
#how-it-works .hiw-connector-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
#how-it-works .hiw-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(61, 164, 220, 1);
}
#how-it-works .hiw-arrow-icon {
  font-size: 1rem;
  color: rgba(61, 164, 220, 0.6);
  margin-top: 4px;
}