html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.shell {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: saturate(140%) blur(10px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: auto;
  height: 30px;
}

.brand span,
.footer-brand strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
}

.nav a,
.site-footer nav a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav a:not(.button):hover,
.site-footer nav a:hover {
  color: var(--accent);
}

.label-mobile {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button-primary {
  background: var(--navy);
  color: var(--white);
}

.button-primary:hover {
  background: #0a3557;
}

.button-light {
  background: var(--white);
  color: var(--navy);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.9);
}

.button-outline,
.button-outline-light {
  background: transparent;
}

.button-outline {
  border-color: var(--hairline);
  color: var(--navy);
}

.button-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: 0 0 auto;
}

.whatsapp-green {
  fill: #25d366;
}

/* Meeting page */
.meet-page {
  background: var(--surface);
}

.meet-intro {
  padding: clamp(56px, 8vw, 88px) 0;
}

.meet-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(36px, 7vw, 88px);
}

.meet-intro h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  color: var(--white);
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.meet-intro p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 2vw, 19px);
}

.meet-host {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
}

.meet-host img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.meet-host strong,
.meet-host span {
  display: block;
}

.meet-host strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
}

.meet-host span {
  margin-top: 4px;
  color: var(--accent-soft);
  font-size: 13px;
}

.meet-booking {
  padding: clamp(48px, 7vw, 80px) 0 clamp(64px, 8vw, 96px);
}

.meet-booking-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.meet-booking-heading h2 {
  margin: 6px 0 0;
  color: var(--navy);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
}

.meet-booking-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
}

.meet-embed-shell {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(11, 61, 98, 0.08);
}

.meet-embed {
  width: 100%;
  min-height: 420px;
  overflow: auto;
}

.meet-loading {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.meet-loading[hidden] {
  display: none;
}

.meet-fallback,
.meet-direct-link {
  color: var(--muted);
  font-size: 14px;
}

.meet-fallback {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.meet-direct-link {
  margin: 16px 0 0;
  text-align: center;
}

.meet-fallback a,
.meet-direct-link a {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 760px) {
  .meet-nav > a:not(.nav-cta) {
    display: none;
  }

  .meet-intro-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .meet-host {
    max-width: 420px;
  }

  .meet-booking-heading {
    display: block;
  }

  .meet-booking-heading > p {
    margin-top: 10px;
  }

  .meet-embed-shell,
  .meet-embed {
    min-height: 520px;
  }
}

.section {
  padding: clamp(64px, 9vw, 104px) 0;
}

.section-surface {
  background: var(--surface);
}

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

.hero {
  position: relative;
  overflow: hidden;
}

#hero-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 15% 20%, rgba(11, 61, 98, 0.15), rgba(11, 61, 98, 0.72) 62%, var(--navy) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 118px 32px 128px;
}

.eyebrow,
.card-number,
.card-label,
.steps p {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-eyebrow,
.section-dark .eyebrow {
  color: var(--accent-soft);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 18ch;
  margin: 22px 0 0;
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-dark h2 {
  color: var(--white);
}

.hero-lede {
  max-width: 58ch;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2.1vw, 21px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.microcopy {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats div {
  max-width: 240px;
}

.hero-stats strong,
.proof-grid strong {
  display: block;
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 500;
  line-height: 1;
}

.hero-stats strong {
  font-size: 26px;
}

.hero-stats span,
.proof-grid span {
  display: block;
  color: var(--accent-soft);
}

.hero-stats span {
  margin-top: 4px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.section-intro {
  max-width: 62ch;
}

.section-intro p:not(.eyebrow),
.split > div > p,
.contact p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.section-intro p:not(.eyebrow),
.split > div > p,
.contact p:not(.eyebrow) {
  margin: 18px 0 0;
}

hr {
  width: 48px;
  height: 2.4px;
  margin: 20px 0;
  background: var(--accent);
  border: 0;
}

.section-dark hr {
  background: var(--accent-soft);
}

.card-grid {
  display: grid;
  gap: 24px;
  margin-top: 52px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-width: 0;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px 28px 32px;
}

.card h3,
.steps h3,
.founder-card h3 {
  margin: 16px 0 10px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.card p:not(.card-number):not(.card-label) {
  margin: 0;
  color: var(--ink);
  font-size: 14.5px;
}

.lift-card {
  background: var(--white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.lift-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 61, 98, 0.10);
}

.muted-card {
  background: var(--surface);
}

.meta-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  padding: 5px 0;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12.5px;
}

.text-link,
.feature-strip a {
  display: inline-block;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
}

.text-link {
  margin-top: 40px;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 52px;
}

.steps article {
  padding: 26px 24px 30px;
  border-top: 2.4px solid var(--accent);
}

.steps p {
  color: var(--accent);
  font-size: 13px;
  text-transform: none;
}

.steps h3 {
  font-size: 17px;
}

.steps span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.proof-context {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 24px;
  margin-top: 44px;
}

.proof-grid strong {
  font-size: clamp(34px, 4.6vw, 46px);
}

.proof-grid span {
  margin-top: 12px;
  font-size: 13.5px;
}

.feature-strip {
  display: flex;
  align-items: baseline;
  gap: 16px 32px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-strip > .eyebrow {
  flex: 0 0 auto;
}

.feature-strip div {
  flex: 1;
  min-width: 260px;
}

.feature-strip a {
  color: var(--white);
  font-size: 16px;
}

.feature-strip a:hover {
  color: var(--accent-soft);
}

.feature-strip p {
  max-width: 66ch;
  margin: 10px 0 0;
  color: var(--accent-soft);
  font-size: 13.5px;
}

.insight-feature {
  background: var(--white);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.insight-feature h2 {
  max-width: 760px;
}

.insight-feature p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}

.insight-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 5vw, 56px);
  border: 1px solid var(--hairline);
  background: var(--hairline);
}

.insight-feature-list article {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 26px;
  background: var(--surface);
}

.insight-feature-list article:first-child {
  background: var(--navy);
}

.insight-feature-list article:nth-child(2) {
  background:
    linear-gradient(180deg, var(--white), rgba(243, 246, 250, 0.72)),
    var(--white);
}

.insight-feature-list article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(0, 94, 174, 0.1), rgba(0, 94, 174, 0) 42%),
    var(--surface);
}

.insight-feature-list article:nth-child(2)::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--accent);
}

.insight-feature-list article:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(0, 94, 174, 0.28);
  transform: rotate(45deg);
}

.insight-feature-list p {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-feature-list article:first-child p,
.insight-feature-list article:first-child h3,
.insight-feature-list article:first-child .text-link {
  color: var(--white);
}

.insight-feature-list h3 {
  margin: 28px 0 0;
  color: var(--navy);
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.15;
}

.insight-feature-list span {
  display: block;
  margin: 16px 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.insight-feature-list article:first-child span {
  color: rgba(255, 255, 255, 0.72);
}

.insight-feature-list .text-link {
  margin-top: auto;
}

.insight-library {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.insight-library article {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 28px;
  border: 1px solid var(--hairline);
  background: var(--white);
}

.insight-library p {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-library h3 {
  margin: 26px 0 0;
  color: var(--navy);
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.12;
}

.insight-library span {
  display: block;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.insight-library .button-row {
  margin-top: auto;
}

.insight-hero {
  padding: clamp(76px, 9vw, 112px) 0 clamp(68px, 8vw, 96px);
}

.insight-hero-grid,
.insight-layout {
  display: grid;
  gap: clamp(32px, 6vw, 72px);
}

.insight-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
}

.insight-hero h1 {
  max-width: 16ch;
  font-size: clamp(40px, 5vw, 58px);
}

.insight-hero .hero-lede {
  max-width: 680px;
}

.insight-panel {
  padding: 28px 0 0;
  border-top: 2px solid var(--accent-soft);
}

.insight-panel h2 {
  color: var(--white);
  font-size: clamp(22px, 2.5vw, 31px);
  line-height: 1.2;
}

.insight-panel dl,
.insight-panel div {
  margin: 0;
}

.insight-panel dl {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.insight-panel dt {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.insight-panel dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.insight-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.insight-article {
  max-width: 760px;
}

.insight-article h2 {
  margin-top: 0;
}

.insight-article h2 + p,
.insight-article p + p,
.insight-article p + .insight-figure,
.insight-figure + h2,
.coverage-block + h2,
.source-links {
  margin-top: 22px;
}

.insight-article p,
.source-links {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}

.insight-figure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.insight-figure-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-figure div {
  min-height: 176px;
  background: var(--surface);
  padding: 22px;
}

.insight-figure span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}

.insight-figure strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.insight-figure p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.source-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding-left: 0;
  list-style: none;
}

.coverage-block {
  margin-top: 34px;
  padding: 28px 30px 6px;
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
}

.coverage-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: end;
  padding-bottom: 22px;
}

.coverage-heading .eyebrow {
  margin: 0;
}

.coverage-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 3.4vw, 42px);
  line-height: 1.05;
}

.coverage-heading > p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

.coverage-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.coverage-map article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 18px;
  min-height: 0;
  padding: 19px 0 20px;
  border-top: 1px solid var(--hairline);
}

.coverage-map article:first-child {
  border-top: 0;
}

.coverage-map span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.coverage-map strong {
  display: block;
  margin-top: 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}

.coverage-map p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.source-links a {
  display: block;
  min-height: 100%;
  padding: 13px 0;
  border-top: 1px solid var(--hairline);
  color: var(--accent);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
}

.source-links a:hover {
  color: var(--navy);
}

.insight-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 24px;
}

.sidebar-box {
  padding: 24px 0 0;
  border-top: 2px solid var(--accent);
}

.sidebar-box h3 {
  margin: 10px 0 0;
}

.sidebar-box p:not(.eyebrow) {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 56px;
}

.founder-card,
.contact-form {
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
}

.founder-card {
  align-self: center;
  background: var(--white);
  padding: 30px;
}

.founder-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.founder-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--navy);
}

.founder-mark img {
  height: 30px;
}

.founder-card h3 {
  margin: 0;
  font-size: 16px;
}

.founder-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.founder-meta {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.9;
}

.founder-meta div,
.contact-meta div {
  display: flex;
  gap: 16px;
}

.founder-meta dt,
.founder-meta dd,
.contact-meta dt,
.contact-meta dd {
  margin: 0;
}

.founder-meta dt {
  flex: 0 0 84px;
  color: var(--accent);
}

.compact-link {
  margin-top: 18px;
}

.contact-split {
  align-items: center;
}

.contact-buttons {
  margin-top: 26px;
}

.next-steps {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}

.next-steps .eyebrow {
  color: var(--muted);
  letter-spacing: 0.12em;
}

.next-steps ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.next-steps li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--ink);
  font-size: 14.5px;
}

.next-steps span {
  flex: 0 0 auto;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
}

.email-link {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 2.4px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: clamp(16px, 2.2vw, 20px);
  text-decoration: none;
}

.contact-meta {
  margin: 32px 0 0;
}

.contact-meta div {
  padding: 12px 0;
  border-top: 1px solid var(--hairline);
  color: var(--ink);
  font-size: 15px;
}

.contact-meta a {
  color: inherit;
  text-decoration: none;
}

.contact-meta a:hover {
  color: var(--accent);
}

.contact-meta dt {
  flex: 0 0 96px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  background: var(--surface);
  padding: 32px;
}

.contact-form div + div {
  margin-top: 20px;
}

.contact-form label {
  display: block;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  min-height: 96px;
  resize: vertical;
}

.form-note,
.form-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-status:not(:empty) {
  color: var(--accent-dark);
}

.form-submit {
  width: 100%;
  margin-top: 24px;
  border: 0;
}

.site-footer {
  padding: 56px 0 40px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-mark {
  width: auto;
  height: 34px;
}

.footer-brand strong {
  display: block;
  color: var(--white);
}

.footer-brand span {
  display: block;
  margin-top: 3px;
  color: var(--accent-soft);
  font-size: 11.5px;
}

.site-footer nav {
  flex-wrap: wrap;
  gap: 28px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  font-size: 12.5px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

@media (max-width: 900px) {
  .three-col,
  .steps,
  .proof-grid,
  .split,
  .insight-hero-grid,
  .insight-layout {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 18px;
  }

  .steps article {
    padding-inline: 0;
  }

  .feature-strip {
    display: block;
  }

  .feature-strip div {
    margin-top: 14px;
  }

  .insight-sidebar {
    position: static;
  }

  .insight-feature-list {
    grid-template-columns: 1fr;
  }

  .insight-feature-list article {
    min-height: 0;
    padding-bottom: 34px;
  }

  .insight-feature-list article:nth-child(3)::before {
    display: none;
  }

  .insight-library {
    grid-template-columns: 1fr;
  }

  .insight-library article {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 40px, 1120px);
  }

  .header-shell {
    min-height: 64px;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding-inline: 16px;
  }

  .label-desktop {
    display: none;
  }

  .label-mobile {
    display: inline;
  }

  .hero-content {
    padding: 86px 0 94px;
  }

  .button,
  .button-row .button {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .insight-figure {
    grid-template-columns: 1fr;
  }

  .insight-figure-4 {
    grid-template-columns: 1fr;
  }

  .coverage-block {
    margin-top: 30px;
    padding: 22px 20px 4px;
  }

  .coverage-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 18px;
  }

  .coverage-heading h2 {
    font-size: 34px;
  }

  .coverage-heading > p {
    font-size: 15px;
  }

  .coverage-map article {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 14px;
    padding: 17px 0 18px;
  }

  .coverage-map span {
    width: 32px;
    height: 32px;
  }

  .coverage-map strong {
    margin-top: 0;
    font-size: 17px;
  }

  .coverage-map p {
    margin-top: 6px;
  }

  .source-links {
    grid-template-columns: 1fr;
  }

  .contact-meta div,
  .founder-meta div {
    display: block;
  }

  .contact-meta dt,
  .founder-meta dt {
    margin-bottom: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
