/* Canvas: AI Payments */

/* ===== 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, .co-testimonials::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, .co-testimonials { position: relative; }
.co-section > .container, .co-auto-section > .container, .co-testimonials > .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: 'Space Grotesk', 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;
}

/* ===== FAQ ACCORDION ===== */
.co-faq-section {
  background: var(--co-black);
  padding: 7rem 0;
  position: relative;
}
.co-faq-section::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(39,122,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.co-faq-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.co-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.co-faq-badge i { color: var(--cnvs-themecolor); font-size: 0.85rem; }

.co-faq-list {
  display: flex;
  flex-direction: column;
}

.co-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.co-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.co-faq-trigger:hover { color: var(--cnvs-themecolor); }
.co-faq-trigger:focus-visible {
  outline: 2px solid var(--cnvs-themecolor);
  outline-offset: 4px;
}

.co-faq-q { flex: 1; }

.co-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}
.co-faq-item.open .co-faq-icon {
  transform: rotate(45deg);
  background: rgba(39,122,255,0.15);
  color: var(--cnvs-themecolor);
  border-color: rgba(39,122,255,0.4);
}

.co-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.2,0.8,0.2,1);
}

.co-faq-answer-inner {
  padding: 0 0 1.75rem 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 720px;
}

.co-faq-item.open .co-faq-answer {
  max-height: 320px;
}

.co-faq-item.open .co-faq-trigger { color: var(--cnvs-themecolor); }

/* ===== LIVE TRANSACTION FEED ===== */
.co-feed-section {
  background: var(--co-black);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.co-feed-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(39,122,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.co-feed-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.co-feed-stat {
  background: var(--co-black);
  padding: 1.5rem 1.75rem;
}
.co-feed-stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.co-feed-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.co-feed-stat-unit {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  margin-left: 0.2rem;
}

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

.co-feed-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 1rem;
  flex-wrap: wrap;
}

.co-feed-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--co-green);
  animation: co-feed-pulse 1.4s infinite;
  box-shadow: 0 0 0 0 rgba(40,200,64,0.6);
}
@keyframes co-feed-pulse {
  0% { box-shadow: 0 0 0 0 rgba(40,200,64,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(40,200,64,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,200,64,0); }
}

.co-feed-filter {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: capitalize;
}
.co-feed-filter:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.co-feed-filter.active {
  background: rgba(39,122,255,0.15);
  color: var(--cnvs-themecolor);
  border-color: rgba(39,122,255,0.4);
}

.co-feed-table-head {
  display: grid;
  grid-template-columns: 100px 1.2fr 1.4fr 1fr 0.8fr 0.7fr;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

.co-feed-list {
  max-height: 480px;
  overflow: hidden;
  position: relative;
}

.co-feed-row {
  display: grid;
  grid-template-columns: 100px 1.2fr 1.4fr 1fr 0.8fr 0.7fr;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  background: #0a0a0a;
  transition: background 0.2s ease;
  animation: co-row-in 0.5s ease;
}
@keyframes co-row-in {
  from { opacity: 0; transform: translateY(-12px); background: rgba(39,122,255,0.05); }
  to { opacity: 1; transform: translateY(0); background: #0a0a0a; }
}
.co-feed-row:hover { background: #0f0f0f; }

.co-feed-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
}
.co-feed-status.approved {
  background: rgba(40,200,64,0.12);
  color: var(--co-green);
}
.co-feed-status.blocked {
  background: rgba(242,101,34,0.12);
  color: var(--co-orange);
}
.co-feed-status.pending {
  background: rgba(39,122,255,0.12);
  color: var(--cnvs-themecolor);
}
.co-feed-status::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.co-feed-agent {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.co-feed-agent-avatar {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--cnvs-themecolor), #6c47d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.co-feed-agent-name {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.co-feed-agent-id {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
}

.co-feed-merchant {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.co-feed-merchant-name {
  color: #fff;
  font-size: 0.82rem;
}
.co-feed-merchant-domain {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
}

.co-feed-cat {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  display: inline-block;
  white-space: nowrap;
  text-transform: capitalize;
}

.co-feed-amount {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: #fff;
  font-weight: 500;
}
.co-feed-amount.blocked { color: var(--co-orange); }

.co-feed-time {
  text-align: right;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 991.98px) {
  .co-feed-stats { grid-template-columns: repeat(2, 1fr); }
  .co-feed-table-head, .co-feed-row {
    grid-template-columns: 80px 1fr 1fr 90px;
  }
  .co-feed-table-head > div:nth-child(4),
  .co-feed-table-head > div:nth-child(6),
  .co-feed-row > *:nth-child(4),
  .co-feed-row > *:nth-child(6) {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .co-feed-stats { grid-template-columns: 1fr 1fr; }
  .co-feed-panel-header { gap: 0.5rem; }
  .co-feed-table-head, .co-feed-row {
    grid-template-columns: 70px 1fr 80px;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }
  .co-feed-table-head > div:nth-child(3),
  .co-feed-table-head > div:nth-child(5),
  .co-feed-row > *:nth-child(3),
  .co-feed-row > *:nth-child(5) {
    display: none;
  }
}

/* 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: #277aff;
  --cnvs-themecolor-rgb: 39, 122, 255;
  --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: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--co-white);
}

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

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

/* Header */
#header {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#header.sticky-header #header-wrap {
  background: rgba(0,0,0,0.92) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

#header .menu-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
}

#header .menu-link:hover {
  color: #fff;
  transition: color 0.2s ease;
}

#header .menu-link { transition: color 0.2s ease; }

.co-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cnvs-themecolor);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.co-nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Hero */
#co-hero {
  background: var(--co-black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  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: 'Space Grotesk', 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-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 420px;
  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: 'Space Grotesk', 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: 'Space Grotesk', 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: 'Space Grotesk', 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: 'Space Grotesk', 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: 'Space Grotesk', 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: 'Space Grotesk', 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: 'Space Grotesk', 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: 'Space Grotesk', 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: 'Space Grotesk', 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: 300;
  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: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  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: 1.5rem;
}

/* Code Block */
.co-code-block {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.25rem;
  font-family: 'Space Grotesk', 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: 'Space Grotesk', 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: 'Space Grotesk', 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: 'Space Grotesk', 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: 'Space Grotesk', 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: 'Space Grotesk', 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: 'Space Grotesk', 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;
}

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

.co-testimonials-head .co-section-label {
  margin-bottom: 1.5rem;
}
.co-testimonials-head .co-section-heading {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
}

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

.co-testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.co-testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.co-testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cnvs-themecolor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.co-testi-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

.co-testi-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* 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: 'Space Grotesk', 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);
}

/* Footer */
#footer {
  --cnvs-footer-bg: #000000;
  --cnvs-footer-top-border: 1px solid rgba(255,255,255,0.07);
  --cnvs-copyrights-link-color: rgba(255,255,255,0.4);
}

.co-footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.co-footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.co-footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}

.co-footer-link {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.co-footer-link:hover {
  color: #fff;
}

.co-social-row {
  display: flex;
  gap: 0.75rem;
}

.co-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.co-social-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

#copyrights {
  border-top: 1px solid rgba(255,255,255,0.07);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  padding: 1.5rem 0;
  text-align: center;
}

#copyrights a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

#copyrights a:hover {
  color: #fff;
}

/* 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;
  }
}

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

/* 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;
	}
