/* ================= RESET & BASE ================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue-dark: #0d2b4e;
  --blue: #1565c0;
  --blue-light: #42a5f5;
  --aqua: #26c6da;
  --ink: #0b1e33;
  --text: #3a4a5e;
  --muted: #7b8ba0;
  --tint: #eaf3fb;
  --warn: #ff8f3d;
  --good: #2e9e5b;
  --bad: #e05d5d;
  --white: #ffffff;
  --radius: 18px;
  --grad: linear-gradient(135deg, var(--blue), var(--aqua));
  --shadow: 0 12px 40px rgba(13, 43, 78, 0.14);
  --max: 1120px;
  --blur: 14px;
  --header-h: 68px;
}

html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, .brand-name { font-family: "Space Grotesk", "Inter", sans-serif; }
img { max-width: 100%; display: block; }

/* SVG icon sprite + base icon */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ic { width: 1.05em; height: 1.05em; vertical-align: -0.16em; flex-shrink: 0; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
section { scroll-margin-top: var(--header-h); position: relative; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ================= PRELOADER ================= */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: linear-gradient(160deg, #0d2b4e, #0b1e33);
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; color: #fff; }
.preload-drop {
  display: inline-block;
  width: 26px; height: 34px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: var(--grad);
  animation: drop 1.1s ease-in-out infinite;
  margin-bottom: 16px;
}
.preloader p { letter-spacing: 3px; text-transform: uppercase; font-size: 12px; opacity: .8; }
@keyframes drop {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-22px) scale(.9); }
}

/* ================= SCROLL PROGRESS ================= */
.progress { position: fixed; top: 0; left: 0; z-index: 300; width: 100%; height: 3px; }
.progress-bar { height: 100%; width: 0; background: var(--grad); border-radius: 0 3px 3px 0; transition: width .1s linear; }

/* ================= CURSOR GLOW ================= */
.cursor-glow {
  position: fixed; width: 300px; height: 300px; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(38,198,218,.12), transparent 60%);
  border-radius: 50%; transform: translate(-50%,-50%);
  display: none;
}
@media (hover:hover) and (pointer:fine) { .cursor-glow { display: block; } }

/* ================= HEADER & NAV ================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 10px 16px;
  transition: padding .4s ease, background .4s ease;
}
.header-inner {
  max-width: var(--max); margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 16px;
  transition: background .4s ease, box-shadow .4s ease;
  height: 48px;
}
.header.scrolled .header-inner {
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow);
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1rem; color: #fff; transition: color .4s; white-space: nowrap; }
.header.scrolled .brand { color: var(--ink); }
.brand-mark {
  background: var(--grad);
  color: #fff; width: 34px; height: 34px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 10px; font-size: 17px;
  box-shadow: 0 6px 18px rgba(21,101,192,.4);
}
.brand-mark .ic { width: 18px; height: 18px; color: #fff; }
.brand-name b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav { display: none; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 9px 12px; font-weight: 600; font-size: .88rem;
  color: rgba(255,255,255,.9); border-radius: 10px; transition: color .3s;
  white-space: nowrap;
}
.header.scrolled .nav a { color: var(--ink); }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--grad); border-radius: 3px; transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav a.active { color: var(--blue); }
.header:not(.scrolled) .nav a.active { color: var(--aqua); }
.nav a.active::after, .nav a:hover::after { transform: scaleX(1); }
.header:not(.scrolled) .nav a:hover { color: #fff; }
.nav a.nav-cta {
  background: var(--grad); color: #fff !important; padding: 9px 15px;
  box-shadow: 0 8px 20px rgba(21,101,192,.35);
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: 10px;
}
.nav a.nav-cta .ic { width: 15px; height: 15px; }
.nav a.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(21,101,192,.45); }

/* hamburger */
.nav-toggle {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border-radius: 12px; padding: 0; align-items: center;
  backdrop-filter: blur(8px); flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.header.scrolled .nav-toggle { background: var(--tint); border-color: rgba(13,43,78,.1); }
.nav-toggle span { width: 20px; height: 2px; background: #fff; border-radius: 3px; transition: transform .35s, opacity .35s, background .3s; display: block; }
.header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: linear-gradient(160deg, #0d2b4e, #08172a);
  display: flex; align-items: flex-start; justify-content: center;
  clip-path: circle(0 at calc(100% - 42px) 42px);
  transition: clip-path .55s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
}
.mobile-menu.open { clip-path: circle(150% at calc(100% - 42px) 42px); pointer-events: all; }
.mobile-menu-inner {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: calc(var(--header-h) + 28px);
  text-align: center; width: 100%; padding: 0 24px;
}
.mobile-menu-inner a {
  color: rgba(255,255,255,.92); font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 6vw, 2rem); font-weight: 700; padding: 12px;
  opacity: 0; transform: translateY(20px); display: block;
  transition: color .2s;
}
.mobile-menu.open .mobile-menu-inner a { animation: menuIn .5s ease forwards; }
.mobile-menu.open .mobile-menu-inner a:nth-child(1){animation-delay:.12s}
.mobile-menu.open .mobile-menu-inner a:nth-child(2){animation-delay:.18s}
.mobile-menu.open .mobile-menu-inner a:nth-child(3){animation-delay:.23s}
.mobile-menu.open .mobile-menu-inner a:nth-child(4){animation-delay:.28s}
.mobile-menu.open .mobile-menu-inner a:nth-child(5){animation-delay:.33s}
.mobile-menu.open .mobile-menu-inner a:nth-child(6){animation-delay:.38s}
.mobile-menu.open .mobile-menu-inner a:nth-child(7){animation-delay:.43s}
.mobile-menu-inner a:hover { color: var(--aqua); }
.mobile-menu-inner .mobile-cta {
  margin-top: 20px; font-size: 1rem !important;
  display: inline-flex !important; align-items: center; justify-content: center; gap: 10px;
  background: var(--grad); padding: 14px 28px !important;
  border-radius: 14px; color: #fff !important; font-weight: 700;
  box-shadow: 0 10px 28px rgba(21,101,192,.4);
}
.mobile-menu-inner .mobile-cta .ic { width: 20px; height: 20px; }
@keyframes menuIn { to { opacity: 1; transform: translateY(0); } }

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, #0d2b4e 0%, #123c6b 50%, #0b1e33 100%);
  color: #fff; overflow: hidden;
  padding: calc(var(--header-h) + 28px) 20px 80px;
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; display: block; }
.hero-rings {
  position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, transparent 30%, rgba(38,198,218,.06) 31%, transparent 32%, transparent 58%, rgba(21,101,192,.1) 59%, transparent 60%);
  background-size: 60% 60%; animation: spin 40s linear infinite;
  opacity: .7;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max); margin: 0 auto;
  display: grid; gap: 40px; align-items: center;
}
.hero-text { }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 7px 14px; border-radius: 30px; margin-bottom: 18px;
  backdrop-filter: blur(6px);
}
.hero-eyebrow .ic { width: 14px; height: 14px; color: var(--aqua); }
.hero h1 {
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1.08; font-weight: 700;
  margin-bottom: 18px; letter-spacing: -.5px; color: #fff;
}
.hero-sub { font-size: 1rem; color: rgba(255,255,255,.82); max-width: 46ch; margin-bottom: 24px; line-height: 1.7; }
.hero-sub em { color: var(--aqua); font-style: italic; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.stat b { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1.7rem; color: var(--aqua); line-height: 1.1; }
.stat span { font-size: .75rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; }

/* podcast player card */
.player-card {
  position: relative;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px; padding: 14px;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  overflow: hidden;
}
.player-art { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 14px; }
.player-body { padding: 16px 4px 8px; }
.player-label { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--aqua); text-transform: uppercase; margin-bottom: 8px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--warn); flex-shrink: 0; animation: pulseAnim 1.4s infinite; }
@keyframes pulseAnim { 0%,100%{ box-shadow:0 0 0 0 rgba(255,143,61,.5);} 50%{ box-shadow:0 0 0 8px rgba(255,143,61,0);} }
.player-title { color: #fff; font-size: 1.05rem; line-height: 1.35; margin-bottom: 14px; }

/* equalizer */
.equalizer { display: flex; align-items: flex-end; gap: 3px; height: 30px; margin-bottom: 14px; }
.equalizer span { width: 4px; background: var(--grad); border-radius: 3px; height: 30%; transition: height .2s; flex-shrink: 0; }
.equalizer.playing span { animation: eq 1s ease-in-out infinite; }
.equalizer.playing span:nth-child(1){animation-delay:0s}
.equalizer.playing span:nth-child(2){animation-delay:.1s}
.equalizer.playing span:nth-child(3){animation-delay:.2s}
.equalizer.playing span:nth-child(4){animation-delay:.3s}
.equalizer.playing span:nth-child(5){animation-delay:.4s}
.equalizer.playing span:nth-child(6){animation-delay:.15s}
.equalizer.playing span:nth-child(7){animation-delay:.05s}
.equalizer.playing span:nth-child(8){animation-delay:.35s}
.equalizer.playing span:nth-child(9){animation-delay:.25s}
.equalizer.playing span:nth-child(10){animation-delay:.45s}
@keyframes eq { 0%,100%{height:20%} 50%{height:100%} }

/* player controls */
.player-controls { display: flex; align-items: center; gap: 14px; margin-bottom: 4px; }
.player-btn {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%; border: none;
  background: var(--grad); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(21,101,192,.45);
  transition: transform .2s, box-shadow .2s;
}
.player-btn:hover { transform: scale(1.07); }
.player-btn.playing { background: var(--aqua); box-shadow: 0 10px 26px rgba(38,198,218,.45); }
.player-btn .ic { width: 22px; height: 22px; }
.player-btn .ic-play { display: inline-block; }
.player-btn .ic-pause { display: none; }
.player-btn.playing .ic-play { display: none; }
.player-btn.playing .ic-pause { display: inline-block; }

.player-timeline { flex: 1; min-width: 0; }
.timeline { position: relative; height: 6px; background: rgba(255,255,255,.2); border-radius: 6px; cursor: pointer; }
.timeline:hover { background: rgba(255,255,255,.3); }
.timeline-fill { position: absolute; inset: 0; width: 0; background: var(--grad); border-radius: 6px; pointer-events: none; }
.timeline-thumb {
  position: absolute; top: 50%; left: 0; width: 14px; height: 14px; border-radius: 50%;
  background: #fff; transform: translate(-50%,-50%);
  box-shadow: 0 2px 8px rgba(0,0,0,.3); pointer-events: none;
  transition: transform .1s;
}
.timeline:hover .timeline-thumb { transform: translate(-50%,-50%) scale(1.2); }
.time { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.6); margin-top: 6px; }
.btn-download { width: 100%; margin-top: 14px; justify-content: center; }

/* hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 2; text-align: center; color: rgba(255,255,255,.55);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.35); border-radius: 12px; margin: 8px auto 0; position: relative; }
.wheel { width: 3px; height: 7px; background: var(--aqua); border-radius: 3px; position: absolute; left: 50%; top: 5px; transform: translateX(-50%); animation: wheel 1.6s infinite; }
@keyframes wheel { 0%{opacity:0;top:5px} 40%{opacity:1} 100%{opacity:0;top:20px} }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 13px; font-weight: 700; font-size: .93rem;
  border: none; transition: transform .2s, box-shadow .3s, background .3s;
  white-space: nowrap;
}
.btn:active { transform: scale(.96) !important; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 26px rgba(21,101,192,.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(21,101,192,.5); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-ghost-dark { background: rgba(13,43,78,.05); color: var(--blue); border: 1.5px solid rgba(13,43,78,.18); }
.btn-ghost-dark:hover { background: rgba(13,43,78,.1); transform: translateY(-2px); }
.btn-arrow { transition: transform .2s; display: inline-flex; }
.btn-arrow .ic { width: 17px; height: 17px; }
.btn-ghost-dark .ic, .btn-download .ic { width: 16px; height: 16px; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* ================= SECTIONS ================= */
.section { padding: 80px 24px; max-width: var(--max); margin: 0 auto; }

/*
  section-tint: keeps the .section max-width + centering intact.
  Full-width tint background is achieved via a ::before pseudo-element
  that extends beyond the constrained container using negative margins.
*/
.section-tint {
  position: relative;
  overflow: visible;
}
.section-tint::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--tint);
  z-index: -1;
}

.label {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue); background: rgba(66,165,245,.15);
  padding: 6px 14px; border-radius: 30px; margin-bottom: 16px;
}
.section h2 { font-size: clamp(1.55rem, 4.5vw, 2.3rem); color: var(--ink); line-height: 1.2; margin-bottom: 16px; font-weight: 700; }
.section h2.sub { margin-top: 44px; display: inline-flex; align-items: center; gap: 10px; }
.sub .ic { width: 24px; height: 24px; color: var(--blue); }
.lead { color: var(--muted); margin-bottom: 14px; font-size: 1rem; max-width: 62ch; line-height: 1.75; }
.section p { margin-bottom: 12px; }
.small { color: var(--muted); font-size: .9rem; }

/* ================= CARDS ================= */
.cards { display: grid; gap: 16px; margin-top: 22px; }
.card {
  position: relative; overflow: hidden;
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); border: 1px solid rgba(13,43,78,.06);
  transform-style: preserve-3d; transition: transform .2s, box-shadow .3s;
}
.card:hover { box-shadow: 0 20px 50px rgba(13,43,78,.2); }
.card-icon { font-size: 1.9rem; margin-bottom: 12px; display: inline-block; }
.card-icon .ic { width: 32px; height: 32px; color: var(--blue); }
.card h3 { color: var(--ink); margin-bottom: 8px; font-size: 1.05rem; }
.card p { color: var(--muted); font-size: .93rem; margin: 0; }
.card-glow { position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(38,198,218,.15), transparent 50%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.card:hover .card-glow { opacity: 1; }

/* ================= PROBLEM ================= */
.problem-list { margin-top: 10px; }
.problem-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(13,43,78,.08); font-weight: 500;
}
.problem-list li:last-child { border-bottom: none; }
.prob-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center; background: rgba(255,143,61,.14); }
.prob-icon .ic { width: 20px; height: 20px; color: var(--warn); }
.callout {
  margin-top: 24px; background: linear-gradient(135deg, rgba(255,143,61,.14), rgba(224,93,93,.12));
  border-left: 4px solid var(--warn); padding: 16px 18px; border-radius: 0 14px 14px 0; font-weight: 500;
  font-size: .95rem;
}

/* ================= FLOW (solution) ================= */
.flow { display: grid; gap: 16px; margin-top: 14px; }
.flow li { display: flex; gap: 16px; align-items: flex-start; }
.flow-num {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 13px;
  background: var(--grad); color: #fff; font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(21,101,192,.35);
  font-family: "Space Grotesk", sans-serif;
}
.flow b { color: var(--ink); display: block; margin-bottom: 2px; }
.flow p { color: var(--muted); font-size: .93rem; margin: 0; line-height: 1.6; }

/* alert demo */
.alert-demo {
  margin-top: 28px; border-radius: var(--radius); padding: 20px 22px;
  border: 1px solid rgba(38,198,218,.35);
}
.alert-demo p { margin-bottom: 6px; font-size: .95rem; }
.alert-demo p:last-child { margin-bottom: 0; }
.alert-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; background: var(--warn);
  color: #fff; padding: 5px 12px; border-radius: 30px; margin-bottom: 12px;
}
.alert-tag .ic { width: 13px; height: 13px; }
.glass { background: rgba(255,255,255,.93); box-shadow: var(--shadow); backdrop-filter: blur(8px); }

/* ================= PRODUCT TABS ================= */
.panel-wrapper { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.tabs {
  display: flex; gap: 5px; margin: 20px 0; background: #e4edf5;
  border-radius: 13px; padding: 5px;
}
.tab {
  flex: 1; padding: 11px 8px; border: none; background: none;
  font-weight: 700; font-size: .88rem; color: var(--muted); border-radius: 10px;
  transition: background .3s, color .3s, box-shadow .3s, transform .3s;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.tab .ic { width: 14px; height: 14px; flex-shrink: 0; }
.tab.active { background: var(--white); color: var(--blue); box-shadow: 0 4px 14px rgba(0,0,0,.1); transform: translateY(-1px); }
.tab:not(.active):hover { color: var(--blue); background: rgba(255,255,255,.5); }
.tab-panel { display: none; padding: 24px 22px; }
.tab-panel.active { display: block; animation: fadeIn .4s ease; }
.tab-panel h3 { color: var(--ink); margin-bottom: 4px; font-size: 1.1rem; }
.tab-panel .small { margin-bottom: 12px; }
.tab-panel ul li { padding: 11px 0 11px 28px; border-bottom: 1px solid rgba(13,43,78,.07); position: relative; font-size: .95rem; }
.tab-panel ul li:last-child { border-bottom: none; }
.tab-panel ul li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 800; }

/* ================= CUSTOMER SEGMENTS ================= */
.segments { display: grid; gap: 14px; margin-top: 14px; }
.segment {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border-radius: 14px; padding: 18px 20px;
  box-shadow: var(--shadow); border: 1px solid rgba(13,43,78,.05);
  transition: transform .2s, box-shadow .2s;
}
.segment:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(13,43,78,.16); }
.seg-ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 13px; background: var(--tint); display: grid; place-items: center; }
.seg-ico .ic { width: 24px; height: 24px; color: var(--blue); }
.segment b { color: var(--ink); display: block; font-size: .98rem; }
.segment span { color: var(--muted); font-size: .86rem; }

/* ================= FINANCIAL TABLE ================= */
.fin { border: 1px solid rgba(13,43,78,.1); border-radius: 14px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); margin-top: 4px; }
.fin-row {
  display: grid; grid-template-columns: 0.8fr 1.4fr 1.2fr 1fr;
  gap: 4px; padding: 14px 18px; border-bottom: 1px solid rgba(13,43,78,.07);
  text-align: center; font-size: .93rem;
}
.fin-row:last-child { border-bottom: none; }
.fin-head { background: var(--blue-dark); color: #fff; font-weight: 700; font-size: .88rem; letter-spacing: .5px; }
.fin-row span:nth-child(1) { text-align: left; font-weight: 600; }
.pos { color: var(--good); font-weight: 700; }
.neg { color: var(--bad); font-weight: 700; }

/* ================= COMPETITIVE COMPARISON ================= */
.vs { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 14px; }
.vs-old, .vs-new { border-radius: var(--radius); padding: 24px 22px; }
.vs-old { background: rgba(224,93,93,.07); border: 1.5px solid rgba(224,93,93,.18); }
.vs-new { background: var(--grad); color: #fff; box-shadow: 0 16px 40px rgba(21,101,192,.4); }
.vs h3 { margin-bottom: 14px; font-size: 1.1rem; }
.vs li { padding: 6px 0; display: flex; align-items: center; font-size: .95rem; }
.vs-ic { margin-right: 10px; display: inline-flex; flex-shrink: 0; }
.vs-ic .ic { width: 17px; height: 17px; }
.vs-old .vs-ic { color: var(--bad); }
.vs-new .vs-ic { color: rgba(255,255,255,.9); }
.vs-vs {
  width: 48px; height: 48px; margin: 4px auto;
  border-radius: 50%; background: var(--white);
  display: grid; place-items: center;
  font-weight: 800; color: var(--blue); font-size: .9rem;
  box-shadow: var(--shadow); font-family: "Space Grotesk", sans-serif;
  order: -1; /* appears between on mobile when using flex-col workaround */
}

/* ================= GROWTH PHASES ================= */
.phases { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.phase {
  background: var(--white); border-radius: 14px; padding: 18px 16px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 4px;
  border: 1px solid rgba(13,43,78,.05); transition: transform .2s, box-shadow .2s;
}
.phase:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(13,43,78,.16); }
.p-num { color: var(--aqua); font-weight: 800; font-size: .82rem; letter-spacing: 1.5px; font-family: "Space Grotesk", sans-serif; }
.phase b { color: var(--ink); display: flex; align-items: center; gap: 7px; font-size: .95rem; }
.p-flag { width: 15px; height: 15px; color: var(--aqua); flex-shrink: 0; }
.p-status { color: var(--muted); font-size: .8rem; }

/* ================= CTA ================= */
.cta { text-align: center; max-width: none; width: 100%; padding: 100px 24px; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(38,198,218,.2), transparent 60%); pointer-events: none; }
.cta-in { position: relative; max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.55rem, 5vw, 2.5rem); margin-bottom: 14px; }
.cta .lead { margin: 0 auto 30px; }
.cta .hero-actions { justify-content: center; }

/* ================= FOOTER ================= */
.footer { background: var(--blue-dark); color: rgba(255,255,255,.85); text-align: center; padding: 44px 24px; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.footer b { color: #fff; font-family: "Space Grotesk", sans-serif; font-size: 1.15rem; }
.footer p { margin-bottom: 6px; font-size: .9rem; line-height: 1.7; }
.footer .muted { color: rgba(255,255,255,.45); font-size: .78rem; margin-top: 12px; }

/* ================= BACK TO TOP ================= */
.back-top {
  position: fixed; right: 20px; bottom: 24px; width: 44px; height: 44px;
  border-radius: 50%; background: var(--grad); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(21,101,192,.4);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity .3s, visibility .3s, transform .3s;
  z-index: 90;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top .ic { width: 19px; height: 19px; }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(21,101,192,.5); }

/* ================= ANIMATIONS ================= */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* reveal base (JS adds .in) */
.reveal-item { opacity: 1; }

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* ---- Extra small: < 400px ---- */
@media (max-width: 399px) {
  .hero h1 { font-size: 1.85rem; }
  .hero-actions .btn { font-size: .88rem; padding: 12px 16px; }
  .hero-stats { gap: 20px; }
  .stat b { font-size: 1.5rem; }
  .player-btn { width: 46px; height: 46px; }
  .player-btn .ic { width: 20px; height: 20px; }
  .phases { grid-template-columns: 1fr; }
  .fin-row { padding: 12px 12px; font-size: .82rem; }
}

/* ---- Small mobile: 400–639px ---- */
@media (min-width: 400px) {
  .hero-stats { gap: 28px; }
}

/* ---- Tablet & up: ≥ 640px ---- */
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .segments { grid-template-columns: repeat(2, 1fr); }
  .phases { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Mid-tablet: ≥ 768px ---- */
@media (min-width: 768px) {
  :root { --header-h: 72px; }
  .phases { grid-template-columns: repeat(3, 1fr); }
  .vs { grid-template-columns: 1fr auto 1fr; align-items: center; }
  .vs-vs { order: 0; margin: 0; }
  .fin-row { padding: 15px 20px; }
}

/* ---- Desktop: ≥ 900px ---- */
@media (min-width: 900px) {
  :root { --header-h: 76px; }

  /* Show desktop nav, hide hamburger */
  .nav { display: flex; }
  .nav-toggle { display: none; }

  /* Hero 2-column layout */
  .hero-content { grid-template-columns: 1fr 1fr; gap: 60px; padding: 20px 0; }
  .hero { padding-top: calc(var(--header-h) + 20px); }

  /* VS section side-by-side */
  .vs { grid-template-columns: 1fr auto 1fr; align-items: center; }

  /* Revenue cards: 3+2 balanced layout */
  .cards.revenue-grid { grid-template-columns: repeat(3, 1fr); }

  /* Phases: all 5 in a row */
  .phases { grid-template-columns: repeat(5, 1fr); }

  /* Segments: 2-col */
  .segments { grid-template-columns: repeat(2, 1fr); }

  /* Section padding */
  .section { padding: 88px 32px; }
}

/* ---- Large desktop: ≥ 1200px ---- */
@media (min-width: 1200px) {
  .hero-content { gap: 80px; }
  .section { padding: 96px 40px; }
}

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
    scroll-behavior: auto;
  }
}