/* =========================================
   Pool Ninja — Landing Page
   Brand: Pool Blue #0061e8 / Sky Blue #0061e8
   Font: Thicccboi
   ========================================= */

@font-face {
  font-family: 'Thicccboi';
  src: url('https://cdn.prod.website-files.com/672a3a2b482c04e0ee0ad65e/672a3a2b482c04e0ee0ada51_THICCCBOI-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Thicccboi';
  src: url('https://cdn.prod.website-files.com/672a3a2b482c04e0ee0ad65e/672a3a2b482c04e0ee0ada53_THICCCBOI-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Thicccboi';
  src: url('https://cdn.prod.website-files.com/672a3a2b482c04e0ee0ad65e/672a3a2b482c04e0ee0ada4f_THICCCBOI-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Thicccboi';
  src: url('https://cdn.prod.website-files.com/672a3a2b482c04e0ee0ad65e/672a3a2b482c04e0ee0ada50_THICCCBOI-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #0061e8;   /* BRIGHT primary blue — hero, h1s, CTAs */
  --blue-dk: #003c92;   /* dark blue — hover, deep accents */
  --green:   #0061e8;   /* CTAs use bright blue */
  --green-dk:#003c92;
  --green-lt:#ffffff;   /* accents on bright-blue hero — pure white */
  --accent:  #10b981;   /* emerald — micro accents, checkmarks, ties to Nevergreen */
  --accent-dk:#059669;
  /* legacy alias — HTML still references .btn-orange / .orange classes */
  --orange:  var(--green);
  --dark:    #003c92;
  --gray:    #f3f4f6;   /* light grey section bg */
  --text:    #1f2937;   /* dark grey body text */
  --muted:   #6b7280;   /* mid grey muted text */
  --white:   #ffffff;
  --radius:  10px;
  --sp-lg:   40px;
  --sp-sm:   20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Thicccboi', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── CONTAINER ─────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
@media (max-width: 600px) {
  .container { padding: 0 10px; }   /* tight 10px page-wide gutter on mobile */
}

/* ─── UTILITY ────────────────────────────── */
.orange { color: var(--orange); }
.white  { color: var(--white) !important; }
.hidden { display: none !important; }

/* ─── BUTTONS ───────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Thicccboi', sans-serif;
  font-weight: 700;
  letter-spacing: .3px;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, transform .1s, box-shadow .2s;
  border: none;
}
.btn:active { transform: translateY(1px); }

.btn-orange {
  background: var(--orange);
  color: #000;
  position: relative;
  overflow: hidden;
}
.btn-orange::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  animation: btn-shimmer 3s ease-in-out infinite;
}
.btn-orange:hover { background: var(--green-dk); box-shadow: 0 4px 18px rgba(0,97,232,.35); }
@keyframes btn-shimmer {
  0%,70% { left: -100%; }
  100%   { left: 160%; }
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-sm   { padding: 13px 20px;  font-size: .85rem; line-height: 1; }
.btn-lg   { padding: 20px 36px; font-size: 1rem;  line-height: 1; }
.btn-full { width: 100%; text-align: center; }

/* ─── NAV ────────────────────────────────── */
.announce-bar {
  width: 100%;
  background: #0061e8;
  color: #ffffff;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 7px 24px;
}
.announce-bar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}
.announce-bar a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .announce-bar { font-size: 0.78rem; padding: 7px 12px; }
  .announce-bar .announce-extra { display: none; }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: var(--blue);
  border-bottom: 1px solid var(--blue-dk);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.3px;
}
.logo-mj        { color: var(--orange); }
.logo-unlimited { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-link {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--orange); }
.nav-industry-label {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: .02em;
  white-space: nowrap;
}
.nav-divider {
  color: #e5e7eb;
  font-size: .8rem;
}

@media (max-width: 700px) {
  .nav-links { display: none; }
}

/* ─── SECTION BASE ───────────────────────── */
/* Full-width sections — content centered via .container */
.section {
  width: 100%;
  padding: var(--sp-lg) 0;
}
.bg-white { background: var(--white); }
.bg-light { background: var(--gray); }
.bg-blue  { background: var(--blue); }
.bg-dark  { background: var(--dark); }

/* ─── SUBTEXT COLORS ─────────────────────── */
/* White subtext on blue backgrounds */
.connections-tagline { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--blue); margin: 0 0 var(--sp-sm); }
.connections-sub { color: var(--muted); }
.built-by-desc { color: rgba(255,255,255,.7); }
.built-by-proof { color: var(--orange); }

/* Muted subtext on white/light backgrounds */
.gallery-sub,
.section-intro,
.tools-close,
.weeks-close,
.flight-deck-sub,
.fd-close { color: var(--muted); }

/* ─── GLOBAL SECTION CENTERING ──────────── */
.section .label,
.section .headline,
.section .section-intro,
.connections-band .label,
.connections-bottom,
.gallery-section .label,
.gallery-section .headline,
.gallery-section .gallery-sub {
  text-align: center;
}

/* ─── SHARED LABEL & HEADLINE ────────────── */
.label {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  text-align: center;
}
.label.light { color: var(--orange); }

.headline {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--blue);
  margin-bottom: var(--sp-sm);
}
.headline.white { color: var(--white); }

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: var(--sp-sm);
  line-height: 1.7;
}

/* ─── HERO ───────────────────────────────── */
.section-hero {
  width: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  padding: 20px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.62) 0%, transparent 68%);
  z-index: 0;
  pointer-events: none;
}

/* ─── HERO ROBOT ─────────────────────────── */
.hero-robot {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* fade toward the right so the centered text stays readable */
  -webkit-mask-image: linear-gradient(to right, black 40%, rgba(0,0,0,0.15) 100%);
  mask-image:         linear-gradient(to right, black 40%, rgba(0,0,0,0.15) 100%);
  opacity: 0.35;
}
.hero-robot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
  display: block;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-block;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.7);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.15);
  margin-bottom: 28px;
}

/* H1 — Largest: the name/brand anchor */
.hero-h1 {
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

/* H2 — Primary message: orange, impactful */
.hero-h2 {
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--orange);
  margin-bottom: 10px;
}

/* H3 — Supporting line: white, lighter weight */
.hero-h3 {
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}

/* Subtext — medium emphasis */
.hero-subtext {
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .2px;
  margin-bottom: 20px;
}

.hero-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--sp-lg);
  max-width: 560px;
}
.hero-body p {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.hero-industries {
  font-size: .88rem !important;
  font-weight: 600 !important;
  color: #0061e8 !important;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

@keyframes urgency-blink {
  0%, 70%, 100% { color: #0061e8; }
  80%, 90%      { color: #ef4444; }
}
.hero-urgency, .mid-cta-urgency, .cta-urgency {
  color: #0061e8;
  animation: urgency-blink 2.5s ease-in-out infinite;
}
.hero-urgency {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 20px;
}

.hero-market {
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .3px;
}

/* ─── PROBLEM ────────────────────────────── */
.section-market-tag {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 32px;
}

.problem-industry {
  margin-top: 48px;
}

.problem-industry-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.problem-stack {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 56px;
}
.problem-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  padding: 20px 18px;
  border-radius: var(--radius);
  border-top: 3px solid #e53e3e;
}
.x {
  color: #e53e3e;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.problem-item p { font-size: .82rem; color: var(--muted); line-height: 1.5; }

.problem-close {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  max-width: 760px;
}

@media (max-width: 900px) {
  .problem-stack { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .problem-stack { grid-template-columns: repeat(2, 1fr); }
}

/* ─── GUIDE / WHY MJ ─────────────────────── */
.guide-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.guide-copy {
  color: rgba(255,255,255,.8);
  font-size: .975rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.guide-copy-em {
  font-weight: 700;
  color: rgba(255,255,255,.95) !important;
}

.arrow-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.arrow-list li {
  color: rgba(255,255,255,.8);
  font-size: .925rem;
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.arrow-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.guide-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.guide-box-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.check-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  color: rgba(255,255,255,.85);
  font-size: .925rem;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ─── SEAMLESS INTEGRATION ───────────────── */
.seamless-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 680px;
  margin-bottom: 32px;
}
.seamless-body p { font-size: 1rem; color: var(--muted); line-height: 1.7; }

.seamless-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.seamless-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--gray);
  padding: 14px 18px;
  border-radius: var(--radius);
}
.chk {
  color: var(--orange);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
.seamless-close {
  font-size: .925rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ─── MID-PAGE CTA ───────────────────────── */
.mid-cta {
  width: 100%;
  background: var(--blue);
  padding: 40px 0;
}
.mid-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.mid-cta-urgency {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── HOW IT WORKS ───────────────────────── */
.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}
.step-card {
  flex: 1;
  min-width: 220px;
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,97,232,.1);
  line-height: 1;
  margin-bottom: 12px;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}
.step-body { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
}

/* ─── CAPABILITIES ───────────────────────── */
.caps-sublabel {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}
.caps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.cap-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.cap-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(0,97,232,.1);
}
.cap-icon { font-size: 1.6rem; margin-bottom: 12px; }
.cap-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 12px;
}
.cap-sub {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.cap-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cap-list li {
  font-size: .85rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.cap-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--orange);
  font-weight: 900;
}

/* ─── MJ AI ──────────────────────────────── */
.mjai-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 48px;
}
.mjai-intro p { font-size: 1rem; color: rgba(255,255,255,.8); line-height: 1.7; }

.mjai-pillars {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
}
.mjai-pillar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.mjai-pillar-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  padding-top: 60px;
}
.mjai-pillar-label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.mjai-pillar-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.mjai-pillar-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 20px;
}
.mjai-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.mjai-list li {
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.mjai-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: .8rem;
}

.mjai-engine {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 40px;
}
.mjai-engine-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.mjai-engine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.mjai-engine-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
}
.mjai-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .mjai-pillars { grid-template-columns: 1fr; }
  .mjai-pillar-divider { padding-top: 0; font-size: 1.5rem; }
}

/* ─── SOCIAL MEDIA ───────────────────────── */
.social-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.social-platform-tile {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray);
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  padding: 8px 18px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.social-platform-tile span { font-size: 1rem; }

/* ─── SLACK ──────────────────────────────── */
.slack-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.slack-channel-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.slack-channel {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: 0 8px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.slack-channel:last-child { border-bottom: none; }
.slack-hash {
  color: var(--orange);
  font-weight: 900;
  font-size: 1rem;
}
.slack-ch-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.slack-ch-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}
.slack-caps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.slack-cap {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.slack-cap-icon { font-size: 1.3rem; margin-bottom: 10px; }
.slack-cap-title {
  font-size: .975rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.slack-cap .cap-list li { color: rgba(255,255,255,.7); }
.slack-cap .cap-list li::before { color: var(--orange); }

@media (max-width: 900px) {
  .slack-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* ─── ECOMMERCE ──────────────────────────── */
.ecom-close {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  max-width: 760px;
}
.ecom-close-line {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.5;
}
.ecom-close-line:first-child { font-weight: 800; }

/* ─── DATA LAYER ─────────────────────────── */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.int-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 18px;
  border: 1px solid #e5e7eb;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color .2s;
}
.int-tile:hover { border-color: var(--blue); }
.int-icon { font-size: 1.3rem; flex-shrink: 0; }

.int-highlight {
  align-items: flex-start;
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.int-highlight strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}
.int-highlight p {
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  font-weight: 400;
  line-height: 1.5;
}

.data-quotes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 3px solid var(--orange);
  padding-left: 24px;
}
.data-quote {
  font-size: .975rem;
  font-weight: 600;
  color: var(--blue);
  font-style: italic;
}

/* ─── BENEFITS ───────────────────────────── */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}
.benefit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .975rem;
  color: var(--text);
}
.benefit-chk {
  width: 30px;
  height: 30px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ─── STAKES ─────────────────────────────── */
.stakes-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
  margin: 0 auto;
}
.stake-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.stake-row:last-child { border-bottom: none; padding-bottom: 0; }
.stake-dash {
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
}

/* ─── CTA SECTION ────────────────────────── */
.cta-section { text-align: center; }
.cta-inner { max-width: 580px; margin: 0 auto; }

.cta-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--sp-sm);
}
.cta-body p { font-size: 1rem; color: var(--muted); line-height: 1.7; }

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 16px;
}
.cta-input {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Thicccboi', sans-serif;
  font-size: .95rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  outline: none;
  transition: border-color .2s;
  color: var(--text);
}
.cta-input:focus { border-color: var(--blue); }

.cta-urgency {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 4px;
}
.cta-reassurance {
  font-size: .8rem;
  color: #e5e7eb;
  margin-top: 20px;
  font-style: italic;
}

.form-success { padding: 40px 20px; text-align: center; }
.success-icon {
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 1.5rem; color: var(--blue); margin-bottom: 8px; }
.form-success p  { color: var(--muted); font-size: .95rem; }

/* ─── FOOTER ─────────────────────────────── */
.footer { width: 100%; background: var(--blue); padding: 48px 0; text-align: center; }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
}
.footer-logo .logo-mj        { color: var(--orange); }
.footer-logo .logo-unlimited { color: rgba(255,255,255,.6); }
.footer-tag  { font-size: .875rem; color: rgba(255,255,255,.35); max-width: 500px; line-height: 1.6; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.2); }

/* ─── CONNECTIONS BAND ───────────────────── */
.connections-band {
  background: var(--white);
  padding: 48px 0;
  overflow: hidden;
}
.connections-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--blue);
  margin-bottom: var(--sp-sm);
  text-align: center;
}
.connections-top {
  margin-bottom: 32px;
}
.ticker-outer {
  overflow: hidden;
  width: 100%;
  margin-bottom: 32px;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 84s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  padding: 10px 28px;
  background: var(--gray);
  border-radius: 999px;
  margin-right: 16px;
  letter-spacing: .01em;
}
.ticker-dot {
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 900;
  margin-right: 16px;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes ticker-scroll-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.ticker-track-reverse {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll-reverse 64s linear infinite;
}
.ticker-track-reverse:hover { animation-play-state: paused; }
.connections-bottom {
  text-align: center;
}
.connections-sub {
  font-size: 1rem;
  text-align: center;
}

/* ─── PROBLEM (unified) ──────────────────── */
.problem-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e5e7eb;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 8px;
}
.problem-block {
  background: var(--white);
  padding: 36px 32px;
  border-left: 4px solid transparent;
  transition: border-color .2s;
  text-align: center;
}
.problem-block:hover { border-left-color: #e53e3e; }
.pb-main {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
}
@media (max-width: 700px) {
  .problem-blocks { grid-template-columns: 1fr; }
}

/* ─── SOLUTION FLOW ──────────────────────── */
.solution-flow {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  max-width: 600px;
  margin: var(--sp-sm) auto var(--sp-sm);
}
.flow-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 18px 24px;
}
.flow-trigger {
  font-size: .95rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  min-width: 140px;
}
.flow-arrow {
  font-size: 1.2rem;
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
}
.flow-result {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}
.solution-close {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 600px) {
  .flow-trigger { min-width: auto; }
}

/* ─── FLIGHT DECK ────────────────────────── */
.flight-deck-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: var(--sp-sm);
  font-weight: 600;
}
.flight-deck-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm);
}
.fd-tile {
  background: var(--gray);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  transition: border-color .2s, box-shadow .2s;
  text-align: center;
}
.fd-tile:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,97,232,.1);
}
.fd-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.fd-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}
.fd-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}
.fd-close {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}

/* ── Flight deck on blue background ── */
#flight-deck .headline,
#flight-deck .flight-deck-sub,
#flight-deck .fd-close { color: #fff; }
#flight-deck .fd-tile {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
#flight-deck .fd-tile:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
#flight-deck .fd-label { color: #fff; }
#flight-deck .fd-desc  { color: rgba(255,255,255,0.7); }
@media (max-width: 800px) {
  .flight-deck-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .flight-deck-grid { grid-template-columns: 1fr; }
}

/* ─── AGENT FEATURES GRID ────────────────── */
.agent-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.af-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid #e5e7eb;
  transition: border-color .2s, box-shadow .2s;
  text-align: center;
}
.af-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(0,97,232,.08);
}
.af-card-accent {
  background: var(--blue);
  border-color: var(--blue);
}
.af-card-accent .af-title { color: var(--white); }
.af-card-accent .af-list li { color: rgba(255,255,255,.75); }
.af-card-accent .af-list li::before { color: var(--orange); }
.af-card-accent .af-note { color: rgba(255,255,255,.5); }
.af-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.af-title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 14px;
  line-height: 1.3;
}
.af-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.af-list li {
  font-size: .825rem;
  color: var(--muted);
  line-height: 1.5;
  list-style: none;
}
.af-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .agent-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .agent-features-grid { grid-template-columns: 1fr; }
}

/* ─── LIGHTBOX ───────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.lb-active {
  display: flex;
}
.lb-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#lb-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.lb-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lb-tag {
  background: var(--orange);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}
.lb-caption {
  font-size: .925rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1001;
}
.lb-close:hover { background: rgba(255,255,255,.2); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1001;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.2); }

/* ─── GALLERY ────────────────────────────── */
.gallery-sub {
  font-size: .975rem;
  color: var(--muted);
  margin-bottom: var(--sp-sm);
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #003c92;
  cursor: zoom-in;
}
.gallery-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,.5);
  color: rgba(255,255,255,.7);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  opacity: 0;
  transition: opacity .2s;
}
.gallery-card:hover .gallery-zoom { opacity: 1; }
.gallery-card--wide {
  grid-column: span 2;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, filter .4s ease;
  filter: brightness(.85) saturate(.9);
}
.gallery-card:hover img {
  transform: scale(1.04);
  filter: brightness(.75) saturate(1.1);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  text-align: left;
}
.gallery-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  width: fit-content;
}
.gallery-caption {
  font-size: .925rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
@media (max-width: 800px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-card--wide { grid-column: span 2; }
}
@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-card--wide { grid-column: span 1; }
}

/* ─── SECTION CENTERED UTILITY ───────────── */
.section-centered {
  text-align: center;
}
/* Full-width block children */
.section-centered .flight-deck-grid,
.section-centered .agent-features-grid,
.section-centered .transformation-cols,
.section-centered .problem-blocks,
.section-centered .gallery-grid {
  width: 100%;
}
/* Constrained children: auto margins to center them */
.section-centered .section-intro,
.section-centered .solution-flow,
.section-centered .weeks-grid,
.section-centered .stakes-list,
.section-centered .built-by-desc,
.section-centered .fd-close,
.section-centered .solution-close,
.section-centered .weeks-close,
.section-centered .tools-close,
.section-centered .infinite-close,
.section-centered .gallery-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ─── INFINITE CLOSE ────────────────────── */
.infinite-close {
  margin-top: var(--sp-lg);
  padding: var(--sp-sm) 40px;
  border-left: 4px solid var(--orange);
  max-width: 640px;
  text-align: left;
}
.infinite-statement {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
  line-height: 1.3;
}
.infinite-sub {
  font-size: .975rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── TOOLS ──────────────────────────────── */
.tools-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.tool-pill {
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.tool-pill--light {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: var(--white);
  box-shadow: none;
}
.tools-pills--light {
  margin: 24px 0;
}
.tools-close {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.7;
  text-align: center;
}

/* ─── BUILT BY ───────────────────────────── */
.built-by-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
  text-align: center;
}
.cred-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: var(--sp-sm);
}
.cred-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: .825rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.built-by-proof {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: .5px;
  text-align: center;
}

/* ─── LIVE IN WEEKS ──────────────────────── */
.weeks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-sm);
  max-width: 640px;
  margin: 0 auto var(--sp-sm);
}
.week-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.week-check {
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 900;
  flex-shrink: 0;
}
.weeks-close {
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.65;
  text-align: center;
}
@media (max-width: 500px) {
  .weeks-grid { grid-template-columns: 1fr; }
}

/* ─── TRANSFORMATION ─────────────────────── */
.transformation-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
}
.trans-col {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 3px solid var(--orange);
  text-align: center;
}
.trans-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trans-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .975rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.trans-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 900;
  font-size: .85rem;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .transformation-cols { grid-template-columns: 1fr; }
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .guide-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-hero { padding: 20px 0; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 4px 0; align-self: center; }
  .mid-cta-inner { gap: 10px; }
  .headline { font-size: clamp(1.5rem, 5vw, 2.2rem); margin-bottom: var(--sp-sm); }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.8rem; }
  .hero-h2 { font-size: 1.4rem; }
  .hero-h3 { font-size: 1.1rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; text-align: center; }
  .caps-grid { grid-template-columns: 1fr; }
}

/* ─── SECTION SPLIT (image panels) ─────── */
.section-split {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 56px;
}
.split-content { flex: 1; min-width: 0; }
.split-image   { flex: 0 0 48%; }
.split-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}
.img-left .split-image { order: -1; }

@media (max-width: 900px) {
  .section-split { flex-direction: column; gap: 32px; }
  .img-left .split-image { order: 0; }
  .split-image { flex: none; width: 100%; }
}

/* ─── INDUSTRY SECTIONS ──────────────────── */
.industry-header {
  margin-bottom: 56px;
}
.industry-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.bg-light .industry-tag {
  background: var(--orange);
}
.industry-block-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.industry-block-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 16px;
}
.industry-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.industry-list li {
  font-size: .95rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.industry-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: .85rem;
}
.section-split + .section-split {
  margin-top: 56px;
}

/* ─── WIDE SCREENSHOTS ───────────────────── */
.section-screenshot {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: 48px 0;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
}
.section-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── FEATURES GRID ──────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin: 48px 0 0;
}
.feature-block { }

/* ─── WHY TWO-COL ────────────────────────── */
.why-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin: 32px 0 0;
}
.why-copy { display: flex; flex-direction: column; gap: 4px; }

@media (max-width: 768px) {
  .features-grid  { grid-template-columns: 1fr; gap: 36px; }
  .why-two-col    { grid-template-columns: 1fr; gap: 32px; }
  .section-screenshot { border-radius: 10px; margin: 32px 0; }
}

/* ── Chat gifs row ── */
.chat-gifs-row {
  display: flex;
  gap: 40px;
  max-width: 1340px;
  margin: 0 auto;
  width: calc(100% - 20px);
}
.chat-gifs-row img {
  width: calc(50% - 20px);
  display: block;
}
@media (max-width: 700px) {
  .hero-body { margin-bottom: 16px; }
  h1, h2, h3 { line-height: 1.2; }
  .chat-gifs-row {
    flex-direction: column;
    gap: 20px;
  }
  .chat-gifs-row img {
    width: 100%;
  }
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-connector {
  position: absolute;
  top: 56px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, #0061e8, #0061e8, #0061e8);
  z-index: 0;
}
.process-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.process-circle {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #0061e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(0,97,232,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: default;
}
.process-step:hover .process-circle {
  transform: scale(1.12);
  background: #0061e8;
  border-color: #0061e8;
  box-shadow: 0 8px 32px rgba(0,97,232,0.35);
}
.process-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #0061e8;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.process-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #003c92;
  margin-bottom: 8px;
}
.process-desc {
  font-size: 0.88rem;
  color: #003c92;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 700px) {
  .process-steps { flex-direction: column; align-items: center; gap: 40px; }
  .process-connector { display: none; }
  .process-step { max-width: 100%; }
}

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
}
.why-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.why-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ── DATA INTO DECISIONS ── */
.data-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
  text-align: left;
  align-items: start;
}
.data-block-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0061e8;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.data-block-sub {
  color: rgba(0,0,0,0.6);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 auto 16px;
  max-width: 640px;
}
.data-examples {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.data-examples li {
  font-size: 0.92rem;
  color: rgba(0,0,0,0.7);
  line-height: 1.5;
  padding: 12px 16px;
  background: rgba(0,0,0,0.04);
  border-radius: 10px;
  border-left: 3px solid #0061e8;
}
.data-trigger {
  color: #003c92;
  font-weight: 600;
}
.data-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.data-bullets li {
  font-size: 0.92rem;
  color: rgba(0,0,0,0.7);
  padding-left: 20px;
  position: relative;
}
.data-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0061e8;
  font-weight: 700;
}
@media (max-width: 900px) {
  .data-split { grid-template-columns: 1fr; gap: 40px; }
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1.5px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card--featured {
  border-color: #0061e8;
  box-shadow: 0 8px 40px rgba(0,97,232,0.15);
  transform: translateY(-8px);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0061e8;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0061e8;
  margin-bottom: 12px;
}
.pricing-from {
  font-size: 0.8rem;
  color: #e5e7eb;
  margin-bottom: 2px;
}
.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #003c92;
  line-height: 1;
  margin-bottom: 16px;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #e5e7eb;
}
.pricing-desc {
  font-size: 0.9rem;
  color: #003c92;
  line-height: 1.6;
  margin: 0 0 24px;
}
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.pricing-list li {
  font-size: 0.9rem;
  color: #003c92;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  padding-left: 20px;
  position: relative;
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0061e8;
  font-weight: 700;
}
.btn-ghost-dark {
  border: 2px solid #0061e8;
  color: #0061e8;
  background: transparent;
  border-radius: var(--radius);
}
.btn-ghost-dark:hover { background: #0061e8; color: #fff; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
}

/* ── SECURITY PILLAR ── */
.security-pillar {
  margin-top: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 40px;
}
.security-pillar-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  text-align: left;
}
.security-pillar-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.security-pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.security-pillar-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.6;
}
.security-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.security-item {
  display: flex;
  gap: 14px;
  text-align: left;
}
.security-check {
  color: #0061e8;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.security-item strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.security-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 700px) {
  .security-pillar-grid { grid-template-columns: 1fr; }
  .security-pillar { padding: 28px 20px; }
}

/* ── FORM TOOLS DROPDOWN ── */
.cta-select {
  appearance: none;
  cursor: pointer;
  color: #003c92;
}
.cta-select option { color: #003c92; }

.tools-dropdown { position: relative; width: 100%; }
.tools-toggle {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #fff;
  color: #003c92;
  font-size: inherit;
  font-family: inherit;
  border: none;
}
.tools-arrow { font-size: 0.8rem; flex-shrink: 0; }
.tools-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e5e7eb transparent;
}
.tools-panel::-webkit-scrollbar { width: 6px; }
.tools-panel::-webkit-scrollbar-track { background: transparent; }
.tools-panel::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 3px; }
.tools-panel.open { display: block; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
  text-align: left;
}
.tool-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #003c92;
  cursor: pointer;
  white-space: nowrap;
}
.tool-check input { accent-color: #0061e8; width: 15px; height: 15px; cursor: pointer; }
.tools-groups { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.tools-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0061e8;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── FAQ ACCORDION ── */
.faq-section { padding-top: 80px; padding-bottom: 80px; }
.faq-inner { max-width: 1140px; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }

.faq-panel {
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 0 32px;
  border: 1px solid rgba(255,255,255,0.12);
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}
.faq-panel::-webkit-scrollbar { width: 6px; }
.faq-panel::-webkit-scrollbar-track { background: transparent; }
.faq-panel::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 3px; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0061e8;
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
details[open] .faq-q::after {
  content: '−';
}

.faq-a {
  padding: 0 4px 22px;
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  line-height: 1.75;
}
.faq-a p { margin: 0 0 10px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul {
  margin: 8px 0 12px 0;
  padding-left: 20px;
}
.faq-a ul li { margin-bottom: 4px; }

@media (max-width: 700px) {
  .faq-q { font-size: 0.97rem; padding: 18px 4px; }
}

/* ── DATA SCREENSHOTS ── */
.data-screenshots-row {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}
.data-screenshot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: calc(33.333% - 11px);
}
@media (max-width: 700px) {
  .data-screenshots-row { flex-direction: column; }
  .data-screenshot-col { width: 100%; }
  .data-screenshot-col .data-pill { width: 100%; box-sizing: border-box; }
}

/* ── DATA PILLS ── */
.data-pill {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(0,0,0,0.75);
  letter-spacing: 0.01em;
  text-align: center;
}

/* ─── EXIT INTENT POPUP ─────────────────── */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup.hidden { display: none !important; }

.exit-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(3px);
}

.exit-popup-card {
  position: relative;
  background: #003c92;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 44px 40px 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  animation: exit-popup-in .25s ease;
}
@keyframes exit-popup-in {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.exit-popup-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color .15s;
}
.exit-popup-close:hover { color: rgba(255,255,255,.8); }

.exit-popup-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.exit-popup-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.exit-popup-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 24px;
}

.exit-popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exit-popup-form input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: 'Thicccboi', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .15s;
}
.exit-popup-form input::placeholder { color: rgba(255,255,255,.3); }
.exit-popup-form input:focus { border-color: var(--orange); }

.exit-popup-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 4px;
}

.exit-popup-success {
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  padding: 12px 0;
}

@media (max-width: 520px) {
  .exit-popup-card { padding: 36px 24px 28px; }
  .exit-popup-title { font-size: 1.25rem; }
}
