:root {
  --bg: #0A0E27;
  --surface: #131838;
  --surface-hover: #1A2046;
  --border: #2A2F4A;
  --accent: #00F0A8;
  --accent-hover: #1AF5B3;
  --text: #FFFFFF;
  --muted: #8B92B8;
  --max-width: 1200px;
  --radius: 8px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 39, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  display: block;
  height: 28px;
  width: auto;
}

.nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-accent {
  background: var(--accent);
  color: var(--bg);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

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

.btn-ghost:hover {
  border-color: var(--muted);
  background: var(--surface);
}

.btn-lg { padding: 16px 28px; font-size: 16px; }

/* NAV TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* TYPOGRAPHY UTILS */
.eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.eyebrow.center { text-align: center; }

.accent { color: var(--accent); }

/* HERO */
.hero {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.stat-label {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

/* SECTIONS */
section { padding: 100px 0; }

.section-head {
  margin-bottom: 60px;
  max-width: 720px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* SERVICES */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--accent);
  background: var(--surface-hover);
  transform: translateY(-2px);
}

.card-num {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 28px;
}

.card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* PLATFORMS */
.platforms {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 0;
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  margin-top: 24px;
}

.platform-strip span {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.platform-strip span:hover { color: var(--text); }

/* WHY */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.feature {
  padding: 32px 32px 32px 0;
  border-top: 1px solid var(--border);
}

.feature:nth-child(odd) { padding-right: 48px; }
.feature:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--border); }

.feature-num {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* PROCESS */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step-num {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 24px;
}

.step h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-inner {
  max-width: 720px;
}

.cta-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  text-align: left;
  min-width: 220px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.contact-label {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-value {
  font-size: 17px;
  color: var(--text);
  font-weight: 500;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-tag {
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 280px;
}

.footer-h {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--accent); }

.footer-address {
  font-style: normal;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: var(--text); }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 760px;
  margin: 0 auto;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 240px;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: none;
}

.cookie-text a:hover { text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 8px;
}

.btn-sm { padding: 8px 14px; font-size: 13px; }

/* LEGAL PAGES */
.legal-page {
  padding: 80px 0 100px;
}

.legal-container {
  max-width: 760px;
}

.legal-head {
  margin-bottom: 56px;
}

.legal-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.legal-updated {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.legal-content section {
  margin-bottom: 36px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.legal-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.legal-content li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-content li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.legal-content strong {
  color: var(--text);
  font-weight: 500;
}

.legal-content a {
  color: var(--accent);
  text-decoration: none;
}

.legal-content a:hover { text-decoration: underline; }

.legal-address {
  font-style: normal;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 16px;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .feature, .feature:nth-child(odd), .feature:nth-child(even) {
    padding: 28px 0;
    border-left: 0;
  }
  .footer-inner { grid-template-columns: 1fr; text-align: left; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .hero { padding: 72px 0 60px; }
  section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    margin: 0;
    padding: 8px 24px 16px;
  }
  .nav.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav.open a:last-child { border-bottom: 0; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { padding: 24px; }
  .platform-strip { gap: 24px; }
  .cta-section { padding: 80px 0; }
}
