:root {
  --ink: #101631;
  --ink-2: #253061;
  --muted: #69718b;
  --blue: #008eff;
  --blue-dark: #0073e6;
  --blue-soft: #e8f4ff;
  --lime: #c7ff4a;
  --paper: #f5f7fb;
  --white: #fff;
  --line: rgba(16, 22, 49, .1);
  --radius-sm: 18px;
  --radius: 28px;
  --radius-lg: 44px;
  --shadow: 0 28px 80px rgba(25, 43, 92, .12);
  --wrap: min(1240px, calc(100% - 48px));
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.dialog-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
[hidden] { display: none !important; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { color: var(--ink); background: var(--lime); }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 14px; background: var(--ink); color: white; border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.wrap { width: var(--wrap); margin-inline: auto; }
.section-pad { padding: 120px 0; }

.button { border: 0; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 52px; padding: 0 22px; font-weight: 700; letter-spacing: -.02em; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s; }
.button span { font-size: 1.2em; transition: transform .25s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: translate(3px, -3px); }
.button-primary { color: white; background: var(--blue); box-shadow: 0 12px 32px rgba(0, 142, 255, .25); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 16px 36px rgba(0, 142, 255, .35); }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { background: #222b52; }
.button-white { color: var(--ink); background: white; box-shadow: 0 14px 40px rgba(0,0,0,.15); }
.button-small { min-height: 46px; padding-inline: 20px; font-size: 14px; }
.button-large { min-height: 62px; padding-inline: 28px; }

.site-header { position: fixed; z-index: 100; top: 0; width: 100%; padding: 18px 0; transition: padding .3s var(--ease); }
.site-header.is-scrolled { padding: 10px 0; }
.nav-shell { width: var(--wrap); height: 72px; margin: auto; padding: 0 12px 0 22px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(255,255,255,.8); border-radius: 999px; background: rgba(255,255,255,.76); box-shadow: 0 12px 45px rgba(27,39,83,.08); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.brand { flex-shrink: 0; }
.brand img { width: 158px; height: auto; }
.brand-cluster { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.origin-divider { width: 1px; height: 40px; flex: 0 0 1px; background: rgba(37,48,97,.18); }
.nav-origin-lockup { display: inline-flex; align-items: center; gap: 12px; color: var(--ink-2); font-size: 19px; font-weight: 760; letter-spacing: -.035em; white-space: nowrap; }
.nav-origin-lockup svg { width: 44px; height: auto; filter: drop-shadow(0 3px 6px rgba(16,22,49,.12)); }
.nav-origin-badge { min-height: 38px; padding: 6px 11px 6px 7px; display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); border: 1px solid rgba(0,142,255,.14); border-radius: 999px; background: var(--blue-soft); font-size: 10px; font-weight: 800; letter-spacing: -.01em; white-space: nowrap; }
.nav-origin-badge svg { width: 26px; height: auto; filter: drop-shadow(0 3px 6px rgba(16,22,49,.13)); }
.desktop-nav { display: flex; align-items: center; gap: 34px; color: #444c69; font-size: 14px; font-weight: 600; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: 5px; width: 100%; height: 2px; border-radius: 2px; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--ink); cursor: pointer; }
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 5px auto; background: white; transition: .3s; }
.mobile-menu { display: none; }

.hero { position: relative; min-height: 900px; padding-top: 180px; padding-bottom: 0; overflow: hidden; }
.ambient { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.ambient-one { width: 650px; height: 650px; right: -240px; top: 80px; background: radial-gradient(circle, rgba(0,142,255,.18), transparent 67%); }
.ambient-two { width: 420px; height: 420px; left: -250px; top: 330px; background: radial-gradient(circle, rgba(199,255,74,.15), transparent 67%); }
.hero-grid { position: relative; min-width: 0; display: grid; grid-template-columns: .94fr 1.06fr; gap: 60px; align-items: center; min-height: 645px; }
.hero-copy { position: relative; z-index: 3; min-width: 0; padding-bottom: 28px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 24px; padding: 8px 13px; color: #37405f; border: 1px solid rgba(16,22,49,.12); border-radius: 999px; background: rgba(255,255,255,.65); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-origin-badge { gap: 11px; padding: 10px 17px 10px 10px; color: var(--ink-2); border-color: rgba(0,142,255,.18); background: rgba(232,244,255,.82); font-size: 14px; letter-spacing: -.01em; text-transform: none; box-shadow: 0 9px 26px rgba(36,56,103,.07); }
.hero-origin-badge svg { width: 35px; height: auto; filter: drop-shadow(0 4px 8px rgba(16,22,49,.14)); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 0 rgba(0,142,255,.4); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(0,142,255,0); } 100% { box-shadow: 0 0 0 0 rgba(0,142,255,0); } }
.hero h1 { max-width: 700px; margin: 0; font-size: clamp(64px, 6.3vw, 102px); line-height: .93; letter-spacing: -.075em; font-weight: 760; }
.text-gradient { color: var(--blue); background: linear-gradient(110deg, var(--blue) 10%, #5a6dff 55%, #0bbbc4 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lead { max-width: 610px; margin: 30px 0 32px; color: var(--muted); font-size: 19px; line-height: 1.55; letter-spacing: -.02em; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { display: inline-flex; gap: 12px; align-items: center; font-weight: 700; }
.text-link span { color: var(--blue); }
.hero-proof { width: min(390px, 100%); min-height: 76px; padding: 14px 17px; display: flex; align-items: center; gap: 20px; margin-top: 42px; border: 1px solid rgba(16,22,49,.08); border-radius: 20px; background: rgba(255,255,255,.55); box-shadow: 0 12px 35px rgba(31,45,91,.05); backdrop-filter: blur(10px); }
.hero-proof p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.35; }
.hero-proof strong { color: var(--ink); font-size: 14px; }
.audience-main { display: flex; align-items: center; gap: 12px; }
.audience-main { min-width: 0; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 31px; height: 31px; margin-left: -8px; display: grid; place-items: center; color: white; border: 2px solid var(--paper); border-radius: 50%; background: linear-gradient(135deg, #101631, #53618f); font-size: 10px; font-weight: 800; }
.avatar-stack span:first-child { margin-left: 0; background: #00a8ff; }
.avatar-stack span:nth-child(2) { background: #7057ff; }
.avatar-stack span:nth-child(3) { background: #ff7b44; }
.avatar-stack span:nth-child(4) { background: #f45b9a; }
.avatar-stack span:nth-child(5) { background: #386ee8; }
.avatar-stack span:last-child { color: var(--ink); background: var(--lime); }
.proof-divider { width: 1px; height: 34px; margin-inline: 8px; background: var(--line); }
.uk-mini { display: flex; align-items: center; gap: 9px; }
.uk-mini-flag { width: 34px; flex: 0 0 34px; filter: drop-shadow(0 4px 8px rgba(16,22,49,.14)); }
.uk-mini-flag svg { display: block; width: 100%; height: auto; }

.hero-stage { position: relative; height: 645px; perspective: 1200px; }
.phone { position: absolute; z-index: 3; left: 20%; top: 2%; width: 316px; height: 626px; padding: 10px; border: 1px solid rgba(255,255,255,.85); border-radius: 52px; background: #0b1024; box-shadow: 0 45px 90px rgba(31,45,91,.28), inset 0 0 0 2px rgba(255,255,255,.1); transform: rotate(7deg); transition: transform .2s ease-out; }
.phone-island { position: absolute; z-index: 10; top: 17px; left: 50%; width: 92px; height: 26px; border-radius: 99px; background: #080c1d; transform: translateX(-50%); }
.phone-screen { position: relative; height: 100%; overflow: hidden; border-radius: 43px; background: linear-gradient(160deg, #f4f9ff, #eef1ff 56%, #f8f7ff); }
.phone-screen::before { content: ""; position: absolute; inset: -20% -50% auto; height: 60%; background: radial-gradient(circle, rgba(0,142,255,.2), transparent 65%); }
.app-topbar { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 51px 24px 18px; }
.app-mark { display: flex; gap: 3px; }
.app-mark span { width: 5px; border-radius: 8px; background: var(--blue); }
.app-mark span:nth-child(1) { height: 14px; }.app-mark span:nth-child(2) { height: 20px; }.app-mark span:nth-child(3) { height: 10px; }
.coin { display: flex; align-items: center; gap: 5px; padding: 6px 9px; color: #564b08; border: 1px solid rgba(191,173,37,.18); border-radius: 99px; background: #fff9c7; font-size: 10px; font-weight: 800; }
.coin span { color: #e0b514; }
.app-copy { position: relative; z-index: 2; padding: 0 23px 16px; }
.app-copy span { color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.app-copy h2 { margin: 7px 0 0; font-size: 25px; line-height: 1.06; letter-spacing: -.055em; }
.game-card { position: relative; z-index: 2; margin: 0 14px; padding: 7px 7px 10px; border: 1px solid rgba(26,39,80,.08); border-radius: 24px; background: rgba(255,255,255,.96); box-shadow: 0 15px 35px rgba(41,55,103,.14); }
.game-art { position: relative; height: 151px; overflow: hidden; border-radius: 18px; background: #16223d; }
.game-art > img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.creative-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,13,28,.04) 35%, rgba(7,13,28,.85) 100%); }
.creative-badges { position: absolute; top: 10px; left: 10px; right: 10px; display: flex; align-items: center; justify-content: space-between; }
.creative-badges span { padding: 5px 7px; color: var(--ink); border-radius: 6px; background: var(--lime); font-size: 7px; font-weight: 900; letter-spacing: .04em; }
.creative-badges b { padding: 5px 7px; color: #654f00; border-radius: 8px; background: #fff3a6; font-size: 8px; box-shadow: 0 4px 10px rgba(0,0,0,.12); }
.creative-caption { position: absolute; left: 11px; right: 11px; bottom: 10px; color: white; }
.creative-caption small { display: block; color: #d7ff72; font-size: 6px; font-weight: 900; letter-spacing: .12em; }
.creative-caption strong { display: block; margin-top: 2px; font-size: 15px; letter-spacing: -.03em; text-shadow: 0 2px 8px rgba(0,0,0,.35); }
.game-meta { display: flex; align-items: center; gap: 7px; padding: 8px 3px 7px; }
.offer-app-icon { width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center; overflow: hidden; color: white; border-radius: 9px; background: linear-gradient(145deg, rgba(14,33,26,.2), rgba(14,33,26,.4)), url('assets/kingdom-rivals-hero.webp') center / cover; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.offer-app-icon span { font-size: 8px; font-weight: 900; text-shadow: 0 1px 3px rgba(0,0,0,.7); }
.offer-title { min-width: 0; flex: 1; }
.game-meta h3 { margin: 0; font-size: 11px; letter-spacing: -.02em; white-space: nowrap; }
.game-meta p { margin: 1px 0 0; color: var(--muted); font-size: 7px; }
.game-meta button { padding: 7px 9px; color: white; border: 0; border-radius: 8px; background: var(--blue); font-size: 7px; font-weight: 800; white-space: nowrap; }
.reward-steps { overflow: hidden; border: 1px solid #edf0f5; border-radius: 11px; background: #f8fafc; }
.reward-steps > div { min-height: 34px; padding: 5px 7px; display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 6px; }
.reward-steps > div + div { border-top: 1px solid #e8ebf1; }
.reward-steps i { width: 17px; height: 17px; display: grid; place-items: center; color: var(--blue); border-radius: 50%; background: #e5f3ff; font-size: 6px; font-style: normal; font-weight: 900; }
.reward-steps span b, .reward-steps span small { display: block; }
.reward-steps span b { color: var(--ink); font-size: 7px; }
.reward-steps span small { color: #9299ab; font-size: 5.5px; }
.reward-steps strong { color: #168456; font-size: 7px; }
.more-offers { position: relative; z-index: 2; display: grid; gap: 5px; padding: 9px 18px 52px; }
.offer-heading { padding: 0 2px 2px; display: flex; align-items: center; justify-content: space-between; }
.offer-heading b { color: var(--ink); font-size: 9px; }.offer-heading small { color: var(--blue); font-size: 6px; font-weight: 800; }
.mini-game { display: flex; align-items: center; gap: 8px; padding: 6px; border: 1px solid rgba(31,43,82,.05); border-radius: 12px; background: rgba(255,255,255,.82); }
.mini-art { width: 31px; height: 31px; flex: 0 0 31px; border-radius: 9px; background: radial-gradient(circle at 65% 25%, #fff7a2 0 10%, transparent 11%), linear-gradient(145deg, #55ba66, #176d5b 55%, #f0ab45); box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.mini-two { background: radial-gradient(circle at 35% 35%, #fff 0 8%, transparent 9%), linear-gradient(145deg, #6b76ff, #7135a6 55%, #ff7c6e); }
.mini-game span { min-width: 0; flex: 1; }
.mini-game span b, .mini-game span small { display: block; }.mini-game b { color: var(--ink); font-size: 8px; }.mini-game small { margin-top: 1px; color: #15905c; font-size: 6px; font-weight: 800; }.mini-game em { color: #8f97aa; font-size: 15px; font-style: normal; }
.app-nav { position: absolute; left: 0; bottom: 0; width: 100%; height: 48px; display: flex; align-items: center; justify-content: space-around; border-top: 1px solid rgba(20,30,70,.06); background: rgba(255,255,255,.85); backdrop-filter: blur(10px); }
.app-nav i { width: 15px; height: 15px; border: 2px solid #a8afc1; border-radius: 4px; }
.app-nav i:first-child { border-color: var(--blue); background: var(--blue); }

.floating-chip { position: absolute; z-index: 7; display: flex; align-items: center; gap: 9px; padding: 10px 14px 10px 10px; border: 1px solid rgba(255,255,255,.9); border-radius: 999px; background: rgba(255,255,255,.86); box-shadow: 0 12px 32px rgba(26,39,80,.12); backdrop-filter: blur(12px); font-size: 11px; font-weight: 800; animation: float 4s ease-in-out infinite; }
.floating-chip span { width: 28px; height: 28px; display: grid; place-items: center; color: white; border-radius: 50%; background: var(--blue); font-size: 9px; }
.chip-ai { left: 4%; top: 22%; }.chip-roas { right: 0; top: 18%; animation-delay: -2s; }.chip-roas span { color: var(--ink); background: var(--lime); font-size: 14px; }
@keyframes float { 50% { transform: translateY(-10px); } }
.metric-card { position: absolute; z-index: 6; right: -2%; bottom: 8%; width: 252px; padding: 17px; border: 1px solid rgba(255,255,255,.8); border-radius: 22px; background: rgba(255,255,255,.82); box-shadow: 0 22px 55px rgba(29,45,95,.18); backdrop-filter: blur(14px); transform: rotate(-3deg); }
.metric-head { display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; font-weight: 700; }
.metric-head b { position: relative; padding-left: 9px; color: #22a56b; text-transform: uppercase; }
.metric-head b::before { content: ""; position: absolute; left: 0; top: 5px; width: 5px; height: 5px; border-radius: 50%; background: #22c77b; }
.metric-card > strong { display: block; margin-top: 6px; font-size: 28px; letter-spacing: -.04em; }
.chart { height: 80px; margin: 5px 0; }.chart svg { width: 100%; height: 100%; overflow: visible; }.chart-line { stroke-dasharray: 340; stroke-dashoffset: 340; animation: draw-line 2.2s .4s var(--ease) forwards; }
@keyframes draw-line { to { stroke-dashoffset: 0; } }
.metric-card > small { color: var(--muted); font-size: 9px; }.metric-card > small span { color: #0d9e67; font-weight: 800; }

/* Hero offerwall */
.offer-screen { color: white; background: linear-gradient(165deg, #1d1930 0%, #12101f 55%, #171426 100%); }
.offer-screen::before { inset: -12% -40% auto; height: 46%; background: radial-gradient(circle, rgba(112,80,255,.24), transparent 65%); }
.offer-status { position: relative; z-index: 3; height: 34px; padding: 13px 18px 0; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.82); font-size: 8px; font-weight: 800; }
.status-icons { display: flex; align-items: center; gap: 4px; }
.status-icons i:first-child { width: 12px; height: 8px; background: linear-gradient(to right, transparent 0 8%, white 9% 24%, transparent 25% 33%, white 34% 50%, transparent 51% 59%, white 60% 76%, transparent 77% 84%, white 85%); clip-path: polygon(0 100%,0 76%,22% 76%,22% 52%,48% 52%,48% 28%,73% 28%,73% 0,100% 0,100% 100%); }
.status-icons i:nth-child(2) { width: 12px; height: 8px; border-top: 2px solid white; border-radius: 50%; opacity: .9; }
.status-icons b { width: 15px; height: 7px; border: 1px solid rgba(255,255,255,.8); border-radius: 2px; box-shadow: inset 0 0 0 1px #171426; background: white; }
.offer-brand-row { position: relative; z-index: 3; padding: 10px 17px 7px; display: flex; align-items: center; gap: 8px; }
.offer-brand-mark { width: 31px; height: 31px; display: grid; place-items: center; color: white; border-radius: 9px; background: var(--blue); box-shadow: 0 8px 20px rgba(0,142,255,.28); }
.offer-brand-mark svg { width: 25px; height: 25px; }
.offer-brand-copy { min-width: 0; flex: 1; }
.offer-brand-copy strong, .offer-brand-copy small { display: block; }
.offer-brand-copy strong { font-size: 11px; letter-spacing: -.02em; }.offer-brand-copy small { margin-top: 1px; color: #8f8aa4; font-size: 5px; font-weight: 900; letter-spacing: .15em; }
.offer-wallet { padding: 6px 8px; display: flex; align-items: center; gap: 5px; color: #ffe976; border: 1px solid rgba(255,233,118,.16); border-radius: 99px; background: rgba(255,233,118,.08); font-size: 8px; }.offer-wallet span { font-size: 7px; }.offer-wallet b { color: white; }
.offer-intro { position: relative; z-index: 2; padding: 48px 18px 9px; }
.offer-intro > span { color: #8c79ff; font-size: 6px; font-weight: 900; letter-spacing: .14em; }
.offer-intro h2 { margin: 5px 0 4px; color: white; font-size: 25px; line-height: .95; letter-spacing: -.055em; }
.offer-intro p { margin: 0; color: #8f8b9d; font-size: 7px; }
.offer-tabs { position: relative; z-index: 2; padding: 2px 13px 7px; display: flex; gap: 4px; overflow: hidden; }
.offer-tabs span { padding: 5px 8px; color: #8f8a9f; border: 1px solid rgba(255,255,255,.06); border-radius: 99px; background: rgba(255,255,255,.03); font-size: 5.5px; font-weight: 800; white-space: nowrap; }
.offer-tabs span.is-active { color: #171426; border-color: var(--lime); background: var(--lime); }
.quest-list { position: relative; z-index: 2; padding: 0 12px 48px; display: grid; gap: 6px; }
.quest-card { overflow: hidden; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; background: rgba(255,255,255,.055); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.quest-creative { position: relative; height: 103px; overflow: hidden; }
.quest-creative::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,8,18,.03), rgba(10,8,18,.68)); }
.quest-creative img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.quest-creative > span, .quest-creative > b { position: absolute; z-index: 2; top: 8px; padding: 4px 6px; border-radius: 5px; font-size: 5px; font-weight: 900; letter-spacing: .05em; }
.quest-creative > span { left: 8px; color: #171426; background: var(--lime); }.quest-creative > b { right: 8px; color: #ffe873; border: 1px solid rgba(255,232,115,.2); background: rgba(16,13,28,.72); backdrop-filter: blur(5px); }
.quest-featured-info { padding: 7px 8px 5px; display: flex; align-items: center; gap: 7px; }
.quest-icon { width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center; overflow: hidden; color: white; border-radius: 9px; font-size: 7px; font-weight: 900; }
.quest-icon-sugar { background: url('assets/sugar-splash.webp') 35% center / cover; }
.quest-title { min-width: 0; flex: 1; }.quest-title h3 { margin: 0; overflow: hidden; color: white; font-size: 9px; letter-spacing: -.02em; text-overflow: ellipsis; white-space: nowrap; }.quest-title p { margin: 1px 0 0; overflow: hidden; color: #aaa5b7; font-size: 6px; text-overflow: ellipsis; white-space: nowrap; }.quest-title > span { display: inline-block; margin-top: 3px; padding: 2px 4px; color: #a9ffce; border-radius: 3px; background: rgba(47,208,128,.09); font-size: 4.5px; font-weight: 800; }
.quest-card button { min-width: 57px; padding: 6px 7px; color: white; border: 0; border-radius: 9px; background: linear-gradient(135deg, #6f4dff, #8c64ff); box-shadow: 0 7px 16px rgba(104,75,255,.22); }
.quest-card button small, .quest-card button b { display: block; }.quest-card button small { color: rgba(255,255,255,.58); font-size: 4px; font-weight: 900; letter-spacing: .08em; }.quest-card button b { margin-top: 1px; font-size: 7px; }
.quest-goal { margin: 0 8px 8px; padding: 6px 7px; display: grid; grid-template-columns: 17px 1fr 46px; align-items: center; gap: 6px; border-radius: 9px; background: rgba(0,0,0,.2); }
.quest-goal > i { width: 17px; height: 17px; display: grid; place-items: center; color: var(--lime); border: 1px solid rgba(199,255,74,.22); border-radius: 50%; background: rgba(199,255,74,.06); font-size: 5px; font-style: normal; font-weight: 900; }.quest-goal span b, .quest-goal span small { display: block; }.quest-goal span b { color: #e9e7ef; font-size: 5.5px; }.quest-goal span small { color: #777386; font-size: 4.5px; }
.quest-goal em { height: 4px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.09); }.quest-goal em strong { display: block; width: 42%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--lime), #76f0b5); }
.quest-row { min-height: 54px; padding: 7px 8px; display: flex; align-items: center; gap: 8px; }
.quest-icon-royal { background: url('assets/royal-rooms.webp') center / cover; }
.quest-icon-grove { background: url('assets/merge-grove.webp') center / cover; }
.offer-bottom-nav { position: absolute; z-index: 5; left: 0; bottom: 0; width: 100%; height: 45px; padding: 0 26px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.06); background: rgba(18,16,31,.88); backdrop-filter: blur(14px); }
.offer-bottom-nav i { position: relative; width: 13px; height: 13px; border: 2px solid #5f5a6e; border-radius: 4px; }.offer-bottom-nav i:nth-child(2) { border-radius: 50%; }.offer-bottom-nav i:nth-child(3) { border-radius: 50% 50% 45% 45%; }.offer-bottom-nav i:nth-child(4) { border-radius: 50%; }.offer-bottom-nav i.is-active { border-color: #8b6cff; background: #8b6cff; box-shadow: 0 0 0 4px rgba(139,108,255,.08); }
.quest-toast { position: absolute; z-index: 8; right: -3%; bottom: 7%; width: 225px; padding: 13px; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 9px; color: var(--ink); border: 1px solid rgba(255,255,255,.9); border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 22px 55px rgba(29,45,95,.2); backdrop-filter: blur(14px); transform: rotate(-3deg); animation: toast-float 4s ease-in-out infinite; }
.toast-check { width: 34px; height: 34px; display: grid; place-items: center; color: #1a1530; border-radius: 10px; background: var(--lime); font-size: 14px; font-weight: 900; }
.quest-toast span, .quest-toast b { display: block; }.quest-toast span { color: #798095; font-size: 7px; font-weight: 700; }.quest-toast b { margin-top: 2px; color: #6d4aff; font-size: 15px; letter-spacing: -.03em; }.quest-toast > small { color: #9ca2b1; font-size: 6px; }
@keyframes toast-float { 50% { transform: rotate(-3deg) translateY(-8px); } }

.chip-ai { left: 2%; top: 32%; }.chip-roas { right: -1%; top: 20%; animation-delay: -2s; }.chip-roas span { color: var(--ink); background: var(--lime); font-size: 13px; }
.offer-intro-simple { padding: 58px 19px 24px; }
.offer-intro-simple h2 { margin: 0; font-size: 36px; line-height: 1; }
.quest-list-simple { padding: 0 13px 9px; gap: 10px; }
.quest-card-simple { position: relative; min-height: 92px; padding: 13px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 12px; overflow: visible; border-radius: 18px; background: rgba(255,255,255,.065); }
.quest-card-simple.quest-card-top { min-height: 124px; border-color: rgba(199,255,74,.42); background: linear-gradient(120deg, rgba(199,255,74,.09), rgba(255,255,255,.055)); }
.quest-card-simple .quest-icon { width: 54px; height: 54px; flex-basis: 54px; border-radius: 14px; box-shadow: 0 7px 18px rgba(0,0,0,.22); }
.quest-card-top .quest-icon { width: 62px; height: 62px; flex-basis: 62px; }
.quest-card-copy { min-width: 0; }
.quest-card-copy h3 { margin: 0; overflow: hidden; color: white; font-size: 14px; line-height: 1.05; letter-spacing: -.025em; text-overflow: ellipsis; white-space: nowrap; }
.quest-card-copy p { margin: 6px 0 0; overflow: hidden; color: #aaa5b7; font-size: 8px; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.quest-reward { min-width: 74px; padding: 10px 9px; color: white; border-radius: 13px; background: linear-gradient(135deg, #6f4dff, #8c64ff); text-align: center; box-shadow: 0 8px 18px rgba(104,75,255,.25); }
.quest-reward small, .quest-reward b { display: flex; align-items: center; justify-content: center; }.quest-reward small { color: white; font-size: 7px; font-weight: 900; letter-spacing: .1em; }.quest-reward b { gap: 1px; margin-top: 3px; font-size: 13px; white-space: nowrap; }.quest-reward b img { width: 18px; height: 18px; object-fit: contain; }
.simple-progress { margin-top: 9px; display: flex; align-items: center; gap: 6px; }
.simple-progress::before { content: ""; width: 62px; height: 5px; border-radius: 99px; background: linear-gradient(90deg, var(--lime) 48%, rgba(255,255,255,.1) 48%); }
.simple-progress span { color: #8e899a; font-size: 6px; }
.simple-progress i { display: none; }
.offer-more { width: calc(100% - 26px); min-height: 42px; margin: 0 13px; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; color: #171426; border: 0; border-radius: 13px; background: var(--lime); font-size: 10px; font-weight: 900; }.offer-more span { font-size: 15px; }
.progress-notification { min-width: 205px; padding: 10px 15px 10px 10px; gap: 10px; }
.progress-notification > span { width: 34px; height: 34px; flex: 0 0 34px; color: #182034; background: var(--lime); font-size: 14px; }
.progress-notification div { min-width: 0; }.progress-notification div b { display: block; color: var(--ink); font-size: 12px; line-height: 1.1; white-space: nowrap; }.progress-notification div small { margin-top: 3px; display: flex; align-items: center; gap: 2px; color: #8b6a00; font-size: 10px; font-weight: 900; }.progress-notification div img, .progress-toast small img { width: 20px; height: 20px; object-fit: contain; }
.progress-toast { width: 220px; grid-template-columns: 38px 1fr; }.progress-toast .toast-check { width: 38px; height: 38px; }.progress-toast > div:last-child span { font-size: 7px; text-transform: uppercase; letter-spacing: .06em; }.progress-toast > div:last-child b { color: var(--ink); font-size: 13px; }.progress-toast > div:last-child small { margin-top: 3px; display: flex; align-items: center; gap: 2px; color: #8b6a00; font-size: 10px; font-weight: 900; }
.orbit { position: absolute; border: 1px dashed rgba(0,142,255,.18); border-radius: 50%; }
.orbit::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(0,142,255,.1); }
.orbit-one { width: 530px; height: 530px; left: 4%; top: 7%; animation: spin 25s linear infinite; }.orbit-one::after { right: 42px; top: 84px; }
.orbit-two { width: 410px; height: 410px; left: 12%; top: 17%; animation: spin 18s linear reverse infinite; }.orbit-two::after { left: -5px; top: 50%; background: #7a6cff; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-ticker { margin-top: 65px; overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.5); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 31px; padding: 19px 0; animation: ticker 28s linear infinite; }
.ticker-track span { color: #47506d; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.ticker-track i { width: 7px; height: 7px; border-radius: 2px; background: var(--blue); transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-50%); } }

.platform-section { color: white; background: var(--ink); }
.platform-section.section-pad { padding: 90px 0; }
.platform-section .split-heading { align-items: center; }
.section-heading { margin-bottom: 46px; }
.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.kicker { display: inline-block; margin-bottom: 17px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.section-heading h2, .optimizer-copy h2, .company-head h2 { margin: 0; font-size: clamp(54px, 6.1vw, 88px); line-height: .95; letter-spacing: -.065em; }
.section-heading h2 span, .optimizer-copy h2 span, .company-head h2 span { color: var(--blue); }
.section-heading > p { max-width: 480px; margin: 0 0 4px; color: #a8afc7; font-size: 18px; line-height: 1.65; letter-spacing: -.02em; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature-card { position: relative; min-height: 455px; overflow: hidden; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; gap: 21px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: linear-gradient(155deg, #1b2347, #151b39); box-shadow: inset 0 1px 0 rgba(255,255,255,.025); transition: transform .35s var(--ease), border-color .35s; }
.feature-card:hover { border-color: rgba(0,142,255,.45); transform: translateY(-6px); }
.feature-card-large { min-height: 455px; }
.feature-index { position: absolute; z-index: 5; top: 20px; right: 22px; color: rgba(255,255,255,.32); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.feature-copy { position: relative; z-index: 3; }
.feature-copy h3 { margin: 16px 0 8px; font-size: 24px; line-height: 1.03; letter-spacing: -.045em; }
.feature-copy p { max-width: 520px; margin: 0; color: #aab2ca; font-size: 15px; line-height: 1.55; }
.icon-box { width: 38px; height: 38px; display: grid; place-items: center; color: var(--blue); border: 1px solid rgba(0,142,255,.24); border-radius: 12px; background: rgba(0,142,255,.08); }
.icon-box svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-visual { position: relative; flex: 0 0 214px; min-height: 214px; overflow: hidden; border: 1px solid rgba(255,255,255,.075); border-radius: 20px; background: rgba(8,13,34,.34); }

.task-reward-visual { padding: 14px; display: grid; align-items: center; }
.reward-task-list { display: grid; gap: 7px; }
.reward-task { min-height: 54px; padding: 8px 10px; display: grid; grid-template-columns: 32px minmax(0,1fr) auto; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.075); border-radius: 13px; background: rgba(255,255,255,.04); }
.reward-task.is-active { border-color: rgba(199,255,74,.35); background: linear-gradient(90deg, rgba(199,255,74,.08), rgba(255,255,255,.025)); }
.task-status { width: 32px; height: 32px; display: grid; place-items: center; color: #8d97b5; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; font-size: 12px; font-weight: 900; }.reward-task.is-complete .task-status { color: #111735; border-color: var(--lime); background: var(--lime); }.reward-task.is-active .task-status { color: var(--lime); border-color: rgba(199,255,74,.3); }
.reward-task div { min-width: 0; }.reward-task div b { display: block; color: #fff; font-size: 14px; line-height: 1.05; letter-spacing: -.025em; }
.reward-task strong { display: flex; align-items: center; gap: 4px; color: white; font-size: 13px; }.reward-task strong img { width: 20px; height: 20px; object-fit: contain; }

.supply-visual { display: grid; place-items: center; background: radial-gradient(circle at 50% 38%, rgba(0,142,255,.2), rgba(8,13,34,.28) 62%); }
.portfolio-stage { position: relative; width: 236px; height: 158px; transform: translateY(-8px); }
.portfolio-cover { position: absolute; top: 10px; width: 86px; height: 120px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 19px; background: linear-gradient(155deg,#26315f,#171e42); box-shadow: 0 15px 30px rgba(0,0,0,.24); }
.portfolio-cover.cover-left { left: 9px; transform: rotate(-7deg); }.portfolio-cover.cover-center { z-index: 2; left: 72px; top: 0; width: 92px; height: 130px; border-color: rgba(199,255,74,.3); background: linear-gradient(155deg,#29376d,#172044); box-shadow: 0 18px 34px rgba(0,0,0,.3); }.portfolio-cover.cover-right { right: 8px; transform: rotate(7deg); }
.rewarded-code-icon { width: 66px; height: 66px; display: block; overflow: hidden; border-radius: 18px; box-shadow: 0 11px 23px rgba(0,0,0,.27); }
.portfolio-badge { position: absolute; z-index: 4; left: 50%; bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 10px; white-space: nowrap; transform: translateX(-50%); }.portfolio-badge .google-play-mark { width: 27px; height: 30px; flex: 0 0 27px; object-fit: contain; }.portfolio-badge span strong { display: block; font-size: 16px; letter-spacing: -.025em; }

.fraud-visual { padding: 15px; display: grid; grid-template-columns: .68fr 1.32fr; align-items: center; gap: 12px; background: radial-gradient(circle at 18% 42%, rgba(0,142,255,.14), rgba(8,13,34,.28) 56%); }
.fraud-score { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px; text-align: center; }.fraud-score svg { width: 65px; height: 73px; overflow: visible; fill: rgba(0,142,255,.12); stroke: var(--blue); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 12px 22px rgba(0,142,255,.14)); }.fraud-score svg path:last-child { fill: none; stroke: var(--lime); stroke-width: 5; }
.fraud-score span { padding: 0; background: transparent; box-shadow: none; }.fraud-score strong, .fraud-score small { display: block; }.fraud-score strong { font-size: 22px; line-height: 1; }.fraud-score small { margin-top: 5px; color: #8d96b2; font-size: 8px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.fraud-checks { display: grid; gap: 8px; }.fraud-checks span { min-height: 44px; padding: 9px 10px; display: flex; align-items: center; justify-content: space-between; gap: 8px; color: #d5d9e5; border: 1px solid rgba(255,255,255,.085); border-radius: 11px; background: rgba(255,255,255,.045); font-size: 11.5px; font-weight: 750; white-space: nowrap; }.fraud-checks b { color: #31d98c; font-size: 10px; }.fraud-checks b::before { content: "✓"; margin-right: 4px; }

.optimizer-section { background: white; }
.optimizer-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: center; }
.optimizer-copy h2 span { color: var(--blue); }
.optimizer-intro { max-width: 520px; margin: 26px 0 34px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.target-tabs { border-top: 1px solid var(--line); }
.target-tab { width: 100%; padding: 21px 2px; display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 10px; color: #8d94a9; border: 0; border-bottom: 1px solid var(--line); background: none; text-align: left; cursor: pointer; transition: color .25s; }
.target-tab span { font-size: 10px; font-weight: 800; }.target-tab b { font-size: 17px; }.target-tab i { position: relative; width: 28px; height: 28px; display: block; color: currentColor; border: 1px solid var(--line); border-radius: 50%; font-size: 0; font-style: normal; transition: .25s; }.target-tab i::before, .target-tab i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 9px; height: 1.5px; border-radius: 99px; background: currentColor; transform: translate(-50%, -50%); }.target-tab i::after { transform: translate(-50%, -50%) rotate(90deg); }
.target-tab:hover, .target-tab.is-active { color: var(--ink); }.target-tab.is-active span { color: var(--blue); }.target-tab.is-active i { color: white; border-color: var(--blue); background: var(--blue); transform: rotate(45deg); }
.optimizer-demo { min-height: 610px; padding: 25px; overflow: hidden; color: white; border-radius: 35px; background: #111735; box-shadow: 0 40px 90px rgba(18,30,71,.18); }
.demo-topbar, .demo-footer { display: flex; align-items: center; justify-content: space-between; color: #8f98ba; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.demo-topbar > span { display: flex; align-items: center; gap: 8px; }.demo-topbar i { width: 7px; height: 7px; border-radius: 50%; background: #26d884; box-shadow: 0 0 0 5px rgba(38,216,132,.1); }.demo-topbar small { padding: 5px 8px; color: #30d98c; border: 1px solid rgba(48,217,140,.2); border-radius: 6px; background: rgba(48,217,140,.07); }
.demo-score { margin-top: 38px; padding: 21px; border: 1px solid rgba(255,255,255,.08); border-radius: 19px; background: rgba(255,255,255,.035); }
.demo-score > span { color: #939bb8; font-size: 10px; font-weight: 700; text-transform: uppercase; }.demo-score strong { float: right; margin-top: -11px; font-size: 34px; letter-spacing: -.05em; }.demo-score sup { color: var(--blue); font-size: 15px; }.score-line { clear: both; height: 5px; margin-top: 20px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.08); }.score-line i { display: block; width: 92%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), #6b72ff, var(--lime)); transition: width .5s var(--ease); }
.demo-content { display: grid; grid-template-columns: .7fr 1.3fr; gap: 24px; align-items: center; min-height: 390px; }
.demo-copy span { color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .13em; }.demo-copy h3 { margin: 12px 0; font-size: 28px; line-height: 1.08; letter-spacing: -.045em; }.demo-copy p { margin: 0; color: #8f97b5; font-size: 13px; line-height: 1.65; }
.data-viz { position: relative; height: 285px; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle, rgba(0,142,255,.11), transparent 64%); }
.bars { width: 88%; height: 230px; padding: 35px 12px 34px; display: flex; align-items: end; justify-content: space-between; gap: 12px; border-left: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
.bars i { position: relative; width: 22%; height: var(--h); border-radius: 8px 8px 2px 2px; background: linear-gradient(180deg, var(--blue), rgba(0,142,255,.16)); box-shadow: 0 -8px 25px rgba(0,142,255,.15); transition: height .5s var(--ease); }.bars i:nth-child(2) { background: linear-gradient(180deg, var(--lime), rgba(199,255,74,.12)); }.bars span { position: absolute; bottom: -25px; left: 50%; color: #727b9a; font-size: 7px; font-style: normal; transform: translateX(-50%); white-space: nowrap; }
.genre-cloud, .ai-orbit { display: none; }
.data-viz[data-mode="genre"] .bars, .data-viz[data-mode="ai"] .bars { display: none; }
.data-viz[data-mode="genre"] .genre-cloud { width: 100%; height: 100%; display: block; position: relative; }
.genre-cloud span { position: absolute; padding: 8px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 99px; background: rgba(255,255,255,.05); color: #aab2cd; font-size: 10px; font-weight: 700; animation: float 4s ease-in-out infinite; }.genre-cloud span:nth-child(1){left:7%;top:35%;color:var(--lime)}.genre-cloud span:nth-child(2){right:8%;top:20%;color:#8cd8ff;animation-delay:-1s}.genre-cloud span:nth-child(3){left:34%;top:4%;animation-delay:-2s}.genre-cloud span:nth-child(4){right:10%;bottom:16%;animation-delay:-3s}.genre-cloud span:nth-child(5){left:25%;bottom:10%;color:#a9a1ff;animation-delay:-1.5s}
.genre-cloud::after { content: "BEST MATCH"; position: absolute; left: 50%; top: 50%; width: 96px; height: 96px; display: grid; place-items: center; color: white; border: 1px solid var(--blue); border-radius: 50%; background: rgba(0,142,255,.15); box-shadow: 0 0 0 15px rgba(0,142,255,.04), 0 0 50px rgba(0,142,255,.2); font-size: 8px; font-weight: 900; transform: translate(-50%,-50%); }
.data-viz[data-mode="ai"] .ai-orbit { position: relative; width: 210px; height: 210px; display: grid; place-items: center; border: 1px dashed rgba(107,114,255,.35); border-radius: 50%; animation: spin 18s linear infinite; }.ai-orbit span { width: 92px; height: 92px; display: grid; place-items: center; color: white; border: 1px solid #737bff; border-radius: 50%; background: radial-gradient(circle, rgba(94,105,255,.35), rgba(0,142,255,.05)); box-shadow: 0 0 40px rgba(83,99,255,.24); font-size: 9px; font-weight: 900; animation: spin 18s linear reverse infinite; }.ai-orbit i { position: absolute; width: 15px; height: 15px; border: 3px solid #8d98ff; border-radius: 4px; background: #20294f; }.ai-orbit i:nth-of-type(1){top:-7px;left:48%}.ai-orbit i:nth-of-type(2){right:4px;top:28%}.ai-orbit i:nth-of-type(3){right:25px;bottom:12px}.ai-orbit i:nth-of-type(4){left:12px;bottom:25px}.ai-orbit i:nth-of-type(5){left:-6px;top:35%}
.demo-footer { padding: 17px 5px 0; border-top: 1px solid rgba(255,255,255,.08); }.demo-footer b { color: #35d992; font-weight: 700; }.demo-footer b i { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: #35d992; }

/* Focused targeting visual */
.optimizer-demo { min-height: 540px; padding: 38px 42px 34px; }
.demo-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.demo-heading > div:first-child > span { color: #8e98ba; font-size: 14px; font-weight: 850; letter-spacing: .08em; }
.demo-heading h3 { margin: 9px 0 0; font-size: 40px; line-height: 1; letter-spacing: -.045em; }
.demo-heading h3 strong { color: var(--lime); }
.demo-side { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.roas-chip { padding: 11px 17px; display: flex; align-items: baseline; justify-content: center; gap: 8px; color: #dce3f6; border: 1px solid rgba(199,255,74,.25); border-radius: 14px; background: rgba(199,255,74,.07); font-size: 22px; line-height: 1; font-weight: 800; letter-spacing: -.03em; }
.roas-chip strong { color: var(--lime); font-size: 22px; line-height: 1; letter-spacing: -.03em; }
.gender-legend { display: flex; gap: 19px; color: #dce2f4; font-size: 14px; font-weight: 750; }
.gender-legend[hidden] { display: none !important; }
.gender-legend span { display: flex; align-items: center; gap: 7px; }
.gender-legend i { width: 11px; height: 11px; border-radius: 3px; }
.gender-legend .is-female i { background: #755dff; }
.gender-legend .is-male i { background: var(--blue); }
.optimizer-demo .data-viz { height: 390px; margin-top: 24px; border-radius: 0; background: none; }
.demographic-chart { width: 100%; height: 100%; padding: 26px 8px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; border-bottom: 1px solid rgba(255,255,255,.14); }
.age-group { position: relative; min-width: 0; display: grid; grid-template-rows: 1fr 54px; }
.age-bars { height: 100%; display: flex; align-items: end; justify-content: center; gap: 8px; }
.age-bars i { width: min(34px, 34%); height: var(--h); border-radius: 10px 10px 2px 2px; transition: height .5s var(--ease); }
.age-bars .female { background: linear-gradient(180deg,#806cff,#4434ae); }
.age-bars .male { background: linear-gradient(180deg,#079cff,#07539f); }
.age-group b { display: grid; place-items: center; color: #b7bfd7; font-size: 16px; line-height: 1; }
.age-group.is-best::before { content: ""; position: absolute; inset: -12px 0 42px; z-index: 0; border: 1px solid rgba(199,255,74,.25); border-radius: 18px; background: rgba(199,255,74,.045); box-shadow: 0 0 38px rgba(199,255,74,.08); }
.age-group.is-best .age-bars, .age-group.is-best b { position: relative; z-index: 1; }
.age-group.is-best .female { background: linear-gradient(180deg,var(--lime),#68a941); box-shadow: 0 -12px 28px rgba(199,255,74,.25); }
.age-group.is-best b { color: var(--lime); font-size: 18px; }
.optimizer-demo .data-viz[data-mode="genre"] .demographic-chart, .optimizer-demo .data-viz[data-mode="ai"] .demographic-chart { display: none; }
.genre-chart, .intent-chart { display: none; }
.optimizer-demo .data-viz[data-mode="genre"] .genre-chart { width: 100%; display: grid; gap: 13px; }
.genre-row { min-height: 70px; padding: 11px 18px; display: grid; grid-template-columns: 110px 1fr 52px; align-items: center; gap: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: rgba(255,255,255,.035); }
.genre-row b { font-size: 18px; }.genre-row > span { height: 13px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.08); }.genre-row > span i { display: block; width: var(--w); height: 100%; border-radius: inherit; background: linear-gradient(90deg,#6659ff,#0098ff); }.genre-row > strong { color: #aeb8d2; font-size: 18px; text-align: right; }
.genre-row.is-best { border-color: rgba(199,255,74,.3); background: rgba(199,255,74,.055); }.genre-row.is-best b, .genre-row.is-best > strong { color: var(--lime); }.genre-row.is-best > span i { background: linear-gradient(90deg,#61a943,var(--lime)); box-shadow: 0 0 20px rgba(199,255,74,.2); }
.optimizer-demo .data-viz[data-mode="ai"] .intent-chart { width: 100%; height: 100%; padding: 22px 16px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-bottom: 1px solid rgba(255,255,255,.14); }
.intent-segment { position: relative; display: grid; grid-template-rows: 1fr 58px; }.intent-segment > div { display: flex; align-items: end; justify-content: center; }.intent-segment > div i { width: min(92px, 66%); height: var(--h); border-radius: 18px 18px 3px 3px; background: linear-gradient(180deg,#7064ff,#323081); }.intent-segment b { display: grid; place-items: center; color: #b7bfd7; font-size: 17px; }.intent-segment.is-best::before { content: ""; position: absolute; inset: -12px 0 45px; border: 1px solid rgba(199,255,74,.25); border-radius: 20px; background: rgba(199,255,74,.045); box-shadow: 0 0 38px rgba(199,255,74,.08); }.intent-segment.is-best > div, .intent-segment.is-best b { position: relative; z-index: 1; }.intent-segment.is-best > div i { background: linear-gradient(180deg,var(--lime),#68a941); box-shadow: 0 -12px 28px rgba(199,255,74,.25); }.intent-segment.is-best b { color: var(--lime); font-size: 20px; }
.intent-segment > div i { position: relative; display: grid; place-items: center; color: rgba(255,255,255,.82); font-size: 29px; font-style: normal; font-weight: 900; letter-spacing: -.12em; }
.intent-segment:nth-child(1) > div i::after { content: "$"; }
.intent-segment:nth-child(2) > div i::after { content: "$$"; }
.intent-segment:nth-child(3) > div i::after { content: "$$$"; }
.intent-segment.is-best > div i { color: #18223d; font-size: 34px; }
.optimizer-demo .genre-cloud span { padding: 12px 18px; font-size: 15px; }
.optimizer-demo .genre-cloud::after { width: 118px; height: 118px; font-size: 12px; }

.company-section { background: #eaf5ff; }
.company-head { margin-bottom: 58px; }.company-head h2 { max-width: 760px; }
.stats-grid { display: grid; grid-template-columns: .85fr 1.3fr .85fr; gap: 18px; }
.stat-card { position: relative; min-height: 310px; padding: 32px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius); background: rgba(255,255,255,.72); box-shadow: 0 16px 50px rgba(37,48,97,.05); }
.stat-card-wide { justify-content: flex-end; background: var(--ink); color: white; }.stat-card-wide p { color: #99a1bc; }
.stat-number { display: block; font-size: clamp(52px, 5vw, 72px); line-height: .95; font-weight: 760; letter-spacing: -.06em; }.stat-text { font-size: clamp(37px, 3vw, 49px); }
.stat-card p { margin: 11px 0 0; color: var(--muted); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.users-icon { position: absolute; top: 28px; right: 28px; display: flex; }.users-icon i { width: 32px; height: 32px; margin-left: -10px; border: 3px solid white; border-radius: 50%; background: linear-gradient(135deg,#83d6ff,#008eff); }.users-icon i:nth-child(2){background:linear-gradient(135deg,#a89bff,#5b58df)}.users-icon i:nth-child(3){background:linear-gradient(135deg,#dfff87,#9ad12c)}
.mini-globe { position: absolute; top: -74px; right: -44px; width: 258px; height: 258px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(0,142,255,.35), rgba(0,142,255,.05) 55%, transparent 56%); }.mini-globe::before, .mini-globe::after { content: ""; position: absolute; inset: 20px 65px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; }.mini-globe::after { inset: 45% 10px auto; height: 1px; border: 0; background: rgba(255,255,255,.12); }.mini-globe i { position:absolute;width:7px;height:7px;border-radius:50%;background:var(--lime);box-shadow:0 0 0 6px rgba(199,255,74,.08)}.mini-globe i:nth-child(1){left:25%;top:43%}.mini-globe i:nth-child(2){right:26%;top:32%}.mini-globe i:nth-child(3){right:30%;bottom:27%}.mini-globe span{position:absolute;left:20%;top:22%;width:60%;height:56%;border-block:1px solid rgba(255,255,255,.1);border-radius:50%}
.uk-card { color: white; background: var(--blue); }.uk-card p { color: rgba(255,255,255,.72); }.uk-flag { position: absolute; top: 28px; right: 28px; width: 56px; filter: drop-shadow(0 8px 16px rgba(0,0,0,.16)); }.uk-flag svg { width: 100%; }

.case-section { background: white; }
.case-heading { align-items: center; }.case-heading > p { color: var(--muted); }
.case-card { overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; min-height: 610px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #f2f4f8; }
.case-image-wrap { position: relative; min-height: 500px; overflow: hidden; background: white; }.case-art { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 78% center; }.case-brand-lockup { position: absolute; z-index: 3; top: 12px; right: 0; width: 52%; pointer-events: none; }.case-brand-lockup img { width: 100%; height: auto; display: block; object-fit: contain; }.case-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 78%, rgba(242,244,248,.32)); pointer-events: none; }
.case-copy { padding: 58px 56px; display: flex; flex-direction: column; justify-content: center; }
.case-label { color: var(--blue); font-size: 14px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }.case-copy h3 { margin: 17px 0 24px; font-size: clamp(37px, 3.3vw, 53px); line-height: 1.02; letter-spacing: -.055em; }.case-copy h3 span { color: var(--blue); }.case-copy blockquote { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }.case-person { width: fit-content; margin-top: 30px; padding: 10px 15px 10px 10px; display: flex; align-items: center; gap: 14px; border: 1px solid rgba(16,22,49,.08); border-radius: 20px; background: rgba(255,255,255,.7); box-shadow: 0 12px 30px rgba(16,22,49,.07); }.person-avatar { width: 62px; height: 62px; display: block; object-fit: cover; object-position: center 30%; border: 2px solid white; border-radius: 50%; background: var(--ink); box-shadow: 0 8px 20px rgba(16,22,49,.15); }.case-person strong, .case-person small { display: block; }.case-person strong { font-size: 18px; line-height: 1.2; }.case-person small { margin-top: 3px; color: var(--muted); font-size: 14px; }

.cta-section { padding: 0 0 32px; background: white; }
.cta-card { position: relative; min-height: 620px; padding: 80px 40px; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; border-radius: var(--radius-lg); background: var(--blue); text-align: center; }
.cta-grid { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(circle, black, transparent 75%); }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(2px); }.cta-orb-one { width: 320px; height: 320px; left: -120px; top: -100px; background: radial-gradient(circle at 40% 40%, #7ee9ff, transparent 65%); }.cta-orb-two { width: 430px; height: 430px; right: -190px; bottom: -180px; background: radial-gradient(circle at 40% 40%, #5c55ff, transparent 65%); }
.cta-kicker { position: relative; z-index: 2; margin-bottom: 20px; color: rgba(255,255,255,.75); font-size: 14px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }.cta-card h2 { position: relative; z-index: 2; margin: 0; font-size: clamp(66px, 8vw, 114px); line-height: .88; letter-spacing: -.075em; }.cta-card h2 span { color: var(--lime); }.cta-card p { position: relative; z-index: 2; margin: 26px 0 30px; color: rgba(255,255,255,.78); font-size: 18px; }.cta-card .button { position: relative; z-index: 2; }

.site-footer { padding: 72px 0 24px; background: white; }
.footer-top { padding-bottom: 70px; display: flex; justify-content: space-between; }.footer-brand img { width: 178px; }.footer-brand p { margin: 24px 0 0; color: var(--muted); font-size: 16px; }.footer-links { display: grid; grid-template-columns: repeat(3, minmax(120px, 1fr)); gap: 65px; }.footer-links div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }.footer-links span { margin-bottom: 6px; color: #9aa0b0; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.footer-links a, .link-button { padding: 0; color: var(--ink); border: 0; background: none; font-size: 16px; cursor: pointer; }.footer-links a:hover, .link-button:hover { color: var(--blue); }
.footer-bottom { padding-top: 20px; display: flex; align-items: center; justify-content: space-between; color: #8d94a7; border-top: 1px solid var(--line); font-size: 13px; }.footer-bottom > span, .footer-bottom > a { font-size: 13px; }.footer-uk { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; }.footer-uk svg { width: 21px; height: auto; flex: 0 0 auto; }

.contact-dialog { width: min(1050px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 0; overflow: visible; border: 0; border-radius: 34px; background: transparent; box-shadow: 0 40px 120px rgba(8,15,44,.4); }
.contact-dialog::backdrop { background: rgba(7,11,29,.7); backdrop-filter: blur(8px); }
.dialog-shell { position: relative; min-height: 650px; overflow: hidden; display: grid; grid-template-columns: .85fr 1.15fr; border-radius: 34px; background: white; }
.dialog-close { position: absolute; z-index: 4; top: 18px; right: 18px; width: 38px; height: 38px; padding: 0; display: grid; place-items: center; color: var(--ink); border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.85); cursor: pointer; }.dialog-close svg { display: block; width: 14px; height: 14px; }
.dialog-aside { padding: 42px; display: flex; flex-direction: column; justify-content: space-between; color: white; background: var(--ink); }.dialog-aside img { width: 162px; }.dialog-aside h2 { margin: 13px 0 17px; font-size: 48px; line-height: .97; letter-spacing: -.055em; }.dialog-aside p { color: #a2a9c1; font-size: 14px; line-height: 1.6; }.dialog-meta { display: flex; flex-direction: column; gap: 7px; color: #a2a9c1; font-size: 12px; }.dialog-meta span { display: inline-flex; align-items: center; gap: 8px; }.dialog-meta svg { width: 18px; height: auto; flex: 0 0 auto; }
.dialog-main { min-width: 0; padding: 56px 50px 42px; display: flex; flex-direction: column; justify-content: center; }.form-header { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; }.form-header span { width: 27px; height: 27px; display: grid; place-items: center; color: var(--blue); border: 1px solid rgba(0,142,255,.25); border-radius: 50%; font-size: 9px; font-weight: 800; }.form-header h2 { margin: 0; font-size: 38px; letter-spacing: -.05em; }
#contact-form { display: flex; flex-direction: column; gap: 19px; }.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }.dialog-main label { display: flex; flex-direction: column; gap: 7px; }.dialog-main label > span { color: #5d6479; font-size: 13px; font-weight: 700; }.dialog-main input, .dialog-main textarea, .dialog-main select { width: 100%; padding: 13px 14px; color: var(--ink); border: 1px solid #dfe2e9; border-radius: 11px; outline: 0; background: #f8f9fb; font-size: 15px; transition: border .2s, box-shadow .2s; }.dialog-main input:focus, .dialog-main textarea:focus, .dialog-main select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,142,255,.1); }.dialog-main textarea { min-height: 100px; resize: vertical; }.dialog-main select { appearance: none; -webkit-appearance: none; padding-right: 42px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%235d6479' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 12px 8px; }.dialog-main .is-invalid { border-color: #e64761; }.form-error { min-height: 0; color: #d73d56; font-size: 13px; }.form-submit { align-self: flex-start; min-width: 190px; }.form-note { max-width: 390px; color: #9298a8; font-size: 9px; line-height: 1.5; }
.form-success { margin: auto; text-align: center; }.success-icon { width: 72px; height: 72px; margin: 0 auto 22px; display: grid; place-items: center; color: white; border-radius: 50%; background: linear-gradient(145deg, #23a3ff, var(--blue)); box-shadow: 0 16px 38px rgba(0,142,255,.32), inset 0 0 0 1px rgba(255,255,255,.25); }.success-icon svg { width: 30px; height: 30px; }.form-success > span { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }.form-success h2 { margin: 14px 0; font-size: 48px; line-height: 1; letter-spacing: -.055em; }.form-success h2 span { color: var(--blue); }.form-success p { color: var(--muted); font-size: 15px; line-height: 1.6; }.form-success .button { margin-top: 20px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --wrap: min(100% - 36px, 940px); }
  .desktop-nav { gap: 20px; }
  .brand img { width: 140px; }.brand-cluster { gap: 8px; }.origin-divider { height: 30px; }.nav-origin-lockup { gap: 7px; font-size: 12px; }.nav-origin-lockup svg { width: 32px; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 20px; }.hero h1 { font-size: 70px; }.hero-stage { transform: scale(.9); transform-origin: center; }
  .optimizer-grid { gap: 45px; }.feature-grid { gap: 12px; }.feature-card { min-height: 440px; padding: 19px; }.feature-index { top: 5px; right: 19px; }.feature-card-large { min-height: 440px; }.feature-copy h3 { font-size: 21px; }.feature-visual { flex-basis: 205px; min-height: 205px; }
  .case-copy { padding: 42px 35px; }
}

@media (max-width: 820px) {
  :root { --wrap: calc(100% - 32px); --radius-lg: 32px; }
  .section-pad { padding: 86px 0; }
  .site-header { padding: 10px 0; }.nav-shell { height: 62px; padding-left: 17px; }.brand img { width: 135px; }.desktop-nav, .nav-shell > .button { display: none; }.menu-toggle { display: block; }
  .brand-cluster { gap: 10px; }.origin-divider { height: 34px; }.nav-origin-lockup { gap: 9px; font-size: 14px; }.nav-origin-lockup svg { width: 34px; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: -1; inset: 0; padding: 110px 22px 28px; display: flex; flex-direction: column; justify-content: space-between; color: white; background: rgba(16,22,49,.98); visibility: hidden; opacity: 0; transition: opacity .3s, visibility .3s; }.mobile-menu.is-open { visibility: visible; opacity: 1; }.mobile-menu nav { display: flex; flex-direction: column; }.mobile-menu nav a { padding: 18px 4px; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 30px; font-weight: 700; letter-spacing: -.04em; }.mobile-menu nav span { color: #70799d; font-size: 10px; }.mobile-menu .button { width: 100%; }
  .hero { min-height: auto; padding-top: 135px; }.hero-grid { grid-template-columns: 1fr; gap: 22px; }.hero-copy { text-align: center; }.hero h1 { margin-inline: auto; font-size: clamp(58px, 15vw, 84px); }.hero-lead { margin-inline: auto; font-size: 17px; }.hero-actions { justify-content: center; }.hero-proof { margin-inline: auto; justify-content: space-between; text-align: left; }.hero-stage { width: 600px; max-width: 100%; margin: auto; transform: scale(.92); transform-origin: top center; }.hero-ticker { margin-top: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }.section-heading > p { font-size: 16px; }.platform-section.section-pad { padding: 76px 0; }.feature-grid { grid-template-columns: 1fr; }.feature-card, .feature-card-large { min-height: 430px; }.feature-card { padding: 24px; }.feature-index { top: 8px; right: 24px; }.feature-copy h3 { font-size: 24px; }.feature-visual { flex-basis: 214px; min-height: 214px; }
  .optimizer-grid { grid-template-columns: 1fr; }.optimizer-copy { text-align: center; }.optimizer-intro { margin-inline: auto; }.target-tabs { text-align: left; }.optimizer-demo { min-height: 570px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }.stat-card-wide { grid-column: span 2; grid-row: 2; }.stat-card { min-height: 280px; }
  .case-card { grid-template-columns: 1fr; }.case-image-wrap { min-height: 420px; }.case-copy { padding: 45px; }
  .footer-top { gap: 60px; }.footer-links { gap: 28px; }
  .dialog-shell { grid-template-columns: 1fr; }.dialog-aside { display: none; }.dialog-main { padding: 50px 28px 32px; }.contact-dialog { overflow-y: auto; }
}

@media (max-width: 560px) {
  :root { --wrap: calc(100% - 24px); --radius: 22px; --radius-lg: 26px; }
  .section-pad { padding: 72px 0; }
  .nav-shell { width: calc(100% - 20px); }
  .brand img { width: 112px; }.brand-cluster { gap: 6px; }.origin-divider { height: 29px; }.nav-origin-lockup { gap: 7px; font-size: 12px; }.nav-origin-lockup svg { width: 29px; }
  .hero { padding-top: 122px; }.eyebrow { margin-bottom: 18px; font-size: 9px; }.hero h1 { font-size: 51px; }.hero-lead { margin: 22px auto 27px; font-size: 15px; }.hero-actions { flex-direction: column; gap: 18px; }.hero-actions .button { width: 100%; }.hero-proof { min-height: 66px; margin-top: 20px; padding: 11px 12px; gap: 8px; }.audience-main { gap: 8px; }.avatar-stack span { width: 28px; height: 28px; }.avatar-stack span:nth-child(4), .avatar-stack span:nth-child(5) { display: none; }.hero-proof p { font-size: 9px; }.hero-proof strong { font-size: 11px; }
  .hero-origin-badge { gap: 9px; padding: 8px 13px 8px 8px; font-size: 11px; }.hero-origin-badge svg { width: 29px; }
  .hero-stage { width: 100%; max-width: 420px; height: 560px; transform: none; }.phone { left: 50%; top: 0; width: 260px; height: 520px; border-radius: 43px; transform: translateX(-50%) rotate(4deg); }.phone-screen { border-radius: 35px; }.phone-island { top: 15px; width: 77px; height: 21px; }.app-topbar { padding: 42px 19px 10px; }.app-copy { padding: 0 19px 12px; }.app-copy h2 { font-size: 20px; }.game-art { height: 120px; }.creative-caption strong { font-size: 12px; }.more-offers { padding: 7px 14px 48px; }.app-nav { height: 42px; }.metric-card { right: -6px; bottom: 15px; width: 188px; padding: 13px; }.metric-card > strong { font-size: 22px; }.chart { height: 54px; }.floating-chip { font-size: 8px; }.floating-chip span { width: 23px; height: 23px; }.chip-ai { left: -4px; top: 15%; }.chip-roas { right: -5px; top: 30%; }.orbit-one { width: 400px; height: 400px; left: 1%; }.orbit-two { width: 320px; height: 320px; left: 12%; }
  .offer-intro { padding: 42px 15px 7px; }.offer-intro h2 { font-size: 20px; }.offer-tabs { padding: 1px 10px 5px; }.offer-tabs span { padding: 4px 6px; }.quest-list { padding: 0 9px 40px; gap: 5px; }.quest-card { border-radius: 13px; }.quest-creative { height: 86px; }.quest-featured-info { padding: 5px 6px 4px; }.quest-icon { width: 28px; height: 28px; flex-basis: 28px; border-radius: 8px; }.quest-card button { min-width: 49px; padding: 5px 6px; }.quest-goal { margin: 0 6px 6px; padding: 5px 6px; grid-template-columns: 15px 1fr 38px; }.quest-goal > i { width: 15px; height: 15px; }.quest-row { min-height: 47px; padding: 5px 6px; }.offer-bottom-nav { height: 40px; padding-inline: 22px; }.quest-toast { right: -5px; bottom: 14px; width: 179px; padding: 9px; grid-template-columns: 28px 1fr; gap: 7px; }.toast-check { width: 28px; height: 28px; }.quest-toast b { font-size: 12px; }.quest-toast > small { display: none; }.chip-ai { left: -4px; top: 24%; }.chip-roas { right: -6px; top: 34%; }
  .offer-intro-simple { padding: 48px 15px 19px; }.offer-intro-simple h2 { font-size: 29px; }.quest-list-simple { padding: 0 9px 7px; gap: 7px; }.quest-card-simple { min-height: 75px; padding: 9px; grid-template-columns: 43px 1fr auto; gap: 8px; border-radius: 14px; }.quest-card-simple.quest-card-top { min-height: 101px; }.quest-card-simple .quest-icon, .quest-card-top .quest-icon { width: 43px; height: 43px; flex-basis: 43px; border-radius: 11px; }.quest-card-top .quest-icon { width: 49px; height: 49px; }.quest-card-copy h3 { font-size: 11px; }.quest-card-copy p { margin-top: 4px; font-size: 6.5px; }.quest-reward { min-width: 58px; padding: 8px 6px; }.quest-reward small { font-size: 6px; }.quest-reward b { font-size: 10px; }.quest-reward b img { width: 15px; height: 15px; }.simple-progress { margin-top: 6px; }.simple-progress::before { width: 45px; height: 4px; }.offer-more { width: calc(100% - 18px); min-height: 35px; margin-inline: 9px; font-size: 8px; }.progress-notification { min-width: 155px; padding: 8px; }.progress-notification > span { width: 28px; height: 28px; flex-basis: 28px; }.progress-notification div b { font-size: 9px; }.progress-notification div small { font-size: 8px; }.progress-notification div img { width: 16px; height: 16px; }.progress-toast { width: 175px; grid-template-columns: 30px 1fr; }.progress-toast .toast-check { width: 30px; height: 30px; }.progress-toast > div:last-child small { font-size: 8px; }
  .section-heading { margin-bottom: 40px; }.section-heading h2, .optimizer-copy h2, .company-head h2 { font-size: 49px; }.split-heading { gap: 20px; }.section-heading > p { font-size: 15px; }
  .platform-section.section-pad { padding: 64px 0; }.feature-card, .feature-card-large { min-height: 420px; padding: 19px; }.feature-copy h3 { font-size: 22px; }.feature-copy p { font-size: 14px; }.feature-visual { flex-basis: 210px; min-height: 210px; }.reward-task { padding-inline: 8px; gap: 8px; }.reward-task div b { font-size: 13px; }.portfolio-stage { transform: translateY(-6px) scale(.94); }.fraud-visual { grid-template-columns: .65fr 1.35fr; padding: 11px; gap: 7px; }.fraud-checks span { min-height: 43px; padding-inline: 7px; font-size: 10px; }.fraud-checks b { font-size: 9px; }
  .optimizer-copy { text-align: left; }.optimizer-demo { padding: 25px 18px 22px; min-height: 455px; border-radius: 26px; }.demo-content { grid-template-columns: 1fr; align-content: center; gap: 10px; }.demo-copy { padding-top: 20px; }.optimizer-demo .data-viz { height: 305px; margin-top: 18px; }.demo-score { margin-top: 25px; }.demo-footer { margin-top: 5px; }.demo-heading { align-items: flex-start; flex-direction: column; gap: 14px; }.demo-heading h3 { font-size: 31px; }.demo-heading > div:first-child > span, .gender-legend { font-size: 12px; }.demo-side { width: 100%; flex-direction: row; align-items: center; justify-content: space-between; }.roas-chip { min-width: 108px; padding: 9px 12px; font-size: 11px; }.roas-chip strong { font-size: 18px; }.demographic-chart { padding: 18px 0 0; gap: 5px; }.age-group { grid-template-rows: 1fr 44px; }.age-bars { gap: 4px; }.age-bars i { width: min(24px, 38%); border-radius: 7px 7px 2px 2px; }.age-group b, .age-group.is-best b { font-size: 12px; }.age-group.is-best::before { inset: -8px 0 35px; border-radius: 13px; }.genre-row { min-height: 58px; padding: 9px 11px; grid-template-columns: 73px 1fr 40px; gap: 9px; border-radius: 13px; }.genre-row b, .genre-row > strong { font-size: 13px; }.genre-row > span { height: 10px; }.optimizer-demo .data-viz[data-mode="ai"] .intent-chart { padding: 18px 0 0; gap: 7px; }.intent-segment { grid-template-rows: 1fr 44px; }.intent-segment > div i { width: min(64px, 70%); border-radius: 12px 12px 3px 3px; }.intent-segment b, .intent-segment.is-best b { font-size: 13px; }.intent-segment.is-best::before { inset: -8px 0 35px; border-radius: 13px; }
  .roas-chip { min-width: 0; padding-inline: 14px; gap: 7px; font-size: 18px; }.roas-chip strong { font-size: 18px; }.intent-segment > div i { font-size: 20px; }.intent-segment.is-best > div i { font-size: 23px; }
  .stats-grid { grid-template-columns: 1fr; }.stat-card-wide { grid-column: auto; grid-row: auto; }.stat-card { min-height: 245px; }.stat-number { font-size: 56px; }.stat-text { font-size: 41px; }
  .case-image-wrap { min-height: 320px; }.case-art { object-position: 72% center; }.case-brand-lockup { top: 10px; right: 10px; width: 60%; padding: 7px 11px; border-radius: 13px; background: rgba(255,255,255,.9); box-shadow: 0 6px 16px rgba(16,22,49,.1); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }.case-brand-lockup img { width: 100%; }.case-copy { padding: 32px 24px 38px; }.case-label { font-size: 12px; }.case-copy h3 { font-size: 38px; }.case-copy blockquote { font-size: 14px; }.person-avatar { width: 56px; height: 56px; }.case-person strong { font-size: 17px; }.case-person small { font-size: 13px; }
  .cta-card { min-height: 540px; padding-inline: 20px; }.cta-card h2 { font-size: 61px; }.cta-card p { font-size: 15px; }.cta-card .button { width: 100%; }
  .site-footer { padding-top: 55px; }.footer-top { flex-direction: column; gap: 50px; }.footer-links { grid-template-columns: 1fr 1fr; gap: 35px; }.footer-bottom { flex-wrap: wrap; gap: 15px; }.footer-uk { order: 3; width: 100%; }
  .contact-dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); border-radius: 25px; }.dialog-shell { border-radius: 25px; }.dialog-main { padding: 55px 20px 25px; }.field-row { grid-template-columns: 1fr; gap: 18px; }.form-header { margin-bottom: 22px; }.form-header h2 { font-size: 33px; }.form-submit { width: 100%; }.form-success h2 { font-size: 42px; }
}

@media (max-width: 340px) {
  .brand img { width: 100px; }
  .brand-cluster { gap: 4px; }
  .origin-divider { height: 26px; }
  .nav-origin-lockup { gap: 5px; font-size: 10.5px; }
  .nav-origin-lockup svg { width: 25px; }
  .menu-toggle { width: 44px; height: 44px; }
}

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

/* Legal / privacy page */
.legal-section { padding: 190px 0 110px; background: linear-gradient(180deg, #f5f7fb, #fff 340px); }
.legal-wrap { max-width: 760px; }
.legal-kicker { color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.legal-wrap h1 { margin: 14px 0 10px; font-size: clamp(52px, 6vw, 84px); line-height: .95; letter-spacing: -.055em; }
.legal-wrap h1 span { color: var(--blue); }
.legal-updated { margin: 0 0 46px; color: var(--muted); font-size: 14px; }
.legal-body h2 { margin: 42px 0 12px; font-size: 24px; letter-spacing: -.03em; }
.legal-body p, .legal-body li { color: var(--muted); font-size: 16px; line-height: 1.75; }
.legal-body p { margin: 0 0 14px; }
.legal-body ul { margin: 0 0 14px; padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.legal-body strong { color: var(--ink); font-weight: 700; }
.legal-body a { color: var(--blue); font-weight: 700; }
.legal-body a:hover { text-decoration: underline; }
.legal-footer { padding-top: 0; }
.nav-shell > .legal-back { display: inline-flex; }
@media (max-width: 760px) {
  .legal-section { padding: 140px 0 70px; }
  .legal-back span { display: none; }
}
