/* =============================================================
   Neural Hiive® — GENii Pulse
   Stylesheet: styles.css
   Extracted from neuralhiive-website-v27-responsive.html
   ============================================================= */

/* ─── Reset & Tokens ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --navy: #0B3D91;
  --navy-dark: #072d6e;
  --navy-light: #E8F0FE;
  --navy-mid: #185FA5;
  --teal: #1D9E75;
  --teal-light: #E1F5EE;
  --teal-dark: #0F6E56;
  --amber: #D97706;
  --amber-light: #FEF3C7;
  --coral: #E05A38;
  --coral-light: #FEF0EB;
  --violet: #6D44C0;
  --violet-light: #F0EBFF;
  --rose: #C2185B;
  --rose-light: #FCE4EC;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --border: #E5E7EB;
  --border-mid: #D1D5DB;
  --text: #0F172A;
  --text-mid: #334155;
  --text-muted: #64748B;
  --white: #ffffff;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .09);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

a {
  color: inherit;
  text-decoration: none
}

button {
  font-family: var(--font-body);
  cursor: pointer
}

/* ─── Layout ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px
}

.section {
  padding: 88px 0
}

.section--gray {
  background: var(--gray-50)
}

.section--dark {
  background: var(--navy);
  color: #fff
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy-light);
  color: var(--navy);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 16px
}

.eyebrow--white {
  background: rgba(255, 255, 255, .15);
  color: #fff
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%
}

h2.section-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 12px
}

h2.section-title--white {
  color: #fff
}

p.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 550px
}

p.section-sub--white {
  color: rgba(255, 255, 255, .72)
}

.section-header {
  margin-bottom: 56px
}

.section-header--center {
  text-align: center
}

.section-header--center .section-sub {
  margin: 0 auto
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: all .18s;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-body)
}

.btn--primary {
  background: var(--navy);
  color: #fff
}

.btn--primary:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(11, 61, 145, .3)
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-mid)
}

.btn--ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--navy-light)
}

.btn--white {
  background: #fff;
  color: var(--navy)
}

.btn--white:hover {
  background: var(--navy-light)
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4)
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff
}

.btn--lg {
  padding: 14px 30px;
  font-size: 15px
}

.btn--sm {
  padding: 8px 16px;
  font-size: 13px
}

/* ─── Scroll Reveal ─── */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease
}

.js .reveal.in {
  opacity: 1;
  transform: none
}

.reveal.d1 {
  transition-delay: .08s
}

.reveal.d2 {
  transition-delay: .16s
}

.reveal.d3 {
  transition-delay: .24s
}

.reveal.d4 {
  transition-delay: .32s
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 300;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .07)
}

.nav .container {
  display: flex;
  align-items: center;
  width: 100%
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: 40px;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity .15s;
}

.nav-logo:hover {
  opacity: .8
}

.nav-logo-hex {
  width: 30px;
  height: 30px;
  background: var(--navy);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  font-size: 13px;
  color: var(--text-muted);
  border-radius: 6px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .14s
}

.nav-btn:hover,
.nav-btn.active {
  color: var(--text);
  background: var(--gray-50)
}

.nav-btn svg {
  width: 11px;
  height: 11px;
  transition: transform .15s
}

.nav-item {
  position: relative
}

.nav-item:hover .nav-btn svg {
  transform: rotate(180deg)
}

.nav-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s
}

.nav-item:hover .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: none
}

.drop-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 9px;
  transition: background .12s;
  cursor: pointer
}

.drop-item:hover {
  background: var(--gray-50)
}

.drop-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px
}

.drop-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px
}

.drop-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px
}

.nav-sign {
  padding: 7px 14px;
  font-size: 13px;
  border: 1px solid var(--border-mid);
  border-radius: 7px;
  background: none;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .14s
}

.nav-sign:hover {
  border-color: var(--navy);
  color: var(--navy)
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  padding: 80px 0 72px;
  background: var(--white);
  overflow: hidden;
  position: relative
}

.hero-hex-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: .03
}

.hero-hex-bg svg {
  width: 100%;
  height: 100%
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0B3D9112;
  border: 1px solid #0B3D9122;
  color: var(--navy);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 20px
}

.hero-hive-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 20px;
  letter-spacing: .03em
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 10px
}

.hero-h1 em {
  font-style: normal;
  color: var(--navy)
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5
}

.hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 32px
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px
}

.hero-proof-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted)
}

.hero-proof-badge svg {
  color: var(--amber)
}

.hero-divider {
  width: 1px;
  height: 18px;
  background: var(--border)
}

/* Hero screenshot (replaces UI card) */
.hero-screenshot-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 61, 145, .18), 0 4px 16px rgba(0, 0, 0, .1);
  animation: float 5s ease-in-out infinite;
  border: 1px solid rgba(11, 61, 145, .12)
}

.hero-screenshot-img {
  width: 100%;
  height: auto;
  display: block
}

/* Hero UI card */
.hero-ui {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: float 5s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.hero-ui-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px
}

.ui-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%
}

.ui-bar-title {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 6px
}

.hero-ui-body {
  padding: 18px
}

.ui-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px
}

.ui-metric-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 3px
}

.ui-big-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--text)
}

.ui-green-badge {
  font-size: 11px;
  font-weight: 500;
  background: #DCFCE7;
  color: #166534;
  padding: 3px 9px;
  border-radius: 10px
}

.ui-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px
}

.ui-mini-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px
}

.ui-mini-icon {
  width: 22px;
  height: 22px;
  background: var(--navy-light);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 7px
}

.ui-mini-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 2px
}

.ui-mini-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--text)
}

.ui-insight {
  background: var(--navy);
  border-radius: 10px;
  padding: 13px
}

.ui-insight-label {
  font-size: 10px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em
}

.ui-insight-text {
  font-size: 12px;
  color: #fff;
  line-height: 1.55
}

.ui-assistant-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 9px 11px;
  background: var(--teal-light);
  border-radius: 8px;
  border: 1px solid #9FE1CB
}

.ui-assistant-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.85)
  }
}

.ui-assistant-text {
  font-size: 12px;
  color: var(--teal-dark);
  font-weight: 500
}

/* ══════════════════════════════════
   LOGO STRIP
══════════════════════════════════ */
.logos {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0
}

.logos .container {
  text-align: center
}

.logos-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 14px;
  letter-spacing: .06em
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap
}

.logos-chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  opacity: .75;
  transition: all .15s;
  cursor: default
}

.logos-chip:hover {
  opacity: 1;
  border-color: var(--navy-mid);
  color: var(--navy)
}

/* ══════════════════════════════════
   THE HIVE STORY (narrative)
══════════════════════════════════ */
.story {
  padding: 88px 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden
}

.story-hex-bg {
  position: absolute;
  inset: 0;
  opacity: .04;
  pointer-events: none
}

.story .container {
  position: relative;
  z-index: 1
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.story-left .eyebrow {
  margin-bottom: 20px
}

.story-h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 18px
}

.story-h2 em {
  font-style: normal;
  color: #93C5FD
}

.story-body {
  font-size: 15px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.82;
  margin-bottom: 14px
}

.story-body strong {
  color: #fff;
  font-weight: 500
}

.story-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 28px
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.stat-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 22px 20px
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px
}

.stat-num span {
  font-size: 20px;
  color: #93C5FD
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.45
}

/* ══════════════════════════════════
   PROBLEMS → SOLUTIONS
══════════════════════════════════ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  align-items: start;
  margin-top: 52px
}

.cmp-col {
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border)
}

.cmp-col--problem {
  background: var(--gray-50)
}

.cmp-col--solution {
  background: var(--white);
  border-color: var(--navy)
}

.cmp-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px
}

.cmp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%
}

.cmp-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-mid)
}

.cmp-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px
}

.cmp-x {
  background: #FEE2E2;
  color: #DC2626
}

.cmp-check {
  background: var(--teal-light);
  color: var(--teal-dark)
}

.cmp-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 76px
}

.cmp-arrow {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

/* ══════════════════════════════════
   HOW IT WORKS (steps)
══════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: var(--border-mid)
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm)
}

.step-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 7px
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55
}

/* ══════════════════════════════════
   INTELLIGENT ASSISTANTS
══════════════════════════════════ */
.assistants {
  padding: 88px 0;
  /*background: var(--white)*/
  background: var(--gray-50)
}

.assistants-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px
}

.assistants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.asst-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  background: var(--white);
  transition: all .22s;
  cursor: default;
  position: relative;
  overflow: hidden
}

.asst-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity .2s
}

.asst-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.asst-card:hover::before {
  opacity: 1
}

.asst-card.c-navy::before {
  background: var(--navy)
}

.asst-card.c-teal::before {
  background: var(--teal)
}

.asst-card.c-violet::before {
  background: var(--violet)
}

.asst-card.c-coral::before {
  background: var(--coral)
}

.asst-card.c-amber::before {
  background: var(--amber)
}

.asst-card.c-rose::before {
  background: var(--rose)
}

.asst-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px
}

.asst-role {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px
}

.asst-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px
}

.asst-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px
}

.asst-caps {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.asst-cap {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted)
}

.asst-cap-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0
}

/* ══════════════════════════════════
   INTELLIGENT WORKFLOWS
══════════════════════════════════ */
.workflows {
  padding: 88px 0;
  /*background: var(--gray-50)*/
  background: var(--white)
}

.workflows-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 52px
}

.wf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .2s
}

.wf-card:hover {
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-sm);
  transform: translateX(2px)
}

.wf-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0
}

.wf-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 5px
}

.wf-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6
}

.wf-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 9px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 10px
}

/* ══════════════════════════════════
   CONTENT HUB (interactive)
══════════════════════════════════ */
.hub {
  padding: 88px 0;
  /*background: var(--white)*/
  background: var(--gray-50)
}

.hub-layout {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 0;
  align-items: center;
  min-height: 420px;
  position: relative;
  margin-top: 52px
}

.hub-sources,
.hub-outputs {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.hub-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 420px
}

.hub-svg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.hub-hex-wrap {
  position: relative;
  width: 148px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2
}

.hub-hex-wrap .hex-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.hub-hex-inner {
  position: relative;
  z-index: 1;
  text-align: center
}

.hub-hex-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1
}

.hub-hex-sub {
  font-size: 11px;
  color: var(--navy-mid);
  margin-top: 3px
}

.src-chip,
.out-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--gray-50);
  cursor: pointer;
  transition: all .18s;
  font-size: 13px;
  color: var(--text-muted)
}

.src-chip:hover {
  border-color: var(--border-mid);
  color: var(--text)
}

.src-chip.on {
  background: var(--navy-light);
  border-color: var(--navy);
  color: var(--navy)
}

.out-chip.lit {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark)
}

.out-chip.dim {
  opacity: .28
}

.chip-ico {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px
}

.hub-hint {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  min-height: 24px;
  transition: all .2s
}

/* Mobile-only hub element – hidden on desktop */
.hub-mobile-flow {
  display: none
}

@keyframes dash {
  to {
    stroke-dashoffset: -20
  }
}

.fp {
  stroke-dasharray: 6 4;
  animation: dash .8s linear infinite;
  opacity: 0;
  transition: opacity .35s
}

.fp.on {
  opacity: 1
}

/* ══════════════════════════════════
   USE-CASE EXPLORER
══════════════════════════════════ */
.explorer {
  padding: 88px 0;
  background: var(--gray-50)
    /*background: var(--white)*/
}

.exp-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.exp-tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .15s;
  font-family: var(--font-body)
}

.exp-tab:hover {
  border-color: var(--border-mid);
  color: var(--text)
}

.exp-tab.on {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff
}

.exp-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.exp-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px
}

.exp-panel-head {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 14px
}

.exp-src-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-mid)
}

.exp-src-dot {
  width: 7px;
  height: 7px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0
}

.genii-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy-light);
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 8px;
  margin-bottom: 14px
}

.exp-out-block {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px
}

.exp-quote {
  font-size: 13px;
  color: var(--text);
  line-height: 1.68;
  font-style: italic;
  margin-bottom: 12px
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.exp-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 10px;
  background: var(--teal-light);
  color: var(--teal-dark)
}

.exp-wf-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border)
}

.exp-wf-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: 8px
}

.exp-wf-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--navy-light);
  color: var(--navy);
  margin: 0 4px 4px 0
}

/* ══════════════════════════════════
   FEATURES
══════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px
}

.feat-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all .2s
}

.feat-card:hover {
  background: var(--white);
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px)
}

.feat-icon {
  width: 38px;
  height: 38px;
  background: var(--navy-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 17px
}

.feat-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 7px
}

.feat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.62
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 11px
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.62;
  max-width: 220px
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-muted);
  margin-bottom: 14px
}

.footer-link {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 9px;
  transition: color .12s
}

.footer-link:hover {
  color: var(--navy)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted)
}

/* ══════════════════════════════════
   MOBILE NAV
══════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .2s
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 20px 28px;
  z-index: 299;
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - 64px);
  overflow-y: auto
}

.nav-mobile-menu.open {
  display: block
}

.mob-nav-section {
  margin-bottom: 18px
}

.mob-nav-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-muted);
  margin-bottom: 6px
}

.mob-nav-link {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border)
}

.mob-nav-link:last-child {
  border-bottom: none
}

.mob-nav-ctas {
  display: flex;
  gap: 10px;
  margin-top: 20px
}

.mob-nav-ctas .btn {
  flex: 1;
  justify-content: center
}

/* ══════════════════════════════════
   RESPONSIVE – TABLET (≤ 900px)
══════════════════════════════════ */
@media (max-width: 900px) {
  .assistants-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .hub-layout {
    grid-template-columns: 180px 1fr 180px
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-right {
    max-width: 540px;
    margin: 0 auto;
    width: 100%
  }

  .about-exp-badge {
    display: none
  }
}

/* ══════════════════════════════════
   RESPONSIVE – MOBILE (≤ 768px)
══════════════════════════════════ */
@media (max-width: 768px) {

  /* Layout */
  .container {
    padding: 0 20px
  }

  .section {
    padding: 60px 0
  }

  .section-header {
    margin-bottom: 36px
  }

  h2.section-title {
    font-size: 26px
  }

  p.section-sub {
    font-size: 14px
  }

  /* Nav */
  .nav-links,
  .nav-right {
    display: none
  }

  .nav-hamburger {
    display: flex
  }

  /* Hero */
  .hero {
    padding: 48px 0 40px
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .hero-h1 {
    font-size: 32px
  }

  .hero-tagline {
    font-size: 15px
  }

  .hero-ui,
  .hero-screenshot-wrap {
    max-width: 480px;
    margin: 0 auto
  }

  /* Story */
  .story {
    padding: 60px 0
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .story-h2 {
    font-size: 28px
  }

  .story-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .story-cta-row {
    flex-direction: column;
    gap: 10px
  }

  .story-cta-row .btn {
    width: 100%;
    justify-content: center
  }

  /* Compare */
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 0
  }

  .cmp-arrow-wrap {
    padding: 12px 0;
    transform: rotate(90deg)
  }

  /* Steps */
  .steps-row {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .steps-row::before {
    display: none
  }

  /* Assistants */
  .assistants-intro {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .assistants-grid {
    grid-template-columns: 1fr
  }

  /* Workflows */
  .workflows-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  /* Hub – stack vertically, hide SVG lines */
  .hub-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0
  }

  .hub-center {
    height: 120px;
    order: -1;
    margin-bottom: 12px
  }

  .hub-svg-layer {
    display: none
  }

  /* Sources and outputs: 2-column grids on mobile */
  .hub-sources {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 0
  }

  .hub-outputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 0
  }

  /* Mobile flow arrow strip */
  .hub-mobile-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 0;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none
  }

  .hub-mobile-flow.active {
    opacity: 1
  }

  .hub-mobile-flow-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--navy-mid);
    letter-spacing: .06em;
    text-transform: uppercase
  }

  .hub-mobile-flow-dots {
    display: flex;
    gap: 5px
  }

  .hub-mobile-flow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--navy);
    animation: mob-dot-pulse 1s ease-in-out infinite;
    opacity: 0
  }

  .hub-mobile-flow-dot:nth-child(2) {
    animation-delay: .2s
  }

  .hub-mobile-flow-dot:nth-child(3) {
    animation-delay: .4s
  }

  @keyframes mob-dot-pulse {

    0%,
    100% {
      opacity: 0;
      transform: scale(.8)
    }

    50% {
      opacity: 1;
      transform: scale(1.2)
    }
  }

  /* Hex pulse when active on mobile */
  .hub-hex-wrap.mob-active {
    animation: mob-hex-pulse 1.4s ease-in-out infinite
  }

  @keyframes mob-hex-pulse {

    0%,
    100% {
      transform: scale(1)
    }

    50% {
      transform: scale(1.06)
    }
  }

  /* Stronger lit/on chip styling on mobile */
  .src-chip.on {
    box-shadow: 0 0 0 2px var(--navy)
  }

  .out-chip.lit {
    box-shadow: 0 0 0 2px var(--teal);
    transform: scale(1.02)
  }

  /* Explorer */
  .exp-body {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .exp-tabs {
    gap: 6px
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }
}

/* ══════════════════════════════════
   RESPONSIVE – SMALL MOBILE (≤ 480px)
══════════════════════════════════ */
@media (max-width: 480px) {

  h2.section-title {
    font-size: 22px
  }

  .hero-h1 {
    font-size: 26px
  }

  .hero-ctas {
    flex-direction: column
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center
  }

  .hero-proof {
    flex-wrap: wrap;
    gap: 8px
  }

  .hero-divider {
    display: none
  }

  .steps-row {
    grid-template-columns: 1fr
  }

  .story-stats {
    grid-template-columns: 1fr
  }

  .stat-num {
    font-size: 28px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .mob-nav-ctas {
    flex-direction: column
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .about-right {
    max-width: 100%;
    margin: 0
  }

  .about-team-card {
    padding: 20px
  }

  .about-pillar {
    padding: 12px 14px
  }

  .about-pillar-title {
    font-size: 13px
  }

  .about-pillar-desc {
    font-size: 12px
  }

  .about-loc-item {
    font-size: 13px
  }

  .about-contact-row {
    font-size: 13px;
    padding: 9px 0
  }

  .about-exp-badge {
    display: none
  }
}

/* ══════════════════════════════════
   ABOUT SECTION
══════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: center
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow .18s, border-color .18s
}

.about-pillar:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--border-mid)
}

.about-pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.about-pillar-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  font-family: var(--font-display)
}

.about-pillar-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5
}

.about-right {
  position: relative
}

.about-team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-md)
}

.about-locations {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.about-loc-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-muted);
  margin-bottom: 10px
}

.about-loc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid)
}

.about-loc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0
}

.about-divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0
}

.about-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0
}

.about-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: color .12s;
  text-decoration: none
}

.about-contact-row:last-child {
  border-bottom: none
}

.about-contact-row:hover {
  color: var(--navy)
}

.about-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg)
}

.about-exp-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px
}

.about-exp-label {
  font-size: 11px;
  opacity: .8;
  line-height: 1.4
}

/* ══════════════════════════════════
   CUSTOMER LOGO CAROUSEL
══════════════════════════════════ */
.carousel-section {
  width: 100%;
  max-width: 100%;
  background: transparent;
  border-radius: 8px;
  padding: 15px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 60px;
  animation: scroll 25s linear infinite;
  width: fit-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.customer-logo {
  flex: 0 0 auto;
  width: 150px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: 6px;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: grayscale(0%);
  opacity: 1.0;
  border: 1px solid var(--white);
}

.customer-logo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  filter: grayscale(0%);
  opacity: 1.0;
}

.customer-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-200px * 7 - 60px * 7));
  }
}

.carousel-container::before,
.carousel-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

@media (max-width: 768px) {
  .carousel-section {
    padding: 30px 20px;
  }

  .customer-logo {
    width: 160px;
    height: 80px;
  }
}

/* ══════════════════════════════════
   PRIVACY PAGE
══════════════════════════════════ */

/* ── Footer active link ── */
.footer-link.active {
  color: var(--navy);
  font-weight: 500
}

/* ── Privacy Hero ── */
.privacy-hero {
  padding: 64px 0 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden
}

.privacy-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: .025
}

.privacy-hero-bg svg {
  width: 100%;
  height: 100%
}

.privacy-hero .container {
  position: relative;
  z-index: 1
}

.privacy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy-light);
  color: var(--navy);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 18px
}

.privacy-eyebrow-dot {
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%
}

.privacy-hero h1 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px
}

.privacy-hero-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted)
}

.privacy-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px
}

.privacy-hero-meta-sep {
  width: 1px;
  height: 14px;
  background: var(--border)
}

/* ── Privacy Layout ── */
.privacy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  padding: 64px 0 96px;
  align-items: start
}

.privacy-toc {
  position: sticky;
  top: 84px
}

.privacy-toc-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-muted);
  margin-bottom: 14px
}

.privacy-toc-link {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 0;
  border-left: 2px solid var(--border);
  padding-left: 14px;
  margin-bottom: 2px;
  transition: all .15s
}

.privacy-toc-link:hover {
  color: var(--navy);
  border-left-color: var(--navy)
}

.privacy-toc-link.active {
  color: var(--navy);
  border-left-color: var(--navy);
  font-weight: 500
}

.privacy-body {
  min-width: 0
}

.privacy-section {
  margin-bottom: 56px;
  scroll-margin-top: 84px
}

.privacy-section:last-child {
  margin-bottom: 0
}

.privacy-section h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border)
}

.privacy-section h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  margin: 24px 0 10px
}

.privacy-section p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px
}

.privacy-section p:last-child {
  margin-bottom: 0
}

.privacy-section ul,
.privacy-section ol {
  padding-left: 20px;
  margin-bottom: 14px
}

.privacy-section li {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 6px
}

.privacy-section a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px
}

.privacy-section a:hover {
  color: var(--navy-dark)
}

.privacy-callout {
  background: var(--navy-light);
  border-left: 3px solid var(--navy);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin-bottom: 20px
}

.privacy-callout p {
  font-size: 13.5px;
  color: var(--navy-mid);
  margin-bottom: 0;
  line-height: 1.7
}

.privacy-callout strong {
  color: var(--navy)
}

.privacy-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px
}

.privacy-info-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px
}

.privacy-info-card-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: 8px
}

.privacy-info-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 0
}

.privacy-contact-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 8px
}

.privacy-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.privacy-contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted)
}

.privacy-contact-value {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500
}

/* ── Privacy Responsive ── */
@media (max-width: 900px) {
  .privacy-layout {
    grid-template-columns: 1fr
  }

  .privacy-toc {
    display: none
  }

  .privacy-hero h1 {
    font-size: 30px
  }

  .privacy-info-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 480px) {
  .privacy-hero h1 {
    font-size: 24px
  }
}

/* ══════════════════════════════════
   AI TRUST & SAFETY PAGE
══════════════════════════════════ */

/* ── Callout variants ── */
.privacy-callout--teal {
  background: var(--teal-light);
  border-left-color: var(--teal)
}

.privacy-callout--teal p {
  color: var(--teal-dark)
}

.privacy-callout--teal strong {
  color: var(--teal-dark)
}

.privacy-callout--amber {
  background: var(--amber-light);
  border-left-color: var(--amber)
}

.privacy-callout--amber p {
  color: #92400E
}

.privacy-callout--amber strong {
  color: #92400E
}

/* ── Commitment grid ── */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px
}

.commitment-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.commitment-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.commitment-text-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px
}

.commitment-text-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5
}

/* ── Guarantee list ── */
.guarantee-list {
  list-style: none;
  padding: 0;
  margin-bottom: 14px
}

.guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 0
}

.guarantee-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 1.5px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 5l2.5 2.5 3.5-4' stroke='%231D9E75' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center
}

/* ── Responsive: commitment grid collapses at 900px ── */
@media (max-width: 900px) {

  .privacy-info-grid,
  .commitment-grid {
    grid-template-columns: 1fr
  }
}

/* ══════════════════════════════════
   TERMS OF SERVICE PAGE
══════════════════════════════════ */

/* ── Definition list ── */
.terms-def-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden
}

.terms-def-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border)
}

.terms-def-item:last-child {
  border-bottom: none
}

.terms-def-term {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--gray-50);
  padding: 14px 18px;
  border-right: 1px solid var(--border)
}

.terms-def-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 14px 18px;
  background: var(--white)
}

/* ── Responsive: definition list stacks on small screens ── */
@media (max-width: 700px) {
  .terms-def-item {
    grid-template-columns: 1fr
  }

  .terms-def-term {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px
  }

  .terms-def-desc {
    padding-top: 10px
  }
}