/* ============================================================
   INFLUENCE MOBILE — Brand Design System
   Locked visual system per 2024 Brand Guidelines + site proposal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');

:root {
  /* ---- Brand palette (the only allowed colors) ---- */
  --red:    #E86262;   /* Indian Red  — primary accent / engine / Engage   */
  --orange: #EF8C41;   /* UT Orange   — connective tissue / eyebrows / rules */
  --cyan:   #19AAD1;   /* Pacific Cyan— platform / partner / B2B proof      */
  --mint:   #14C693;   /* Mint        — growth / compounding / what's next  */
  --ink:    #222222;   /* Eerie Black */
  --paper:  #F1F1F1;   /* Anti-flash White */
  --white:  #FFFFFF;

  --red-deep:    #d24f4f;
  --cyan-deep:   #1492b4;
  --mint-deep:   #10a87b;
  --ink-soft:    #4a4a4a;
  --ink-faint:   rgba(34,34,34,.55);
  --hair:        rgba(34,34,34,.12);
  --hair-strong: rgba(34,34,34,.22);

  /* ---- Type ---- */
  --display: 'Jost', system-ui, sans-serif;   /* geometric display — Avant Garde stand-in */
  --body:    'Poppins', system-ui, sans-serif;

  /* ---- Rhythm ---- */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 9vw, 140px);
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(34,34,34,.06);
  --shadow-md: 0 18px 50px -20px rgba(34,34,34,.28);
  --shadow-lg: 0 40px 90px -30px rgba(34,34,34,.40);
}

/* ---------------- reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--orange); color: var(--white); }

/* ---------------- layout ---------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--white { background: var(--white); }
.section--ink { background: var(--ink); color: var(--paper); }
.divider { height: 1px; background: var(--hair); border: 0; margin: 0; }

/* ---------------- typography ---------------- */
.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--orange);
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }

.display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6.2vw, 86px);
  line-height: .98;
  letter-spacing: -.022em;
  margin: 0;
  text-wrap: balance;
}
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; letter-spacing: -.02em; line-height: 1.04; margin: 0; }
.h2 { font-size: clamp(30px, 4.2vw, 56px); text-wrap: balance; }
.h3 { font-size: clamp(22px, 2.6vw, 34px); }
.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 62ch;
}
.pull-quote {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3.4vw, 40px);
  line-height: 1.32;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.tm { font-size: .55em; vertical-align: super; font-weight: 500; }
.label {
  font-weight: 600; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-faint);
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 15px 26px; border-radius: 100px; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }
.btn--red   { background: var(--red);   color: var(--white); box-shadow: 0 10px 26px -10px var(--red); }
.btn--red:hover   { background: var(--red-deep); }
.btn--cyan  { background: var(--cyan);  color: var(--white); box-shadow: 0 10px 26px -10px var(--cyan); }
.btn--cyan:hover  { background: var(--cyan-deep); }
.btn--mint  { background: var(--mint);  color: var(--white); box-shadow: 0 10px 26px -10px var(--mint); }
.btn--ink   { background: var(--ink);   color: var(--paper); }
.btn--ghost { background: transparent; border-color: var(--hair-strong); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-cyan { background: transparent; border-color: var(--cyan); color: var(--cyan-deep); }
.btn--ghost-cyan:hover { background: var(--cyan); color: var(--white); }
.btn--sm { padding: 11px 18px; font-size: 14px; }
.link-orange {
  color: var(--orange); font-weight: 600; display: inline-flex; gap: 8px; align-items: center;
  border-bottom: 1px solid transparent; transition: border-color .2s;
}
.link-orange:hover { border-color: var(--orange); }

/* ---------------- top ribbon ---------------- */
.ribbon {
  background: linear-gradient(90deg, #f06321, var(--orange) 55%, #f0a23a);
  color: var(--white);
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 10px 48px 10px 16px; text-align: center; position: relative;
}
.ribbon .rdot { opacity: .8; }
.ribbon a { font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.6); }
.ribbon a:hover { border-color: #fff; }
.ribbon__close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; color: rgba(255,255,255,.85);
  font-size: 18px; line-height: 1; padding: 4px;
}
.ribbon__close:hover { color: #fff; }
.ribbon.hidden { display: none; }

/* ---------------- nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(241,241,241,.82);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--hair);
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: 78px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; }
.brand svg { width: 44px; height: 44px; flex-shrink: 0; }
.brand__logo { height: 44px; width: auto; flex-shrink: 0; display: block; }
.brand span { line-height: 1.02; font-size: 17px; }
.brand span b { font-weight: 800; }
.brand b { font-weight: 800; }
.nav__links { display: flex; gap: 22px; margin-left: 8px; }
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  padding: 6px 0; position: relative; transition: color .18s;
}
.nav__links a:hover, .nav__links a[aria-current] { color: var(--ink); }
.nav__links a[aria-current]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--orange);
}
.nav__cta { margin-left: auto; display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand { flex-shrink: 0; }
.nav__toggle { display: none; background: transparent; border: 0; }

/* ---------------- pinwheel watermark ---------------- */
.pinwheel-mark { position: absolute; left: var(--gutter); bottom: 28px; width: 40px; height: 40px; opacity: .9; }
.spin-slow { animation: spin 16s linear infinite; transform-origin: 50% 50%; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spin-slow { animation: none; } }

/* ---------------- hero ---------------- */
.hero { padding-block: clamp(56px, 8vw, 110px) clamp(48px, 6vw, 88px); position: relative; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero__copy { max-width: 640px; }
.hero .display { font-size: clamp(54px, 8.5vw, 116px); }
.hero__us { color: var(--red); position: relative; }
.hero__sub { font-family: var(--display); font-weight: 500; font-size: clamp(20px, 2.4vw, 30px); line-height: 1.18; letter-spacing: -.01em; margin: 22px 0 0; max-width: 20ch; }
.hero__stat { font-size: clamp(16px, 1.6vw, 20px); color: var(--ink-soft); margin: 22px 0 0; max-width: 40ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__tertiary { margin-top: 20px; font-size: 14.5px; }
.hero__art { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.hero__pin { width: min(92%, 420px); filter: drop-shadow(0 30px 60px rgba(34,34,34,.18)); position: relative; z-index: 2; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(46px); opacity: .42; z-index: 1; }
.hero__blob--1 { width: 60%; height: 60%; background: var(--orange); top: -4%; right: 2%; }
.hero__blob--2 { width: 52%; height: 52%; background: var(--cyan); bottom: 0; left: 0; opacity: .3; }

.block-head { margin-bottom: clamp(34px, 4vw, 56px); max-width: 60ch; }
.block-head .h2 { margin-top: 4px; }

/* ---------------- proof bar ---------------- */
.proofbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 34px; padding: 22px var(--gutter); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
}
.proofbar span { font-weight: 600; font-size: 14px; color: var(--ink-soft); letter-spacing: .01em; display: inline-flex; align-items: center; gap: 8px; }
.proofbar .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

/* ---------------- synthesis cards ---------------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.scard {
  border-radius: var(--radius-lg); padding: clamp(28px, 3vw, 42px); color: var(--white);
  display: flex; flex-direction: column; min-height: 340px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.scard__kicker { font-weight: 700; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; opacity: .9; }
.scard__num { font-family: var(--display); font-weight: 700; font-size: 15px; opacity: .55; }
.scard__head { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 2.4vw, 34px); line-height: 1.02; margin: 14px 0 16px; letter-spacing: -.02em; }
.scard p { font-size: 16px; line-height: 1.55; margin: 0; color: rgba(255,255,255,.92); }
.scard__top { display: flex; justify-content: space-between; align-items: flex-start; }
.scard .gloss { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 80% at 100% 0, rgba(255,255,255,.18), transparent 55%); }
.scard--red  { background: var(--red); }
.scard--cyan { background: var(--cyan); }
.scard--mint { background: var(--mint); }

/* ---------------- audience routing panels ---------------- */
.routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--hair); }
.route {
  background: var(--white); padding: clamp(30px, 3vw, 48px); display: flex; flex-direction: column;
  border-right: 1px solid var(--hair); transition: background .2s; min-height: 320px; position: relative;
}
.route:last-child { border-right: 0; }
.route:hover { background: #fafafa; }
.route__tag { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.route__tag::before { content: ""; width: 11px; height: 11px; border-radius: 3px; }
.route--red .route__tag::before  { background: var(--red); }
.route--cyan .route__tag::before { background: var(--cyan); }
.route--mint .route__tag::before { background: var(--mint); }
.route h3 { font-size: 27px; margin: 18px 0 12px; }
.route p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; margin: 0 0 26px; flex: 1; }
.route .go { font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.route--red .go  { color: var(--red-deep); }
.route--cyan .go { color: var(--cyan-deep); }
.route--mint .go { color: var(--mint-deep); }

/* ---------------- stat blocks ---------------- */
.statrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 60px); }
.stat__n { font-family: var(--display); font-weight: 700; font-size: clamp(46px, 7vw, 96px); line-height: .9; letter-spacing: -.03em; }
.stat__l { font-size: 15px; color: var(--ink-soft); margin-top: 10px; max-width: 26ch; }
.stat--red .stat__n  { color: var(--red); }
.stat--cyan .stat__n { color: var(--cyan); }
.stat--mint .stat__n { color: var(--mint); }
.stat--orange .stat__n { color: var(--orange); }

/* ---------------- thesis band ---------------- */
.thesis { text-align: center; }
.thesis .pull-quote { max-width: 18ch; margin-inline: auto; }

/* ---------------- footer ---------------- */
.footer-ribbon {
  background: var(--ink); color: var(--paper);
  font-family: var(--display); font-weight: 700; letter-spacing: .04em;
  font-size: clamp(15px, 2.2vw, 30px); text-align: center;
  padding: clamp(26px, 4vw, 48px) var(--gutter); line-height: 1.25;
}
.footer-ribbon .sep { color: var(--orange); margin-inline: 8px; }
.footer {
  background: var(--ink); color: rgba(241,241,241,.7); padding: clamp(48px, 6vw, 80px) 0 40px;
  border-top: 1px solid rgba(241,241,241,.12);
}
.footer h5 { font-family: var(--body); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--paper); margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer a { font-size: 14.5px; transition: color .18s; }
.footer a:hover { color: var(--paper); }
.footer__brand { display: flex; align-items: center; gap: 11px; color: var(--paper); font-family: var(--display); font-weight: 700; font-size: 20px; }
.footer__brand svg { width: 36px; height: 36px; }
.footer__logo { height: 34px; width: auto; }
.footer__legal { margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(241,241,241,.12); font-size: 12.5px; line-height: 1.7; color: rgba(241,241,241,.5); }
.footer__legal p { margin: 0 0 10px; max-width: 100%; }

/* ---------------- footer partner badges + legal column ---------------- */
.footer__grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 40px; }
.footer__badges {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(241,241,241,.08);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  width: 100%;
}
.footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background: rgba(241,241,241,.06);
  border-radius: 10px;
  padding: 8px;
  transition: background .18s;
}
.footer__badge img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .85;
  filter: grayscale(15%);
  transition: opacity .18s, filter .18s;
}
.footer__badge:hover { background: rgba(241,241,241,.12); }
.footer__badge:hover img { opacity: 1; filter: grayscale(0%); }
@media (max-width: 920px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__badge { width: 68px; height: 68px; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__badge { width: 64px; height: 64px; }
}


/* ---------------- press: featured-in logo strip ---------------- */
.featured-in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 0;
  border-block: 1px solid var(--hair);
}
.featured-in__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  flex: 0 0 auto;
  transition: opacity .18s, filter .18s;
}
.featured-in__item img {
  max-height: 36px;
  width: auto;
  opacity: .62;
  filter: grayscale(100%);
  transition: opacity .18s, filter .18s;
}
.featured-in__item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}
@media (max-width: 720px) {
  .featured-in { gap: 22px 32px; padding: 22px 0; }
  .featured-in__item img { max-height: 28px; }
}

/* ---------------- chips / badges ---------------- */
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; background: var(--white); border: 1px solid var(--hair); }
.chip--concept { background: var(--ink); color: var(--paper); letter-spacing: .12em; text-transform: uppercase; font-size: 11px; }
.tag-pill { display:inline-block; padding: 6px 13px; border-radius: 100px; font-size: 12.5px; font-weight: 600; letter-spacing:.04em; }

/* ---------------- sub-hero (interior pages) ---------------- */
.subhero { padding-block: clamp(48px, 6vw, 96px) clamp(28px, 4vw, 56px); position: relative; overflow: hidden; }
.subhero .display { font-size: clamp(40px, 5.6vw, 76px); max-width: 16ch; }
.subhero .lead { margin-top: 24px; }
.subhero__pin { position: absolute; right: -60px; top: -40px; width: 260px; opacity: .12; }

/* ---------------- compounding vectors ---------------- */
.vectors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vector { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius-lg); padding: clamp(26px, 2.6vw, 38px); position: relative; overflow: hidden; }
.vector__bar { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; }
.vector--red .vector__bar { background: var(--red); }
.vector--cyan .vector__bar { background: var(--cyan); }
.vector--mint .vector__bar { background: var(--mint); }
.vector__n { font-family: var(--display); font-weight: 700; font-size: 40px; line-height: 1; letter-spacing: -.03em; }
.vector--red .vector__n { color: var(--red); }
.vector--cyan .vector__n { color: var(--cyan); }
.vector--mint .vector__n { color: var(--mint); }
.vector h3 { font-size: 24px; margin: 16px 0 10px; }
.vector p { font-size: 15.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* ---------------- product cards ---------------- */
.products { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.product {
  background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column; gap: 12px; transition: transform .18s, box-shadow .18s;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product__ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: #fff; }
.product__ico svg { width: 24px; height: 24px; stroke: #fff; }
.product h4 { font-size: 18px; letter-spacing: -.01em; }
.product p { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.product .more { font-size: 13px; font-weight: 600; color: var(--orange); margin-top: auto; }

/* ---------------- phone mockups ---------------- */
.phones { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.4vw, 34px); align-items: start; }
.phonewrap { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.phone {
  width: 100%; max-width: 215px; aspect-ratio: 215/440; border-radius: 34px; padding: 9px;
  background: #1a1a1a; box-shadow: var(--shadow-lg); position: relative;
}
.phone__screen { width: 100%; height: 100%; border-radius: 26px; overflow: hidden; display: flex; flex-direction: column; color: #fff; position: relative; }
.phone__notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 64px; height: 18px; background: #1a1a1a; border-radius: 0 0 12px 12px; z-index: 3; }
.phone__top { padding: 30px 18px 14px; font-size: 11px; font-weight: 600; letter-spacing: .04em; opacity: .9; display: flex; justify-content: space-between; }
.phone__brandrow { padding: 6px 18px 14px; display: flex; align-items: center; gap: 8px; }
.phone__brandrow svg { width: 22px; height: 22px; }
.phone__brandrow b { font-family: var(--display); font-weight: 700; font-size: 17px; }
.phone__balance { margin: 4px 18px 16px; background: rgba(255,255,255,.16); border-radius: 16px; padding: 14px 16px; }
.phone__balance .n { font-family: var(--display); font-weight: 700; font-size: 28px; line-height: 1; }
.phone__balance .l { font-size: 10.5px; opacity: .85; letter-spacing: .04em; text-transform: uppercase; margin-top: 4px; }
.phone__tiles { flex: 1; background: #fff; border-radius: 22px 22px 0 0; margin-top: auto; padding: 16px; display: flex; flex-direction: column; gap: 9px; }
.phone__tile { background: #f4f4f4; border-radius: 12px; height: 38px; display: flex; align-items: center; gap: 10px; padding: 0 12px; }
.phone__tile .sq { width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; }
.phone__tile .ln { height: 7px; border-radius: 4px; background: #e2e2e2; }
.phone__cta { margin: 4px 16px 16px; height: 40px; border-radius: 12px; color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 600; }
.phone--red .phone__screen { background: linear-gradient(160deg, var(--red), var(--red-deep)); }
.phone--orange .phone__screen { background: linear-gradient(160deg, var(--orange), #d9762f); }
.phone--cyan .phone__screen { background: linear-gradient(160deg, var(--cyan), var(--cyan-deep)); }
.phone--mint .phone__screen { background: linear-gradient(160deg, var(--mint), var(--mint-deep)); }
.phonewrap__meta { text-align: center; }
.phonewrap__meta h4 { font-size: 20px; }
.phonewrap__meta p { font-size: 13px; color: var(--ink-soft); margin: 5px 0 0; }

/* ---------------- roster band ---------------- */
.roster { display: flex; flex-wrap: wrap; gap: 12px; }
.roster__name {
  font-family: var(--display); font-weight: 600; font-size: clamp(18px, 2vw, 26px);
  padding: 10px 22px; border-radius: 100px; border: 1.5px solid var(--hair-strong); color: var(--ink);
  background: var(--white);
}
.roster__name:nth-child(3n+1) { border-color: var(--red); color: var(--red-deep); }
.roster__name:nth-child(3n+2) { border-color: var(--cyan); color: var(--cyan-deep); }
.roster__name:nth-child(3n+3) { border-color: var(--mint); color: var(--mint-deep); }

/* ---------------- logo grid ---------------- */
.logogrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.logogrid span {
  background: var(--white); border: 1px solid var(--hair); border-radius: 12px; padding: 16px 10px;
  text-align: center; font-weight: 600; font-size: 13px; color: var(--ink-soft); letter-spacing: .01em;
}

/* ---------------- two-col band ---------------- */
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.win-callout { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3.4vw, 44px); letter-spacing: -.02em; line-height: 1.05; }
.win-callout em { font-style: normal; color: var(--mint); }

/* ---------------- chips / badges ---------------- */

/* ---------------- perks table ---------------- */
.perks { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--hair); }
.perks th, .perks td { text-align: left; padding: 18px 24px; border-bottom: 1px solid var(--hair); vertical-align: top; }
.perks thead th { background: var(--ink); color: var(--paper); font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.perks tbody tr:last-child td { border-bottom: 0; }
.perks tbody tr:hover { background: #fafafa; }
.perks .tier { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -.02em; white-space: nowrap; }
.perks tbody tr:nth-child(1) .tier { color: var(--cyan); }
.perks tbody tr:nth-child(2) .tier { color: var(--cyan); }
.perks tbody tr:nth-child(3) .tier { color: var(--orange); }
.perks tbody tr:nth-child(4) .tier { color: var(--orange); }
.perks tbody tr:nth-child(5) .tier { color: var(--red); }
.perks tbody tr:nth-child(6) .tier { color: var(--red); }
.perks td p { margin: 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.perks .badge { display: inline-block; margin-top: 6px; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--mint-deep); }

/* ---------------- updates feed ---------------- */
.updates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.update { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.update__date { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
.update h4 { font-size: 19px; }
.update p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.update__by { margin-top: auto; font-size: 13px; color: var(--ink-faint); display: flex; align-items: center; gap: 8px; }
.update__by .av { width: 26px; height: 26px; border-radius: 50%; background: var(--mint); }

/* ---------------- invest hero stat ---------------- */
.bigstats { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 64px); }
.bigstat .n { font-family: var(--display); font-weight: 700; font-size: clamp(34px, 4vw, 56px); line-height: 1; letter-spacing: -.03em; }
.bigstat .l { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }
.bigstat:nth-child(1) .n { color: var(--mint); }
.bigstat:nth-child(2) .n { color: var(--cyan); }
.bigstat:nth-child(3) .n { color: var(--red); }

/* ---------------- accredited / soft block ---------------- */
.softblock { background: var(--white); border: 1px solid var(--hair); border-left: 5px solid var(--cyan); border-radius: var(--radius); padding: clamp(26px, 3vw, 40px); }
.softblock h3 { font-size: 26px; margin-bottom: 12px; }
.softblock p { color: var(--ink-soft); margin: 0 0 18px; max-width: 60ch; }

/* ---------------- compliance ---------------- */
.compliance { background: #e7e7e7; border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); }
.compliance p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.7; margin: 0; max-width: 100%; }
.compliance .label { display: block; margin-bottom: 10px; }

/* ---------------- entrance animation ---------------- */
/* Content is always visible (this render env does not advance animations). */
.reveal { opacity: 1; transform: none; }
body.tw-no-ribbon .ribbon { display: none; }

/* ---------------- responsive ---------------- */
@media (max-width: 1040px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--hair);
    padding: 14px var(--gutter) 22px; box-shadow: var(--shadow-md);
  }
  .nav__links.open a { padding: 10px 0; font-size: 16px; border-bottom: 1px solid var(--hair); }
  .nav__toggle { display: inline-flex; }
}
@media (max-width: 920px) {
  .cards-3, .routes, .statrow { grid-template-columns: 1fr; }
  .vectors { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .phones { grid-template-columns: repeat(2, 1fr); }
  .logogrid { grid-template-columns: repeat(3, 1fr); }
  .twocol { grid-template-columns: 1fr; }
  .updates { grid-template-columns: 1fr; }
  .bigstats { gap: 28px 40px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 360px; margin: 8px auto 0; }
  .hero__sub, .hero__stat { max-width: none; }
  .routes { border-radius: var(--radius-lg); }
  .route { border-right: 0; border-bottom: 1px solid var(--hair); }
  .route:last-child { border-bottom: 0; }
}
@media (max-width: 560px) {
  .nav__cta .btn--ghost-cyan { display: none; }
  .products { grid-template-columns: 1fr; }
  .phones { grid-template-columns: 1fr; }
  .logogrid { grid-template-columns: repeat(2, 1fr); }
  .display { font-size: clamp(30px, 8vw, 44px); line-height: 1.04; }
  .subhero .display { font-size: clamp(28px, 8vw, 42px); line-height: 1.04; max-width: 20ch; }
  .h2 { font-size: clamp(24px, 6.5vw, 34px); }
  .lead { font-size: clamp(15px, 4vw, 18px); }
  .subhero { padding-block: clamp(28px, 6vw, 44px) clamp(18px, 4vw, 28px); }
  .hero__ctas { flex-wrap: wrap; gap: 10px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .twocol { grid-template-columns: 1fr; gap: 18px; }
  .container { padding-inline: 18px; }
  .ribbon { font-size: 11.5px; gap: 8px; padding: 8px 14px; flex-wrap: wrap; justify-content: center; text-align: center; }
  .pinwheel-mark { display: none; }
  .section { padding-block: clamp(36px, 8vw, 60px); }
  .block-head .eyebrow { font-size: 11.5px; }
  .footer__legal { font-size: 11.5px; line-height: 1.55; }
}

  /* ---------------- rankings modal ---------------- */
  .rankings-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 48px);
    animation: rmFade .18s ease-out;
  }
  .rankings-modal[hidden] { display: none; }
  @keyframes rmFade {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  .rankings-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.62);
    backdrop-filter: blur(4px);
    cursor: pointer;
  }
  .rankings-modal__card {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 48px);
    max-width: 880px;
    width: 100%;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    box-shadow: 0 40px 100px -30px rgba(0,0,0,.55);
    animation: rmRise .22s ease-out;
  }
  @keyframes rmRise {
    from { transform: translateY(16px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }
  .rankings-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--paper);
    border: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    color: var(--ink);
    cursor: pointer;
    transition: background .18s;
    display: grid;
    place-items: center;
  }
  .rankings-modal__close:hover { background: var(--hair-strong); color: var(--white); }
  .rankings-modal__card h3 {
    font-family: var(--display);
    font-size: clamp(22px, 2.6vw, 30px);
    margin: 0 0 10px;
    padding-right: 40px;
  }
  .rankings-modal__card .lede {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 26px;
    max-width: 64ch;
  }
  .rankings-modal__card h4 {
    font-family: var(--display);
    font-size: 18px;
    letter-spacing: -.01em;
    color: var(--ink);
    margin: 24px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--hair);
  }
  .rankings-modal__card table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
  .rankings-modal__card th {
    text-align: left;
    font-family: var(--body);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-faint);
    padding: 10px 14px;
    border-bottom: 1px solid var(--hair-strong);
    background: transparent;
  }
  .rankings-modal__card td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--hair);
    color: var(--ink);
  }
  .rankings-modal__card tbody tr:hover td { background: rgba(34,34,34,.025); }
  .rankings-modal__card td:last-child {
    font-family: var(--display);
    font-weight: 700;
    color: var(--red);
  }
  .rankings-modal__card .footnote {
    margin: 28px 0 0;
    font-size: 12.5px;
    color: var(--ink-faint);
    line-height: 1.65;
    padding-top: 16px;
    border-top: 1px solid var(--hair);
  }
  @media (max-width: 560px) {
    .rankings-modal { padding: 12px; }
    .rankings-modal__card { padding: 24px 18px 28px; }
    .rankings-modal__card table { font-size: 13px; }
    .rankings-modal__card th, .rankings-modal__card td { padding: 8px 10px; }
  }
