:root {
  --blue: #2563EB;
  --blue-hover: #1D4ED8;
  --green: #15803D;
  --orange: #C2410C;
  --bg: #FAFAFA;
  --card: #FFFFFF;
  --text: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --border-2: #CBD5E1;
  --section-alt: #F1F5F9;
  --hero-tint: #EFF6FF;
  --hero-tint-border: #DBEAFE;
  --footer-tint: #EFF4FF;
  --footer-divider: #DBE4F5;
  --tint-blue: #EFF6FF;
  --tint-green: #ECFDF5;
  --tint-green-border: #D1FAE5;
  --tint-orange: #FFF7ED;
  --tint-orange-border: #FFEDD5;
  --tint-slate: #F1F5F9;

  --shadow-card: 0 6px 20px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.05);
  --shadow-card-hover: 0 16px 36px rgba(15,23,42,.1);
  --shadow-btn: 0 2px 8px rgba(37,99,235,.28);
  --shadow-btn-hover: 0 5px 16px rgba(37,99,235,.38);
  --shadow-dropdown: 0 20px 46px rgba(15,23,42,.13);
  --shadow-header-scrolled: 0 4px 20px rgba(15,23,42,.05);

  --content-max: 1200px;
  --header-h: 74px;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-hover); }
::selection { background: var(--hero-tint-border); }

h1, h2, h3 { font-family: "Manrope", sans-serif; margin: 0; }

img, svg { max-width: 100%; }

.container { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); }

/* ===== Header ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: transparent;
  border-bottom: 1px solid rgba(226,232,240,0);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-header-scrolled);
}

.site-header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 18px);
  min-width: 0;
}

.wordmark {
  font-family: "Nunito", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--text);
}
.wordmark span { color: var(--blue); }
.wordmark--lg { font-size: 25px; }

.brand-lockup { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { height: 25px; width: 17.6px; display: block; flex-shrink: 0; max-width: none; }
.brand-mark--lg { height: 30px; width: 21.1px; }

.header-spacer { flex: 1; min-width: 8px; }

.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  flex-shrink: 0;
}

.nav-pill {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 0;
  border-radius: 999px;
  background: var(--hero-tint);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: left .34s cubic-bezier(.34,1.2,.4,1), width .34s cubic-bezier(.34,1.2,.4,1), opacity .22s ease;
}

.nav-item {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 14px;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-item:hover { color: var(--blue); }

.nav-caret {
  display: inline-flex;
  align-items: center;
  opacity: .5;
  transform: rotate(0deg);
  transition: transform .24s cubic-bezier(.34,1.2,.4,1), opacity .2s ease;
}
.nav-has-dropdown.is-open .nav-caret { transform: rotate(180deg); opacity: 1; }

.nav-dropdown-wrap { position: relative; }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 12px;
  z-index: 20;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.nav-has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown__notch {
  position: absolute;
  left: 24px;
  top: 7px;
  width: 13px;
  height: 13px;
  background: var(--card);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-radius: 3px 0 0 0;
  transform: rotate(45deg);
  z-index: 1;
}

.nav-dropdown__panel {
  position: relative;
  z-index: 0;
  width: 330px;
  padding: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-dropdown);
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-dropdown__link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 11px 13px;
  border-radius: 10px;
  transition: background .15s ease;
}
.nav-dropdown__link:hover { background: var(--hero-tint); }
.nav-dropdown__link-title { font-size: 15px; font-weight: 600; color: var(--text); }
.nav-dropdown__link-desc { font-size: 13px; line-height: 1.4; color: var(--text-muted); }

.nav-divider { width: 1px; height: 26px; background: var(--border); flex-shrink: 0; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--blue);
  color: #FFFFFF;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--shadow-btn);
  transition: all .18s ease;
}
.header-cta:hover { background: var(--blue-hover); color: #FFFFFF; box-shadow: var(--shadow-btn-hover); }
.header-cta span { opacity: .6; }

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: all .18s ease;
}
.menu-btn.is-open { background: var(--hero-tint); }
.menu-btn__bar {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .28s cubic-bezier(.34,1.2,.4,1);
}
.menu-btn.is-open .menu-btn__bar { background: var(--blue); }
.menu-btn.is-open .menu-btn__bar--1 { transform: translateY(3.5px) rotate(45deg); }
.menu-btn.is-open .menu-btn__bar--2 { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  left: 0; right: 0; top: var(--header-h);
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(15,23,42,.09);
}
.mobile-menu.is-open { display: block; }
.mobile-menu__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 14px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu__link {
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  transition: all .15s ease;
}
.mobile-menu__link:hover { background: var(--hero-tint); color: var(--blue); }
.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 14px 18px;
  box-sizing: border-box;
  max-width: 100%;
  background: var(--blue);
  color: #FFFFFF;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: var(--shadow-btn);
}
.mobile-menu__cta:hover { background: var(--blue-hover); color: #FFFFFF; }

@media (max-width: 999px) {
  .main-nav, .nav-divider { display: none; }
  .menu-btn { display: flex; }
}
@media (max-width: 479px) {
  .header-cta { display: none; }
}

/* ===== Notch panel (hero / footer) ===== */

.notch-panel {
  position: relative;
  overflow: hidden;
  max-width: 1512px;
  margin: calc(-1 * var(--header-h)) auto 0;
  width: calc(100% - 2 * clamp(12px, 2vw, 26px));
  padding-top: var(--header-h);
  border-radius: clamp(20px, 2.6vw, 40px);
  background: var(--hero-tint);
}

.notch-svg {
  position: absolute;
  left: 0; top: 0;
  width: max(240px, calc((100% - 1200px) / 2 + 285px));
  height: clamp(100px, 8vw, 150px);
  z-index: 3;
  pointer-events: none;
}

.hero-wave { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px clamp(18px, 4vw, 28px);
  box-sizing: border-box;
  max-width: 100%;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: all .15s ease;
}
.btn span { opacity: .6; }

.btn--primary {
  background: var(--blue);
  color: #FFFFFF;
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover { background: var(--blue-hover); color: #FFFFFF; box-shadow: 0 4px 14px rgba(37,99,235,.36); }

.btn--secondary {
  background: #FFFFFF;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(15,23,42,.06);
}
.btn--secondary:hover { border-color: var(--border-2); color: var(--text); box-shadow: 0 4px 12px rgba(15,23,42,.09); }

.btn--large {
  padding: 18px clamp(18px, 4vw, 32px);
  font-size: 17px;
  box-shadow: 0 2px 10px rgba(37,99,235,.35);
}
.btn--large:hover { background: var(--blue-hover); box-shadow: 0 6px 20px rgba(37,99,235,.5); }

/* ===== Sections & headings ===== */

.section { max-width: var(--content-max); margin: 0 auto; padding: 48px clamp(20px, 4vw, 32px); }
.band { position: relative; overflow: hidden; }
.band--alt { background: var(--section-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.eyebrow__dot { width: 6px; height: 6px; border-radius: 99px; background: var(--blue); }
.eyebrow__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.h1-hero {
  font-size: clamp(44px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: pretty;
}

.h2-section {
  font-size: clamp(32px, 2.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.h2-large {
  font-size: clamp(40px, 3.4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: pretty;
}

.lead { font-size: 18px; line-height: 1.6; color: var(--text-secondary); text-wrap: pretty; }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.section-head__hint { font-size: 16px; color: var(--text-muted); }
.section-head__link { margin-left: auto; font-size: 16px; font-weight: 500; }

/* ===== Hero ===== */

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.hero-gallery {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--hero-tint-border);
  background: transparent;
  width: 100%;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgba(15,23,42,.09);
}
.hero-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity .7s ease;
}
.hero-gallery__slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
.hero-gallery__img { display: block; width: 100%; height: 100%; object-fit: contain; background: #F8FAFC; }
.hero-gallery__dots {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(15,23,42,.1);
}
.hero-gallery__dot {
  height: 7px;
  width: 7px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  padding: 0;
  background: var(--border-2);
  transition: all .25s ease;
}
.hero-gallery__dot.is-active { width: 22px; background: var(--blue); }

.image-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #F8FAFC;
  border: 1px dashed var(--border-2);
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  border-radius: inherit;
}

.built-with { display: flex; align-items: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.built-with__label { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.built-with__rule { width: 22px; height: 1px; background: var(--blue); opacity: .5; }
.built-with__text { font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
.built-with__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 13px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hero-tint-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: all .2s cubic-bezier(.34,1.1,.4,1);
}
.tech-pill:hover { background: #FFFFFF; border-color: var(--hover-border); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15,23,42,.09); }
.tech-pill__dot { width: 8px; height: 8px; border-radius: 999px; flex-shrink: 0; }

/* ===== Build grid (what are you trying to build) ===== */

.build-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 16px;
}

.build-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 24px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-sizing: border-box;
  box-shadow: var(--shadow-card);
  transition: all .22s cubic-bezier(.34,1.1,.4,1);
}
.build-card:hover { transform: translateY(-5px); }
.build-card__numeral {
  align-self: flex-end;
  font-family: "Manrope", sans-serif;
  font-size: 62px;
  font-weight: 800;
  line-height: .8;
  opacity: .16;
  pointer-events: none;
  margin: -2px -2px -4px 0;
}
.build-card__bar { position: absolute; left: 0; top: 24px; width: 4px; height: 34px; border-radius: 0 4px 4px 0; }
.build-card__title { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; color: var(--text); line-height: 1.18; position: relative; }
.build-card__desc { font-size: 15px; line-height: 1.5; color: var(--text-secondary); text-wrap: pretty; position: relative; }
.build-card__link { display: flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 14.5px; font-weight: 600; position: relative; }

.build-card--blue { background: var(--tint-blue); border-color: var(--hero-tint-border); }
.build-card--blue:hover { border-color: var(--blue); box-shadow: 0 18px 40px rgba(37,99,235,.18); }
.build-card--deep { background: var(--section-alt); border-color: var(--border); }
.build-card--deep:hover { border-color: var(--blue-hover); box-shadow: 0 18px 40px rgba(29,78,216,.16); }
.build-card--green { background: var(--tint-green); border-color: var(--tint-green-border); }
.build-card--green:hover { border-color: var(--green); box-shadow: 0 18px 40px rgba(21,128,61,.18); }
.build-card--orange { background: var(--tint-orange); border-color: var(--tint-orange-border); }
.build-card--orange:hover { border-color: var(--orange); box-shadow: 0 18px 40px rgba(194,65,12,.18); }

/* ===== Quote band ===== */

.quote-band { background: var(--bg); }
.quote-band__map {
  position: absolute;
  left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 1600/620;
  pointer-events: none;
  z-index: 0;
}
.quote-band__map img { width: 100%; height: 100%; display: block; }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 18px;
}

.quote-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 26px 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  transition: all .22s cubic-bezier(.34,1.1,.4,1);
}
.quote-card:hover { border-color: var(--hover-border); transform: translateY(-4px); box-shadow: 0 14px 32px rgba(15,23,42,.07); }
.quote-card__mark { font-family: "Manrope", sans-serif; font-size: 46px; font-weight: 800; line-height: .6; opacity: .3; height: 22px; }
.quote-card__text { font-family: "Manrope", sans-serif; font-size: 20px; font-weight: 500; line-height: 1.4; letter-spacing: -0.015em; color: var(--text); text-wrap: pretty; }
.quote-card__tag { align-self: flex-start; margin-top: auto; padding: 5px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.centered-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 7px 7px 7px clamp(18px, 4vw, 28px);
  box-sizing: border-box;
  max-width: 100%;
  background: #FFFFFF;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(15,23,42,.06);
  transition: all .24s cubic-bezier(.34,1.1,.4,1);
}
.centered-cta:hover { background: var(--text); color: #FFFFFF; border-color: var(--text); box-shadow: 0 14px 34px rgba(15,23,42,.2); transform: translateY(-3px); }
.centered-cta__label { font-family: "Manrope", sans-serif; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: inherit; white-space: nowrap; }
.centered-cta__badge {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--blue); color: #FFFFFF; font-size: 18px; flex-shrink: 0;
}
.centered-cta-row { display: flex; justify-content: center; margin-top: 40px; }

/* ===== Workflow split ===== */

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.split-grid--start { align-items: start; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.chip { padding: 8px 14px; border: 1px solid var(--border); border-radius: 99px; font-size: 15px; color: var(--text-secondary); background: #fff; }

/* ===== Work cards ===== */

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 20px;
}
.work-card {
  display: flex;
  flex-direction: column;
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,23,42,.05);
  transition: all .18s ease;
}
.work-card:hover { border-color: var(--border-2); box-shadow: 0 14px 34px rgba(15,23,42,.07); transform: translateY(-3px); }
.work-card--unbuilt { cursor: default; }
.work-card--unbuilt:hover { border-color: var(--border); box-shadow: 0 1px 2px rgba(15,23,42,.05); transform: none; }
.work-card__image { height: 190px; background: var(--section-alt); border-bottom: 1px solid var(--border); }
.work-card__image--ratio { height: auto; aspect-ratio: 16/10; }
.work-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.work-card__category { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.work-card__title { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; color: var(--text); line-height: 1.25; }
.work-card__desc { font-size: 16px; line-height: 1.55; color: var(--text-secondary); text-wrap: pretty; }
.work-card__meta-row { display: flex; align-items: center; gap: 9px; margin-top: 4px; flex-wrap: wrap; }
.work-card__stack { font-size: 12.5px; color: var(--text-muted); }
.pill-soon {
  padding: 3px 9px; border-radius: 999px;
  background: var(--section-alt); border: 1px solid var(--border);
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-secondary);
}

/* ===== Capability tiles ===== */

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 18px;
}
.tile {
  position: relative;
  overflow: hidden;
  padding: 28px 24px 30px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .22s cubic-bezier(.34,1.1,.4,1);
}
.tile:hover { border-color: var(--hover-border); box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.tile__disc { position: absolute; right: -46px; bottom: -46px; width: 150px; height: 150px; border-radius: 50%; opacity: .07; pointer-events: none; }
.tile__icon { width: 54px; height: 54px; border-radius: 15px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; flex-shrink: 0; }
.tile__title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--text); line-height: 1.2; position: relative; }
.tile__desc { font-size: 16px; line-height: 1.55; color: var(--text-secondary); text-wrap: pretty; position: relative; }

.eyebrow-label { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }

/* ===== Process rows ===== */

.process-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.process-row:last-child { border-bottom: 0; }
.process-row__num { font-size: 13px; font-weight: 600; color: var(--blue); width: 28px; flex-shrink: 0; }
.process-row__title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; width: 140px; flex-shrink: 0; }
.process-row__desc { font-size: 16px; color: var(--text-secondary); flex: 1; text-wrap: pretty; }

/* ===== Why grid ===== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,23,42,.05);
}
.why-cell {
  position: relative;
  padding: 30px 26px 32px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s ease;
}
.why-cell:hover { background: var(--hover-bg); }
.why-cell__mark { width: 13px; height: 13px; border-radius: 3px; transform: rotate(45deg); margin-bottom: 4px; }
.why-cell__title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--text); line-height: 1.2; position: relative; }
.why-cell__desc { font-size: 16px; line-height: 1.55; color: var(--text-secondary); text-wrap: pretty; position: relative; }

/* ===== Dark CTA ===== */

.dark-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: clamp(24px, 5vw, 56px);
  box-sizing: border-box;
  background: var(--text);
  border-radius: 18px;
  flex-wrap: wrap;
}
.dark-cta__content { position: relative; z-index: 1; flex: 1 1 340px; min-width: min(340px, 100%); }
.dark-cta__title { color: #FFFFFF; }
.dark-cta__lead { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.6); margin: 18px 0 0; max-width: 52ch; text-wrap: pretty; }
.dark-cta__btn { position: relative; z-index: 1; }
.dark-wave { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

/* ===== Decorative shapes (>=1576px only) ===== */

.deco { display: none; position: absolute; pointer-events: none; z-index: 0; }
@media (min-width: 1576px) { .deco { display: block; } }
.deco--ring { border-radius: 50%; border: 2px solid; }
.deco--disc { border-radius: 50%; }
.deco--dots { background-image: radial-gradient(#94A3B8 1.4px, transparent 1.4px); background-size: 16px 16px; opacity: .45; }

/* ===== Footer ===== */

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--footer-tint);
  max-width: 1512px;
  margin: 0 auto;
  width: calc(100% - 2 * clamp(12px, 2vw, 26px));
  border-radius: clamp(20px, 2.6vw, 40px);
}
.site-footer__wordmark-wrap {
  position: absolute;
  left: 0; top: 0;
  z-index: 3;
  width: 100%;
  max-width: var(--content-max);
  left: 50%;
  transform: translateX(-50%);
  padding: 26px clamp(20px, 4vw, 24px) 0;
  box-sizing: border-box;
}
.footer-grid {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(104px, 8.5vw, 158px) clamp(20px, 4vw, 24px) 36px;
  display: grid;
  gap: clamp(28px, 4vw, 40px);
  grid-template-columns: minmax(0,1.5fr) repeat(3, minmax(0,1fr));
}
@media (max-width: 999px) { .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 619px) { .footer-grid { grid-template-columns: minmax(0,1fr); } }

.footer-col__title { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--text); margin-bottom: 2px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col__lead { font-size: 16px; line-height: 1.6; color: var(--text-secondary); margin: 14px 0 0; max-width: 34ch; text-wrap: pretty; }
.footer-link {
  font-size: 16px;
  color: var(--text-secondary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--border-2);
  text-underline-offset: 4px;
  transition: all .16s ease;
  width: fit-content;
}
.footer-link:hover { color: var(--text); text-decoration-color: var(--text); }
.footer-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; padding: 12px clamp(16px, 3vw, 22px); box-sizing: border-box; max-width: 100%; background: var(--blue); color: #FFFFFF; border-radius: 999px; font-size: 15px; font-weight: 500; white-space: nowrap; box-shadow: var(--shadow-btn); transition: all .16s ease; }
.footer-cta:hover { background: var(--blue-hover); color: #FFFFFF; box-shadow: var(--shadow-btn-hover); }

.footer-bottom { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 24px) 36px; }
.footer-bottom__row {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
  font-size: 15px; font-weight: 500; color: var(--blue);
  border-top: 1px solid var(--footer-divider); padding-top: 24px;
}
.footer-bottom__location { margin-left: auto; }

.site-gap { height: clamp(20px, 2.6vw, 40px); }

/* ===== Accessibility ===== */

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== Inner pages: shared prose/heading/card primitives ===== */

.h1-page {
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: pretty;
}

.h2-band { font-size: clamp(30px, 3vw, 40px); font-weight: 700; letter-spacing: -0.03em; }

.prose { font-size: 18px; line-height: 1.7; color: var(--text-secondary); text-wrap: pretty; }
.prose p { margin: 0 0 16px; }
.prose p:last-child { margin-bottom: 0; }
.prose-narrow { max-width: 70ch; }

.card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 18px;
}

.stat-value { font-family: "Manrope", sans-serif; font-size: 36px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat-label { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }

.on-page-nav { background: #FFFFFF; border: 1px solid var(--border); border-radius: 18px; padding: 26px; box-shadow: var(--shadow-card); align-self: start; display: flex; flex-direction: column; gap: 11px; }
.on-page-nav__label { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 3px; }
.on-page-nav__item { font-size: 16px; color: var(--text-secondary); }

/* ===== Request a Quote wizard ===== */

.quote-shell { max-width: 820px; margin: 0 auto; padding: 48px clamp(20px, 4vw, 32px); }

.quote-progress-row { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.quote-progress-track { flex: 1; min-width: 160px; height: 6px; border-radius: 999px; background: var(--border); overflow: hidden; }
.quote-progress-fill { height: 100%; border-radius: 999px; background: var(--blue); transition: width .35s cubic-bezier(.34,1.1,.4,1); }
.quote-step-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); white-space: nowrap; }

.quote-panel { background: #FFFFFF; border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-card); padding: clamp(24px, 4vw, 40px); }
.quote-panel__title { font-family: "Manrope", sans-serif; font-size: clamp(26px, 2.6vw, 34px); font-weight: 700; letter-spacing: -0.025em; margin: 0 0 8px; }
.quote-panel__lead { font-size: 16px; line-height: 1.6; color: var(--text-secondary); margin: 0 0 24px; }

.quote-step { display: none; }
.quote-step.is-active { display: block; }

.quote-option-grid { display: grid; gap: 12px; }
.quote-option-grid--build { grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr)); }
.quote-option-grid--industry { grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); }
.quote-option-grid--wide { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }

.quote-option {
  padding: 18px 20px;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  background: #FBFCFE;
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: all .18s cubic-bezier(.34,1.1,.4,1);
}
.quote-option:hover { border-color: var(--blue); background: var(--hero-tint); }
.quote-option.is-selected { border-color: var(--blue); background: var(--hero-tint); box-shadow: 0 0 0 1px var(--blue) inset; }

.quote-field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 14px; }
.quote-field-label { display: block; margin-bottom: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-secondary); }
.quote-field-input {
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: #FBFCFE;
  box-sizing: border-box;
  width: 100%;
}
.quote-field-input:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
textarea.quote-field-input { min-height: 150px; resize: vertical; }

.quote-upload-note { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px dashed var(--border-2); border-radius: 12px; background: #FBFCFE; font-size: 15px; color: var(--text-secondary); }
.quote-upload-note__tag { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); white-space: nowrap; }

.quote-summary { margin-top: 22px; padding: 18px; background: var(--section-alt); border-radius: 14px; }
.quote-summary__label { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 10px; }
.quote-summary__text { font-size: 16px; line-height: 1.7; color: var(--text); }

.quote-panel__footer { display: flex; align-items: center; gap: 16px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.quote-back {
  padding: 11px 18px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  color: var(--text-secondary);
  cursor: pointer;
}
.quote-back:disabled { color: var(--border-2); cursor: default; }
.quote-reassurance { font-size: 14px; color: var(--text-muted); margin-left: auto; }

.quote-error { color: var(--orange); font-size: 14px; margin-top: 8px; }

.quote-recaptcha-notice { font-size: 12.5px; line-height: 1.6; color: var(--text-muted); margin-top: 14px; }
.quote-recaptcha-notice a { color: var(--text-muted); text-decoration: underline; }

/* ===== FAQ items, contextual callouts, split layouts (services/solutions/etc.) ===== */

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #FFFFFF; border: 1px solid var(--border); border-radius: 16px; padding: 24px; box-shadow: 0 1px 2px rgba(15,23,42,.05); }
.faq-item__q { margin: 0 0 8px; font-family: "Manrope", sans-serif; font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
.faq-item__a { font-size: 16px; line-height: 1.6; color: var(--text-secondary); }

.detail-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.detail-split--center { align-items: center; }

.detail-h2 { font-family: "Manrope", sans-serif; font-size: clamp(28px, 2.8vw, 38px); font-weight: 700; letter-spacing: -0.03em; margin: 0 0 20px; line-height: 1.12; }

.callout {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-card);
}
.callout__title { font-family: "Manrope", sans-serif; font-size: clamp(26px, 2.6vw, 34px); font-weight: 700; letter-spacing: -0.03em; margin: 0 0 14px; }

.diagram-frame { width: 100%; aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; background: var(--section-alt); border: 1px solid var(--border); }
.diagram-frame--wide { aspect-ratio: 16/9; border-radius: 18px; box-shadow: var(--shadow-card); }

.meta-card { background: #FFFFFF; border: 1px solid var(--border); border-radius: 18px; padding: 24px; box-shadow: 0 1px 2px rgba(15,23,42,.05); }
.meta-card__label { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.meta-card__value { font-family: "Manrope", sans-serif; font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }

/* ===== Pricing tiers ===== */

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 18px; }
.pricing-tier {
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 20px; padding: 32px;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 12px; position: relative;
}
.pricing-tier--featured { border: 2px solid var(--blue); box-shadow: 0 14px 34px rgba(37,99,235,.16); }
.pricing-tier__badge {
  position: absolute; top: -13px; left: 32px; padding: 5px 14px; background: var(--blue); color: #FFFFFF;
  border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.pricing-tier__eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.pricing-tier__title { margin: 0; font-family: "Manrope", sans-serif; font-size: 26px; font-weight: 700; letter-spacing: -0.025em; }
.pricing-tier__price { font-family: "Manrope", sans-serif; font-size: 36px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.pricing-tier__price span { font-size: 18px; font-weight: 600; color: var(--text-secondary); }
.pricing-tier__desc { font-size: 16px; line-height: 1.6; color: var(--text-secondary); text-wrap: pretty; }
.pricing-tier__includes { font-size: 16px; line-height: 1.75; color: var(--text-secondary); margin-top: 6px; }

.included-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr)); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
}
.included-grid .why-cell { padding: 26px; }
.included-grid .why-cell h3 { margin: 0 0 6px; font-family: "Manrope", sans-serif; font-size: 19px; font-weight: 600; }

/* ===== Technologies ===== */

.tech-group { background: #FFFFFF; border: 1px solid var(--border); border-radius: 18px; padding: 26px; box-shadow: var(--shadow-card); }
.tech-group__title { margin: 0 0 8px; font-family: "Manrope", sans-serif; font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }
.tech-group__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tech-chip { padding: 7px 13px; background: var(--section-alt); border: 1px solid var(--border); border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--text-secondary); }

/* ===== Insights ===== */

.featured-article {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 0;
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-card); transition: all .22s cubic-bezier(.34,1.1,.4,1); text-decoration: none;
}
.featured-article:hover { border-color: var(--blue); box-shadow: 0 18px 44px rgba(15,23,42,.1); }
.featured-article__image { width: 100%; aspect-ratio: 4/3; background: var(--section-alt); border-right: 1px solid var(--border); }
.featured-article__body { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.featured-article__title { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; letter-spacing: -0.025em; color: var(--text); line-height: 1.15; }
.featured-article__link { font-size: 15px; font-weight: 500; color: var(--blue); margin-top: 8px; }

.article-card { background: #FFFFFF; border: 1px solid var(--border); border-radius: 18px; padding: 26px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 10px; }
.article-card__title { margin: 0 0 8px; font-family: "Manrope", sans-serif; font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: var(--text); }

/* ===== Labs ===== */

.status-pill { display: inline-flex; align-self: flex-start; align-items: center; padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.status-pill--live { background: var(--tint-green); color: var(--green); }
.status-pill--prototype { background: var(--tint-blue); color: var(--blue); }
.status-pill--exploring { background: var(--tint-orange); color: var(--orange); }

/* ===== Qualifier landing pages ===== */

.read-more-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 26px;
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 999px;
  font-size: 16px; font-weight: 600; color: var(--text); box-shadow: 0 1px 3px rgba(15,23,42,.06);
  transition: all .18s ease;
}
.read-more-pill:hover { border-color: var(--blue); box-shadow: 0 8px 20px rgba(15,23,42,.09); color: var(--text); }

.tile__numeral { position: relative; font-size: 12px; font-weight: 700; letter-spacing: .14em; }
.tile-link { text-decoration: none; }

.solution-card {
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 18px; padding: 28px;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 10px;
  transition: all .22s cubic-bezier(.34,1.1,.4,1); text-decoration: none;
}
.solution-card:hover { border-color: var(--hover-border); transform: translateY(-4px); }
.solution-card__title { margin: 0; font-family: "Manrope", sans-serif; font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--text); }
.solution-card__quote { font-size: 16px; line-height: 1.55; color: var(--text-secondary); text-wrap: pretty; }

.pill-static { padding: 10px 18px; background: #FFFFFF; border: 1px solid var(--border); border-radius: 999px; font-size: 15px; font-weight: 500; color: var(--text-secondary); }

/* ===== Contact: booking calendar ===== */

.contact-book-grid { display: grid; gap: clamp(20px,2.5vw,28px); grid-template-columns: minmax(0,1.02fr) minmax(0,1fr); align-items: start; }
@media (max-width: 999px) { .contact-book-grid { grid-template-columns: 1fr; } }

.contact-cal-card { background: #FFFFFF; border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow-card); overflow: hidden; }
.contact-cal-header { position: relative; background: var(--text); padding: clamp(20px,3vw,26px) clamp(20px,3vw,28px); overflow: hidden; }
.contact-cal-header__ring { position: absolute; right: -70px; top: -90px; width: 230px; height: 230px; border-radius: 999px; border: 34px solid #1E293B; box-sizing: border-box; pointer-events: none; }
.contact-cal-header__row { position: relative; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.contact-cal-header__title { font-family: 'Manrope', sans-serif; font-size: clamp(20px,2.1vw,26px); font-weight: 700; letter-spacing: -0.02em; margin: 0; color: #FFFFFF; flex: 1; min-width: 150px; }
.contact-cal-header__nav { display: flex; gap: 8px; }
.contact-cal-nav-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 999px; font-family: inherit; background: transparent; border: 1px solid #334155; color: #FFFFFF; cursor: pointer; transition: all .18s ease; }
.contact-cal-nav-btn:hover:not(:disabled) { border-color: #64748B; }
.contact-cal-nav-btn:disabled { border-color: #1E293B; color: #475569; cursor: default; }
.contact-cal-header__hint { position: relative; margin: 10px 0 0; font-size: 13.5px; color: #94A3B8; }

.contact-cal-body { padding: clamp(18px,3vw,26px); background: radial-gradient(circle at 12% 0%, #F5F9FF 0%, #FFFFFF 62%); }
.contact-cal-body__inner { max-width: 440px; margin: 0 auto; }
.contact-cal-weekdays { display: grid; grid-template-columns: repeat(7,minmax(0,1fr)); gap: 6px; margin-bottom: 10px; }
.contact-cal-weekdays span { display: block; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--text-muted); }
.contact-cal-weekdays span.is-weekend { color: var(--border-2); }
.contact-day-grid { display: grid; grid-template-columns: repeat(7,minmax(0,1fr)); gap: 6px; }
.contact-day {
  position: relative; display: flex; align-items: center; justify-content: center; aspect-ratio: 1; width: 100%;
  padding: 0; font-family: inherit; font-size: 15px; font-weight: 600; border-radius: 14px;
  border: 1px solid var(--border); background: #FFFFFF; color: var(--text); cursor: pointer;
  transition: all .18s cubic-bezier(.34,1.1,.4,1);
}
.contact-day:hover:not(:disabled) { border-color: var(--blue); }
.contact-day.is-today { box-shadow: inset 0 0 0 1.6px #93C5FD; }
.contact-day.is-selected { background: var(--blue); color: #FFFFFF; border-color: var(--blue); transform: translateY(-1px); box-shadow: 0 8px 18px rgba(37,99,235,.34); }
.contact-day:disabled { background: transparent; color: var(--border-2); border-color: transparent; pointer-events: none; cursor: default; }
.contact-day.is-blank { visibility: hidden; pointer-events: none; }

.contact-slots-title { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; margin: 28px 0 12px; }
.contact-slot-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(104px,1fr)); gap: 8px; }
.contact-slot {
  padding: 12px 8px; font-family: inherit; font-size: 14.5px; font-weight: 600; border-radius: 12px;
  border: 1px solid var(--border); background: #FFFFFF; color: var(--text); cursor: pointer;
  transition: all .18s cubic-bezier(.34,1.1,.4,1);
}
.contact-slot:hover:not(:disabled) { border-color: var(--blue); }
.contact-slot.is-selected { background: var(--blue); border-color: var(--blue); color: #FFFFFF; box-shadow: 0 6px 14px rgba(37,99,235,.3); }
.contact-slot:disabled { background: #F8FAFC; color: var(--border-2); cursor: default; }
.contact-slot-hint { margin: 14px 0 0; font-size: 13px; color: var(--text-muted); }

.contact-details-card { background: #FFFFFF; border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow-card); padding: clamp(22px,3vw,32px); display: flex; flex-direction: column; gap: 18px; }
.contact-details-card__lead { font-size: 15px; line-height: 1.6; color: var(--text-secondary); margin: 6px 0 0; }
.contact-summary { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 14px; background: #F8FAFC; border: 1px solid var(--border); transition: background .2s ease, border-color .2s ease; }
.contact-summary.is-ready { background: #EFF6FF; border-color: #BFDBFE; }
.contact-summary__label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }
.contact-summary__value { font-size: 15.5px; font-weight: 600; color: var(--text); margin-top: 3px; }

.contact-book-btn {
  padding: 16px 20px; border: none; border-radius: 999px; background: var(--blue); color: #FFFFFF;
  font-family: inherit; font-size: 16px; font-weight: 600; cursor: pointer; transition: background .18s ease;
}
.contact-book-btn:hover:not(:disabled) { background: var(--blue-hover); }
.contact-book-btn:disabled { background: var(--border-2); cursor: default; }

.contact-recaptcha-notice { font-size: 12.5px; line-height: 1.6; color: var(--text-muted); margin-top: 14px; }
.contact-recaptcha-notice a { color: var(--text-muted); text-decoration: underline; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
