:root {
  --bg: #0b0f1a;
  --bg-deep: #070d18;
  --surface: #121a2a;
  --surface-2: #172235;
  --surface-3: #1d2a3d;
  --line: rgba(189, 205, 214, 0.13);
  --line-strong: rgba(149, 211, 193, 0.28);
  --text: #f3f7fa;
  --muted: #98a7b3;
  --muted-2: #6f7e8a;
  --mint: #95d3c1;
  --mint-strong: #76bea9;
  --mint-dark: #123b38;
  --amber: #ffb86b;
  --blue: #9db8f5;
  --lavender: #c8b8ff;
  --radius: 16px;
  --container: 1240px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font: 400 15px/1.65 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body, button, a { -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: #07110f; background: var(--mint); }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.section { position: relative; padding: 112px 0; }
.section-muted { background: #0e1727; }
.section-dark { background: #09111e; border-top: 1px solid rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.04); }
.section-grid { position: relative; overflow: hidden; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3, .brand-copy { font-family: "Space Grotesk", Inter, sans-serif; }
h1 { font-size: clamp(42px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.055em; font-weight: 700; }
h2 { font-size: clamp(36px, 4vw, 58px); line-height: 1.04; letter-spacing: -0.05em; }
h2 span, h1 span { color: var(--mint); }
h3 { letter-spacing: -0.025em; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--mint); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 16px var(--mint); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 9px; cursor: pointer; font-size: 13px; font-weight: 700; transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--mint); color: #0a1b19; box-shadow: 0 8px 24px rgba(149,211,193,.13); }
.button-primary:hover { background: #b0efdd; box-shadow: 0 12px 32px rgba(149,211,193,.22); }
.button-ghost { border-color: rgba(213, 229, 236, .22); color: var(--text); background: rgba(255,255,255,.025); }
.button-ghost:hover { border-color: var(--mint); color: var(--mint); background: rgba(149,211,193,.06); }
.button-small { min-height: 38px; padding: 0 15px; font-size: 11px; }
.button-large { min-height: 52px; padding: 0 22px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--mint); font-size: 13px; font-weight: 700; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(4px); }
.icon-button { display: inline-grid; place-items: center; border: 0; background: transparent; cursor: pointer; }

.announcement { min-height: 32px; color: #b9c5cc; background: #08101b; border-bottom: 1px solid rgba(255,255,255,.05); }
.announcement[hidden] { display: none; }
.announcement-inner { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 32px; position: relative; }
.announcement p { font-size: 11px; letter-spacing: .01em; }
.announcement strong { color: var(--amber); }
.announcement-pulse { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; box-shadow: 0 0 12px var(--amber); }
.announcement-close { position: absolute; right: 0; color: var(--muted-2); font-size: 18px; line-height: 1; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(11, 15, 26, .78); border-bottom: 1px solid rgba(255,255,255,.07); backdrop-filter: blur(18px); transition: background .25s ease; }
.site-header.scrolled { background: rgba(11,15,26,.94); }
.header-inner { display: flex; align-items: center; min-height: 74px; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { display: inline-flex; align-items: end; gap: 3px; width: 25px; height: 24px; padding: 3px 4px; border: 1px solid rgba(149,211,193,.6); border-radius: 6px; background: rgba(149,211,193,.07); }
.brand-mark span { width: 4px; border-radius: 2px 2px 1px 1px; background: var(--mint); }
.brand-mark span:nth-child(1) { height: 9px; opacity: .65; }
.brand-mark span:nth-child(2) { height: 14px; }
.brand-mark span:nth-child(3) { height: 18px; background: var(--amber); }
.brand-copy { display: flex; align-items: baseline; gap: 5px; color: var(--text); font-size: 16px; letter-spacing: -.05em; }
.brand-copy strong { font-weight: 600; }
.brand-copy em { color: var(--mint); font-style: normal; font-size: 11px; letter-spacing: .1em; }
.brand-logo-full { display: block; width: 146px; height: auto; object-fit: contain; }
.brand-logo-icon { display: none; width: 30px; height: 30px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; justify-content: center; flex: 1; gap: clamp(13px, 1.7vw, 26px); }
.desktop-nav a { color: var(--muted); font-size: 11px; font-weight: 600; white-space: nowrap; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--mint); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; width: 34px; height: 34px; padding: 7px; gap: 4px; }
.menu-toggle span { display: block; width: 20px; height: 1px; background: var(--text); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.mobile-menu { width: min(var(--container), calc(100% - 32px)); margin: 0 auto 14px; padding: 10px 0 4px; border-top: 1px solid var(--line); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a:not(.button) { display: block; padding: 11px 4px; color: var(--muted); font-size: 13px; }
.mobile-menu .button { width: 100%; margin-top: 8px; }

.hero { min-height: 720px; padding: 116px 0 38px; background: radial-gradient(circle at 76% 35%, rgba(39, 91, 88, .18), transparent 26%), linear-gradient(180deg, #0b1220 0%, var(--bg) 82%); }
.hero-layout { display: grid; grid-template-columns: minmax(0, .89fr) minmax(520px, 1.11fr); align-items: center; gap: 62px; position: relative; z-index: 1; }
.hero-copy { max-width: 630px; }
.hero-copy h1 { margin: 23px 0 24px; max-width: 650px; }
.hero-lead { max-width: 600px; color: #aab7bf; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; align-items: center; gap: 13px; padding-top: 28px; margin-top: 29px; border-top: 1px solid var(--line); }
.avatar-stack { display: flex; padding-left: 7px; }
.avatar-stack span { display: grid; place-items: center; width: 31px; height: 31px; margin-left: -7px; border: 2px solid var(--bg); border-radius: 50%; color: #091411; background: var(--mint); font-size: 8px; font-weight: 800; }
.avatar-stack span:nth-child(2) { color: #26160a; background: var(--amber); }
.avatar-stack span:nth-child(3) { color: #0a1324; background: var(--blue); }
.hero-proof strong, .hero-proof small { display: block; }
.hero-proof strong { font-size: 13px; }
.hero-proof small { color: var(--muted); font-size: 10px; margin-top: 3px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.hero-glow-one { width: 460px; height: 460px; right: 10%; top: 7%; background: rgba(66, 140, 121, .12); }
.hero-glow-two { width: 320px; height: 320px; left: -12%; bottom: 12%; background: rgba(56, 87, 138, .09); }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(149,211,193,.13); border-radius: 50%; transform: rotate(-18deg); }
.orbit-one { width: 630px; height: 300px; }
.orbit-two { width: 540px; height: 240px; border-color: rgba(255,184,107,.1); transform: rotate(31deg); }
.analysis-window { position: relative; width: min(100%, 640px); overflow: hidden; background: rgba(17, 28, 43, .93); border: 1px solid rgba(149,211,193,.19); border-radius: 18px; box-shadow: 0 28px 60px rgba(0,0,0,.44), 0 0 70px rgba(94, 188, 164, .08); transform: perspective(1000px) rotateY(-7deg) rotateX(2deg); }
.analysis-window::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, rgba(255,255,255,.07), transparent 18%, transparent 70%, rgba(149,211,193,.04)); }
.dashboard-preview-image { display: block; width: 100%; height: auto; aspect-ratio: 1890 / 916; object-fit: cover; border-radius: inherit; }
.analysis-window > .window-bar, .analysis-window > .window-content { display: none; }
.window-bar { display: flex; align-items: center; gap: 20px; height: 51px; padding: 0 18px; border-bottom: 1px solid var(--line); background: rgba(27, 42, 60, .7); }
.window-logo { display: flex; align-items: center; gap: 7px; color: var(--text); font-size: 11px; font-weight: 700; letter-spacing: -.04em; }
.window-logo i { width: 15px; height: 15px; border-radius: 5px; background: var(--mint); box-shadow: 7px 0 0 -4px var(--amber); }
.window-tabs { display: flex; gap: 18px; flex: 1; }
.window-tabs b { color: var(--muted-2); font-size: 9px; font-weight: 500; }
.window-tabs b:first-child { color: var(--mint); }
.window-user { display: grid; place-items: center; width: 23px; height: 23px; color: #0d1b19; border-radius: 50%; background: var(--mint); font-size: 8px; font-weight: 800; }
.window-content { display: grid; grid-template-columns: 47px 1fr; min-height: 390px; }
.window-sidebar { display: flex; flex-direction: column; align-items: center; gap: 24px; padding-top: 23px; color: #71808c; border-right: 1px solid var(--line); font-size: 14px; }
.window-sidebar .sidebar-active { display: grid; place-items: center; width: 27px; height: 27px; color: #10221e; border-radius: 7px; background: var(--mint); }
.dashboard-main { padding: 21px 22px 22px; }
.dashboard-heading, .chart-top, .match-head { display: flex; align-items: center; justify-content: space-between; }
.dashboard-heading small, .chart-top small, .match-head small { display: block; color: var(--muted-2); font-size: 8px; font-weight: 700; letter-spacing: .14em; }
.dashboard-heading h3 { margin-top: 4px; font-size: 17px; font-weight: 600; }
.live-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 7px; color: var(--mint); background: rgba(149,211,193,.1); border-radius: 5px; font-size: 8px; }
.live-badge i, .status-dot { width: 5px; height: 5px; display: inline-block; border-radius: 50%; background: var(--mint); box-shadow: 0 0 8px var(--mint); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 20px; }
.metric-card { padding: 13px 12px; background: rgba(34, 49, 68, .78); border: 1px solid rgba(149,211,193,.1); border-radius: 9px; }
.metric-card small { color: var(--muted); font-size: 8px; }
.metric-card strong { display: block; margin-top: 4px; font-family: "Space Grotesk", sans-serif; font-size: 20px; letter-spacing: -.06em; }
.metric-card .metric-up { color: var(--mint); font-size: 8px; }
.metric-card.amber { border-color: rgba(255,184,107,.12); }
.metric-card.amber .metric-up { color: var(--amber); }
.metric-card.blue { border-color: rgba(157,184,245,.12); }
.metric-card.blue .metric-up { color: var(--blue); }
.chart-card { margin-top: 11px; padding: 13px 14px 9px; background: rgba(9, 16, 28, .6); border: 1px solid rgba(255,255,255,.06); border-radius: 9px; }
.chart-top strong { display: block; margin-top: 3px; font-size: 11px; font-weight: 600; }
.chart-top > span { color: var(--mint); font-family: "Space Grotesk", sans-serif; font-size: 13px; }
.chart-top > span b { padding: 0 5px; color: var(--muted-2); font-weight: 400; }
.chart { position: relative; height: 105px; margin-top: 11px; overflow: hidden; }
.chart-grid-lines { position: absolute; inset: 10px 0 16px; display: flex; flex-direction: column; justify-content: space-between; }
.chart-grid-lines i { display: block; height: 1px; background: rgba(255,255,255,.055); }
.chart-fill { position: absolute; left: -2%; right: -2%; bottom: 17px; height: 65px; background: linear-gradient(180deg, rgba(149,211,193,.2), rgba(149,211,193,0)); clip-path: polygon(0 69%, 10% 58%, 20% 65%, 29% 40%, 38% 53%, 47% 29%, 58% 34%, 66% 15%, 77% 27%, 86% 8%, 100% 0, 100% 100%, 0 100%); }
.chart-line { position: absolute; z-index: 1; left: -2%; right: -2%; bottom: 17px; height: 65px; background: var(--mint); clip-path: polygon(0 69%, 10% 58%, 20% 65%, 29% 40%, 38% 53%, 47% 29%, 58% 34%, 66% 15%, 77% 27%, 86% 8%, 100% 0, 100% 3%, 86% 11%, 77% 30%, 66% 18%, 58% 37%, 47% 32%, 38% 56%, 29% 43%, 20% 68%, 10% 61%, 0 72%); filter: drop-shadow(0 0 4px var(--mint)); }
.chart-labels { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; color: var(--muted-2); font-size: 7px; }
.match-list { margin-top: 13px; }
.match-head a { color: var(--mint); font-size: 8px; }
.match-row { display: grid; grid-template-columns: 24px 1fr auto auto; align-items: center; gap: 8px; margin-top: 9px; padding: 7px 8px; background: rgba(34,49,68,.55); border-radius: 7px; }
.team-badge { display: grid; place-items: center; width: 22px; height: 22px; color: #10221e; border-radius: 6px; background: var(--mint); font-size: 9px; font-weight: 800; }
.team-badge.amber { color: #321b08; background: var(--amber); }
.match-row strong, .match-row small { display: block; }
.match-row strong { font-size: 9px; font-weight: 600; }
.match-row strong em { color: var(--muted-2); font-style: normal; padding: 0 2px; }
.match-row small { color: var(--muted-2); font-size: 7px; }
.match-row > b { color: var(--text); font-size: 10px; }
.match-status { padding: 3px 5px; color: var(--mint); background: rgba(149,211,193,.08); border-radius: 4px; font-size: 8px; }
.floating-card { position: absolute; z-index: 2; display: flex; align-items: center; gap: 9px; padding: 11px 13px; background: rgba(27,42,60,.88); border: 1px solid rgba(149,211,193,.2); border-radius: 10px; box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.floating-card-left { left: -5px; bottom: 65px; }
.floating-card-right { right: -13px; top: 75px; border-color: rgba(255,184,107,.2); }
.floating-icon { display: grid; place-items: center; width: 25px; height: 25px; color: #0f211c; background: var(--mint); border-radius: 7px; font-size: 14px; }
.amber-icon { color: #2f1c0d; background: var(--amber); }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: var(--muted); font-size: 8px; }
.floating-card strong { margin-top: 1px; font-size: 11px; }
.trend-mini { margin-left: 6px; color: var(--mint); font-size: 11px; font-weight: 700; }
.floating-card-right .trend-mini { color: var(--amber); }
.hero-bottom { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; padding-top: 50px; }
.scroll-hint, .hero-note { color: var(--muted-2); font-size: 10px; }
.scroll-hint { display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase; letter-spacing: .1em; }
.scroll-line { width: 1px; height: 23px; background: var(--mint); }
.hero-note { display: flex; align-items: center; gap: 7px; }
.hero-note span { color: var(--amber); }

.split-layout { display: grid; grid-template-columns: .84fr 1.16fr; gap: 95px; align-items: start; }
.section-intro h2 { margin: 19px 0 22px; }
.accent-line { width: 56px; height: 3px; margin-bottom: 25px; border-radius: 4px; background: var(--mint); box-shadow: 0 0 14px rgba(149,211,193,.5); }
.section-intro p, .section-lead { max-width: 450px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.section-intro .text-link { margin-top: 24px; }
.sticky-intro { position: sticky; top: 116px; }
.feature-stack { display: grid; gap: 12px; }
.feature-card { position: relative; display: grid; grid-template-columns: 47px 1fr 24px; gap: 18px; align-items: start; padding: 26px 26px 27px; overflow: hidden; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .25s ease, transform .25s ease; }
.feature-card:hover { transform: translateX(4px); border-color: var(--line-strong); }
.feature-card::after { content: ""; position: absolute; width: 160px; height: 160px; top: -105px; right: -80px; border-radius: 50%; background: rgba(149,211,193,.09); }
.feature-card-amber::after { background: rgba(255,184,107,.09); }
.feature-card-blue::after { background: rgba(157,184,245,.09); }
.feature-icon { display: grid; place-items: center; width: 42px; height: 42px; color: var(--mint); border: 1px solid rgba(149,211,193,.22); border-radius: 11px; background: rgba(149,211,193,.08); font-size: 22px; }
.feature-card-amber .feature-icon { color: var(--amber); border-color: rgba(255,184,107,.2); background: rgba(255,184,107,.07); }
.feature-card-blue .feature-icon { color: var(--blue); border-color: rgba(157,184,245,.2); background: rgba(157,184,245,.07); }
.feature-card small { color: var(--muted-2); font-size: 9px; letter-spacing: .14em; font-weight: 700; }
.feature-card h3 { margin: 7px 0 7px; font-size: 19px; }
.feature-card p { max-width: 550px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.feature-arrow { position: relative; z-index: 1; color: var(--mint); font-size: 17px; }
.feature-card-amber .feature-arrow { color: var(--amber); }
.feature-card-blue .feature-arrow { color: var(--blue); }

.centered-intro { max-width: 580px; margin: 0 auto 58px; text-align: center; }
.centered-intro .eyebrow { justify-content: center; }
.centered-intro h2 { margin: 17px 0 14px; }
.centered-intro p { color: var(--muted); font-size: 16px; }
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.steps-grid::before { content: ""; position: absolute; top: 52px; right: 11%; left: 11%; height: 1px; background: linear-gradient(90deg, transparent, rgba(149,211,193,.34), transparent); }
.step-card { position: relative; z-index: 1; text-align: center; }
.step-number { display: block; margin-bottom: 16px; color: var(--muted-2); font-family: "Space Grotesk", sans-serif; font-size: 10px; letter-spacing: .12em; }
.step-icon { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 21px; color: var(--mint); background: var(--surface-2); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 30px rgba(0,0,0,.16); font-size: 23px; transition: transform .25s ease, border-color .25s ease; }
.step-card:hover .step-icon { transform: translateY(-5px); border-color: var(--mint); }
.step-card h3 { margin-bottom: 8px; font-size: 17px; }
.step-card p { max-width: 220px; margin: 0 auto; color: var(--muted); font-size: 12px; line-height: 1.65; }

.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 45px; }
.section-heading-row h2 { margin-top: 17px; }
.section-heading-row > p { max-width: 340px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tool-card { position: relative; min-height: 235px; padding: 21px; overflow: hidden; background: #101a2a; border: 1px solid rgba(255,255,255,.07); border-radius: 13px; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.tool-card:hover { transform: translateY(-5px); border-color: rgba(149,211,193,.35); background: #152338; }
.tool-card-featured { background: linear-gradient(145deg, rgba(42,78,79,.72), #111b2b 60%); border-color: rgba(149,211,193,.23); }
.tool-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 24px; border-radius: 10px; font-size: 20px; }
.tool-icon.mint { color: var(--mint); background: rgba(149,211,193,.1); }
.tool-icon.amber { color: var(--amber); background: rgba(255,184,107,.1); }
.tool-icon.blue { color: var(--blue); background: rgba(157,184,245,.1); }
.tool-icon.lavender { color: var(--lavender); background: rgba(200,184,255,.1); }
.tool-card-top { position: absolute; top: 25px; right: 22px; display: flex; align-items: center; gap: 20px; color: var(--muted-2); }
.tool-card-top small { font-size: 9px; }
.tool-card-top span { color: var(--mint); font-size: 16px; }
.tool-card h3 { font-size: 18px; }
.tool-card p { max-width: 280px; margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.tool-tag { position: absolute; right: 21px; bottom: 20px; color: var(--muted-2); font-size: 9px; }

.sports-layout { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 90px; }
.sports-layout h2 { margin: 18px 0 22px; }
.section-lead { margin-bottom: 28px; }
.sport-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; max-width: 570px; }
.sport-pill { display: flex; align-items: center; gap: 11px; min-height: 65px; padding: 10px 13px; background: var(--surface-2); border: 1px solid rgba(255,255,255,.07); border-radius: 9px; transition: border-color .2s ease, transform .2s ease; }
.sport-pill:hover, .sport-pill.active { border-color: rgba(149,211,193,.4); transform: translateY(-2px); }
.sport-symbol { display: grid; place-items: center; width: 31px; height: 31px; color: var(--mint); border-radius: 8px; background: rgba(149,211,193,.1); font-size: 16px; }
.amber-text { color: var(--amber); background: rgba(255,184,107,.1); }
.blue-text { color: var(--blue); background: rgba(157,184,245,.1); }
.lavender-text { color: var(--lavender); background: rgba(200,184,255,.1); }
.sport-pill strong, .sport-pill small { display: block; }
.sport-pill strong { font-size: 12px; }
.sport-pill small { margin-top: 2px; color: var(--muted-2); font-size: 9px; }
.sport-pill b { margin-left: auto; color: var(--muted-2); font-size: 14px; font-weight: 400; }
.market-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.market-tags span { padding: 4px 8px; color: var(--muted-2); border: 1px solid var(--line); border-radius: 5px; font-size: 9px; }
.market-panel { position: relative; padding: 27px 25px 21px; background: linear-gradient(160deg, #172438, #101a29); border: 1px solid rgba(149,211,193,.15); border-radius: 15px; box-shadow: var(--shadow); }
.market-panel::before { content: ""; position: absolute; top: -45px; right: -45px; width: 130px; height: 130px; border-radius: 50%; background: rgba(149,211,193,.07); filter: blur(8px); }
.panel-head { display: flex; align-items: start; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.panel-head small { color: var(--muted-2); font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.panel-head h3 { margin-top: 7px; font-size: 18px; }
.panel-dots { color: var(--muted-2); letter-spacing: 3px; }
.market-bars { padding: 24px 0 13px; }
.market-bar + .market-bar { margin-top: 24px; }
.market-bar > div { display: flex; justify-content: space-between; margin-bottom: 8px; }
.market-bar span { color: var(--muted); font-size: 12px; }
.market-bar b { color: var(--text); font-family: "Space Grotesk", sans-serif; font-size: 13px; }
.market-bar i { display: block; width: 100%; height: 5px; overflow: hidden; border-radius: 5px; background: rgba(255,255,255,.06); }
.market-bar i::before { content: ""; display: block; width: var(--bar); height: 100%; border-radius: inherit; background: var(--mint); box-shadow: 0 0 12px rgba(149,211,193,.4); }
.market-bar i.amber-bar::before { background: var(--amber); box-shadow: 0 0 12px rgba(255,184,107,.35); }
.market-bar i.blue-bar::before { background: var(--blue); box-shadow: 0 0 12px rgba(157,184,245,.35); }
.market-bar > small { display: block; margin-top: 7px; color: var(--muted-2); font-size: 9px; }
.panel-foot { display: flex; align-items: center; gap: 7px; padding-top: 15px; color: var(--muted-2); border-top: 1px solid var(--line); font-size: 9px; }
.panel-foot > span:last-child { margin-left: auto; color: var(--mint); font-size: 15px; }

.content-layout { display: grid; gap: 34px; }
.content-heading { margin-bottom: 0; }
.content-heading .text-link { align-self: end; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.article-card { padding: 15px 15px 21px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 13px; transition: transform .25s ease, border-color .25s ease; }
.article-card:hover { transform: translateY(-5px); border-color: rgba(149,211,193,.32); }
.article-meta { display: flex; align-items: center; justify-content: space-between; padding: 0 5px 12px; color: var(--muted-2); font-size: 9px; }
.article-meta span { color: var(--mint); font-weight: 700; letter-spacing: .1em; }
.article-meta time { font-size: 9px; }
.article-visual { position: relative; display: flex; flex-direction: column; justify-content: space-between; height: 170px; padding: 20px; overflow: hidden; border-radius: 9px; }
.article-visual::after { content: ""; position: absolute; width: 170px; height: 170px; right: -35px; bottom: -92px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 26px rgba(255,255,255,.03), 0 0 0 52px rgba(255,255,255,.03); }
.article-visual-mint { background: linear-gradient(135deg, #2a635a, #192f35); }
.article-visual-amber { background: linear-gradient(135deg, #75512f, #332438); }
.article-visual-blue { background: linear-gradient(135deg, #304e80, #252b46); }
.article-visual > span { position: relative; z-index: 1; color: rgba(255,255,255,.86); font-size: 30px; }
.article-visual small { position: relative; z-index: 1; color: rgba(255,255,255,.82); font-size: 9px; letter-spacing: .15em; line-height: 1.5; }
.article-visual strong { position: absolute; z-index: 1; right: 17px; top: 15px; color: rgba(255,255,255,.13); font-family: "Space Grotesk", sans-serif; font-size: 54px; letter-spacing: -.08em; }
.article-card h3 { margin: 18px 5px 7px; font-size: 17px; line-height: 1.35; }
.article-card > p { margin: 0 5px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.article-card .text-link { margin: 17px 5px 0; font-size: 11px; }
.search-guide-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 2px; }
.search-guide-link { min-height: 112px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.search-guide-link:hover { transform: translateY(-3px); border-color: var(--line-strong); background: rgba(149,211,193,.05); }
.search-guide-link small { display: block; margin-bottom: 8px; color: var(--mint); font-size: 9px; font-weight: 700; letter-spacing: .11em; }
.search-guide-link strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 14px; line-height: 1.35; }
.search-guide-link span { display: block; margin-top: 9px; color: var(--muted-2); font-size: 10px; }

.faq-section { background: #0a111e; }
.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 110px; align-items: start; }
.faq-layout .section-intro p { max-width: 330px; }
.faq-layout .button { margin-top: 28px; min-height: 44px; padding: 0 16px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 3px; cursor: pointer; list-style: none; font-size: 14px; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; width: 22px; height: 22px; color: var(--mint); border: 1px solid rgba(149,211,193,.2); border-radius: 50%; font-size: 16px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 630px; padding: 0 40px 22px 3px; color: var(--muted); font-size: 13px; line-height: 1.8; }

.cta-section { position: relative; overflow: hidden; padding: 120px 0 125px; text-align: center; background: linear-gradient(135deg, #121d2b, #132d2f 50%, #141d2b); border-top: 1px solid rgba(149,211,193,.1); }
.cta-section::before, .cta-section::after { content: ""; position: absolute; border: 1px solid rgba(149,211,193,.1); border-radius: 50%; pointer-events: none; }
.cta-section::before { width: 700px; height: 280px; top: -170px; left: -100px; transform: rotate(-20deg); }
.cta-section::after { width: 650px; height: 300px; right: -130px; bottom: -190px; transform: rotate(24deg); border-color: rgba(255,184,107,.1); }
.cta-glow { position: absolute; width: 360px; height: 360px; top: 5%; left: calc(50% - 180px); border-radius: 50%; background: rgba(96,197,166,.12); filter: blur(75px); }
.cta-content { position: relative; z-index: 1; }
.cta-content .eyebrow { justify-content: center; }
.cta-content h2 { max-width: 760px; margin: 19px auto 18px; }
.cta-content p { max-width: 550px; margin: 0 auto; color: #aab7bf; font-size: 15px; }
.cta-content .hero-actions { justify-content: center; margin-top: 29px; }
.cta-disclaimer { display: block; margin-top: 21px; color: var(--muted-2); font-size: 10px; }

.site-footer { background: #080e18; }
.footer-main { display: grid; grid-template-columns: 1.1fr .8fr 1.6fr; gap: 60px; padding: 56px 0 47px; }
.footer-main > p { color: var(--muted); font-family: "Space Grotesk", sans-serif; font-size: 18px; line-height: 1.35; letter-spacing: -.035em; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.footer-links strong, .footer-links a { display: block; }
.footer-links strong { margin-bottom: 13px; color: var(--text); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a { margin-top: 8px; color: var(--muted-2); font-size: 11px; transition: color .2s ease; }
.footer-links a:hover { color: var(--mint); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 54px; color: var(--muted-2); border-top: 1px solid rgba(255,255,255,.07); font-size: 10px; }
.footer-bottom a { color: var(--mint); }
.footer-apps { grid-column: 1 / -1; padding-top: 10px; }
.footer-apps > strong { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--text); font-size: 10px; letter-spacing: .12em; }
.footer-apps-icon { width: 20px; height: 20px; object-fit: contain; }
.app-links { display: flex; flex-wrap: wrap; gap: 10px; }
.app-link { position: relative; display: inline-flex; align-items: center; gap: 9px; min-width: 174px; min-height: 48px; padding: 0 15px; color: var(--text); background: linear-gradient(180deg, #29303a, #1a2029); border: 1px solid rgba(210,220,228,.3); border-radius: 9px; box-shadow: inset 0 1px 0 rgba(255,255,255,.09); font-size: 13px; font-weight: 700; }
.app-link-disabled { cursor: default; opacity: .92; }
.app-svg { display: block; width: 23px; height: 23px; flex: 0 0 23px; }
.app-apple-logo { fill: #fff; }
.app-link small { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(7,13,24,.86); border-radius: inherit; font-size: 11px; letter-spacing: .06em; opacity: 0; transition: opacity .2s ease; }
.app-link-disabled:hover small, .app-link-disabled:focus-visible small { opacity: 1; }
.telegram-support-launcher { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; font-family: Inter, system-ui, sans-serif; }
.telegram-support-toggle { display: flex; min-height: 56px; align-items: center; gap: 9px; padding: 0 17px; border: 0; border-radius: 999px; background: #2aabee; box-shadow: 0 14px 36px rgba(42,171,238,.38); color: #fff; font: inherit; font-size: 14px; font-weight: 800; cursor: pointer; transition: transform 160ms ease, background 160ms ease; }
.telegram-support-toggle:hover { transform: translateY(-2px); background: #229ed9; }
.telegram-support-toggle svg { width: 24px; height: 24px; fill: currentColor; }

/* Editorial guide pages */
.guide-main { background: var(--bg); }
.guide-hero { position: relative; overflow: hidden; padding: 86px 0 70px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 78% 16%, rgba(149,211,193,.12), transparent 34%), linear-gradient(145deg, #0b101b, #101b2b); }
.guide-hero::after { content: ""; position: absolute; width: 420px; height: 420px; right: -180px; bottom: -300px; border: 1px solid rgba(149,211,193,.12); border-radius: 50%; box-shadow: 0 0 0 48px rgba(149,211,193,.025), 0 0 0 96px rgba(149,211,193,.02); }
.guide-hero-inner { position: relative; z-index: 1; max-width: 980px; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-bottom: 32px; color: var(--muted-2); font-size: 11px; }
.breadcrumb a { color: var(--mint); }
.guide-hero h1 { max-width: 900px; margin: 17px 0 20px; font-size: clamp(40px, 5vw, 68px); }
.guide-hero-inner > p { max-width: 780px; color: #b6c2ca; font-size: 17px; line-height: 1.8; }
.guide-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: var(--muted-2); font-size: 11px; }
.guide-meta span + span::before, .guide-meta time::before { content: "•"; margin-right: 22px; color: var(--mint); }
.guide-content-section { padding: 80px 0 95px; }
.guide-layout { display: grid; grid-template-columns: minmax(0, 790px) 260px; justify-content: space-between; gap: 70px; align-items: start; }
.guide-article { min-width: 0; }
.guide-article h2 { margin: 58px 0 18px; font-size: clamp(28px, 3vw, 38px); line-height: 1.2; letter-spacing: -.035em; }
.guide-article h2:first-child { margin-top: 0; }
.guide-article h3 { margin: 32px 0 12px; font-size: 21px; line-height: 1.35; }
.guide-article p, .guide-article li { color: #b1bec7; font-size: 15px; line-height: 1.9; }
.guide-article p + p { margin-top: 18px; }
.guide-article ul, .guide-article ol { display: grid; gap: 10px; margin: 18px 0 0; padding-left: 23px; }
.guide-article li::marker { color: var(--mint); font-weight: 700; }
.guide-article a { color: var(--mint); text-decoration: underline; text-decoration-color: rgba(149,211,193,.35); text-underline-offset: 4px; }
.guide-callout { margin: 34px 0; padding: 22px 24px; border: 1px solid var(--line-strong); border-left: 3px solid var(--mint); border-radius: 12px; background: rgba(149,211,193,.055); }
.guide-callout strong { display: block; margin-bottom: 7px; color: var(--mint); font-family: "Space Grotesk", sans-serif; font-size: 14px; }
.guide-callout p { font-size: 13px; line-height: 1.75; }
.guide-aside { position: sticky; top: 100px; display: grid; padding: 23px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.guide-aside > strong { margin-bottom: 12px; color: var(--text); font-family: "Space Grotesk", sans-serif; font-size: 15px; }
.guide-aside .aside-kicker { margin-top: 20px; padding: 13px 0 4px; color: var(--mint); border-top: 1px solid var(--line); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.guide-aside > a { padding: 10px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 12px; transition: color .2s ease; }
.guide-aside > a:hover { color: var(--mint); }
.aside-note { display: grid; grid-template-columns: 35px 1fr; gap: 11px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.aside-note b { display: grid; place-items: center; width: 35px; height: 35px; color: var(--amber); border: 1px solid rgba(255,184,107,.28); border-radius: 50%; font-size: 11px; }
.aside-note p { color: var(--muted-2); font-size: 10px; line-height: 1.6; }
.guide-faq { margin-top: 22px; border-top: 1px solid var(--line); }
.guide-faq details { border-bottom: 1px solid var(--line); }
.guide-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 2px; cursor: pointer; list-style: none; font-weight: 700; }
.guide-faq summary::-webkit-details-marker { display: none; }
.guide-faq summary span { color: var(--mint); font-size: 20px; font-weight: 400; transition: transform .2s ease; }
.guide-faq details[open] summary span { transform: rotate(45deg); }
.guide-faq details p { padding: 0 36px 22px 2px; }
.guide-cta { padding: 48px 0; border-top: 1px solid var(--line); background: linear-gradient(120deg, #101a29, #15302f); }
.guide-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.guide-cta span { color: var(--mint); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.guide-cta h2 { margin-top: 7px; font-size: clamp(25px, 3vw, 36px); }
.guide-cta .button span { color: inherit; font-size: inherit; letter-spacing: 0; text-transform: none; }
.guide-footer .footer-bottom { min-height: 72px; gap: 22px; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 13px; }
  .desktop-nav a { font-size: 10px; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(100%, 700px); margin: 0 auto; }
  .split-layout, .sports-layout { gap: 55px; }
  .faq-layout { gap: 55px; }
  .search-guide-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .container { width: min(var(--container), calc(100% - 34px)); }
  .section { padding: 82px 0; }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-toggle { display: flex; flex-direction: column; }
  .header-inner { min-height: 65px; justify-content: space-between; }
  .header-actions { margin-left: auto; }
  .hero { padding-top: 74px; }
  .hero-layout { gap: 26px; }
  .hero-visual { min-height: 450px; transform: scale(.9); transform-origin: top center; margin-bottom: -44px; }
  .floating-card-right { right: -5px; }
  .hero-bottom { padding-top: 10px; }
  .hero-note { max-width: 260px; text-align: right; }
  .split-layout, .sports-layout, .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .sticky-intro { position: static; }
  .section-heading-row { align-items: start; flex-direction: column; gap: 20px; margin-bottom: 30px; }
  .section-heading-row > p { max-width: 530px; }
  .content-heading .text-link { align-self: start; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-main > p { grid-column: 2; grid-row: 1; }
  .footer-links { grid-column: 1 / -1; }
  .footer-apps { grid-column: 1 / -1; }
  .guide-layout { grid-template-columns: 1fr; gap: 48px; }
  .guide-aside { position: static; }
  .guide-content-section { padding: 65px 0 75px; }
}
@media (max-width: 600px) {
  h1 { font-size: clamp(39px, 12vw, 54px); }
  h2 { font-size: 38px; }
  .announcement p { padding-right: 20px; text-align: center; font-size: 10px; line-height: 1.3; }
  .hero { min-height: 0; padding-bottom: 35px; }
  .hero-lead { font-size: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 345px; transform: scale(.65); width: 153%; margin-left: -26.5%; margin-bottom: -107px; }
  .hero-bottom { align-items: start; padding-top: 11px; }
  .scroll-hint { display: none; }
  .hero-note { max-width: 100%; text-align: left; }
  .feature-card { grid-template-columns: 39px 1fr; gap: 13px; padding: 21px 17px; }
  .feature-icon { width: 38px; height: 38px; font-size: 18px; }
  .feature-arrow { display: none; }
  .feature-card h3 { font-size: 17px; }
  .feature-card p { font-size: 12px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 30px 12px; }
  .steps-grid::before { display: none; }
  .step-icon { width: 56px; height: 56px; border-radius: 15px; }
  .step-card h3 { font-size: 14px; }
  .step-card p { font-size: 11px; }
  .tool-grid, .article-grid { grid-template-columns: 1fr; }
  .search-guide-grid { grid-template-columns: 1fr; }
  .tool-card { min-height: 210px; }
  .sport-grid { grid-template-columns: 1fr; }
  .market-panel { padding: 21px 17px 17px; }
  .faq-list summary { padding: 18px 0; font-size: 13px; }
  .faq-list details p { padding-right: 8px; font-size: 12px; }
  .cta-section { padding: 82px 0; }
  .cta-content .hero-actions .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .footer-main > p { grid-column: auto; grid-row: auto; }
  .footer-links { grid-column: auto; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .footer-apps { grid-column: auto; }
  .footer-bottom { align-items: start; flex-wrap: wrap; gap: 7px 20px; padding: 15px 0; line-height: 1.4; }
  .brand-logo-full { width: 142px; }
  .telegram-support-launcher { right: 14px; bottom: 14px; }
  .telegram-support-toggle span { display: none; }
  .telegram-support-toggle { width: 56px; padding: 0; justify-content: center; }
  .guide-hero { padding: 55px 0 48px; }
  .guide-hero-inner > p { font-size: 14px; }
  .guide-meta { display: grid; gap: 6px; }
  .guide-meta span + span::before, .guide-meta time::before { display: none; }
  .guide-article h2 { margin-top: 44px; }
  .guide-article p, .guide-article li { font-size: 14px; }
  .guide-cta .container { align-items: stretch; flex-direction: column; }
  .guide-cta .button { width: 100%; }
  .guide-footer .footer-bottom { display: grid; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
