:root {
  --bg: #090b10;
  --bg-2: #0f1219;
  --panel: #131720;
  --panel-2: #191e29;
  --paper: #f5f4f0;
  --paper-2: #e9e8e3;
  --soft: #dfded8;
  --ink: #0d0f14;
  --muted: #9298a8;
  --muted-dark: #606674;
  --line: rgba(255,255,255,.12);
  --line-dark: rgba(13,15,20,.14);
  --primary: #6f61ff;
  --primary-2: #9187ff;
  --green: #7dffb4;
  --yellow: #dff86c;
  --shadow: 0 25px 70px rgba(0,0,0,.26);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1240px;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: #fff;
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--primary); color: #fff; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -80px;
  background: #fff;
  color: #000;
  padding: 12px 16px;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.noise {
  position: fixed;
  inset: 0;
  opacity: .03;
  pointer-events: none;
  z-index: 80;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(111,97,255,.12), transparent 68%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity .3s ease;
}
@media (pointer:fine) { .cursor-glow { opacity: 1; } }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; position: relative; z-index: 2; }
.section { padding: 126px 0; }
.section-dark { background: var(--bg); }
.section-light { background: var(--paper); color: var(--ink); }
.section-soft { background: var(--paper-2); color: var(--ink); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(9,11,16,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 210px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { color: #aeb3bf; font-size: 13px; font-weight: 650; transition: color .2s ease; }
.desktop-nav a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 8px; position: relative; }
.control-button {
  color: #d8dbe3;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  min-height: 38px;
  border-radius: 10px;
  padding: 0 12px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  font-size: 12px;
}
.control-button:hover { border-color: rgba(255,255,255,.26); }
.language-control { min-width: 42px; justify-content: center; font-weight: 750; }
.country-menu {
  position: absolute;
  right: 128px;
  top: 48px;
  width: 204px;
  padding: 8px;
  background: #141821;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.country-menu button {
  width: 100%;
  border: 0;
  color: #eef0f5;
  background: transparent;
  text-align: left;
  padding: 11px 12px;
  border-radius: 9px;
  font-size: 13px;
}
.country-menu button:hover { background: rgba(255,255,255,.07); }
.mobile-menu-button { display: none; color: #fff; background: transparent; border: 0; font-size: 23px; padding: 6px; }
.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 0;
  background: rgba(9,11,16,.98);
  padding: 40px 24px;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 24px; font-weight: 650; }

.button {
  min-height: 50px;
  padding: 0 21px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 720;
  font-size: 14px;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--primary), #5548eb); box-shadow: 0 12px 28px rgba(92,76,255,.3); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(92,76,255,.42); }
.button-secondary { color: #fff; background: rgba(255,255,255,.02); border-color: rgba(255,255,255,.22); }
.button-secondary:hover { background: rgba(255,255,255,.07); }
.button-dark { color: #fff; background: var(--ink); }
.button-secondary-dark { color: var(--ink); background: transparent; border-color: rgba(13,15,20,.25); }
.button-ghost { color: var(--ink); background: transparent; border-color: rgba(13,15,20,.16); }
.button-small { min-height: 38px; padding-inline: 15px; font-size: 12px; border-radius: 9px; }
.text-link { font-size: 13px; font-weight: 750; color: var(--primary); }

.hero { padding: 150px 0 58px; min-height: 100vh; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  left: -540px;
  top: -480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,97,255,.19), transparent 69%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 83%);
}
.hero-grid { display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 62px; }
.hero-copy { padding: 44px 0 42px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--primary-2);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: .09em;
  font-weight: 750;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow.dark { color: #4d46ca; }
.eyebrow > span:first-child:not(.signal-dot) { color: var(--muted-dark); }
.signal-dot, .status-green, .live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(125,255,180,.08), 0 0 16px rgba(125,255,180,.55);
  flex: 0 0 auto;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(55px, 5.35vw, 86px);
  line-height: .94;
  letter-spacing: -.062em;
  margin-bottom: 28px;
  max-width: 770px;
}
h1 em { color: var(--primary-2); font-style: normal; }
.hero-lead { color: #b5bac5; font-size: clamp(17px, 1.3vw, 21px); line-height: 1.6; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin: 34px 0 27px; }
.payment-context {
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 11px;
  padding: 11px 13px;
  background: rgba(255,255,255,.025);
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 12px;
}
.context-label { color: #7e8594; }
.payment-context strong { color: #e7e9ee; font-weight: 650; }
.trust-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 25px; }
.trust-row span { display: flex; align-items: center; gap: 8px; color: #b5bac5; font-size: 12px; }
.trust-row i { color: #777e8c; font-family: monospace; font-style: normal; }
.trust-row b { font-weight: 600; }

.hero-visual {
  position: relative;
  height: 690px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 35px 100px rgba(0,0,0,.45);
  background: #10131a;
}
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; filter: saturate(.92) contrast(1.06); }
.visual-vignette { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,11,16,.5), transparent 35%), linear-gradient(0deg, rgba(9,11,16,.8), transparent 40%); }
.hero-isotype { position: absolute; right: 26px; top: 26px; filter: drop-shadow(0 15px 30px rgba(0,0,0,.35)); }
.floating-card {
  position: absolute;
  z-index: 2;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(10,12,17,.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}
.floating-card small { display: block; color: #858c99; font-family: monospace; font-size: 9px; letter-spacing: .08em; margin-bottom: 5px; }
.floating-card strong { font-size: 12px; }
.live-card { left: 24px; bottom: 28px; display: flex; align-items: center; gap: 12px; }
.scan-card { right: 24px; bottom: 124px; min-width: 172px; }
.scan-line { height: 2px; margin-top: 10px; background: linear-gradient(90deg, transparent, var(--green), transparent); animation: scan 1.9s ease-in-out infinite; }
@keyframes scan { 0%,100% { transform: translateY(-4px); opacity: .25; } 50% { transform: translateY(5px); opacity: 1; } }
.live-pulse { animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(125,255,180,.4); } 70% { box-shadow: 0 0 0 10px rgba(125,255,180,0); } 100% { box-shadow: 0 0 0 0 rgba(125,255,180,0); } }

.status-rail {
  margin-top: 43px;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.025);
  border-radius: 15px;
  overflow: hidden;
}
.status-rail > div { padding: 17px 20px; border-right: 1px solid rgba(255,255,255,.1); }
.status-rail > div:last-child { border-right: 0; }
.status-rail small { color: #717887; display: block; font-family: monospace; font-size: 8.5px; letter-spacing: .08em; margin-bottom: 7px; }
.status-rail strong { font-size: 12px; display: flex; align-items: center; gap: 7px; }
.status-rail .status-green { width: 6px; height: 6px; box-shadow: none; }

.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-bottom: 58px; }
.section-heading.inverse { color: #fff; }
.section-heading h2, .white-label-copy h2, .infrastructure-copy h2, .contact-copy h2, .faq-grid h2, .final-cta h2 {
  font-size: clamp(42px, 4.3vw, 70px);
  line-height: 1;
  letter-spacing: -.055em;
  margin-bottom: 0;
}
.section-heading p { color: var(--muted-dark); line-height: 1.7; font-size: 16px; margin-bottom: 6px; }
.section-heading.inverse p { color: #a3a9b5; }

.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.model-card {
  position: relative;
  min-height: 590px;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,.58);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.model-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(20,20,40,.11); border-color: rgba(91,77,255,.35); }
.model-card.featured { background: var(--ink); color: #fff; border-color: rgba(111,97,255,.7); box-shadow: 0 20px 60px rgba(34,27,100,.17); }
.model-card.featured p, .model-card.featured li { color: #aeb3bf; }
.card-number { position: absolute; right: 28px; top: 29px; color: #a1a5ae; font-family: monospace; font-size: 11px; }
.best-fit { position: absolute; top: 0; left: 0; right: 0; padding: 9px 15px; color: #fff; background: var(--primary); font-family: monospace; font-size: 9px; letter-spacing: .08em; }
.featured .card-number { top: 58px; }
.line-icon { width: 66px; height: 66px; border: 1px solid rgba(111,97,255,.25); border-radius: 18px; margin: 27px 0 70px; position: relative; background: rgba(111,97,255,.06); }
.featured .line-icon { margin-top: 54px; }
.rocket-icon::before { content:""; position:absolute; width:18px; height:30px; border:2px solid var(--primary); border-radius:50% 50% 45% 45%; transform:rotate(42deg); left:23px; top:13px; }
.rocket-icon::after { content:""; position:absolute; width:7px; height:12px; border-left:2px solid var(--primary); transform:rotate(42deg); left:18px; top:39px; }
.wallet-icon::before { content:""; position:absolute; width:34px; height:24px; border:2px solid var(--primary-2); border-radius:5px; left:14px; top:20px; }
.wallet-icon::after { content:""; position:absolute; width:14px; height:10px; border:2px solid var(--primary-2); border-radius:4px; right:10px; top:27px; background:#171a22; }
.platform-icon::before { content:""; position:absolute; width:34px; height:26px; border:2px solid var(--primary); border-radius:4px; left:14px; top:14px; }
.platform-icon::after { content:""; position:absolute; width:24px; height:2px; background:var(--primary); left:20px; top:48px; box-shadow: 5px -6px 0 -1px var(--primary); }
.model-card h3 { font-size: 27px; line-height: 1.08; letter-spacing: -.035em; margin-bottom: 17px; }
.model-card p { color: #676d79; line-height: 1.65; margin-bottom: 25px; }
.model-card ul { list-style: none; padding: 0; margin: 0 0 30px; }
.model-card li { color: #5f6570; padding: 10px 0 10px 22px; border-bottom: 1px solid rgba(13,15,20,.09); font-size: 13px; position: relative; }
.model-card.featured li { border-color: rgba(255,255,255,.09); }
.model-card li::before { content: "✓"; color: var(--primary); position: absolute; left: 0; font-weight: 800; }
.model-card .text-link { margin-top: auto; }

.platform-section { position: relative; overflow: hidden; }
.platform-section::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 75% 12%, rgba(111,97,255,.12), transparent 28%); }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.feature-card { min-height: 260px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease; }
.feature-card:hover { background: rgba(255,255,255,.04); }
.feature-card > span { color: var(--primary-2); font-family: monospace; font-size: 10px; }
.feature-card h3 { font-size: 20px; letter-spacing: -.025em; margin: 74px 0 11px; }
.feature-card p { color: #939aa8; line-height: 1.6; font-size: 13px; margin-bottom: 0; }

.white-label-grid { display: grid; grid-template-columns: .74fr 1.26fr; align-items: center; gap: 62px; }
.white-label-copy h2 { margin-bottom: 26px; }
.white-label-copy > p { color: var(--muted-dark); line-height: 1.7; font-size: 17px; }
.capability-list { border-top: 1px solid var(--line-dark); margin: 37px 0 33px; }
.capability-list > div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line-dark); }
.capability-list span { font-family: monospace; font-size: 10px; letter-spacing: .06em; color: var(--primary); }
.capability-list strong { font-size: 13px; font-weight: 650; }
.brand-builder { background: #11141b; border: 1px solid rgba(13,15,20,.15); border-radius: 22px; overflow: hidden; box-shadow: 0 30px 80px rgba(29,25,70,.18); }
.builder-toolbar { height: 49px; display: flex; align-items: center; padding: 0 16px; gap: 15px; border-bottom: 1px solid rgba(255,255,255,.09); color: #7e8592; font-size: 10px; }
.builder-toolbar > span { margin: auto; background: rgba(255,255,255,.05); border-radius: 7px; padding: 6px 40px; }
.builder-toolbar b { font-family: monospace; color: var(--green); font-size: 8px; }
.window-dots { display:flex; gap:5px; }
.window-dots i { width:7px; height:7px; border-radius:50%; background:#474d58; }
.builder-body { display: grid; grid-template-columns: 210px 1fr; min-height: 525px; }
.builder-panel { padding: 22px 18px; border-right: 1px solid rgba(255,255,255,.08); color: #c9cdd6; }
.builder-panel small { color: #6e7583; font-family: monospace; font-size: 8px; }
.builder-panel label { display: block; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 10px; color:#7f8693; }
.builder-panel label b { display: block; color:#e8eaf0; font-size: 11px; margin-top:6px; }
.color-chip { float:right; width:14px; height:14px; border-radius:50%; }
.color-chip.purple { background: var(--primary); box-shadow:0 0 0 3px rgba(111,97,255,.15); }
.swatches { display:flex; gap:7px; margin-top:20px; }
.swatches button { width:24px; height:24px; border-radius:7px; border:1px solid rgba(255,255,255,.12); background:#6f61ff; }
.swatches button:nth-child(2){background:#ff5e8a}.swatches button:nth-child(3){background:#00b7a7}.swatches button:nth-child(4){background:#d5ff46}
.event-preview { position: relative; min-width:0; background:#0b0d12; color:#fff; padding:21px; overflow:hidden; }
.preview-image { position:absolute; inset:0 0 auto; height:44%; overflow:hidden; }
.preview-image::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,#0b0d12,transparent 80%); }
.preview-image img { width:100%; height:100%; object-fit:cover; }
.preview-content { position:relative; z-index:2; padding:164px 17px 0; max-width:310px; }
.mini-brand { font-weight:800; letter-spacing:-.03em; margin-bottom:35px; }
.preview-content small { color:#9488ff; font-family:monospace; font-size:8px; }
.preview-content h3 { font-size:37px; line-height:1; letter-spacing:-.055em; margin:10px 0 29px; }
.ticket-row { display:flex; justify-content:space-between; align-items:center; border:1px solid rgba(255,255,255,.12); border-radius:10px; padding:13px; font-size:11px; }
.ticket-row strong { color:var(--green); }
.preview-content button { width:100%; margin-top:11px; min-height:38px; color:#fff; background:var(--primary); border:0; border-radius:8px; font-size:11px; font-weight:700; }
.ticket-preview { position:absolute; right:22px; bottom:22px; width:150px; padding:15px; background:#f4f3ef; color:#111; border-radius:12px; transform:rotate(3deg); box-shadow:0 20px 35px rgba(0,0,0,.35); }
.ticket-preview small { font-size:7px; font-family:monospace; }
.ticket-preview strong { display:block; font-size:14px; margin-top:2px; }
.fake-qr { width:63px; height:63px; margin:12px auto; background: conic-gradient(from 90deg,#111 0 25%,#fff 0 50%,#111 0 75%,#fff 0); background-size:9px 9px; border:5px solid #fff; outline:1px solid #111; }
.ticket-preview code { font-size:7px; display:block; text-align:center; }

.service-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.service-card { display:grid; grid-template-columns: 220px 1fr; min-height:235px; border:1px solid var(--line-dark); border-radius:var(--radius); overflow:hidden; background:rgba(255,255,255,.48); }
.service-card > div:last-child { padding:30px; align-self:center; }
.service-card small { color:var(--primary); font-family:monospace; font-size:9px; }
.service-card h3 { font-size:24px; letter-spacing:-.035em; margin:13px 0 11px; }
.service-card p { color:var(--muted-dark); line-height:1.65; font-size:13px; margin:0; }
.service-image { min-height:100%; padding:17px; display:flex; align-items:flex-end; background-position:center; background-size:cover; position:relative; color:#fff; }
.service-image::before { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(8,10,15,.82),rgba(8,10,15,.05)); }
.service-image span { position:relative; z-index:1; font-family:monospace; font-size:8px; letter-spacing:.08em; }
.service-image.equipment { background-image:linear-gradient(135deg,rgba(111,97,255,.2),transparent),url('assets/event-access.webp'); }
.service-image.operations { background-image:linear-gradient(135deg,rgba(0,0,0,.15),transparent),url('assets/hero-access.webp'); background-position:36% 62%; }
.service-image.streaming { background-image:radial-gradient(circle at 70% 30%,rgba(111,97,255,.6),transparent 35%),linear-gradient(145deg,#101421,#030408); }
.service-image.streaming::after { content:""; position:absolute; left:28px; top:42px; width:100px; height:58px; border:1px solid rgba(255,255,255,.22); box-shadow:35px 23px 0 -1px rgba(111,97,255,.22), 70px -10px 0 -1px rgba(255,255,255,.08); }
.service-image.ai { background-image:linear-gradient(135deg,rgba(111,97,255,.3),transparent),repeating-radial-gradient(circle at 50% 50%,#1c2450 0 2px,#09101e 3px 9px); }
.service-image.ai::after { content:""; position:absolute; inset:27px; background-image:linear-gradient(90deg,transparent 49%,rgba(125,255,180,.3) 50%,transparent 51%),linear-gradient(transparent 49%,rgba(125,255,180,.3) 50%,transparent 51%); background-size:29px 29px; }

.infrastructure-section { overflow:hidden; position:relative; }
.infrastructure-grid { display:grid; grid-template-columns:.82fr 1.18fr; align-items:center; gap:65px; }
.infrastructure-copy h2 { margin-bottom:26px; }
.infrastructure-copy > p { color:#a3a9b4; line-height:1.7; font-size:16px; }
.infra-list { list-style:none; padding:0; margin:34px 0 25px; border-top:1px solid var(--line); }
.infra-list li { display:grid; grid-template-columns:110px 1fr; gap:20px; padding:14px 0; border-bottom:1px solid var(--line); }
.infra-list b { color:var(--primary-2); font-family:monospace; font-size:9px; letter-spacing:.07em; }
.infra-list span { color:#d1d4dc; font-size:13px; }
.fine-print { font-size:11px !important; color:#6f7683 !important; }
.network-visual { min-height:560px; border:1px solid var(--line); border-radius:25px; overflow:hidden; position:relative; background:#080a0f; box-shadow:0 30px 90px rgba(0,0,0,.35); }
.network-visual::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(9,11,16,.35),transparent 45%); }
.network-visual > img { width:100%; height:100%; min-height:560px; object-fit:cover; opacity:.82; }
.node { position:absolute; z-index:2; display:flex; align-items:center; gap:7px; color:#e7e9ee; font-family:monospace; font-size:8px; }
.node i { width:9px; height:9px; border-radius:50%; background:var(--green); box-shadow:0 0 0 8px rgba(125,255,180,.07),0 0 20px rgba(125,255,180,.6); }
.node-us{left:22%;top:34%}.node-ca{left:30%;top:23%}.node-mx{left:29%;top:53%}.node-ar{right:26%;bottom:24%}
.network-metric { position:absolute; z-index:2; left:24px; bottom:24px; border:1px solid var(--line); border-radius:11px; background:rgba(8,10,15,.72); backdrop-filter:blur(12px); padding:13px 15px; }
.network-metric small { display:block; color:#68707e; font-family:monospace; font-size:8px; margin-bottom:5px; }
.network-metric strong { font-size:12px; }

.contact-section { padding-top:145px; }
.contact-grid { display:grid; grid-template-columns:.78fr 1.22fr; gap:74px; align-items:start; }
.contact-copy { position:sticky; top:118px; }
.contact-copy h2 { margin-bottom:26px; }
.contact-copy > p { color:var(--muted-dark); line-height:1.7; font-size:16px; }
.agent-flow { margin:37px 0 24px; border-top:1px solid var(--line-dark); }
.agent-flow > div { display:flex; gap:17px; padding:17px 0; border-bottom:1px solid var(--line-dark); }
.agent-flow > div > span { color:var(--primary); font-family:monospace; font-size:10px; padding-top:3px; }
.agent-flow p { margin:0; }
.agent-flow b { display:block; font-size:14px; margin-bottom:4px; }
.agent-flow small { color:var(--muted-dark); line-height:1.4; }
.local-note { display:flex; gap:13px; padding:18px; border:1px solid rgba(65,153,102,.2); border-radius:14px; background:rgba(125,255,180,.07); }
.local-note .status-green { margin-top:5px; box-shadow:none; }
.local-note p { margin:0; font-size:12px; line-height:1.55; color:#525965; }
.local-note strong { color:#24372d; }
.form-shell { min-height:680px; background:#fff; color:var(--ink); border:1px solid var(--line-dark); border-radius:25px; box-shadow:0 30px 90px rgba(35,29,90,.13); padding:34px; }
.form-header { display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }
.form-header small { color:var(--primary); font-family:monospace; font-size:9px; }
.form-header h3 { font-size:30px; letter-spacing:-.04em; margin:7px 0 0; }
.form-progress-label { color:#9297a1; font-family:monospace; font-size:11px; }
.form-progress-label span:first-child { color:var(--ink); font-weight:800; }
.progress-track { height:3px; margin:25px 0 34px; background:#ececf0; overflow:hidden; border-radius:999px; }
.progress-track span { display:block; width:14.28%; height:100%; background:var(--primary); transition:width .35s ease; }
.form-step { min-height:470px; animation:formIn .3s ease both; }
@keyframes formIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }
.step-kicker { color:#9297a1; font-family:monospace; font-size:9px; letter-spacing:.06em; margin-bottom:8px; }
.form-step h4 { font-size:29px; letter-spacing:-.04em; margin:0 0 9px; }
.form-step > p { color:#747a86; line-height:1.55; font-size:13px; margin-bottom:27px; }
.option-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }
.option-card { position:relative; }
.option-card input { position:absolute; opacity:0; pointer-events:none; }
.option-card label { min-height:67px; border:1px solid #dedfe4; border-radius:12px; padding:14px; display:flex; align-items:center; gap:11px; font-size:13px; font-weight:650; cursor:pointer; transition:.18s ease; }
.option-card label::before { content:""; width:17px; height:17px; border:1px solid #b9bdc5; border-radius:50%; flex:0 0 auto; }
.option-card input[type="checkbox"] + label::before { border-radius:5px; }
.option-card input:checked + label { border-color:var(--primary); background:rgba(111,97,255,.06); box-shadow:0 0 0 2px rgba(111,97,255,.08); }
.option-card input:checked + label::before { background:var(--primary); border-color:var(--primary); box-shadow:inset 0 0 0 4px #fff; }
.option-card input[type="checkbox"]:checked + label::before { box-shadow:none; background:var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-width='2' d='M3 8l3 3 7-7'/%3E%3C/svg%3E") center/13px no-repeat; }
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:15px; }
.field { display:flex; flex-direction:column; gap:7px; }
.field.full { grid-column:1/-1; }
.field label { font-size:11px; font-weight:700; color:#505661; }
.field input, .field select, .field textarea {
  width:100%;
  min-height:50px;
  border:1px solid #d9dbe1;
  background:#fbfbfc;
  color:var(--ink);
  border-radius:10px;
  padding:12px 13px;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height:110px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--primary); box-shadow:0 0 0 3px rgba(111,97,255,.1); }
.form-actions { display:flex; justify-content:flex-end; gap:9px; padding-top:26px; border-top:1px solid #ececf0; }
.form-error { margin:15px 0 0; padding:12px 14px; color:#8d2237; background:#fff0f2; border:1px solid #ffc7d1; border-radius:10px; font-size:12px; }
.success-panel { text-align:center; padding:58px 20px 20px; }
.success-mark { width:68px; height:68px; border-radius:50%; display:grid; place-items:center; background:rgba(125,255,180,.15); color:#169152; font-size:29px; margin:0 auto 22px; }
.success-panel > small { color:var(--primary); font-family:monospace; font-size:9px; letter-spacing:.08em; }
.success-panel h3 { font-size:36px; letter-spacing:-.045em; margin:12px 0 14px; }
.success-panel > p { max-width:520px; margin:0 auto; color:#6d7380; line-height:1.65; font-size:14px; }
.lead-id { margin:25px auto; max-width:320px; padding:15px; display:flex; align-items:center; justify-content:space-between; border:1px solid #e0e2e7; border-radius:11px; }
.lead-id span { color:#8b909b; font-family:monospace; font-size:9px; }
.lead-id strong { font-family:monospace; }
.success-actions { display:flex; justify-content:center; flex-wrap:wrap; gap:9px; }

.faq-grid { display:grid; grid-template-columns:.7fr 1.3fr; gap:80px; }
.faq-list { border-top:1px solid var(--line-dark); }
.faq-list details { border-bottom:1px solid var(--line-dark); }
.faq-list summary { list-style:none; cursor:pointer; padding:25px 42px 25px 0; font-size:17px; font-weight:700; position:relative; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"+"; position:absolute; right:5px; top:21px; font-size:23px; color:var(--primary); }
.faq-list details[open] summary::after { content:"−"; }
.faq-list p { color:var(--muted-dark); line-height:1.7; font-size:14px; max-width:720px; padding:0 40px 24px 0; }

.final-cta { padding:90px 0; border-bottom:1px solid var(--line); }
.final-cta-grid { display:grid; grid-template-columns:1fr auto; align-items:end; gap:40px; }
.final-cta h2 { max-width:810px; }
.site-footer { padding:62px 0 25px; background:var(--bg); color:#fff; }
.footer-grid { display:grid; grid-template-columns:1.8fr repeat(3,1fr); gap:50px; }
.footer-grid img { width:210px; }
.footer-grid p { color:#737b89; font-size:12px; max-width:260px; line-height:1.6; margin-top:17px; }
.footer-grid small { display:block; color:#626a78; font-family:monospace; font-size:9px; margin-bottom:16px; }
.footer-grid a { display:block; color:#a1a7b2; font-size:12px; margin:10px 0; }
.footer-grid a:hover { color:#fff; }
.footer-bottom { border-top:1px solid var(--line); margin-top:50px; padding-top:20px; display:flex; justify-content:space-between; gap:20px; color:#656d7b; font-size:10px; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 1100px) {
  .desktop-nav { display:none; }
  .mobile-menu-button { display:block; }
  .hero-grid { grid-template-columns:1fr 1fr; gap:30px; }
  .hero-visual { height:620px; }
  .feature-grid { grid-template-columns:repeat(2,1fr); }
  .white-label-grid { grid-template-columns:1fr; }
  .white-label-copy { max-width:720px; }
  .service-card { grid-template-columns:170px 1fr; }
  .infrastructure-grid, .contact-grid { grid-template-columns:1fr; }
  .contact-copy { position:static; max-width:760px; }
  .network-visual { min-height:470px; }
}

@media (max-width: 820px) {
  :root { --header-height:68px; }
  .container { width:min(calc(100% - 28px),var(--container)); }
  .section { padding:86px 0; }
  .brand img { width:172px; }
  .country-control #countryLabel { display:none; }
  .button-small { display:none; }
  .country-menu { right:48px; }
  .hero { padding-top:108px; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { padding-bottom:0; }
  h1 { font-size:clamp(50px,14vw,72px); }
  .hero-visual { height:560px; }
  .status-rail { grid-template-columns:repeat(2,1fr); }
  .status-rail > div { border-bottom:1px solid var(--line); }
  .status-rail > div:first-child { grid-column:1/-1; }
  .section-heading { grid-template-columns:1fr; gap:24px; }
  .model-grid { grid-template-columns:1fr; }
  .model-card { min-height:auto; }
  .line-icon { margin-bottom:43px; }
  .feature-grid { grid-template-columns:1fr; }
  .feature-card { min-height:220px; }
  .builder-body { grid-template-columns:1fr; }
  .builder-panel { display:none; }
  .service-grid { grid-template-columns:1fr; }
  .faq-grid { grid-template-columns:1fr; gap:35px; }
  .final-cta-grid { grid-template-columns:1fr; align-items:start; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 560px) {
  .nav-actions { gap:5px; }
  .control-button { padding:0 9px; }
  .country-menu { right:39px; top:45px; }
  .hero { padding-bottom:36px; }
  h1 { font-size:49px; }
  .hero-lead { font-size:16px; }
  .hero-actions { flex-direction:column; }
  .hero-actions .button { width:100%; }
  .trust-row { display:grid; gap:13px; }
  .hero-visual { height:470px; border-radius:20px; }
  .hero-isotype img { width:64px; }
  .scan-card { right:14px; bottom:100px; }
  .live-card { left:14px; bottom:17px; }
  .status-rail { grid-template-columns:1fr 1fr; }
  .status-rail > div { padding:14px; }
  .section-heading h2, .white-label-copy h2, .infrastructure-copy h2, .contact-copy h2, .faq-grid h2, .final-cta h2 { font-size:42px; }
  .model-card { padding:26px; }
  .feature-card { min-height:195px; padding:24px; }
  .feature-card h3 { margin-top:54px; }
  .builder-toolbar > span { padding:6px 12px; }
  .builder-body { min-height:500px; }
  .event-preview { min-height:500px; }
  .preview-content { padding:160px 6px 0; }
  .preview-content h3 { font-size:32px; }
  .ticket-preview { width:130px; right:14px; bottom:14px; }
  .service-card { grid-template-columns:1fr; }
  .service-image { min-height:190px; }
  .service-card > div:last-child { padding:25px; }
  .network-visual, .network-visual > img { min-height:400px; }
  .node { font-size:7px; }
  .form-shell { padding:22px; border-radius:19px; }
  .form-step { min-height:510px; }
  .option-grid, .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .form-actions { flex-direction:column-reverse; }
  .form-actions .button { width:100%; }
  .capability-list > div, .infra-list li { grid-template-columns:1fr; gap:6px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
  .cursor-glow { display:none; }
}
