:root {
  --bg: #050d1b;
  --bg-soft: #07152b;
  --panel: rgba(10, 31, 68, 0.72);
  --panel-strong: rgba(10, 31, 68, 0.92);
  --line: rgba(153, 185, 229, 0.16);
  --line-strong: rgba(0, 194, 110, 0.34);
  --text: #f4f7ff;
  --muted: #9aa9c2;
  --blue: #0A1F44;
  --blue-light: #2f5f9a;
  --cyan: #00C26E;
  --cyan-soft: #7BE8B7;
  --green: #00C26E;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(51, 118, 255, 0.18), transparent 38%),
    linear-gradient(180deg, #050d1b 0%, #07152b 48%, #030914 100%);
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

::selection { background: rgba(0, 194, 110, 0.25); color: white; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img, svg { display: block; }
.hidden { display: none !important; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 116px 0; position: relative; }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  z-index: 20;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
.page-glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: -2; }
.glow-one { width: 500px; height: 500px; background: rgba(10, 31, 68, .13); top: 760px; left: -280px; }
.glow-two { width: 580px; height: 580px; background: rgba(0, 194, 110, .07); top: 1900px; right: -380px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 78px;
  z-index: 30;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5, 9, 20, .76);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; letter-spacing: -.04em; }
.brand-mark { width: 34px; height: 34px; color: var(--cyan); filter: drop-shadow(0 0 16px rgba(0,194,110,.38)); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { font-size: 20px; }
.brand-text span { color: var(--cyan); }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.btn) { color: var(--muted); font-size: 14px; font-weight: 650; transition: color .2s ease; }
.main-nav > a:not(.btn):hover { color: var(--text); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: rgba(255,255,255,.03); border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 18px; height: 2px; border-radius: 2px; background: white; transition: transform .2s ease, opacity .2s ease; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 760;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #04101e;
  background: linear-gradient(135deg, var(--cyan) 0%, #67E3AA 46%, var(--blue-light) 100%);
  box-shadow: 0 14px 42px rgba(0, 194, 110, .19), inset 0 1px rgba(255,255,255,.52);
}
.btn-primary:hover { box-shadow: 0 18px 48px rgba(0, 194, 110, .28), inset 0 1px rgba(255,255,255,.52); }
.btn-ghost { background: rgba(255,255,255,.04); border-color: var(--line-strong); color: var(--text); }
.btn-small { min-height: 42px; padding-inline: 17px; border-radius: 12px; }
.btn-link { color: var(--text); background: transparent; border-color: transparent; padding-inline: 8px; }
.btn-link span { color: var(--cyan); }
.btn-full { width: 100%; }

.hero { min-height: 900px; padding-top: 172px; display: flex; align-items: flex-start; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  left: 50%;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 31, 68, .14), transparent 64%);
  transform: translateX(-5%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 65px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--cyan-soft); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800; }
.eyebrow > span { width: 28px; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan)); box-shadow: 0 0 10px var(--cyan); }
.hero h1, .section-heading h2, .roles-copy h2, .outcome-copy h2, .contact-copy h2 {
  margin: 22px 0 20px;
  letter-spacing: -.052em;
  line-height: .98;
  font-weight: 790;
}
.hero h1 { font-size: clamp(58px, 6.2vw, 88px); }
.hero h1 strong, h2 em { font-style: normal; color: transparent; background: linear-gradient(105deg, #ffffff 5%, var(--cyan) 52%, var(--blue-light) 100%); background-clip: text; -webkit-background-clip: text; }
.hero-lead { max-width: 620px; margin: 0; color: #b4c0d2; line-height: 1.78; font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.hero-proof { display: flex; gap: 34px; margin-top: 56px; padding-top: 25px; border-top: 1px solid var(--line); max-width: 620px; }
.hero-proof div { display: grid; gap: 5px; }
.hero-proof strong { font-size: 22px; color: var(--text); letter-spacing: -.03em; }
.hero-proof span { color: var(--muted); font-size: 12px; }

.hero-product { position: relative; min-height: 610px; display: grid; place-items: center; perspective: 1200px; }
.orbit { position: absolute; border: 1px solid rgba(0,194,110, .16); border-radius: 50%; transform: rotate(-15deg); }
.orbit-one { width: 560px; height: 560px; }
.orbit-two { width: 410px; height: 410px; border-color: rgba(0,194,110,.11); transform: rotate(22deg); }
.phone-shell {
  width: 306px;
  border-radius: 42px;
  padding: 10px;
  background: linear-gradient(150deg, rgba(47,95,154,.58), rgba(10,31,68,.95) 20%, #050911 65%, rgba(0,194,110, .38));
  box-shadow: 0 60px 120px rgba(0,0,0,.55), 0 0 90px rgba(0,194,110,.18), inset 0 0 0 1px rgba(255,255,255,.11);
  transform: rotateY(-8deg) rotateX(3deg);
  position: relative;
  z-index: 2;
}
.phone-top { height: 25px; display: grid; place-items: center; }
.phone-top span { width: 82px; height: 7px; border-radius: 99px; background: #070c16; box-shadow: inset 0 1px rgba(255,255,255,.05); }
.phone-screen { min-height: 560px; border-radius: 31px; background: linear-gradient(180deg, #0d1728, #08111f); padding: 20px 17px 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.06); }
.app-header { display: flex; align-items: center; justify-content: space-between; }
.app-header div:first-child { display: grid; gap: 3px; }
.app-header small { color: #8092ad; font-size: 9px; }
.app-header strong { font-size: 16px; }
.avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #06111e; font-weight: 850; font-size: 11px; }
.status-card { margin-top: 18px; padding: 15px; border-radius: 18px; background: linear-gradient(145deg, rgba(29,60,102,.84), rgba(14,30,53,.86)); border: 1px solid rgba(0,194,110,.19); box-shadow: inset 0 1px rgba(255,255,255,.04); }
.status-card > div { display: flex; align-items: center; gap: 6px; color: var(--green); }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.status-card small { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.status-card > strong { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 13px; font-size: 11px; color: #aebdd3; }
.status-card > strong b { color: white; font-size: 28px; }
.status-card > strong span { color: #5f7392; }
.status-card p { margin: 5px 0 0; text-align: center; color: #7e91ad; font-size: 9px; }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 12px; }
.quick-grid button { display: grid; grid-template-columns: 31px 1fr; grid-template-rows: 1fr 1fr; column-gap: 9px; align-items: center; text-align: left; border: 1px solid rgba(255,255,255,.055); border-radius: 14px; padding: 10px; color: white; background: rgba(255,255,255,.025); }
.quick-grid button.active { background: rgba(44, 131, 255, .14); border-color: rgba(0,194,110,.22); }
.quick-grid .ico { grid-row: 1 / 3; width: 31px; height: 31px; }
.quick-grid span { align-self: end; font-size: 10px; font-weight: 760; }
.quick-grid small { align-self: start; color: #7185a3; font-size: 8px; }
.next-match { margin-top: 14px; padding: 12px; border-radius: 15px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.05); }
.section-label { display: flex; justify-content: space-between; font-size: 8px; color: #788ba7; }
.section-label span { text-transform: uppercase; letter-spacing: .08em; }
.match-row { display: grid; grid-template-columns: 34px 1fr 34px; align-items: center; gap: 8px; margin-top: 12px; }
.team-badge { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; font-size: 9px; font-weight: 850; color: white; }
.badge-blue { background: linear-gradient(135deg, #0A1F44, #285D9E); }
.badge-cyan { background: linear-gradient(135deg, #087C55, #00C26E); }
.match-center { display: grid; grid-template-columns: 1fr; text-align: center; gap: 2px; }
.match-center strong { font-size: 8px; }
.match-center span { font-size: 7px; color: #6f839f; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; min-width: 200px; padding: 13px 16px; border: 1px solid rgba(0,194,110, .18); border-radius: 16px; background: rgba(12, 23, 41, .78); backdrop-filter: blur(16px); box-shadow: 0 18px 48px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.045); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 11px; }
.floating-card small { margin-top: 4px; color: #7d90ab; font-size: 8px; }
.float-icon { width: 31px; height: 31px; border-radius: 10px; display: grid; place-items: center; background: rgba(0,194,110,.14); color: var(--green); font-weight: 900; }
.float-icon.chart { color: var(--cyan); background: rgba(0,194,110,.12); }
.float-top { top: 92px; right: -12px; animation: drift 5s ease-in-out infinite; }
.float-bottom { bottom: 93px; left: -26px; animation: drift 5.8s ease-in-out infinite reverse; }
@keyframes drift { 50% { transform: translateY(-8px); } }

.ico { display: inline-block; position: relative; border-radius: 9px; background: linear-gradient(145deg, rgba(53,118,255,.24), rgba(0,194,110,.14)); border: 1px solid rgba(0,194,110,.16); }
.ico::before, .ico::after { content: ""; position: absolute; }
.ico.calendar::before { inset: 9px 7px 7px; border: 1.5px solid #56D99E; border-radius: 2px; }
.ico.calendar::after { left: 8px; right: 8px; top: 12px; height: 1.5px; background: #56D99E; box-shadow: 3px 4px #56D99E, 8px 4px #56D99E, 3px 8px #56D99E, 8px 8px #56D99E; }
.ico.roster::before { width: 7px; height: 7px; border-radius: 50%; border: 1.5px solid #56D99E; top: 6px; left: 11px; }
.ico.roster::after { width: 14px; height: 7px; border: 1.5px solid #56D99E; border-radius: 8px 8px 3px 3px; left: 7px; bottom: 6px; }
.ico.whistle::before { width: 12px; height: 9px; border: 1.5px solid #56D99E; border-radius: 7px 7px 7px 2px; top: 9px; left: 6px; transform: rotate(-10deg); }
.ico.whistle::after { width: 8px; height: 1.5px; background: #56D99E; right: 5px; top: 10px; transform: rotate(-28deg); transform-origin: right; }
.ico.trophy::before { width: 10px; height: 11px; border: 1.5px solid #56D99E; border-radius: 2px 2px 6px 6px; left: 9px; top: 6px; }
.ico.trophy::after { width: 12px; height: 1.5px; background: #56D99E; left: 9px; bottom: 7px; box-shadow: 0 -4px #56D99E; }
.ico.score::before { inset: 7px; border: 1.5px solid #56D99E; border-radius: 3px; }
.ico.score::after { content: "2 1"; color: #56D99E; font: 800 7px/1 system-ui; left: 8px; top: 12px; letter-spacing: 5px; }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.012); }
.trust-content { min-height: 98px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.trust-content p { color: #71839e; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 750; white-space: nowrap; }
.trust-tags { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 24px; color: #9cabc0; font-weight: 620; font-size: 13px; }

.section-heading { max-width: 790px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .roles-copy h2, .outcome-copy h2, .contact-copy h2 { font-size: clamp(40px, 4vw, 58px); }
.section-heading p, .roles-copy > p, .contact-copy > p { color: var(--muted); line-height: 1.75; font-size: 16px; margin: 0; max-width: 680px; }
.section-heading.centered p { margin-inline: auto; }

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; }
.glass-card { min-height: 260px; padding: 28px; border-radius: var(--radius); background: linear-gradient(145deg, rgba(17,30,53,.74), rgba(8,15,28,.62)); border: 1px solid var(--line); box-shadow: inset 0 1px rgba(255,255,255,.035); position: relative; overflow: hidden; }
.glass-card::after { content: ""; position: absolute; width: 130px; height: 130px; border-radius: 50%; right: -70px; top: -70px; background: rgba(51,118,255,.09); filter: blur(18px); }
.card-number { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.glass-card h3 { margin: 80px 0 12px; font-size: 22px; letter-spacing: -.03em; }
.glass-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.flow { background: linear-gradient(180deg, transparent, rgba(11, 21, 39, .46), transparent); }
.flow-rail { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 78px; }
.flow-line { position: absolute; top: 39px; left: 10%; right: 10%; height: 1px; background: rgba(82, 145, 209, .2); }
.flow-line span { display: block; height: 100%; width: 58%; background: linear-gradient(90deg, var(--blue), var(--cyan)); box-shadow: 0 0 15px rgba(0,194,110,.5); }
.flow-step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.step-icon { width: 78px; height: 78px; margin: 0 auto 25px; padding: 11px; border-radius: 22px; background: #091221; border: 1px solid var(--line); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
.step-icon .ico { width: 100%; height: 100%; border-radius: 14px; }
.step-icon .ico::before { transform-origin: center; }
.flow-step.featured .step-icon { border-color: var(--line-strong); box-shadow: 0 0 38px rgba(46,152,255,.2); transform: translateY(-8px); }
.flow-step > span { color: var(--cyan); font-size: 10px; letter-spacing: .12em; font-weight: 800; }
.flow-step h3 { margin: 8px 0 10px; font-size: 18px; }
.flow-step p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 12px; }

.roles-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 17px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: #b2bfd1; font-size: 14px; }
.check-list li span { width: 20px; height: 20px; flex: 0 0 20px; display: grid; place-items: center; border-radius: 7px; color: var(--green); background: rgba(0,194,110,.1); font-size: 11px; font-weight: 900; }
.roles-stack { position: relative; display: grid; gap: 13px; }
.roles-stack::before { content: ""; position: absolute; inset: 9% 12%; background: rgba(48,117,255,.14); filter: blur(70px); z-index: -1; }
.role-card { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 17px; padding: 19px; border-radius: 20px; border: 1px solid var(--line); background: rgba(10,18,33,.78); box-shadow: 0 18px 50px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.035); transition: transform .2s ease, border-color .2s ease; }
.role-card:hover { transform: translateX(-5px); border-color: var(--line-strong); }
.role-card.active { background: linear-gradient(135deg, rgba(26,52,88,.92), rgba(10,20,36,.88)); border-color: rgba(84,190,255,.24); }
.role-avatar { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; font-weight: 850; font-size: 12px; }
.role-avatar.organizer { color: #d8f7ff; background: linear-gradient(135deg, #195bcf, #239bc8); }
.role-avatar.delegate { color: #dffff2; background: linear-gradient(135deg, #0b7f65, #36c69c); }
.role-avatar.table { color: #eee8ff; background: linear-gradient(135deg, #5f3db4, #9171e1); }
.role-card small { color: var(--cyan); font-size: 8px; letter-spacing: .12em; font-weight: 800; }
.role-card h3 { margin: 4px 0 5px; font-size: 16px; }
.role-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.role-status { color: #8293ac; font-size: 9px; padding: 7px 9px; border-radius: 999px; border: 1px solid var(--line); }

.outcome-panel { border-radius: 30px; padding: 64px; background: linear-gradient(135deg, rgba(19, 44, 79, .86), rgba(8, 17, 31, .88) 60%); border: 1px solid rgba(95, 186, 255, .2); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.05); overflow: hidden; position: relative; }
.outcome-panel::after { content: ""; position: absolute; width: 420px; height: 420px; right: -200px; top: -230px; background: radial-gradient(circle, rgba(0,194,110,.18), transparent 65%); }
.outcome-copy { max-width: 760px; }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 47px; }
.outcome-grid > div { padding: 22px; border-radius: 18px; background: rgba(4, 10, 20, .35); border: 1px solid rgba(255,255,255,.065); }
.outcome-grid strong { color: var(--cyan); font-size: 23px; }
.outcome-grid h3 { margin: 13px 0 6px; font-size: 15px; }
.outcome-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; }
.audience-card { padding: 29px; min-height: 355px; border-radius: var(--radius); background: rgba(10,18,33,.62); border: 1px solid var(--line); position: relative; }
.audience-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(145deg, rgba(0,194,110,.035), transparent 44%); pointer-events: none; }
.audience-index { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: var(--cyan); background: rgba(0,194,110,.08); border: 1px solid rgba(0,194,110,.13); font-weight: 850; }
.audience-card h3 { margin: 42px 0 13px; font-size: 22px; letter-spacing: -.03em; }
.audience-card > p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 13px; }
.audience-card ul { list-style: none; padding: 0; margin: 27px 0 0; display: grid; gap: 10px; }
.audience-card li { color: #b5c1d2; font-size: 12px; display: flex; gap: 8px; }
.audience-card li::before { content: "·"; color: var(--cyan); font-weight: 900; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; min-height: 78px; padding: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; border: 0; background: none; cursor: pointer; font-weight: 700; }
.faq-item button span { font-size: 15px; }
.faq-item button i { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; border-radius: 9px; border: 1px solid var(--line); color: var(--cyan); font-style: normal; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer p { overflow: hidden; margin: 0; color: var(--muted); line-height: 1.7; font-size: 13px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 24px; }

.contact { padding-top: 70px; }
.contact-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; padding: 66px; border-radius: 32px; background:
  radial-gradient(circle at 12% 0%, rgba(49,115,255,.24), transparent 36%),
  linear-gradient(135deg, rgba(16,35,63,.96), rgba(7,15,28,.94));
  border: 1px solid rgba(92,192,255,.22);
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.06);
}
.contact-note { display: flex; gap: 12px; margin-top: 30px; padding: 15px; border-radius: 15px; background: rgba(255,255,255,.035); border: 1px solid var(--line); }
.contact-note span { color: var(--green); font-weight: 900; }
.contact-note p { margin: 0; color: #aab8ca; font-size: 12px; line-height: 1.5; }
.lead-form { padding: 28px; border-radius: 22px; background: rgba(5,11,22,.68); border: 1px solid rgba(255,255,255,.08); box-shadow: inset 0 1px rgba(255,255,255,.035); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.lead-form label { display: grid; gap: 8px; margin-bottom: 14px; color: #b8c5d6; font-size: 11px; font-weight: 700; }
.lead-form input, .lead-form textarea, .lead-form select { width: 100%; color: var(--text); background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: 12px; outline: none; padding: 13px 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.lead-form input, .lead-form select { height: 48px; }
.lead-form textarea { resize: vertical; min-height: 98px; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #62728b; }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { border-color: rgba(0,194,110,.46); box-shadow: 0 0 0 3px rgba(0,194,110,.08); }
.lead-form select { color-scheme: dark; }
.form-privacy { color: #687a94; font-size: 9px; text-align: center; margin: 11px 0 0; }
.form-success { display: none; margin-top: 14px; padding: 12px; border-radius: 12px; background: rgba(0,194,110,.1); color: #8EF2C5; border: 1px solid rgba(0,194,110,.18); font-size: 12px; text-align: center; }
.form-success.visible { display: block; }

.site-footer { padding: 72px 0 28px; border-top: 1px solid var(--line); background: rgba(3,6,13,.5); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 60px; align-items: start; }
.footer-brand { margin-bottom: 17px; }
.footer-grid > div:first-child > p { margin: 0; color: var(--muted); font-size: 12px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 25px; }
.footer-links a { color: #9eabc0; font-size: 12px; }
.footer-links a:hover { color: white; }
.footer-company { display: grid; justify-items: end; gap: 5px; }
.footer-company small, .footer-company span { color: #71819a; font-size: 10px; }
.footer-company strong { font-size: 12px; letter-spacing: .04em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; border-top: 1px solid var(--line); color: #596a84; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-product { margin-top: 20px; }
  .roles-grid, .faq-grid, .contact-panel { grid-template-columns: 1fr; gap: 55px; }
  .problem-grid, .audience-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid article:last-child, .audience-grid article:last-child { grid-column: 1 / -1; }
  .flow-rail { grid-template-columns: repeat(5, minmax(170px, 1fr)); overflow-x: auto; padding: 10px 0 24px; scrollbar-width: thin; }
  .flow-line { left: 85px; right: auto; width: 680px; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-company { justify-items: start; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .site-header { height: 68px; }
  .menu-toggle { display: flex; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: absolute; top: 68px; left: 14px; right: 14px; display: grid; gap: 0; padding: 13px; border-radius: 17px; background: rgba(6,12,23,.995); backdrop-filter: blur(20px); border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(0,0,0,.5); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .2s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a:not(.btn) { padding: 13px; }
  .main-nav .btn { margin-top: 8px; }
  .hero { padding-top: 130px; }
  .hero h1 { font-size: clamp(50px, 16vw, 70px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 18px; justify-content: space-between; }
  .hero-proof span { max-width: 84px; }
  .hero-product { min-height: 560px; transform: scale(.93); margin-inline: -18px; }
  .float-top { right: -4px; }
  .float-bottom { left: -3px; }
  .trust-content { padding: 22px 0; align-items: flex-start; flex-direction: column; gap: 12px; }
  .trust-tags { justify-content: flex-start; gap: 10px 18px; }
  .problem-grid, .audience-grid { grid-template-columns: 1fr; }
  .problem-grid article:last-child, .audience-grid article:last-child { grid-column: auto; }
  .glass-card { min-height: 230px; }
  .glass-card h3 { margin-top: 60px; }
  .role-card { grid-template-columns: 46px 1fr; }
  .role-avatar { width: 46px; height: 46px; }
  .role-status { display: none; }
  .outcome-panel, .contact-panel { padding: 34px 22px; border-radius: 24px; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .hero-product { transform: scale(.82); margin-top: -30px; margin-bottom: -35px; }
  .hero-proof { flex-wrap: wrap; }
  .outcome-grid { grid-template-columns: 1fr; }
  .floating-card { min-width: 184px; }
  .section-heading h2, .roles-copy h2, .outcome-copy h2, .contact-copy h2 { font-size: 38px; }
}

@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; }
}


/* LIGORA — identidad visual derivada del manual de marca */
.brand-mark {
  width: 38px;
  height: 38px;
  padding: 4px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 11px;
  color: inherit;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 194, 110, .16);
  filter: none;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text {
  display: inline-flex;
  align-items: baseline;
  font-family: "SG85-CHI SON 1", "Arial Black", Montserrat, sans-serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 950;
  letter-spacing: -.065em;
  transform: skewX(-4deg);
}
.brand-text b { color: #ffffff; font-weight: inherit; }
.brand-text span { color: var(--cyan); }

.hero h1,
.section-heading h2,
.roles-copy h2,
.outcome-copy h2,
.contact-copy h2 {
  font-family: "SG85-CHI SON 1", Montserrat, ui-sans-serif, system-ui, sans-serif;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 13px;
  color: #ffffff;
  font-size: 8px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .05em;
}
.app-brand img {
  width: 20px;
  height: 20px;
  padding: 2px;
  border-radius: 6px;
  background: #ffffff;
  object-fit: contain;
}
.app-brand span { color: var(--cyan); }

.btn-primary {
  color: #0A1F44;
  background: linear-gradient(135deg, #00C26E 0%, #39D990 58%, #75E8B5 100%);
  box-shadow: 0 14px 42px rgba(0, 194, 110, .22), inset 0 1px rgba(255,255,255,.44);
}
.btn-primary:hover {
  box-shadow: 0 18px 48px rgba(0, 194, 110, .31), inset 0 1px rgba(255,255,255,.44);
}
.hero h1 strong,
h2 em {
  background: linear-gradient(105deg, #ffffff 3%, #7BE8B7 48%, #00C26E 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.site-header.scrolled {
  background: rgba(5, 13, 27, .82);
}
.phone-shell {
  background: linear-gradient(150deg, rgba(255,255,255,.28), rgba(10,31,68,.96) 22%, #050d1b 65%, rgba(0,194,110,.42));
}
.avatar {
  background: linear-gradient(135deg, #0A1F44, #00C26E);
  color: #ffffff;
}
.status-card > div,
.live-dot { color: var(--cyan); }
.live-dot { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.badge-cyan { background: linear-gradient(135deg, #087C55, #00C26E); }
.float-icon,
.float-icon.chart {
  color: var(--cyan);
  background: rgba(0,194,110,.13);
}
.form-success {
  background: rgba(0,194,110,.1);
  color: #8EF2C5;
  border-color: rgba(0,194,110,.2);
}

.form-error {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(230, 74, 74, .10);
  color: #ffb2b2;
  border: 1px solid rgba(230, 74, 74, .22);
  font-size: 12px;
  text-align: center;
}
.form-error.visible,
.form-success.visible { display: block; }
.lead-form button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
