/* ==========================================================================
   socialgist.ai — static de-animated rebuild, shared stylesheet (sub-pages)
   Brand tokens from research/design-tokens.md; conventions match the
   homepage prototypes (pill nav, 25px cards, pill buttons, fluid clamp type).
   ========================================================================== */

/* ============ Fonts ============ */
@font-face {
  font-family: "Styrene A";
  src: url("/assets/fonts/StyreneA-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Styrene A";
  src: url("/assets/fonts/StyreneA-Medium.otf") format("opentype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Styrene A";
  src: url("/assets/fonts/StyreneA-Bold.otf") format("opentype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Signifier";
  src: url("/assets/fonts/Signifier-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ============ Tokens / reset ============ */
:root {
  --yellow: #f6f085;
  --light: #fbfaf1;
  --beige: #d4cebe;
  --light-beige: #f1e8d7;
  --dark: #25201f;
  --orange: #f63d21;
  --teal: #4bd1b8;
  --lilac: #efc9fc;
  --light-yellow: #fcf688;
  --cream: #f3e8d5;
  --grey: #625857;
  --font-main: "Styrene A", Arial, sans-serif;
  --font-body: "Raleway", sans-serif;
  --font-accent: "Signifier", Georgia, serif;
  --radius-card: 25px;
  --radius-pill: 100px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-main); font-weight: 500; color: var(--dark); }
img { max-width: 100%; display: block; }
a { color: inherit; }
ul[class], ol[class] { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 980px; }

/* ============ Type helpers ============ */
.eyebrow {
  font-family: var(--font-main);
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dark);
  margin-bottom: 18px;
}
.h-display { font-size: clamp(2.3rem, 4.5vw, 4rem); line-height: 1.12; }
.h-section { font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.14; }
.h-card { font-size: clamp(1.25rem, 1.8vw, 1.55rem); line-height: 1.2; }
.lede {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  line-height: 1.45;
  color: var(--dark);
}

/* ============ Buttons (pills) ============ */
.btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-pill);
  padding: 17px 38px;
  border: 1px solid var(--orange);
  transition: background-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
  background: transparent;
}
.btn--solid { background: var(--orange); color: #fff; }
.btn--solid:hover, .btn--solid:focus-visible { background: #d92c12; border-color: #d92c12; }
.btn--outline { background: transparent; color: var(--dark); }
.btn--outline:hover, .btn--outline:focus-visible { background: var(--orange); color: #fff; }
.btn--sm { padding: 12px 26px; font-size: 13px; }
.btn--block { display: block; width: 100%; }

/* ============ Nav ============ */
.nav-wrap { position: sticky; top: 18px; z-index: 100; padding: 0 24px; }
.nav {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
  border-radius: 52px;
  box-shadow: rgba(0,0,0,0.07) 0 4px 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 14px 14px 28px;
  gap: 8px;
}
.nav__logo { display: flex; align-items: center; margin-right: auto; text-decoration: none; color: var(--dark); }
.nav__logo img { height: 24px; width: auto; }
.nav__links { display: flex; align-items: center; list-style: none; gap: 8px; margin-right: 20px; }
.nav__links a {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: background-color 0.15s ease;
}
.nav__links a:hover, .nav__links a:focus-visible { background: var(--light); }
.nav__links a[aria-current="page"] { background: var(--light); }
.nav__cta { padding: 14px 32px; }
.nav__toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}
.nav__burger span, .nav__burger::before, .nav__burger::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* ============ Sections ============ */
.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.bg-light { background: var(--light); }
.bg-light-beige { background: var(--light-beige); }
.bg-beige { background: var(--beige); }
.bg-yellow { background: var(--yellow); }
.bg-cream { background: var(--cream); }
.section-rounded {
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  position: relative;
  z-index: 1;
  margin-bottom: -25px; /* rounds off into the dark footer */
}

/* Page hero (behind sticky nav) */
.page-hero {
  margin-top: -86px;
  padding: 170px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { max-width: 18em; margin-bottom: 26px; }
.page-hero .hero-sub {
  font-family: var(--font-body);
  color: var(--grey);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.4;
  max-width: 40em;
  margin-bottom: 36px;
}
.page-hero--center { text-align: center; }
.page-hero--center h1, .page-hero--center .hero-sub { margin-left: auto; margin-right: auto; }
.hero-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero-split img { border-radius: var(--radius-card); width: 100%; height: 100%; max-height: 420px; object-fit: cover; }

/* ============ Cards / grids ============ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  border-radius: var(--radius-card);
  padding: 34px 30px 36px;
  color: var(--dark);
  background: #fff;
}
.card--teal { background: var(--teal); }
.card--lilac { background: var(--lilac); }
.card--cream { background: var(--cream); }
.card--yellow { background: var(--light-yellow); }
.card h3 { margin-bottom: 14px; }
.card p { color: var(--dark); opacity: 0.8; }
.card__icon { width: 48px; height: 48px; margin-bottom: 20px; }

/* Tag chips (all-caps pills) */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid rgba(37,32,31,0.35);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  background: transparent;
}

/* Stat tiles */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px 26px 30px;
  box-shadow: rgba(0,0,0,0.04) 0 4px 20px;
}
.stat__icon { width: 42px; height: 42px; margin-bottom: 16px; }
.stat__value {
  font-family: var(--font-accent);
  font-size: clamp(2.6rem, 3.6vw, 3.6rem);
  line-height: 1;
  color: var(--dark);
}
.stat__value sup {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.42em;
  vertical-align: super;
  letter-spacing: 0.04em;
}
.stat__label {
  font-family: var(--font-main);
  font-weight: 500;
  color: var(--dark);
  margin-top: 10px;
  font-size: 15px;
}
.stat__note { font-size: 13.5px; margin-top: 6px; }

/* CTA band ("Want to learn more…") */
.cta-band { padding: 90px 0; text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: 1.1; margin-bottom: 18px; }
.cta-band p { max-width: 42em; margin: 0 auto 34px; }

/* ============ Footer ============ */
.footer { background: var(--dark); color: #fff; padding: 90px 0 40px; }
.footer a { text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer__display {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 5rem);
  line-height: 1.05;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.35em;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.footer__display img {
  width: 0.85em; height: 0.85em;
  border-radius: 50%;
  object-fit: cover;
  border: 0.07em solid var(--teal);
  box-sizing: content-box;
}
.footer__display img + img { border-color: var(--light-yellow); }
.footer__display img + img + img { border-color: var(--lilac); }
.footer__cols { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 40px; margin-bottom: 70px; }
.footer h4 { font-family: var(--font-main); font-weight: 500; font-size: 15px; color: #fff; margin-bottom: 14px; }
.footer__social { display: flex; gap: 12px; list-style: none; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.18s ease;
}
.footer__social a:hover { background: rgba(255,255,255,0.12); text-decoration: none; }
.footer__social img { width: 16px; height: 16px; }
.footer__nav { list-style: none; }
.footer__nav li { margin-bottom: 10px; }
.footer__nav a { font-family: var(--font-main); font-weight: 500; font-size: 15px; color: #fff; }
.footer__contact p { color: rgba(255,255,255,0.75); margin-bottom: 22px; }
.footer__contact a { color: rgba(255,255,255,0.75); }
.footer__legal {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer__legal p { margin-bottom: 12px; }
.footer__legal a { color: rgba(255,255,255,0.85); }

/* ==========================================================================
   PLATFORM
   ========================================================================== */
.daily-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: end; margin-bottom: 40px; }
.daily-head h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.05; }
.daily-head p { max-width: 26em; }
.stats--7 { grid-template-columns: repeat(4, 1fr); }

/* Plan panels ("3 Ways", de-animated) */
.plans-head { text-align: center; margin-bottom: 56px; }
.plans-head h2 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); line-height: 1.08; margin-bottom: 12px; }
.plan {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 48px 52px;
  margin-bottom: 24px;
}
.plan:nth-child(even) .plan__media { order: -1; }
.plan__num {
  font-family: var(--font-accent);
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: var(--orange);
  margin-bottom: 8px;
}
.plan h3 { font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1.1; margin-bottom: 6px; }
.plan__tagline { font-family: var(--font-main); font-weight: 500; color: var(--dark); margin-bottom: 16px; }
.plan__body { margin-bottom: 22px; }
.plan__bullets { list-style: none; }
.plan__bullets li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: var(--dark);
}
.plan__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
}
.plan__media { position: relative; }
.plan__media img { border-radius: var(--radius-card); width: 100%; object-fit: cover; }
.plan__media .plan__img-sm {
  position: absolute;
  width: 42%;
  bottom: -18px; right: -12px;
  border-radius: var(--radius-card);
  box-shadow: rgba(0,0,0,0.15) 0 10px 30px;
}
.plan__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.plan__chips .tag { background: #fff; box-shadow: rgba(0,0,0,0.08) 0 4px 14px; border: none; }

/* Compare-plans table */
.table-scroll { overflow-x: auto; border-radius: var(--radius-card); background: #fff; }
.compare { width: 100%; min-width: 640px; border-collapse: collapse; }
.compare caption { text-align: left; padding: 30px 30px 6px; }
.compare th, .compare td { padding: 16px 22px; text-align: center; border-top: 1px solid rgba(37,32,31,0.08); }
.compare thead th { border-top: none; font-family: var(--font-main); font-weight: 500; text-transform: lowercase; color: var(--dark); font-size: clamp(1.1rem, 1.6vw, 1.4rem); }
.compare tbody th { text-align: left; font-family: var(--font-body); font-weight: 500; color: var(--dark); font-size: 15px; }
.compare img { width: 22px; height: 22px; margin: 0 auto; }
.compare td.txt { font-family: var(--font-main); font-weight: 500; color: var(--dark); }
.compare .col-hl { background: var(--light); }

/* API integration modes */
.api-head { text-align: center; margin-bottom: 48px; }
.api-head h2 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); line-height: 1.08; }
.api-card { display: flex; flex-direction: column; }
.api-card .plan__num { color: var(--orange); }
.api-card h3 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-bottom: 14px; }
.api-card .plan__bullets { margin: 18px 0 26px; }
.api-card .btn { align-self: flex-start; margin-top: auto; }

/* Real Talk testimonials — static grid */
.realtalk-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.realtalk-head h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.realtalk-head a { font-family: var(--font-main); font-weight: 500; color: var(--dark); text-underline-offset: 4px; }
.tst { display: flex; flex-direction: column; }
.tst__quote-icon { width: 34px; margin-bottom: 20px; }
.tst blockquote { font-size: 16px; line-height: 1.55; color: var(--dark); margin-bottom: 26px; }
.tst__who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.tst__who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.tst__avatar-fallback {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main); font-weight: 700; color: var(--dark);
}
.tst__name { font-family: var(--font-main); font-weight: 500; color: var(--dark); }
.tst__role { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ==========================================================================
   SOLUTIONS
   ========================================================================== */
.usecase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 44px 48px;
  margin-bottom: 24px;
}
.usecase:nth-child(even) .usecase__media { order: -1; }
.usecase h3 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin-bottom: 14px; }
.usecase p { margin-bottom: 22px; }
.usecase__media img { width: 100%; max-height: 300px; object-fit: contain; }
.snapshot-head { text-align: center; margin-bottom: 44px; }
.snapshot-head h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.case-teaser { max-width: 56em; margin: 0 auto 40px; text-align: center; }
.case-teaser .lede { margin-bottom: 28px; }
.case-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }

/* Post cards (digest + case-study teasers) */
.post {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0,0,0,0.05) 0 4px 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.post:hover { transform: translateY(-4px); box-shadow: rgba(0,0,0,0.1) 0 10px 30px; }
.post__img { height: 200px; background: var(--cream); overflow: hidden; }
.post__img img { width: 100%; height: 100%; object-fit: cover; }
.post h3 { font-size: 18px; line-height: 1.3; padding: 20px 24px 8px; }
.post .post__meta { padding: 0 24px 24px; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ==========================================================================
   PARTNERS
   ========================================================================== */
.logo-band { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 40px 56px; }
.logo-band img { height: 34px; width: auto; object-fit: contain; }
.why-card { background: #fff; }
.ptype {
  background: var(--lilac);
  border-radius: var(--radius-card);
  padding: 40px 44px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.ptype h3 { font-size: clamp(1.5rem, 2.3vw, 2rem); line-height: 1.15; }
.ptype p { color: var(--dark); opacity: 0.85; }
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 52px 56px;
}
.spotlight img { border-radius: var(--radius-card); width: 100%; object-fit: cover; }
.spotlight .eyebrow { color: var(--orange); }
.spotlight h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); margin-bottom: 16px; }
.spotlight p { margin-bottom: 28px; }
.lets-talk { text-align: center; }
.lets-talk h2 { font-size: clamp(2rem, 3.8vw, 3.3rem); margin-bottom: 30px; }
.lets-talk ul { list-style: none; margin-bottom: 38px; }
.lets-talk li { font-family: var(--font-main); color: var(--dark); font-size: clamp(1rem, 1.4vw, 1.25rem); margin-bottom: 10px; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.vision { max-width: 900px; }
.vision h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); margin-bottom: 34px; }
.vision ul { list-style: none; }
.vision li {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--dark);
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  line-height: 1.4;
  padding: 18px 0 18px 40px;
  border-bottom: 1px solid rgba(37,32,31,0.15);
  position: relative;
}
.vision li::before {
  content: "";
  position: absolute;
  left: 6px; top: 50%;
  transform: translateY(-50%);
  width: 13px; height: 13px;
  border-radius: 50%;
  border: 3px solid var(--orange);
}
.vision li:nth-child(3n+2)::before { border-color: var(--teal); }
.vision li:nth-child(3n)::before { border-color: #c77fe0; }

/* History timeline */
.history-head { display: flex; align-items: baseline; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.history-head .stat__value { font-size: clamp(3.4rem, 6vw, 5.4rem); }
.history-head h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.milestone { background: rgba(251,250,241,0.65); border-radius: var(--radius-card); padding: 26px 26px 28px; }
.milestone__date { font-family: var(--font-accent); font-size: 1.5rem; color: var(--dark); margin-bottom: 10px; }
.milestone p { color: var(--dark); }

/* Team grid */
.team-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 44px; }
.team-head h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.member { background: #fff; border-radius: var(--radius-card); padding: 30px; }
.member__top { display: flex; gap: 20px; align-items: center; margin-bottom: 18px; }
.member__top img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.member__name { font-size: 1.3rem; }
.member__role { font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; }
.member__bio { margin-bottom: 18px; }
.member .tags { margin-bottom: 18px; }
.member .tag { font-size: 10.5px; padding: 7px 13px; }
.member__li { display: inline-flex; }
.member__li img { width: 22px; height: 22px; }

/* ==========================================================================
   DIGEST
   ========================================================================== */
.digest-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); display: flex; align-items: baseline; gap: 0.04em; flex-wrap: wrap; justify-content: center; }
.digest-hero .glyph-o { height: 0.72em; width: auto; transform: translateY(0.04em); align-self: center; }
.featured { grid-template-columns: repeat(3, 1fr); }
.featured .post h3 { font-size: 20px; padding-bottom: 24px; }
.list-head {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  color: var(--dark);
  margin-bottom: 26px;
}
.events { border-top: 1px solid rgba(37,32,31,0.15); }
.event {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(37,32,31,0.15);
}
.event__dates { font-family: var(--font-main); font-weight: 500; color: var(--dark); font-size: 14px; }
.event__name { font-size: 17px; color: var(--dark); font-weight: 600; }
.event__loc { font-size: 13.5px; }
.event .btn { white-space: nowrap; }

/* ==========================================================================
   BLOG ARTICLE
   ========================================================================== */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.article-hero { border-radius: var(--radius-card); overflow: hidden; margin-bottom: 44px; }
.article-hero img { width: 100%; max-height: 430px; object-fit: cover; }
.article-date { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.article h1 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.15; margin-bottom: 22px; }
.article-byline { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.article-byline img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.article-byline .by { font-size: 13px; }
.article-byline .name { font-family: var(--font-main); font-weight: 500; color: var(--dark); }
.share { display: flex; align-items: center; gap: 12px; margin-bottom: 44px; padding-bottom: 30px; border-bottom: 1px solid rgba(37,32,31,0.15); }
.share span { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-main); color: var(--dark); }
.share a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(37,32,31,0.3);
  border-radius: 50%;
  transition: background-color 0.18s ease;
}
.share a:hover { background: var(--yellow); }
.share a img { width: 15px; height: 15px; }
.rich { color: var(--grey); }
.rich > * + * { margin-top: 1.15em; }
.rich h2 { font-size: clamp(1.45rem, 2.2vw, 1.9rem); margin-top: 1.8em; }
.rich h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); margin-top: 1.6em; }
.rich strong { color: var(--dark); }
.rich em { font-family: var(--font-accent); font-style: italic; }
.rich a { color: var(--orange); text-underline-offset: 3px; }
.rich ul { padding-left: 1.3em; }
.rich li { margin-bottom: 0.5em; }
.rich blockquote {
  border-left: 3px solid var(--teal);
  padding-left: 1.2em;
  color: var(--dark);
  font-style: italic;
}
.also { margin-top: 64px; padding-top: 40px; border-top: 1px solid rgba(37,32,31,0.15); }
.also h2 { font-size: clamp(1.4rem, 2vw, 1.8rem); margin-bottom: 24px; }
.also ul { list-style: none; }
.also li { margin-bottom: 14px; }
.also a { font-family: var(--font-main); font-weight: 500; color: var(--dark); text-underline-offset: 4px; }
.also a:hover { color: var(--orange); }
.back-link {
  display: inline-block;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  text-decoration: none;
  margin-bottom: 30px;
}
.back-link:hover { color: var(--orange); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-hero { min-height: 100vh; padding-bottom: 100px; }
.contact-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  flex-wrap: wrap;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.1;
  text-align: center;
  margin-bottom: 70px;
}
.contact-headline .pics { display: inline-flex; gap: 6px; }
.contact-headline .pics img {
  width: 0.9em; height: 0.9em;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--teal);
  box-sizing: content-box;
}
.contact-headline .pics img:nth-child(2) { border-color: var(--light-yellow); }
.contact-headline .pics img:nth-child(3) { border-color: var(--lilac); }
#buttons { display: flex; flex-direction: column; gap: 12px; max-width: 650px; margin: 0 auto; }
/* ID selector (1,0,0) beats the UA [hidden]{display:none} (0,0,1), so the chooser
   would stay visible after JS sets chooser.hidden=true. Restore hide-on-hidden. */
#buttons[hidden] { display: none; }
#buttons .btn { width: 100%; padding: 22px 38px; font-size: 16px; }
.form-stage { max-width: 760px; margin: 0 auto; }
.form-stage[hidden] { display: none; }
.form-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  margin-bottom: 30px;
}
.form-back svg { width: 20px; height: 15px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: #fff;
  border: 1px solid rgba(37,32,31,0.18);
  border-radius: 14px;
  padding: 16px 18px;
}
.form-field::placeholder { color: var(--grey); }
.form-field:focus { outline: 2px solid var(--teal); outline-offset: 1px; }
.form-field.is-invalid { border-color: var(--orange); outline: 1px solid var(--orange); }
textarea.form-field { min-height: 120px; resize: vertical; grid-column: 1 / -1; }
.field-full { grid-column: 1 / -1; }
.source { position: relative; grid-column: 1 / -1; }
.source_field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(37,32,31,0.18);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--grey);
}
.source_field.is-invalid { border-color: var(--orange); outline: 1px solid var(--orange); }
.source_field .drop_icon { width: 13px; height: 13px; transition: transform 0.18s ease; color: var(--dark); }
.source_field .drop_icon svg { display: block; transform: rotate(180deg); }
.source_field .drop_icon.rotated { transform: rotate(180deg); }
.source_options {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid rgba(37,32,31,0.15);
  border-radius: 14px;
  box-shadow: rgba(0,0,0,0.1) 0 10px 30px;
  z-index: 20;
  overflow: hidden;
}
.source_options.open { display: block; }
.source_item { padding: 13px 18px; cursor: pointer; color: var(--dark); }
.source_item:hover { background: var(--light); }
.hide { display: none !important; }
.all-required { font-family: var(--font-main); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange); align-self: center; }
.contact-actions { display: grid; grid-template-columns: 1fr; gap: 10px; grid-column: 1 / -1; }
.success-state, .error-state { display: none; }
.success-state.visible { display: block; }
.error-state.visible {
  display: block;
  grid-column: 1 / -1;
  background: #ffdede;
  color: #a02010;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
}
.success-state h2 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); margin-bottom: 24px; }
.success-state p { margin-bottom: 44px; }
.contacts-info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 90px; }
.contact-block .label {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dark);
  margin-bottom: 14px;
}
.contact-block .label--orange { border-bottom-color: var(--orange); }
.contact-block a { color: var(--grey); text-decoration: none; }
.contact-block a:hover { text-decoration: underline; }
.contact-block a.underlined { text-decoration: underline; }

/* ==========================================================================
   PRIVACY / LEGAL
   ========================================================================== */
.legal { max-width: 860px; margin: 0 auto; padding: 0 40px; }
.legal h1 { font-size: clamp(2rem, 3.8vw, 3.2rem); margin-bottom: 40px; }
.legal h2 { font-size: clamp(1.35rem, 2vw, 1.7rem); margin: 2.2em 0 0.8em; text-transform: uppercase; letter-spacing: 0.02em; }
.legal h3 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); margin: 1.8em 0 0.7em; }
.legal p { margin-bottom: 1em; }
.legal strong { color: var(--dark); }
.legal a { color: var(--orange); text-underline-offset: 3px; }
.legal ul { padding-left: 1.3em; margin-bottom: 1em; }
.legal li { margin-bottom: 0.45em; }
.legal .allcaps-note {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--cream);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 13.5px;
  margin: 1.4em 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .stats--7, .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .container, .article-wrap, .legal { padding: 0 20px; }
  .grid-2, .grid-3, .featured { grid-template-columns: 1fr; }
  .hero-split, .plan, .usecase, .ptype, .spotlight { grid-template-columns: 1fr; }
  .plan:nth-child(even) .plan__media, .usecase:nth-child(even) .usecase__media { order: 0; }
  .plan, .usecase { padding: 30px 24px; }
  .spotlight { padding: 34px 26px; }
  .daily-head { grid-template-columns: 1fr; align-items: start; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .team { grid-template-columns: 1fr; }
  .event { grid-template-columns: 1fr; gap: 8px; }
  .event .btn { justify-self: start; }
  .contacts-info { grid-template-columns: 1fr 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .footer__cols, .footer__legal { grid-template-columns: 1fr; gap: 32px; }
  .footer__display { margin-bottom: 48px; }

  /* mobile nav: CSS-only disclosure */
  .nav-wrap { padding: 0 14px; top: 12px; }
  .nav { padding: 10px 10px 10px 20px; border-radius: 26px; }
  .nav__burger { display: flex; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle:checked ~ .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-basis: 100%;
    margin: 12px 0 4px;
    gap: 2px;
  }
  .nav__toggle:checked ~ .nav__links a { display: block; padding: 12px 14px; }
  .nav__toggle:checked ~ .nav__cta { display: block; flex-basis: 100%; margin-bottom: 6px; }
  .page-hero { padding: 140px 0 60px; margin-top: -78px; }
}
@media (max-width: 560px) {
  .stats--7, .stats, .timeline, .contacts-info { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ==========================================================================
   VARIANT C — "B2B Lead-Gen Restructure" overrides
   Design language mirrors home-c.html: compact yellow hero, slim dark
   (#25201f) proof band with yellow numerals, prominent orange (#f63d21)
   CTA bands mid-page and at page end, eyebrow labels, brand-tint cards.
   Zero scroll/entrance animations; hover transitions <=200ms only.
   ========================================================================== */

/* ---- Compact conversion hero (yellow, like home-c) ---- */
.hero-c { background: var(--yellow); }
.hero-c.page-hero { padding: 150px 0 64px; }
.hero-c h1 { max-width: 17em; }
.hero-c .hero-sub { margin-bottom: 28px; }
.hero-c .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero--center .cta-row { justify-content: center; }

/* ---- Slim dark proof band (numbers from each page's own copy) ---- */
.proofband {
  background: var(--dark);
  padding: 44px 0 48px;
}
.proofband .eyebrow { color: rgba(255,255,255,0.75); text-align: center; }
.pb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 20px; }
.pb-grid--3 { grid-template-columns: repeat(3, 1fr); }
.pb-stat { text-align: center; }
.pb-num {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.2vw, 2.9rem);
  line-height: 1.1;
  color: var(--yellow);
  display: block;
}
.pb-num sup { font-size: 0.5em; font-weight: 500; letter-spacing: 0.04em; }
.pb-label {
  display: block;
  color: #fff;
  font-size: 14px;
  margin: 8px auto 0;
  max-width: 26ch;
}
.pb-icon { width: 34px; height: 34px; margin: 0 auto 12px; filter: brightness(0) invert(1); opacity: 0.9; }
@media (max-width: 900px) { .pb-grid, .pb-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pb-grid, .pb-grid--3 { grid-template-columns: 1fr; } }

/* ---- Orange CTA bands ---- */
.cta-c { background: var(--orange); text-align: center; }
.cta-c.cta-band { padding: 72px 0; }
.cta-c--slim { padding: 52px 0; }
.cta-c h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.12; margin-bottom: 14px; }
.cta-c p { color: rgba(255,255,255,0.94); max-width: 42em; margin: 0 auto 30px; }
.cta-c .eyebrow { color: rgba(255,255,255,0.85); }
.cta-c ul { list-style: none; margin-bottom: 38px; }
.cta-c li { font-family: var(--font-main); color: #fff; font-size: clamp(1rem, 1.4vw, 1.25rem); margin-bottom: 10px; }
.cta-c .btn--invert,
.btn--invert { background: #fff; color: var(--orange); border-color: #fff; }
.btn--invert:hover, .btn--invert:focus-visible { background: var(--dark); color: #fff; border-color: var(--dark); }
.cta-c.section-rounded { margin-bottom: -25px; }

/* ---- Eyebrow labels above section headings ---- */
.eyebrow--center { text-align: center; }
.eyebrow--orange { color: var(--orange); }

/* ---- Brand-tint value cards keep site.css tints; sharpen headings ---- */
.card .eyebrow { margin-bottom: 10px; }

/* ---- Contact page joins the yellow family ---- */
.contact-hero.bg-yellow .form-field,
.contact-hero.bg-yellow .source_field { border-color: rgba(37,32,31,0.3); }

/* ---- Article pages: yellow masthead strip ---- */
.article-mast { background: var(--yellow); }
