/* RevCall Network — global styles
   Brand: navy #002068, blue #006BFB, ink #0A1632 (sampled from the logo files). */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("../fonts/jakarta-latin.woff2") format("woff2");
}

:root {
  --navy-950: #020a22;
  --navy-900: #04123a;
  --navy-800: #061b57;
  --navy-700: #002068;
  --navy-600: #0a2f8f;
  --blue-700: #0054cc;
  --blue-600: #006bfb;
  --blue-500: #1f80ff;
  --blue-400: #4f9dff;
  --blue-100: #dbeaff;
  --blue-50: #eef5ff;
  --cyan-400: #19b5ff;
  --ink: #0a1632;
  --ink-2: #26324d;
  --muted: #56627b;
  --muted-2: #7c879d;
  --line: #e3e9f4;
  --line-2: #d3dcec;
  --bg: #ffffff;
  --bg-soft: #f5f8fe;
  --success: #0e9f6e;
  --success-bg: #e7f8f1;
  --danger: #d92d3a;
  --danger-bg: #fdecee;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(10, 22, 50, 0.06), 0 1px 3px rgba(10, 22, 50, 0.04);
  --shadow: 0 4px 10px -2px rgba(10, 22, 50, 0.06), 0 12px 32px -8px rgba(10, 22, 50, 0.1);
  --shadow-lg: 0 24px 60px -16px rgba(2, 16, 60, 0.28);
  --font-head: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1180px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-700); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); margin: 0; line-height: 1.15; letter-spacing: -0.015em; word-spacing: 0.06em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid rgba(0, 107, 251, 0.45); outline-offset: 2px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; transition: top 0.15s; }
.skip-link:focus { top: 12px; color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 20px; border-radius: 10px; border: 1px solid transparent;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: 0;
  white-space: nowrap; transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn .icon { width: 18px; height: 18px; transition: transform 0.2s ease; }
.btn:hover .icon.nudge { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn-primary { color: #fff; background: linear-gradient(180deg, #1a7bff 0%, #0062e8 100%); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 6px 16px -4px rgba(0, 107, 251, 0.55); }
.btn-primary:hover { color: #fff; background: linear-gradient(180deg, #2a86ff 0%, #0058d4 100%); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 10px 22px -6px rgba(0, 107, 251, 0.65); }
.btn-outline { color: var(--ink); background: #fff; border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.btn-outline:hover { color: var(--blue-700); border-color: var(--blue-400); }
.btn-ghost { color: #fff; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.26); backdrop-filter: blur(6px); }
.btn-ghost:hover { color: #fff; background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.45); }
.btn-white { color: var(--navy-700); background: #fff; }
.btn-white:hover { color: var(--blue-700); box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.4); }
.btn-lg { height: 54px; padding: 0 26px; font-size: 16px; border-radius: 12px; }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h); transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; border-bottom: 1px solid transparent; }
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 34px; width: auto; }
.brand .logo-dark { display: none; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 8px 14px; border-radius: 8px; font-weight: 500; font-size: 15px; color: rgba(255, 255, 255, 0.86); transition: color 0.15s, background 0.15s; }
.nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-link { font-weight: 600; font-size: 15px; color: rgba(255, 255, 255, 0.9); padding: 8px 12px; border-radius: 8px; }
.header-link:hover { color: #fff; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.08); color: #fff; align-items: center; justify-content: center; }

.site-header.is-solid, .site-header.header--light { background: rgba(255, 255, 255, 0.92); backdrop-filter: saturate(160%) blur(14px); border-bottom-color: var(--line); box-shadow: 0 1px 12px -6px rgba(10, 22, 50, 0.18); }
.is-solid .brand .logo-light, .header--light .brand .logo-light { display: none; }
.is-solid .brand .logo-dark, .header--light .brand .logo-dark { display: block; }
.is-solid .nav a, .header--light .nav a { color: var(--ink-2); }
.is-solid .nav a:hover, .header--light .nav a:hover { color: var(--blue-700); background: var(--blue-50); }
.is-solid .header-link, .header--light .header-link { color: var(--ink-2); }
.is-solid .header-link:hover, .header--light .header-link:hover { color: var(--blue-700); }
.is-solid .nav-toggle, .header--light .nav-toggle { color: var(--ink); border-color: var(--line-2); background: #fff; }

.mobile-nav { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; color: #fff; padding: calc(var(--header-h) + 72px) 0 120px;
  background:
    radial-gradient(900px 520px at 78% 38%, rgba(0, 107, 251, 0.34), transparent 62%),
    radial-gradient(700px 480px at 8% 0%, rgba(25, 181, 255, 0.16), transparent 60%),
    linear-gradient(160deg, #04123a 0%, #002068 52%, #02205f 100%);
}
.hero-ring { position: absolute; border-radius: 50%; z-index: -1; background: linear-gradient(140deg, #19b5ff 0%, #006bfb 55%, #0a3fd0 100%); -webkit-mask: radial-gradient(circle closest-side, transparent 0 63%, #000 63.4% 100%); mask: radial-gradient(circle closest-side, transparent 0 63%, #000 63.4% 100%); opacity: 0.9; }
.hero-ring.r1 { width: 560px; height: 560px; left: -350px; top: -390px; }
.hero-ring.r2 { width: 640px; height: 640px; right: -380px; bottom: -400px; opacity: 0.75; }
.hero-waves { position: absolute; left: 0; right: 0; bottom: -10px; width: 100%; height: 320px; z-index: -1; opacity: 0.55; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 10px; border-radius: 999px; font-family: var(--font-head); font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-700); background: var(--blue-50); border: 1px solid var(--blue-100); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-600); box-shadow: 0 0 0 4px rgba(0, 107, 251, 0.18); }
.on-dark .eyebrow { color: #cfe4ff; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.18); }
.on-dark .eyebrow .dot { background: #3ddc97; box-shadow: 0 0 0 4px rgba(61, 220, 151, 0.2); }
.hero h1 { color: #fff; font-size: clamp(38px, 5vw, 60px); font-weight: 800; letter-spacing: -0.022em; line-height: 1.08; margin-top: 22px; }
.grad { background: linear-gradient(90deg, #6cc6ff 0%, #2f8dff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { margin-top: 22px; font-size: clamp(17px, 1.5vw, 19px); line-height: 1.65; color: rgba(226, 236, 255, 0.86); max-width: 560px; }
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-ticks { margin-top: 30px; display: grid; grid-template-columns: repeat(2, max-content); gap: 10px 28px; font-size: 14.5px; font-weight: 500; color: rgba(226, 236, 255, 0.9); }
.hero-ticks li { display: inline-flex; align-items: center; gap: 8px; }
.hero-ticks .icon { width: 18px; height: 18px; color: #3ddc97; stroke-width: 2.6; }

/* Hero dashboard illustration */
.hero-visual { position: relative; padding: 26px 8px 0; }
.dash { position: relative; border-radius: 20px; background: rgba(255, 255, 255, 0.97); color: var(--ink); box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.4); padding: 22px; }
.dash-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dash-title { font-family: var(--font-head); font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 8px; color: var(--ink); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #12b76a; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(18, 183, 106, 0.55); } 70% { box-shadow: 0 0 0 9px rgba(18, 183, 106, 0); } 100% { box-shadow: 0 0 0 0 rgba(18, 183, 106, 0); } }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; background: var(--bg-soft); color: var(--muted); border: 1px solid var(--line); }
.dash-stats { margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dash-stat { padding: 12px 14px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line); }
.dash-stat small { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--muted-2); text-transform: uppercase; }
.dash-stat strong { display: block; margin-top: 4px; font-family: var(--font-head); font-size: 21px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.dash-chart { margin-top: 16px; height: 86px; width: 100%; }
.dash-calls { margin-top: 12px; display: grid; gap: 8px; }
.dash-calls li { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; border: 1px solid var(--line); background: #fff; font-size: 13.5px; }
.call-ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue-600); flex: none; }
.call-ico .icon { width: 17px; height: 17px; }
.call-main { min-width: 0; flex: 1; }
.call-main b { display: block; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.call-main span { color: var(--muted-2); font-size: 12.5px; }
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 999px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.badge-ok { color: #067647; background: var(--success-bg); }
.badge-live { color: var(--blue-700); background: var(--blue-50); }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 12px 16px 12px 12px; border-radius: 14px; background: #fff; color: var(--ink); box-shadow: var(--shadow-lg); font-size: 13px; animation: floaty 6s ease-in-out infinite; }
.float-card .fc-ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; background: linear-gradient(140deg, #12b76a, #0a8f57); flex: none; }
.float-card b { display: block; font-family: var(--font-head); font-size: 14.5px; letter-spacing: -0.01em; }
.float-card span { color: var(--muted); }
.float-card.fc-pay { right: -18px; bottom: 8px; }
.float-card.fc-ring { left: -34px; top: -30px; animation-delay: -3s; }
.float-card.fc-ring .fc-ico { background: linear-gradient(140deg, #19b5ff, #006bfb); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.visual-note { margin-top: 40px; text-align: left; padding-left: 6px; font-size: 12px; color: rgba(210, 225, 255, 0.55); }

/* ---------- Proof strip ---------- */
.proof { position: relative; z-index: 2; margin-top: -52px; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.proof-item { display: flex; align-items: center; gap: 14px; padding: 22px 24px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--blue-600); background: var(--blue-50); flex: none; }
.proof-item b { display: block; font-family: var(--font-head); font-size: 16px; color: var(--ink); letter-spacing: -0.01em; }
.proof-item span { font-size: 13.5px; color: var(--muted); line-height: 1.4; display: block; }

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { margin-top: 18px; font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; letter-spacing: -0.02em; }
.section-head p { margin-top: 16px; font-size: 18px; color: var(--muted); line-height: 1.65; }

/* Campaigns */
.campaigns { display: grid; grid-template-columns: 1.25fr 1fr; gap: 22px; }
.campaign-stack { display: grid; gap: 22px; }
.campaign { position: relative; display: flex; flex-direction: column; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; padding: 28px; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.campaign:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.campaign-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: var(--blue-600); background: var(--blue-50); }
.campaign-ico .icon { width: 26px; height: 26px; }
.campaign-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.campaign h3 { margin-top: 20px; font-size: 22px; font-weight: 800; }
.campaign p { margin-top: 10px; color: var(--muted); font-size: 15.5px; }
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--blue-700); background: var(--blue-50); border: 1px solid var(--blue-100); white-space: nowrap; }
.tag-live { color: #067647; background: var(--success-bg); border-color: #c4eedd; }
.tag-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #12b76a; }
.spec-list { margin-top: 22px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.spec { padding: 12px 14px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line); }
.spec small { display: block; font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; color: var(--muted-2); }
.spec b { display: block; margin-top: 3px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.campaign-foot { margin-top: auto; padding-top: 24px; }
.text-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--blue-600); background: none; border: 0; padding: 0; }
.text-link .icon { width: 17px; height: 17px; transition: transform 0.2s; }
.text-link:hover .icon { transform: translateX(3px); }
.campaign.featured { color: #fff; border: 0; padding: 34px; overflow: hidden; isolation: isolate; background: radial-gradient(520px 320px at 100% 0%, rgba(25, 181, 255, 0.35), transparent 65%), linear-gradient(155deg, #04123a 0%, #002068 60%, #0a2f8f 100%); box-shadow: var(--shadow-lg); }
.campaign.featured::after { content: ""; position: absolute; width: 360px; height: 360px; right: -190px; bottom: -200px; border-radius: 50%; z-index: -1; background: linear-gradient(140deg, #19b5ff, #006bfb); -webkit-mask: radial-gradient(circle closest-side, transparent 0 62%, #000 62.5%); mask: radial-gradient(circle closest-side, transparent 0 62%, #000 62.5%); opacity: 0.55; }
.campaign.featured h3 { color: #fff; font-size: 30px; }
.campaign.featured p { color: rgba(226, 236, 255, 0.84); font-size: 16.5px; }
.campaign.featured .campaign-ico { color: #fff; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.2); }
.campaign.featured .spec { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.14); }
.campaign.featured .spec small { color: rgba(207, 228, 255, 0.7); }
.campaign.featured .spec b { color: #fff; }
.campaign.featured .tag { color: #fff; background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.22); }
.campaign.featured .text-link { color: #fff; }
.campaigns-note { margin-top: 26px; text-align: center; font-size: 14.5px; color: var(--muted); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.step { position: relative; padding: 30px 28px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step-num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; font-family: var(--font-head); font-weight: 800; font-size: 16px; color: #fff; background: linear-gradient(140deg, #1f80ff, #0054cc); box-shadow: 0 8px 18px -6px rgba(0, 107, 251, 0.6); }
.step h3 { margin-top: 20px; font-size: 20px; font-weight: 800; }
.step p { margin-top: 10px; color: var(--muted); font-size: 15.5px; }
.step-meta { margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--blue-700); }
.step-meta .icon { width: 15px; height: 15px; }

/* Benefits */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit { padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.benefit-ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; color: var(--blue-600); background: var(--blue-50); }
.benefit-ico .icon { width: 23px; height: 23px; }
.benefit h3 { margin-top: 18px; font-size: 18.5px; font-weight: 800; }
.benefit p { margin-top: 8px; color: var(--muted); font-size: 15.5px; }

/* Payments band */
.pay { position: relative; isolation: isolate; overflow: hidden; color: #fff; background: radial-gradient(800px 420px at 85% 10%, rgba(0, 107, 251, 0.4), transparent 62%), linear-gradient(160deg, #020a22 0%, #04123a 45%, #002068 100%); }
.pay .hero-ring { opacity: 0.3; }
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pay h2 { color: #fff; font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; margin-top: 18px; }
.pay p.lead { margin-top: 18px; font-size: 18px; color: rgba(226, 236, 255, 0.84); }
.pay-points { margin-top: 28px; display: grid; gap: 16px; }
.pay-points li { display: flex; gap: 14px; align-items: flex-start; }
.pay-points .tick { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(61, 220, 151, 0.16); color: #3ddc97; flex: none; margin-top: 1px; }
.pay-points .tick .icon { width: 15px; height: 15px; stroke-width: 3; }
.pay-points b { display: block; color: #fff; font-family: var(--font-head); font-size: 16.5px; }
.pay-points span { color: rgba(214, 228, 255, 0.78); font-size: 15px; }
.cycle { border-radius: var(--radius-xl); padding: 28px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); backdrop-filter: blur(8px); }
.cycle-title { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #fff; }
.cycle-title span { font-family: var(--font-body); font-weight: 500; font-size: 13px; color: rgba(207, 228, 255, 0.7); }
.week { margin-top: 22px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.day { text-align: center; }
.day i { display: block; height: 74px; border-radius: 10px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.1); position: relative; overflow: hidden; }
.day i::after { content: ""; position: absolute; inset: auto 0 0 0; height: 50%; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, #4f9dff, #006bfb); opacity: 0.9; }
.day.h35 i::after { height: 35%; } .day.h45 i::after { height: 45%; } .day.h55 i::after { height: 55%; } .day.h65 i::after { height: 65%; } .day.h75 i::after { height: 75%; } .day.h85 i::after { height: 85%; }
.day small { display: block; margin-top: 8px; font-size: 12px; font-weight: 600; color: rgba(207, 228, 255, 0.7); }
.cycle-flow { margin-top: 24px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 10px; }
.flow-node { padding: 12px 10px; border-radius: 12px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.12); text-align: center; font-size: 13px; font-weight: 600; color: #fff; }
.flow-node.ok { background: rgba(61, 220, 151, 0.14); border-color: rgba(61, 220, 151, 0.45); color: #b9f7dc; }
.cycle-flow .icon { width: 16px; height: 16px; color: rgba(207, 228, 255, 0.6); }

/* Traffic rules */
.rules { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 1000px; margin: 0 auto; }
.rule-card { border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; padding: 30px; }
.rule-card h3 { display: flex; align-items: center; gap: 12px; font-size: 19px; font-weight: 800; }
.rule-card h3 .ico { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; }
.rule-card.yes h3 .ico { color: #067647; background: var(--success-bg); }
.rule-card.no h3 .ico { color: var(--muted); background: #eef1f7; }
.rule-list { margin-top: 20px; display: grid; gap: 14px; }
.rule-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); }
.rule-list .icon { width: 18px; height: 18px; margin-top: 3px; stroke-width: 2.6; }
.yes .rule-list .icon { color: #12b76a; }
.no .rule-list .icon { color: var(--muted-2); }
.rule-list b { color: var(--ink); font-weight: 600; }
.rules-note { max-width: 1000px; margin: 22px auto 0; padding: 18px 22px; border-radius: var(--radius); background: var(--blue-50); border: 1px solid var(--blue-100); display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.rules-note .icon { color: var(--blue-600); margin-top: 2px; }

/* Advertiser band */
.adv-band { border-radius: var(--radius-xl); border: 1px solid var(--line); background: linear-gradient(120deg, #fff 0%, #f1f6ff 100%); padding: 44px 48px; display: grid; grid-template-columns: 1.4fr auto; gap: 32px; align-items: center; box-shadow: var(--shadow-sm); }
.adv-band h2 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; margin-top: 14px; }
.adv-band p { margin-top: 12px; color: var(--muted); font-size: 16.5px; max-width: 640px; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color 0.2s, box-shadow 0.2s; }
.faq details[open] { border-color: var(--blue-100); box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { color: var(--muted-2); transition: transform 0.25s ease; }
.faq details[open] summary .icon { transform: rotate(180deg); color: var(--blue-600); }
.faq .answer { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; line-height: 1.7; }
.faq .answer p + p { margin-top: 10px; }

/* CTA band */
.cta { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius-xl); padding: 72px 48px; text-align: center; color: #fff; background: radial-gradient(640px 320px at 50% 0%, rgba(25, 181, 255, 0.35), transparent 65%), linear-gradient(160deg, #04123a 0%, #002068 55%, #0a2f8f 100%); box-shadow: var(--shadow-lg); }
.cta .hero-ring.r1 { width: 380px; height: 380px; left: -220px; top: -220px; }
.cta .hero-ring.r2 { width: 420px; height: 420px; right: -250px; bottom: -260px; }
.cta h2 { color: #fff; font-size: clamp(30px, 3.8vw, 46px); font-weight: 800; }
.cta p { margin: 16px auto 0; max-width: 560px; font-size: 18px; color: rgba(226, 236, 255, 0.85); }
.cta-actions { margin-top: 32px; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ---------- Footer ---------- */
.site-footer { margin-top: 104px; background: var(--navy-950); color: rgba(207, 222, 250, 0.72); font-size: 15px; }
.site-footer.flush { margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 48px; }
.footer-brand img { height: 34px; width: auto; }
.footer-brand p { margin-top: 18px; max-width: 340px; line-height: 1.7; }
.site-footer h4 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; font-weight: 700; }
.site-footer ul { margin-top: 18px; display: grid; gap: 11px; }
.site-footer a, .site-footer .linklike { color: rgba(207, 222, 250, 0.72); background: none; border: 0; padding: 0; font-size: 15px; text-align: left; }
.site-footer a:hover, .site-footer .linklike:hover { color: #fff; }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 26px 0 40px; display: grid; gap: 14px; font-size: 13px; color: rgba(190, 206, 238, 0.55); line-height: 1.7; }
.footer-legal .row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px; color: rgba(207, 222, 250, 0.7); font-size: 14px; }

/* ---------- Role modal ---------- */
dialog.modal { border: 0; padding: 0; border-radius: 22px; width: min(540px, calc(100vw - 32px)); background: #fff; color: var(--ink-2); box-shadow: 0 40px 100px -20px rgba(2, 10, 34, 0.55); }
dialog.modal::backdrop { background: rgba(2, 10, 34, 0.62); backdrop-filter: blur(5px); }
dialog.modal[open] { animation: modal-in 0.22s cubic-bezier(0.2, 0.8, 0.2, 1); }
@keyframes modal-in { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-body { padding: 32px; }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.modal-head h2 { font-size: 26px; font-weight: 800; }
.modal-head p { margin-top: 6px; color: var(--muted); font-size: 15.5px; }
.modal-close { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--ink); display: grid; place-items: center; flex: none; transition: background 0.15s, border-color 0.15s; }
.modal-close:hover { background: var(--bg-soft); border-color: var(--line-2); }
.role-list { margin-top: 24px; display: grid; gap: 12px; }
.role { display: flex; align-items: center; gap: 16px; padding: 18px; border-radius: 16px; border: 1px solid var(--line); background: #fff; color: inherit; transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s, background 0.18s; }
.role:hover { color: inherit; border-color: var(--blue-400); background: #fbfdff; box-shadow: 0 10px 26px -12px rgba(0, 107, 251, 0.45); transform: translateY(-1px); }
.role-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; flex: none; color: #fff; background: linear-gradient(140deg, #1f80ff, #0054cc); }
.role-ico.alt { color: var(--blue-600); background: var(--blue-50); border: 1px solid var(--blue-100); }
.role-ico .icon { width: 24px; height: 24px; }
.role-text { flex: 1; min-width: 0; }
.role-text b { display: block; font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.role-text span.desc { display: block; margin-top: 4px; font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.role > .icon { color: var(--blue-600); transition: transform 0.2s; }
.role:hover > .icon { transform: translateX(3px); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; isolation: isolate; overflow: hidden; color: #fff; padding: calc(var(--header-h) + 64px) 0 84px; background: radial-gradient(800px 460px at 80% 30%, rgba(0, 107, 251, 0.34), transparent 62%), linear-gradient(160deg, #04123a 0%, #002068 60%, #02205f 100%); }
.page-hero h1 { color: #fff; margin-top: 20px; font-size: clamp(34px, 4.6vw, 54px); font-weight: 800; letter-spacing: -0.022em; max-width: 820px; }
.page-hero p.lead { margin-top: 20px; font-size: 18.5px; max-width: 640px; color: rgba(226, 236, 255, 0.86); }

/* ---------- Legal pages ---------- */
.legal { max-width: 800px; margin: 0 auto; padding: calc(var(--header-h) + 56px) 24px 40px; }
.legal h1 { font-size: clamp(32px, 4vw, 44px); font-weight: 800; }
.legal .updated { margin-top: 10px; color: var(--muted-2); font-size: 14.5px; }
.legal h2 { margin-top: 44px; font-size: 22px; font-weight: 800; }
.legal h3 { margin-top: 26px; font-size: 17px; font-weight: 700; }
.legal p, .legal li { margin-top: 14px; color: var(--ink-2); font-size: 16px; line-height: 1.75; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal li { margin-top: 8px; }

/* 404 */
.notfound { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 40px 24px; color: #fff; background: radial-gradient(800px 460px at 50% 20%, rgba(0, 107, 251, 0.34), transparent 62%), linear-gradient(160deg, #04123a 0%, #002068 60%, #02205f 100%); }
.notfound img { height: 40px; margin: 0 auto 40px; }
.notfound h1 { color: #fff; font-size: clamp(34px, 5vw, 54px); font-weight: 800; }
.notfound p { margin: 16px auto 32px; max-width: 460px; color: rgba(226, 236, 255, 0.85); font-size: 18px; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 56px; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .campaigns { grid-template-columns: 1fr; }
  .campaign-stack { grid-template-columns: 1fr 1fr; }
  .pay-grid { grid-template-columns: 1fr; gap: 44px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero > .hero-ring.r1, .page-hero > .hero-ring.r1 { display: none; }
  .nav, .header-actions .header-link { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav { position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 12px 24px 22px; display: none; }
  .mobile-nav.open { display: block; }
  .mobile-nav a { display: block; padding: 13px 4px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
  .mobile-nav .btn { width: 100%; margin-top: 16px; }
  .steps { grid-template-columns: 1fr; }
  .rules { grid-template-columns: 1fr; }
  .adv-band { grid-template-columns: 1fr; padding: 34px 28px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 76px 0; }
  .section-head { margin-bottom: 40px; }
  .hero { padding: calc(var(--header-h) + 44px) 0 104px; }
  .hero-cta .btn { width: 100%; }
  .hero-ticks { display: flex; flex-wrap: wrap; gap: 10px 22px; }
  .header-actions .btn { height: 40px; padding: 0 14px; font-size: 14px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .campaign-stack { grid-template-columns: 1fr; }
  .campaign.featured { padding: 28px; }
  .campaign.featured h3 { font-size: 26px; }
  .spec-list { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .dash { padding: 16px; }
  .dash-stats { gap: 8px; }
  .dash-stat { padding: 10px; }
  .dash-stat strong { font-size: 17px; }
  .dash-stat small { white-space: nowrap; font-size: 10.5px; letter-spacing: 0; }
  .float-card.fc-ring { left: -6px; top: -34px; }
  .float-card.fc-pay { right: -4px; bottom: 40px; }
  .visual-note { margin-top: 72px; }
  .cycle { padding: 20px; }
  .cycle-flow { grid-template-columns: 1fr; }
  .cycle-flow .icon { transform: rotate(90deg); margin: 0 auto; }
  .cta { padding: 52px 24px; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 36px; }
  .modal-body { padding: 24px 20px; }
  .role { padding: 14px; gap: 12px; }
  .role-ico { width: 44px; height: 44px; }
  .site-footer { margin-top: 76px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

.pb-0 { padding-bottom: 0; }

/* Plus Jakarta Sans sets words tightly at heavy weights; open them up a touch wherever the heading font is used. */
.btn, .faq summary, .role-text b, .proof-item b, .text-link, .dash-title, .float-card b, .pay-points b, .cycle-title, .step-count, .eyebrow { word-spacing: 0.06em; }

.cycle-note { margin-top: 18px; font-size: 13.5px; line-height: 1.6; color: rgba(207, 228, 255, 0.78); text-align: center; }
