/* ==========================================================================
   BragIntel — shared stylesheet
   Palette: royal blue #155EEF · dark blue #12356B · fanverse blue #2878F0
            purple #6C63E8 · light blue #EFF6FF · very light #F7FAFF
   ========================================================================== */

:root {
  --blue: #155EEF;
  --blue-dark: #12356B;
  --blue-fan: #2878F0;
  --purple: #6C63E8;
  --bg-blue: #EFF6FF;
  --bg-blue-light: #F7FAFF;
  --white: #FFFFFF;
  --grey: #667085;
  --navy: #16233B;

  --line: #E3ECFB;
  --line-strong: #CFE0FA;

  --shadow-sm: 0 1px 2px rgba(18, 53, 107, .06), 0 4px 12px rgba(18, 53, 107, .05);
  --shadow-md: 0 2px 4px rgba(18, 53, 107, .05), 0 12px 32px rgba(18, 53, 107, .09);
  --shadow-lg: 0 4px 8px rgba(18, 53, 107, .05), 0 28px 64px rgba(18, 53, 107, .14);
  --shadow-blue: 0 10px 30px rgba(21, 94, 239, .28);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --wrap: 1180px;
  --gut: 24px;

  --ease: cubic-bezier(.2, .7, .2, 1);

  --accent: var(--blue);
  --accent-2: var(--purple);
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--blue-dark);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 .5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.95rem, 3.9vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.06rem; font-weight: 700; letter-spacing: -.01em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-fan); }

img, svg { max-width: 100%; }

::selection { background: rgba(21, 94, 239, .16); }

/* ---------- layout ---------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
}
.wrap-narrow { max-width: 820px; }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-blue { background: var(--bg-blue); }
.section-light { background: var(--bg-blue-light); }
.section-navy {
  background: linear-gradient(160deg, #0E2A55 0%, var(--blue-dark) 55%, #17408A 100%);
  color: #DCE8FB;
}
.section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }
.section-navy .lead { color: rgba(226, 237, 255, .82); }
.section-navy .eyebrow { color: #8FB8FF; }

.section-line { border-top: 1px solid var(--line); }

/* ---------- type helpers ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

.lead {
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  color: var(--grey);
  line-height: 1.7;
}

.head { max-width: 760px; margin-bottom: clamp(38px, 5vw, 62px); }
.head-center { margin-left: auto; margin-right: auto; text-align: center; }

.grad-text {
  background: linear-gradient(100deg, var(--blue) 0%, var(--blue-fan) 45%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.statement {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.22;
  letter-spacing: -.028em;
  color: var(--blue-dark);
}

/* cascading single-line copy blocks (the "It is the people. / The stories." rhythm) */
.cascade {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.cascade li {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  box-shadow: var(--shadow-sm);
}
.section-navy .cascade li {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .16);
  color: #EAF2FF;
  box-shadow: none;
}
.cascade-plain li {
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0 22px 0 0;
}

.stack-lines p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--blue-dark);
  margin: 0 0 .35em;
  letter-spacing: -.02em;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: .97rem;
  letter-spacing: -.01em;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(100deg, var(--blue) 0%, var(--blue-fan) 60%, var(--purple) 130%);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 38px rgba(21, 94, 239, .36); }

.btn-ghost {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-2px); }

.btn-on-dark {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px);
}
.btn-on-dark:hover { background: #fff; color: var(--blue-dark); transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--blue-dark); box-shadow: 0 12px 30px rgba(4, 20, 48, .28); }
.btn-white:hover { color: var(--blue); transform: translateY(-2px); }

.btn-sm { padding: 11px 20px; font-size: .89rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn-row-center { justify-content: center; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--accent);
}
.textlink svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(18, 53, 107, .06);
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 74px;
}

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand:hover { color: inherit; }
.brand-logo {
  display: block;
  width: 174px;
  aspect-ratio: 900 / 278;
  background: url("../img/bragintel-logo.png.png") center / contain no-repeat;
  flex: none;
}
.brand-logo-light { filter: brightness(0) invert(1); }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-fan) 55%, var(--purple) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(21, 94, 239, .3);
  flex: none;
}
.brand-mark svg { width: 21px; height: 21px; }
.brand-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: -.02em;
  color: var(--blue-dark);
  line-height: 1;
}
.brand-name span { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; list-style: none; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  padding: 9px 14px;
  border-radius: 10px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-link:hover, .nav-link.is-active { background: var(--bg-blue); color: var(--blue); }
.nav-link .chev { width: 12px; height: 12px; opacity: .6; transition: transform .25s var(--ease); }
.has-menu:hover .chev { transform: rotate(180deg); }

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 8px);
  width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  list-style: none;
  margin: 0;
}
.has-menu:hover .nav-menu, .has-menu:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-menu a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 12px;
  border-radius: 13px;
  transition: background .18s var(--ease);
}
.nav-menu a:hover { background: var(--bg-blue); }
.nav-menu .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-top: 7px;
  flex: none;
  background: var(--blue);
}
.nav-menu strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .95rem;
  color: var(--blue-dark);
  letter-spacing: -.01em;
}
.nav-menu small { display: block; font-size: .81rem; color: var(--grey); line-height: 1.45; }
.nav-menu .nav-menu-split {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.nav-cta { margin-left: 6px; }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 17px;
  height: 1.8px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.burger span + span { margin-top: 4px; }
.burger.is-open span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 14px var(--gut) 26px;
  max-height: calc(100vh - 74px);
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: var(--blue-dark);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a.sub { font-weight: 600; font-size: .95rem; color: var(--grey); padding-left: 16px; }
.mobile-nav .btn { width: 100%; margin-top: 18px; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 116px);
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(108, 99, 232, .16), transparent 62%),
    radial-gradient(900px 540px at 8% 4%, rgba(40, 120, 240, .16), transparent 60%),
    linear-gradient(180deg, var(--bg-blue-light) 0%, #fff 78%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(21, 94, 239, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(21, 94, 239, .045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(720px 520px at 50% 22%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(720px 520px at 50% 22%, #000, transparent 78%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
.hero h1 { margin-bottom: .38em; }
.hero-sub {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  color: var(--blue);
  letter-spacing: -.015em;
  margin-bottom: .85em;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
  font-size: .83rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 24px;
}
.pill b {
  background: linear-gradient(100deg, var(--blue), var(--purple));
  color: #fff;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: .74rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* full-width hero banner image */
.hero-banner {
  display: block;
  margin-top: clamp(36px, 5vw, 56px);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.hero-banner:hover { transform: translateY(-4px); box-shadow: 0 34px 76px rgba(18, 53, 107, .22); }
.hero-banner img { display: block; width: 100%; height: auto; }
@media (max-width: 640px) { .hero-banner { border-radius: var(--r-lg); } }

/* page hero (interior pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 0 clamp(50px, 6vw, 78px);
  background:
    radial-gradient(880px 460px at 82% 0%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 62%),
    radial-gradient(720px 420px at 4% 10%, color-mix(in srgb, var(--accent-2) 13%, transparent), transparent 60%),
    linear-gradient(180deg, var(--bg-blue-light), #fff);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.35rem); }
.page-hero .lead { font-size: clamp(1.08rem, 1.7vw, 1.25rem); }

.crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 20px;
}
.crumb a { color: var(--grey); }
.crumb a:hover { color: var(--accent); }
.crumb span { opacity: .5; }

/* ---------- phone mockup ---------- */

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 18px 0;
}
.phone-stage::before {
  content: "";
  position: absolute;
  width: min(430px, 92%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 26%, transparent), transparent 66%);
  filter: blur(12px);
}
.phone {
  position: relative;
  width: min(288px, 78vw);
  aspect-ratio: 9 / 18.6;
  background: linear-gradient(160deg, #16233B, #0C1730);
  border-radius: 42px;
  padding: 9px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, .1) inset;
  animation: float 7s ease-in-out infinite;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(170deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 60%, var(--blue-dark)) 48%, var(--blue-dark) 100%);
  display: flex;
  flex-direction: column;
  padding: 30px 15px 15px;
  color: #fff;
}
.phone-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 20px;
  background: #0C1730;
  border-radius: 999px;
  z-index: 3;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

.ui-top { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.ui-avatar {
  width: 28px; height: 28px; border-radius: 9px;
  background: rgba(255, 255, 255, .22);
  display: grid; place-items: center;
  font-size: .72rem; font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.ui-top div { line-height: 1.25; }
.ui-top b { display: block; font-size: .76rem; font-family: "Plus Jakarta Sans", sans-serif; }
.ui-top small { font-size: .62rem; opacity: .72; }
.ui-live {
  margin-left: auto;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .1em;
  background: #FF4D5E;
  padding: 3px 7px;
  border-radius: 999px;
}

.ui-card {
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  padding: 11px 12px;
  margin-bottom: 9px;
  backdrop-filter: blur(6px);
}
.ui-card .k {
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .72;
  font-weight: 700;
  margin-bottom: 5px;
}
.ui-card .v {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: -.01em;
}
.ui-row { display: flex; align-items: center; gap: 8px; font-size: .7rem; padding: 6px 0; }
.ui-rank {
  width: 20px; height: 20px; border-radius: 7px;
  background: rgba(255, 255, 255, .2);
  display: grid; place-items: center;
  font-size: .6rem; font-weight: 800;
  flex: none;
}
.ui-rank.gold { background: #FFC24B; color: #3B2600; }
.ui-row .pts { margin-left: auto; font-weight: 700; opacity: .9; }
.ui-bar {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  overflow: hidden;
  margin-top: 7px;
}
.ui-bar i { display: block; height: 100%; border-radius: 999px; background: #fff; }
.ui-btn {
  margin-top: auto;
  background: #fff;
  color: var(--blue-dark);
  border-radius: 13px;
  text-align: center;
  padding: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: .8rem;
}

.float-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue-dark);
  z-index: 2;
  animation: float 8s ease-in-out infinite;
}
.float-chip i {
  width: 28px; height: 28px; border-radius: 9px;
  background: var(--bg-blue);
  display: grid; place-items: center;
  color: var(--accent);
  flex: none;
}
.float-chip svg { width: 15px; height: 15px; }
.float-chip.a { top: 12%; left: -4%; animation-delay: -1.6s; }
.float-chip.b { bottom: 16%; right: -6%; animation-delay: -3.4s; }

/* ---------- cards & grids ---------- */

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
/* five items: 3 on top, 2 centred underneath */
.grid-5 { grid-template-columns: repeat(6, 1fr); }
.grid-5 > * { grid-column: span 2; }
.grid-5 > :nth-child(4) { grid-column: 2 / span 2; }
.grid-5 > :nth-child(5) { grid-column: 4 / span 2; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card h3, .card h4 { margin-bottom: .45em; }
.card p { color: var(--grey); font-size: .97rem; margin: 0; }

.ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(140deg, color-mix(in srgb, var(--accent) 15%, #fff), color-mix(in srgb, var(--accent-2) 14%, #fff));
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
}
.ico svg { width: 22px; height: 22px; }

/* platform cards */
.plat {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.plat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c1), var(--c2));
}
.plat::after {
  content: "";
  position: absolute;
  top: -70px; right: -70px;
  width: 190px; height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--c1) 18%, transparent), transparent 68%);
  transition: transform .5s var(--ease);
}
.plat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plat:hover::after { transform: scale(1.25); }
.plat > * { position: relative; z-index: 1; }
.plat .tag {
  display: inline-block;
  align-self: flex-start;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--c1);
  background: color-mix(in srgb, var(--c1) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--c1) 20%, transparent);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.plat h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .3em; }
.plat .plat-line { font-weight: 700; color: var(--c1); font-size: .98rem; margin-bottom: .7em; font-family: "Plus Jakarta Sans", sans-serif; }
.plat p { color: var(--grey); font-size: .96rem; }
.plat .textlink { margin-top: auto; padding-top: 20px; color: var(--c1); }

/* feature list */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.ticks li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .99rem;
  color: var(--navy);
}
.ticks li::before {
  content: "";
  flex: none;
  width: 20px; height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat,
    linear-gradient(140deg, var(--accent), var(--accent-2));
}
.section-navy .ticks li { color: #DCE8FB; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 16px;
  font-size: .93rem;
  font-weight: 600;
  color: var(--blue-dark);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.chip:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 40%, transparent); color: var(--accent); }

/* split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.split-media { position: relative; }

/* steps */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.step .num {
  counter-increment: step;
  width: 54px; height: 54px;
  border-radius: 17px;
  display: grid; place-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(140deg, var(--blue), var(--purple));
  box-shadow: 0 8px 20px rgba(21, 94, 239, .28);
}
.step .num::after { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.2rem; margin-bottom: .35em; }
.step p { color: var(--grey); font-size: .97rem; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-lg);
  padding: 26px;
}
.stat b {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.stat span { font-size: .93rem; color: rgba(226, 237, 255, .78); }

/* five-across value row (Connect → Grow) */
.stats-5 { grid-template-columns: repeat(5, 1fr); gap: 14px; }
.stats-5 .stat { padding: 22px; }
@media (max-width: 1080px) { .stats-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .stats-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats-5 { grid-template-columns: 1fr; } }

/* single-column stat stack */
.stats-1 { grid-template-columns: 1fr; }

/* quote / callout band */
.callout {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, #fff), color-mix(in srgb, var(--accent-2) 9%, #fff));
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 46px);
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0F2E5F 0%, var(--blue) 52%, var(--purple) 118%);
  color: #fff;
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .45;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(230, 240, 255, .88); font-size: clamp(1.02rem, 1.6vw, 1.16rem); }

/* form */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(26px, 3.5vw, 42px);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--blue-dark);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: .97rem;
  color: var(--navy);
  background: var(--bg-blue-light);
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 13px 15px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 94, 239, .13);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .84rem; color: var(--grey); margin-top: 14px; }
.form-success {
  display: none;
  background: color-mix(in srgb, var(--blue) 8%, #fff);
  border: 1px solid color-mix(in srgb, var(--blue) 25%, transparent);
  color: var(--blue-dark);
  border-radius: 15px;
  padding: 16px 18px;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 20px;
}
.form-success.is-on { display: block; }

/* contact tiles */
.contact-tile {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-tile:last-child { border-bottom: 0; }
.contact-tile .ico { margin-bottom: 0; width: 42px; height: 42px; border-radius: 13px; }
.contact-tile h4 { margin-bottom: .2em; }
.contact-tile p { color: var(--grey); font-size: .93rem; margin: 0; }

/* ---------- footer ---------- */

.site-footer {
  background: #0C1B36;
  color: rgba(206, 222, 247, .78);
  padding: clamp(52px, 6vw, 78px) 0 30px;
  font-size: .94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px 30px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.site-footer .brand-name { color: #fff; }
.site-footer .brand-name span { color: #7FAAFF; }
.footer-blurb { margin-top: 16px; max-width: 320px; line-height: 1.65; color: rgba(206, 222, 247, .68); }
.footer-tagline {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #fff;
  margin-top: 16px;
  font-size: .96rem;
  letter-spacing: -.01em;
}
.footer-col h4 {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(206, 222, 247, .78); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  padding-top: 24px;
  font-size: .86rem;
  color: rgba(206, 222, 247, .55);
}
.footer-bottom .spacer { margin-left: auto; }
.footer-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 20px;
}
.footer-brands span {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(206, 222, 247, .8);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ---------- reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone, .float-chip { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .brand-logo { width: 150px; }
  .grid-5, .grid-5 > *, .grid-5 > :nth-child(4), .grid-5 > :nth-child(5) { grid-column: auto; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .burger { display: grid; }
  .hero-grid, .page-hero-grid, .split { grid-template-columns: 1fr; }
  .hero-grid .phone-stage, .page-hero-grid .phone-stage { order: -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand-logo { width: 132px; }
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .btn-row .btn { width: 100%; }
  .float-chip { display: none; }
  .cascade li { font-size: .95rem; padding: 8px 15px; }
}

/* ==========================================================================
   Live poll demo — front-end only, illustrative. No backend, no real votes.
   ========================================================================== */

:root {
  --text: #344054;
  --demo-w: 336px;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.demo-copy h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: .5em;
}
.demo-copy .lead { color: var(--secondary, var(--grey)); }
.demo-copy .ticks { margin-top: 26px; }
.demo-copy .ticks li { color: var(--text); font-weight: 500; }

.demo-phone-stage { position: relative; display: grid; place-items: center; max-width: 100%; }
/* decorative glow — kept within the stage so it can never widen the page */
.demo-phone-stage::before {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 94, 239, .16), transparent 68%);
  filter: blur(12px);
}

.demo-phone {
  position: relative;
  width: min(var(--demo-w), 86vw);
  aspect-ratio: 9 / 18.7;
  background: linear-gradient(145deg, #3C4962 0%, #111B2E 42%, #050A14 100%);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 48px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(12, 23, 48, .12), 0 34px 70px rgba(18, 53, 107, .3), 0 0 0 1px rgba(0, 0, 0, .8) inset;
}
.demo-phone::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 105px;
  width: 3px;
  height: 42px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(#46536A, #111A2C);
  box-shadow: 0 58px 0 #18243A, 0 112px 0 #18243A;
}
.demo-phone::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 150px;
  width: 3px;
  height: 76px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(#46536A, #111A2C);
}
.demo-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 25px;
  background: #02050B;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
  z-index: 4;
}
.demo-notch::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #34456D 0 18%, #0B1734 48%, #02040A 72%);
}
.demo-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 39px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12) inset;
  display: flex;
  flex-direction: column;
}

/* phone header */
.demo-head {
  flex: none;
  padding: 43px 18px 14px;
  background: var(--bg-blue);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.demo-wordmark {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--blue-dark);
}
.demo-wordmark span { color: var(--blue); }
.demo-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--blue);
  background: rgba(21, 94, 239, .1);
  border: 1px solid rgba(21, 94, 239, .22);
  border-radius: 999px;
  padding: 4px 9px 4px 7px;
}
.demo-live i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  animation: demoPulse 1.8s ease-in-out infinite;
}
@keyframes demoPulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

/* panels */
.demo-body { position: relative; flex: 1; min-height: 0; }
.demo-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 18px 16px 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
}
.demo-panel.is-on { opacity: 1; visibility: visible; transform: none; }

/* centres the poll in the space above the pinned button */
.demo-panel-main {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.demo-sponsor {
  flex: none;
  text-align: center;
  border: 1px dashed var(--line-strong);
  background: var(--bg-blue-light);
  border-radius: 12px;
  padding: 8px 10px;
  margin-bottom: 14px;
}
.demo-kicker {
  display: block;
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 3px;
}
.demo-logo {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.demo-q {
  flex: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1.3;
  letter-spacing: -.005em;
  color: var(--blue-dark);
  margin: 0 0 14px;
}

.demo-opts { display: grid; gap: 8px; }

.demo-opt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--line-strong);
  border-radius: 13px;
  padding: 12px 13px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.demo-opt:hover { border-color: var(--blue); }
.demo-opt.is-sel { border-color: var(--blue); background: var(--bg-blue); color: var(--blue-dark); }
.demo-opt .demo-opt-t { position: relative; z-index: 1; }
.demo-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: rgba(21, 94, 239, .14);
  transition: width .9s var(--ease);
  z-index: 0;
}
.demo-opt.is-sel .demo-fill { background: rgba(21, 94, 239, .22); }
.demo-pct {
  position: relative;
  z-index: 1;
  margin-left: auto;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: .8rem;
  color: var(--blue);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.demo-panel.is-voted .demo-pct { opacity: 1; }
.demo-panel.is-voted .demo-opt { cursor: default; }
.demo-panel.is-voted .demo-opt:hover { border-color: var(--line-strong); }
.demo-panel.is-voted .demo-opt.is-sel:hover { border-color: var(--blue); }

/* look cards */
.demo-looks { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.demo-look {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: inherit;
  background: var(--white);
  border: 1.5px solid var(--line-strong);
  border-radius: 13px;
  padding: 8px;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.demo-look:hover { border-color: var(--blue); }
.demo-look.is-sel { border-color: var(--blue); background: var(--bg-blue); }
.demo-look-img {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  border-radius: 9px;
  overflow: hidden;
  background: linear-gradient(140deg, var(--bg-blue), #E2ECFC);
  color: #9DB8E8;
}
.demo-look-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.demo-look-img svg { width: 22px; height: 22px; }
.demo-look-t {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.demo-look-bar {
  display: none;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}
.demo-panel.is-voted .demo-look-bar { display: block; }
.demo-look-bar .demo-fill { position: relative; height: 100%; background: var(--blue); border-radius: 999px; }
.demo-look .demo-pct { margin-left: auto; }

/* results label + cta */
.demo-results-label {
  flex: none;
  display: none;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 14px 0 0;
  text-align: center;
}
.demo-panel.is-voted .demo-results-label { display: block; }

.demo-cta {
  flex: none;
  margin-top: 14px;
  width: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(100deg, var(--blue), var(--blue-fan));
  border: 0;
  border-radius: 13px;
  padding: 13px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(21, 94, 239, .28);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.demo-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(21, 94, 239, .34); }
.demo-panel.is-voted .demo-cta {
  background: var(--white);
  color: var(--blue);
  border: 1.5px solid var(--line-strong);
  box-shadow: none;
}
.demo-panel.needs-pick .demo-opts,
.demo-panel.needs-pick .demo-looks { animation: demoNudge .4s var(--ease); }
@keyframes demoNudge {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* bottom nav */
.demo-nav {
  flex: none;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.demo-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--grey);
  background: none;
  border: 0;
  border-radius: 999px;
  padding: 6px 9px;
  cursor: pointer;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.demo-dot i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--line-strong);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.demo-dot:hover { color: var(--blue-dark); }
.demo-dot.is-on { color: var(--blue); background: var(--bg-blue); }
.demo-dot.is-on i { background: var(--blue); transform: scale(1.25); }

.demo-note {
  text-align: center;
  font-size: .78rem;
  color: var(--grey);
  margin-top: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .demo-live i { animation: none; }
  .demo-panel { transition: none; }
  .demo-fill { transition: none; }
}

@media (max-width: 900px) {
  .demo-grid { grid-template-columns: 1fr; justify-items: center; }
  .demo-copy { justify-self: stretch; }
  .demo-phone-stage { margin-top: 8px; }
}

