:root {
  --void: #030014;
  --deep: #0a0a1a;
  --surface: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f0eef8;
  --muted: #8b87a8;
  --cyan: #00f5ff;
  --magenta: #ff2d95;
  --gold: #ffc947;
  --violet: #8b5cf6;
  --glow: 0 0 60px rgba(0, 245, 255, 0.15);
  --font-display: "Syne", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) var(--void);
}

body {
  font-family: var(--font-display);
  background: var(--void);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

#canvas-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
  mix-blend-mode: difference;
}

.cursor.hover {
  width: 48px;
  height: 48px;
  border-color: var(--magenta);
}

.cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-wrap {
  position: relative;
  z-index: 2;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(3, 0, 20, 0.6);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--cyan); }

.nav-cta {
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: var(--void) !important;
  border-radius: 999px;
  font-weight: 700;
  -webkit-text-fill-color: var(--void);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  margin-bottom: 2rem;
  width: fit-content;
  animation: fadeUp 1s var(--ease-out) both;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 245, 255, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(0, 245, 255, 0); }
}

.hero h1 {
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  animation: fadeUp 1s 0.1s var(--ease-out) both;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .word {
  display: inline-block;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero-sub {
  max-width: 560px;
  font-size: 1.2rem;
  color: var(--muted);
  margin-top: 2rem;
  animation: fadeUp 1s 0.2s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeUp 1s 0.3s var(--ease-out) both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  border: none;
  cursor: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: var(--void);
  box-shadow: 0 8px 32px rgba(0, 245, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 245, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.marquee-wrap {
  overflow: hidden;
  border-block: 1px solid var(--border);
  padding: 1.25rem 0;
  background: rgba(255,255,255,0.01);
}

.marquee {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee span::before {
  content: "◆ ";
  color: var(--magenta);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  max-width: 700px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0,245,255,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.bento-card:hover {
  border-color: rgba(0, 245, 255, 0.3);
  box-shadow: var(--glow);
}

.bento-card:hover::before { opacity: 1; }

.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-6 { grid-column: span 6; }
.bento-card.span-8 { grid-column: span 8; }
.bento-card.span-12 { grid-column: span 12; }

.bento-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.bento-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.bento-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.bento-card .tag {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--magenta);
  letter-spacing: 0.05em;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-num {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.25rem;
  background: var(--void);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
}

.payment-banner {
  background: linear-gradient(135deg, rgba(0,245,255,0.08), rgba(255,45,149,0.08));
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 32px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.payment-banner h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.payment-banner p {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.payment-banner ul {
  list-style: none;
  margin-top: 1.5rem;
}

.payment-banner li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.payment-banner li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

.payment-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.payment-chip strong {
  display: block;
  font-size: 0.95rem;
}

.payment-chip span {
  font-size: 0.8rem;
  color: var(--muted);
}

.chip-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

.contact-section {
  text-align: center;
  padding: 8rem 2rem;
}

.contact-section h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.contact-section p {
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-links a {
  color: var(--cyan);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.contact-links a:hover { color: var(--magenta); }

footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--cyan); }

/* Legal pages */
.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  cursor: auto;
}

.legal-page h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem;
  color: var(--cyan);
}

.legal-page p, .legal-page li {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-page a { color: var(--cyan); }

.legal-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  backdrop-filter: blur(20px);
  background: rgba(3, 0, 20, 0.8);
  border-bottom: 1px solid var(--border);
}

.legal-nav a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 1000;
  max-width: 520px;
  width: calc(100% - 2rem);
  padding: 1.5rem;
  background: rgba(10, 10, 26, 0.95);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: transform 0.5s var(--ease-out);
  cursor: auto;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.cookie-banner a { color: var(--cyan); }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-actions button {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
}

.cookie-accept {
  background: var(--cyan);
  color: var(--void);
}

.cookie-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border) !important;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .bento-card.span-4, .bento-card.span-6, .bento-card.span-8 {
    grid-column: span 6;
  }
  .stats-row, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-banner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  nav { padding: 1rem; }
  .nav-links { display: none; }
  .bento-card { grid-column: span 12 !important; }
  .stats-row, .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .hero { padding-top: 6rem; }
}
