/* ==========================================================================
   Doctor.G -- marketing site design system
   Light, clinical, trust-forward. One stylesheet for every page.
   Sections: 1 tokens - 2 base - 3 buttons - 4 chrome - 5 hero - 6 sections
   7 components - 8 subpage blocks - 9 forms - 10 motion - 11 responsive
   ========================================================================== */

/* 1 -- Tokens ------------------------------------------------------------- */
:root {
  /* brand blues */
  --brand-900: #202c66; /* brand navy, sampled from the official logo */
  --brand-800: #1b2450;
  --brand-dot: #5170ff; /* the blue dot in the Doctor.G wordmark */
  --brand-700: #0b4c8c;
  --brand-600: #0e63b3;
  --brand-500: #1a7fd4;
  --brand-200: #bcd9f4;
  --brand-100: #e7f1fb;
  --brand-50: #f3f8fd;

  /* teal / green accents */
  --teal-700: #0b7d73;
  --teal-600: #0e9b8e;
  --teal-500: #14b8a6;
  --teal-100: #ddf5f1;
  --green-600: #17a05f;
  --green-100: #e2f6ec;
  --amber-500: #f5a524;
  --amber-100: #fdf0d8;

  /* neutrals */
  --ink: #0c1b2a;
  --ink-2: #24384d;
  --muted: #5e7185;
  --muted-2: #8598ab;
  --line: #e3ebf3;
  --line-2: #eef4f9;
  --surface: #ffffff;
  --tint: #f5f9fd;
  --tint-2: #eef5fb;

  /* effects */
  --grad-brand: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-700) 55%, var(--teal-600) 100%);
  --grad-deep: linear-gradient(150deg, #202c66 0%, #0b4c8c 48%, #0b7d73 100%);
  --grad-soft: linear-gradient(135deg, var(--brand-100), var(--teal-100));
  --ring: 0 0 0 4px rgba(26, 127, 212, 0.16);
  --sh-xs: 0 1px 2px rgba(12, 27, 42, 0.06);
  --sh-sm: 0 4px 14px rgba(12, 27, 42, 0.06);
  --sh-md: 0 12px 32px rgba(12, 27, 42, 0.09);
  --sh-lg: 0 26px 60px rgba(12, 27, 42, 0.13);
  --sh-navy: 0 10px 24px rgba(32, 44, 102, 0.18);
  --sh-brand: 0 14px 30px rgba(14, 99, 179, 0.26);

  /* geometry */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --content: 1240px;
  --gutter: 24px;

  --font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* 2 -- Base -------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--brand-600);
  text-decoration: none;
}

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

img {
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.35rem, 4.6vw, 3.65rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.85rem, 3.3vw, 2.65rem);
}

h3 {
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

strong {
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  background: var(--brand-200);
  color: var(--brand-900);
}

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 0 0 var(--r-md) var(--r-md);
  background: var(--brand-700);
  color: #fff;
  font-weight: 700;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 0;
}

/* icons */
.ico {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ico-sm {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.ico-lg {
  width: 27px;
  height: 27px;
  stroke-width: 1.6;
}

/* shared type helpers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--brand-600);
  font-family: var(--font-display);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}

.eyebrow-plain::before {
  display: none;
}

.lead {
  color: var(--muted);
  font-size: 1.09rem;
  line-height: 1.72;
}

.sub {
  color: var(--muted);
  line-height: 1.7;
}

.tiny {
  color: var(--muted-2);
  font-size: 0.84rem;
}

.balance {
  text-wrap: balance;
}

.grad-text {
  background: linear-gradient(100deg, var(--brand-600), var(--teal-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 3 -- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: none;
  color: inherit;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: center;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease,
    border-color 170ms ease, color 170ms ease;
}

.btn .ico {
  transition: transform 170ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:hover .ico-arrow {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--sh-brand);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(14, 99, 179, 0.34);
}

.btn-ghost {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--sh-xs);
}

.btn-ghost:hover {
  border-color: var(--brand-200);
  color: var(--brand-700);
  box-shadow: var(--sh-sm);
}

.btn-quiet {
  color: var(--brand-700);
  padding-inline: 6px;
  min-height: 40px;
}

.btn-quiet:hover {
  color: var(--brand-600);
}

.btn-onDark {
  background: #fff;
  color: var(--brand-800);
  box-shadow: 0 14px 30px rgba(3, 20, 38, 0.28);
}

.btn-onDark-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-onDark-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.89rem;
}

.btn-lg {
  min-height: 56px;
  padding: 0 28px;
  font-size: 1.01rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-700);
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 700;
}

.link-arrow .ico {
  transition: transform 170ms ease;
}

.link-arrow:hover .ico {
  transform: translateX(4px);
}

/* 4 -- Chrome: utility bar, masthead, mega menu, drawer, footer ---------- */
.utility {
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.855rem;
}

.utility-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  padding-block: 6px;
}

.utility-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.utility-note .ico {
  color: var(--teal-500);
}

.utility-links {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.utility-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  transition: background 150ms ease, color 150ms ease;
}

.utility-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.utility-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

/* masthead */
.masthead {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line-2);
  backdrop-filter: blur(14px);
  transition: box-shadow 200ms ease, border-color 200ms ease;
}

.masthead.is-stuck {
  border-bottom-color: transparent;
  box-shadow: 0 10px 30px rgba(12, 27, 42, 0.08);
}

.masthead-in {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 78px;
  padding-block: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  /* official Doctor.G wordmark: white on brand navy, ~4.24:1 */
  height: 34px;
  width: auto;
  border-radius: 7px;
  box-shadow: var(--sh-navy);
}




/* primary nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-inline: auto;
  list-style: none;
}

.nav > li {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 11px 13px;
  /* the dropdown triggers are <button>s: strip the UA border and face */
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--r-sm);
  color: var(--ink-2);
  font-family: var(--font-display);
  font-size: 0.945rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 150ms ease, background 150ms ease;
}

.nav-link:hover,
.nav-link[aria-expanded="true"] {
  color: var(--brand-700);
  background: var(--brand-50);
}

.nav-link .ico {
  width: 15px;
  height: 15px;
  color: var(--muted-2);
  transition: transform 200ms ease;
}

.nav-link[aria-expanded="true"] .ico {
  transform: rotate(180deg);
  color: var(--brand-600);
}

.nav-link.is-active {
  color: var(--brand-700);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}

.masthead-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

/* mega dropdown */
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  translate: -50% 0;
  z-index: 95;
  width: max-content;
  max-width: min(92vw, 880px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 190ms ease, transform 190ms ease, visibility 190ms;
}

.mega::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  translate: -50% 0;
  rotate: 45deg;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 3px 0 0 0;
  background: var(--surface);
}

.mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-grid {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, minmax(228px, 1fr));
}

.mega-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  padding: 13px;
  border-radius: var(--r-md);
  transition: background 150ms ease;
}

.mega-item:hover {
  background: var(--brand-50);
}

.mega-item .tile {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.mega-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.mega-item span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.855rem;
  line-height: 1.5;
}

.mega-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 15px 16px 4px;
  border-top: 1px solid var(--line-2);
}

.mega-foot p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* gradient icon tile */
.tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--grad-soft);
  color: var(--brand-700);
  box-shadow: inset 0 0 0 1px rgba(14, 99, 179, 0.1);
}

.tile-solid {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--sh-brand);
}

.tile-teal {
  background: linear-gradient(135deg, var(--teal-100), #cdeee9);
  color: var(--teal-700);
  box-shadow: inset 0 0 0 1px rgba(14, 155, 142, 0.14);
}

.tile-green {
  background: linear-gradient(135deg, var(--green-100), #d3f0e0);
  color: #128a4f;
  box-shadow: inset 0 0 0 1px rgba(23, 160, 95, 0.14);
}

.tile-amber {
  background: linear-gradient(135deg, var(--amber-100), #fbe6bd);
  color: #a9700c;
  box-shadow: inset 0 0 0 1px rgba(245, 165, 36, 0.18);
}

.tile-lg {
  width: 62px;
  height: 62px;
  border-radius: 19px;
}

/* mobile drawer */
.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr min(400px, 88vw);
  visibility: hidden;
  pointer-events: none;
}

.drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.drawer-scrim {
  background: rgba(6, 26, 46, 0.5);
  opacity: 0;
  transition: opacity 240ms ease;
  border: 0;
  cursor: pointer;
}

.drawer.is-open .drawer-scrim {
  opacity: 1;
}

.drawer-panel {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  box-shadow: -20px 0 60px rgba(6, 26, 46, 0.22);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
}

.drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-2);
  position: sticky;
  top: 0;
  background: var(--surface);
}

.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.drawer-body {
  padding: 14px 20px 26px;
}

.drawer-group + .drawer-group {
  border-top: 1px solid var(--line-2);
  margin-top: 6px;
  padding-top: 6px;
}

.drawer-label {
  padding: 14px 4px 8px;
  color: var(--muted-2);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drawer-body a:not(.btn) {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 6px;
  border-radius: var(--r-sm);
  color: var(--ink-2);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.drawer-body a:not(.btn):hover {
  background: var(--brand-50);
  color: var(--brand-700);
}

.drawer-body a .ico {
  color: var(--brand-600);
}

.drawer-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

/* footer */
.footer {
  margin-top: 90px;
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.72);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding: 66px 0 48px;
}

.footer h4 {
  color: #fff;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.93rem;
  line-height: 1.7;
}

.footer-brand img {
  /* identical navy to the footer, so the lockup reads as part of it */
  height: 36px;
  border-radius: 0;
  box-shadow: none;
}

.footer h4 {
  margin-bottom: 16px;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 11px;
  list-style: none;
}

.footer-list a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  transition: color 150ms ease;
}

.footer-list a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 13px;
  list-style: none;
  font-size: 0.93rem;
}

.footer-contact li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
}

.footer-contact .ico {
  margin-top: 3px;
  color: var(--teal-500);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.87rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
}

.footer-note {
  padding: 16px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* back to top */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--sh-brand);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
}

.to-top .ico {
  rotate: -90deg;
}

.to-top.is-on {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 5 -- Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 84px;
  background:
    radial-gradient(760px 420px at 88% 8%, rgba(20, 184, 166, 0.14), transparent 62%),
    radial-gradient(900px 520px at 6% 4%, rgba(26, 127, 212, 0.16), transparent 60%),
    linear-gradient(180deg, var(--brand-50) 0%, #fbfdff 62%, var(--surface) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(14, 99, 179, 0.11) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(720px 400px at 22% 26%, #000 12%, transparent 72%);
  -webkit-mask-image: radial-gradient(720px 400px at 22% 26%, #000 12%, transparent 72%);
  pointer-events: none;
}

.hero-in {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 58px;
  align-items: center;
}

.hero h1 {
  max-width: 17ch;
}

.hero .lead {
  margin-top: 22px;
  max-width: 52ch;
  font-size: 1.14rem;
}

.hero .btn-row {
  margin-top: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 15px 7px 8px;
  border: 1px solid var(--brand-200);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-800);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--sh-xs);
}

.badge b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-2);
  font-size: 0.925rem;
  font-weight: 600;
}

.hero-proof .ico {
  color: var(--green-600);
}

/* hero media */
.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-shot {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--grad-soft);
  aspect-ratio: 9 / 11;
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(6, 42, 78, 0.42) 100%);
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -22px -18px -26px 8px;
  border-radius: 44px;
  background: var(--grad-brand);
  opacity: 0.13;
  rotate: -3deg;
}

/* floating stat cards */
.float-card {
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--sh-md);
  backdrop-filter: blur(8px);
}

.float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}

.float-card span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.float-a {
  left: -34px;
  top: 12%;
}

.float-b {
  right: -26px;
  top: 46%;
}

.float-c {
  left: -20px;
  bottom: 7%;
}

.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-600);
  justify-self: center;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--green-600);
  opacity: 0.55;
  animation: pulse 2.1s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* 6 -- Section scaffolding ---------------------------------------------- */
.section {
  padding: 84px 0;
}

.section-tight {
  padding: 60px 0;
}

.section-tint {
  background: linear-gradient(180deg, var(--tint) 0%, #fafcfe 100%);
  border-block: 1px solid var(--line-2);
}

.section-head {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head .lead {
  margin-top: 16px;
}

.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.head-row .section-head {
  margin-bottom: 0;
}

/* 7 -- Components ------------------------------------------------------- */

/* logo / trust strip */
.trust {
  padding: 34px 0 26px;
  border-bottom: 1px solid var(--line-2);
  background: var(--surface);
}

.trust p {
  text-align: center;
  color: var(--muted-2);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 44px;
  flex-wrap: wrap;
  margin-top: 22px;
  list-style: none;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  opacity: 0.82;
  transition: opacity 160ms ease, color 160ms ease;
}

.trust-row li:hover {
  opacity: 1;
  color: var(--brand-700);
}

.trust-row .ico {
  color: var(--brand-500);
}

/* announcement band */
.announce {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  background: var(--grad-deep);
  color: #fff;
}

.announce::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 220px at 12% 120%, rgba(20, 184, 166, 0.5), transparent 65%),
    radial-gradient(460px 240px at 88% -30%, rgba(26, 127, 212, 0.45), transparent 62%);
}

.announce-in {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.announce-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.announce h2 {
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.announce p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  max-width: 58ch;
}

.announce .tile {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.tag-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--teal-500);
  color: #04302c;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* pillar cards (products) */
.pillars {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-xs);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity 220ms ease;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--brand-200);
  box-shadow: var(--sh-md);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar h3 {
  margin: 20px 0 10px;
  font-size: 1.16rem;
}

.pillar p {
  color: var(--muted);
  font-size: 0.945rem;
  line-height: 1.66;
}

.pillar .link-arrow {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}

.pillar-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pillar-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  color: var(--ink-2);
  font-size: 0.9rem;
}

.pillar-list .ico {
  margin-top: 3px;
  color: var(--teal-600);
}

/* metrics band */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--line-2);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.metric {
  padding: 34px 28px;
  background: var(--surface);
  text-align: center;
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  background: linear-gradient(120deg, var(--brand-600), var(--teal-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric span {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* split feature rows */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px;
  align-items: center;
}

.split + .split {
  margin-top: 96px;
}

.split-flip .split-media {
  order: -1;
}

.split h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.3rem);
}

.split .lead {
  margin-top: 16px;
}

.split-media {
  position: relative;
  /* contains the decorative ::after so its z-index cannot escape the row */
  isolation: isolate;
}

.split-media img {
  width: 100%;
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-lg);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: auto -16px -16px auto;
  width: 62%;
  height: 62%;
  z-index: -1;
  border-radius: var(--r-2xl);
  background: var(--grad-soft);
}

/* checklist */
.checklist {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
}

.checklist .ico {
  margin-top: 2px;
  width: 22px;
  height: 22px;
  padding: 3px;
  border-radius: 50%;
  background: var(--green-100);
  color: #128a4f;
  stroke-width: 2.4;
}

.checklist b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.99rem;
  color: var(--ink);
}

.checklist span {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.62;
}

/* tabs (who we serve) */
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--sh-xs);
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--ink-2);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.tab:hover {
  color: var(--brand-700);
  background: var(--brand-50);
}

.tab[aria-selected="true"] {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--sh-brand);
}

.tab-panels {
  margin-top: 40px;
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 54px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background: var(--surface);
  box-shadow: var(--sh-sm);
  animation: fadeUp 380ms ease both;
}

.tab-panel img {
  width: 100%;
  border-radius: var(--r-xl);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* testimonials */
.quotes {
  position: relative;
}

.quote-track {
  display: grid;
}

.quote {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background: var(--surface);
  box-shadow: var(--sh-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 340ms ease, transform 340ms ease, visibility 340ms;
}

.quote.is-on {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.quote-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--amber-500);
}

.quote-stars .ico {
  fill: var(--amber-500);
  width: 18px;
  height: 18px;
}

.quote blockquote {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.quote blockquote::before {
  content: "\201C";
  color: var(--brand-200);
  font-size: 2.4em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-right: 4px;
}

.quote-by {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line-2);
}

.quote-by img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px var(--brand-100);
}

.quote-by strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
}

.quote-by span {
  display: block;
  color: var(--muted);
  font-size: 0.885rem;
}

.quote-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.quote-dots {
  display: inline-flex;
  gap: 9px;
  list-style: none;
}

.quote-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--brand-200);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.quote-dots button[aria-current="true"] {
  width: 30px;
  border-radius: 999px;
  background: var(--grad-brand);
}

.quote-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.quote-arrow:hover {
  border-color: var(--brand-500);
  color: var(--brand-600);
}

.quote-arrow.prev .ico {
  rotate: 180deg;
}

/* capability chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

.chips li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-2);
  font-family: var(--font-display);
  font-size: 0.925rem;
  font-weight: 600;
  box-shadow: var(--sh-xs);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.chips li:hover {
  transform: translateY(-3px);
  border-color: var(--brand-200);
  box-shadow: var(--sh-sm);
}

.chips .ico {
  color: var(--brand-600);
}

/* resource cards */
.cards-3 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.res-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-xs);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.res-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.res-shot {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--grad-soft);
}

.res-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}

.res-card:hover .res-shot img {
  transform: scale(1.05);
}

.res-kind {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-700);
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--sh-xs);
}

.res-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.res-body h3 {
  font-size: 1.12rem;
  line-height: 1.35;
}

.res-body p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.res-body .link-arrow {
  margin-top: auto;
  padding-top: 20px;
}

/* CTA band */
.cta {
  position: relative;
  overflow: hidden;
  padding: 72px 56px;
  border-radius: var(--r-2xl);
  background: var(--grad-deep);
  color: #fff;
  text-align: center;
  box-shadow: var(--sh-lg);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 300px at 14% 110%, rgba(20, 184, 166, 0.46), transparent 62%),
    radial-gradient(560px 320px at 86% -20%, rgba(26, 127, 212, 0.5), transparent 60%);
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(600px 300px at 50% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(600px 300px at 50% 0%, #000, transparent 72%);
}

.cta-in {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}

.cta h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}

.cta p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.7;
}

.cta .btn-row {
  justify-content: center;
  margin-top: 32px;
}

.cta-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  list-style: none;
}

.cta-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-meta .ico {
  color: var(--teal-500);
}

/* 8 -- Subpage blocks --------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 62px;
  background:
    radial-gradient(700px 340px at 82% 0%, rgba(20, 184, 166, 0.14), transparent 64%),
    linear-gradient(180deg, var(--brand-50), #fbfdff);
  border-bottom: 1px solid var(--line-2);
}

.page-hero-in {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: center;
}

.page-hero-full .page-hero-in {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  max-width: 20ch;
}

.page-hero .lead {
  margin-top: 20px;
  max-width: 56ch;
}

.page-hero-media img {
  width: 100%;
  border-radius: var(--r-2xl);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--sh-lg);
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  list-style: none;
  color: var(--muted-2);
  font-size: 0.86rem;
}

.crumbs a {
  color: var(--muted);
}

.crumbs a:hover {
  color: var(--brand-700);
}

.crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 9px;
  color: var(--brand-200);
}

.crumbs [aria-current] {
  color: var(--ink-2);
  font-weight: 600;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  list-style: none;
}

.pill-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid var(--brand-200);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand-800);
  font-size: 0.885rem;
  font-weight: 600;
}

.pill-row .ico {
  color: var(--teal-600);
}

/* generic feature card grids */
.grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.fcard {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-xs);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.fcard:hover {
  transform: translateY(-5px);
  border-color: var(--brand-200);
  box-shadow: var(--sh-md);
}

.fcard h3 {
  margin: 20px 0 10px;
}

.fcard p {
  color: var(--muted);
  font-size: 0.945rem;
  line-height: 1.66;
}

.fcard ul {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
  list-style: none;
  display: grid;
  gap: 10px;
}

.fcard ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  color: var(--ink-2);
  font-size: 0.915rem;
  line-height: 1.55;
}

.fcard ul .ico {
  margin-top: 3px;
  color: var(--teal-600);
}

.fcard-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px var(--brand-100);
}

/* dark panel */
.panel-dark {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border-radius: var(--r-2xl);
  background: var(--grad-deep);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: var(--sh-lg);
}

.panel-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 280px at 90% 0%, rgba(20, 184, 166, 0.34), transparent 62%);
}

.panel-dark > * {
  position: relative;
}

.panel-dark h2,
.panel-dark h3 {
  color: #fff;
}

.panel-dark .eyebrow {
  color: var(--teal-500);
}

.panel-dark .eyebrow::before {
  background: var(--teal-500);
}

.spec-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.spec {
  padding: 24px 22px;
  background: rgba(6, 42, 78, 0.55);
  backdrop-filter: blur(4px);
}

.spec strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: #fff;
  margin-bottom: 6px;
}

.spec span {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* pricing */
.plans {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background: var(--surface);
  box-shadow: var(--sh-xs);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.plan-featured {
  border-color: var(--brand-500);
  box-shadow: var(--sh-md);
}

.plan-featured::before {
  content: "Most adopted";
  position: absolute;
  top: -13px;
  left: 50%;
  translate: -50% 0;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--sh-brand);
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plan > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
  min-height: 3.2em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0 4px;
  padding-top: 22px;
  border-top: 1px solid var(--line-2);
}

.plan-price b {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--ink);
}

.plan-price span {
  color: var(--muted);
  font-size: 0.9rem;
}

.plan-features {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
  list-style: none;
}

.plan-features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  color: var(--ink-2);
  font-size: 0.925rem;
  line-height: 1.55;
}

.plan-features .ico {
  margin-top: 3px;
  color: var(--green-600);
}

.plan-features .muted-row {
  color: var(--muted-2);
}

.plan-features .muted-row .ico {
  color: var(--muted-2);
}

.plan .btn {
  margin-top: auto;
  width: 100%;
}

/* comparison table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-xs);
}

table.cmp {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

table.cmp th,
table.cmp td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
}

table.cmp thead th {
  background: var(--tint);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

table.cmp tbody th {
  font-weight: 600;
  color: var(--ink-2);
}

table.cmp td {
  color: var(--muted);
}

table.cmp tbody tr:last-child th,
table.cmp tbody tr:last-child td {
  border-bottom: 0;
}

table.cmp tbody tr:hover th,
table.cmp tbody tr:hover td {
  background: var(--brand-50);
}

table.cmp .ico {
  color: var(--green-600);
}

/* accordion */
.accordion {
  display: grid;
  gap: 12px;
}

.acc {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--sh-xs);
  overflow: hidden;
}

.acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 21px 24px;
  border: 0;
  background: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-align: left;
  cursor: pointer;
}

.acc-head .ico {
  color: var(--brand-600);
  transition: transform 240ms ease;
}

.acc-head[aria-expanded="true"] {
  color: var(--brand-700);
}

.acc-head[aria-expanded="true"] .ico {
  transform: rotate(180deg);
}

.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.acc-body > div {
  overflow: hidden;
}

.acc.is-open .acc-body {
  grid-template-rows: 1fr;
}

.acc-body p {
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 76ch;
}

/* 9 -- Forms ------------------------------------------------------------ */
.form-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
}

.form-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background: var(--surface);
  box-shadow: var(--sh-md);
}

.field-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink-2);
}

.field label .req {
  color: #c8452f;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235e7185' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9.5l6 5.5 6-5.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: var(--ring);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.consent input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--brand-600);
}

.form-card .btn {
  width: 100%;
  margin-top: 24px;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--green-100);
  border: 1px solid #b8e6cd;
  color: #0f6b3f;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status[hidden] {
  display: none;
}

.contact-aside {
  display: grid;
  gap: 18px;
}

.contact-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-xs);
}

.contact-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.03rem;
  color: var(--ink);
  margin-bottom: 5px;
}

.contact-tile p,
.contact-tile a {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.62;
}

.contact-tile a {
  color: var(--brand-700);
  font-weight: 600;
}

/* 10 -- Motion ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: 90ms;
}

.reveal-d2 {
  transition-delay: 180ms;
}

.reveal-d3 {
  transition-delay: 270ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

/* 11 -- Responsive ------------------------------------------------------ */
@media (max-width: 1180px) {
  .nav {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .masthead-in {
    gap: 16px;
    justify-content: space-between;
  }

  .masthead-cta .btn-quiet {
    display: none;
  }

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

  .float-a,
  .float-c {
    left: -12px;
  }

  .float-b {
    right: -12px;
  }
}

@media (max-width: 1000px) {
  :root {
    --gutter: 18px;
  }

  .hero {
    padding: 52px 0 64px;
  }

  .hero-in,
  .page-hero-in,
  .split,
  .tab-panel,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero h1 {
    max-width: 22ch;
  }

  .split + .split {
    margin-top: 64px;
  }

  .split-flip .split-media {
    order: 0;
  }

  .hero-media {
    max-width: 460px;
    margin-inline: auto;
  }

  .metrics,
  .grid-3,
  .cards-3,
  .plans,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-featured::before {
    top: -12px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .section {
    padding: 66px 0;
  }

  .cta {
    padding: 56px 26px;
  }

  .panel-dark,
  .form-card {
    padding: 32px 24px;
  }

  .quote {
    padding: 32px 26px;
  }
}

@media (max-width: 720px) {
  .utility-in {
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 10px;
  }

  /* the tagline has no room here, and a lone icon reads as noise */
  .utility-note {
    display: none;
  }

  .brand img {
    height: 29px;
  }

  .pillars,
  .metrics,
  .grid-2,
  .grid-3,
  .cards-3,
  .plans,
  .spec-grid,
  .field-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .metrics {
    gap: 1px;
  }

  .metric {
    padding: 26px 20px;
  }

  .float-card {
    position: static;
    margin-top: 12px;
  }

  .hero-media::before {
    display: none;
  }

  .float-b {
    display: none;
  }

  .tabs {
    width: 100%;
    border-radius: var(--r-lg);
    justify-content: stretch;
  }

  .tab {
    flex: 1 1 auto;
    justify-content: center;
    padding-inline: 14px;
  }

  .tab-panel {
    padding: 22px;
  }

  .btn-row .btn {
    width: 100%;
  }

  .hero-proof {
    gap: 10px 18px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .to-top {
    right: 14px;
    bottom: 14px;
  }
}
