/* Well and Good V2 shared styles */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0f1b2a;
  --ink-soft: #334438;
  --paper: #f6f1e6;
  --paper-strong: #fffdf7;
  --paper-deep: #efe3d3;
  --line: #d8c6b3;
  --navy: #1e3d34;
  --navy-deep: #102a25;
  --coral: #e76f4f;
  --coral-dark: #b8472f;
  --coral-deep: #a83b25;
  --coral-light: #ff9275;
  --aqua: #a9d6e2;
  --sage: #7a8158;
  --sage-dark: #65704a;
  --gold: #cda05b;
  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow: 0 24px 70px rgba(15, 27, 42, 0.14);
  --shadow-dark: 0 26px 80px rgba(8, 20, 18, 0.28);
}

html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(246, 241, 230, 0.94), rgba(246, 241, 230, 0.97)),
    url("assets/wgw-pattern-texture.webp") 50% 0 / 560px auto repeat;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--paper-strong);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-weight: 800;
}
.skip-link:focus { transform: none; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216, 198, 179, 0.24);
  background: rgba(30, 61, 52, 0.94);
  box-shadow: 0 8px 30px rgba(15, 27, 42, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.nav-shell {
  min-width: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper-strong);
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.brand-mark img { width: 44px; height: 44px; }
.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1;
}
.brand-name em { color: var(--coral-light); font-style: italic; }
.brand-descriptor {
  display: block;
  margin-top: 5px;
  color: rgba(255, 253, 247, 0.62);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.primary-nav { display: flex; align-items: center; gap: 24px; }
.nav-link {
  position: relative;
  color: rgba(255, 253, 247, 0.8);
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}
.nav-link:hover, .nav-link:focus-visible, .nav-link[aria-current="page"] { color: var(--paper-strong); }
.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--coral);
}
.nav-cta { padding: 11px 17px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 247, 0.35);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--paper-strong);
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible, .nav-link:focus-visible, .text-link:focus-visible, .menu-toggle:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 3px;
}
.btn-primary { background: var(--coral-dark); color: white; box-shadow: 0 16px 34px rgba(184, 71, 47, 0.28); }
.btn-primary:hover { background: var(--coral-deep); }
.btn-light { background: var(--paper-strong); color: var(--navy); }
.btn-light:hover { background: var(--paper-deep); }
.btn-outline { border-color: currentColor; color: var(--navy); background: transparent; }
.btn-outline.light { color: var(--paper-strong); border-color: rgba(255, 253, 247, 0.5); }
.btn-outline:hover { border-color: var(--coral); color: var(--coral); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--coral-dark);
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper-strong);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.075;
  background: url("assets/wgw-pattern-texture.webp") 50% 0 / 460px auto repeat;
}
.hero::after {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -240px;
  top: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 214, 226, 0.24), transparent 67%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.65fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  padding: clamp(52px, 6vw, 88px) 0;
}
.eyebrow {
  margin-bottom: 18px;
  color: var(--coral-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--aqua); }
h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--navy);
  line-height: 1.03;
  text-wrap: balance;
}
.hero h1, .page-hero h1 { color: var(--paper-strong); }
.display {
  max-width: 16ch;
  font-size: clamp(3rem, 5.3vw, 4.6rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.display .accent { color: var(--coral-light); font-style: italic; }
.hero-intro {
  max-width: 640px;
  margin-top: 28px;
  color: rgba(255, 253, 247, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.capability-index { border-top: 1px solid rgba(255, 253, 247, 0.28); }
.capability-index a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.2);
  color: var(--paper-strong);
  text-decoration: none;
  transition: padding 180ms ease, color 180ms ease;
}
.capability-index a:hover { padding-left: 8px; color: var(--aqua); }
.capability-index .number { color: var(--coral); font-family: ui-monospace, monospace; font-size: 0.75rem; }
.capability-index strong { font-size: 0.94rem; }
.capability-index .arrow { color: var(--coral); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background: var(--navy);
  color: var(--paper-strong);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.065;
  background: url("assets/wgw-pattern-texture.webp") 50% 0 / 460px auto repeat;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 920px; }
.page-hero h1 { max-width: 15ch; font-size: clamp(3rem, 7vw, 6rem); font-weight: 850; letter-spacing: -0.025em; }
.page-hero p:not(.eyebrow) { max-width: 680px; margin-top: 24px; color: rgba(255, 253, 247, 0.82); font-size: 1.15rem; }
.breadcrumbs { margin-bottom: 32px; color: rgba(255, 253, 247, 0.62); font-size: 0.78rem; font-weight: 700; }
.breadcrumbs a { color: var(--aqua); text-underline-offset: 3px; }

.section { padding: clamp(76px, 9vw, 116px) 0; }
.section-tight { padding: 64px 0; }
.section-paper { background: var(--paper-strong); }
.section-dark { position: relative; background: var(--ink); color: var(--paper-strong); }
.section-dark h2, .section-dark h3 { color: var(--paper-strong); }
.section-dark .section-intro, .section-dark p { color: rgba(255, 253, 247, 0.74); }
.section-sage { background: #e8e5d7; }
.section-coral { background: var(--coral); color: white; }
.section-coral h2, .section-coral h3 { color: white; }
.section-heading { max-width: 840px; margin-bottom: 48px; }
.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.55fr);
  gap: 48px;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--line);
}
.section-heading h2 { font-size: clamp(2.4rem, 5vw, 4.3rem); font-weight: 850; letter-spacing: -0.02em; }
.section-intro { max-width: 670px; margin-top: 18px; color: var(--ink-soft); font-size: 1.05rem; }
.section-heading.split .section-intro { margin-top: 0; }

.definition {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 40px;
  padding: 32px;
  border-left: 4px solid var(--coral);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}
.definition strong { color: var(--sage-dark); font-size: 0.72rem; letter-spacing: 0.11em; text-transform: uppercase; }
.definition p { color: var(--ink-soft); font-size: 1.08rem; }

.lane-grid { display: grid; gap: 20px; }
.lane {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 32px;
  align-items: center;
  min-height: 240px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-strong);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.lane:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.lane-number { font-family: "Fraunces", Georgia, serif; font-size: 4.8rem; font-weight: 850; line-height: 1; color: var(--coral); opacity: 0.82; }
.lane h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.lane p { margin-top: 12px; color: var(--ink-soft); }
.lane ul, .check-list { list-style: none; display: grid; gap: 9px; }
.lane li, .check-list li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: 0.9rem; }
.lane li::before, .check-list li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 9px; height: 2px; background: var(--coral); }

.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.bento-card {
  grid-column: span 4;
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--paper-strong);
  box-shadow: 0 12px 34px rgba(15, 27, 42, 0.08);
}
.bento-card.half { grid-column: span 6; }
.bento-card.wide { grid-column: span 8; }
.card-link { color: inherit; text-decoration: none; }
.bento-card.tall { grid-row: span 2; }
.bento-card.dark { background: var(--navy); color: var(--paper-strong); box-shadow: var(--shadow-dark); }
.bento-card.dark h3 { color: var(--paper-strong); }
.bento-card h3 { font-size: 1.55rem; }
.bento-card p { margin-top: 12px; color: var(--ink-soft); }
.bento-card.dark p { color: rgba(255, 253, 247, 0.72); }
.bento-card .text-link { margin-top: 22px; }

.steps { border-top: 2px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 110px minmax(0, 0.8fr) minmax(260px, 1fr);
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step-number { font-family: "Fraunces", Georgia, serif; color: var(--coral); font-size: 3.8rem; font-weight: 850; line-height: 0.9; }
.step h3 { font-size: 1.65rem; }
.step p { color: var(--ink-soft); }

.proof-row { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.65fr); gap: 52px; align-items: center; }
.browser-frame { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-strong); box-shadow: var(--shadow); }
.browser-bar { height: 36px; display: flex; align-items: center; gap: 7px; padding: 0 14px; background: var(--navy); }
.browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); }
.browser-bar span:nth-child(2) { background: var(--gold); }
.browser-bar span:nth-child(3) { background: var(--sage); }
.proof-copy h3 { margin-top: 12px; font-size: clamp(2rem, 4vw, 3.2rem); }
.proof-copy p { margin-top: 16px; color: var(--ink-soft); }
.proof-label { color: var(--sage); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }

.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.price-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-strong);
}
.price-card.featured { background: var(--navy); color: var(--paper-strong); box-shadow: var(--shadow-dark); }
.price-card.featured h3 { color: var(--paper-strong); }
.price-card h3 { font-size: 1.65rem; }
.price-card .summary { min-height: 50px; margin-top: 9px; color: var(--ink-soft); }
.price-card.featured .summary { color: rgba(255, 253, 247, 0.72); }
.price { margin-top: 24px; font-family: "Fraunces", Georgia, serif; color: var(--navy); font-size: 2.9rem; font-weight: 850; line-height: 1; }
.featured .price { color: var(--paper-strong); }
.price small { font-family: "Inter", sans-serif; color: var(--sage); font-size: 0.78rem; }
.price-note { min-height: 38px; margin-top: 8px; color: var(--sage); font-size: 0.75rem; font-weight: 700; }
.featured .price-note { color: var(--aqua); }
.price-card .check-list { margin: 24px 0; padding-top: 20px; border-top: 1px solid var(--line); }
.featured .check-list { border-color: rgba(255, 253, 247, 0.2); }
.featured .check-list li { color: rgba(255, 253, 247, 0.78); }
.price-card .btn { margin-top: auto; }

.answer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.answer {
  padding: 30px;
  background: var(--paper-strong);
}
.answer h3 { font-family: "Inter", sans-serif; font-size: 1.02rem; line-height: 1.35; }
.answer p { margin-top: 11px; color: var(--ink-soft); font-size: 0.92rem; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr); gap: 64px; align-items: start; }
.contact-panel { padding: 34px; border-radius: var(--radius-md); background: var(--paper-strong); box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--navy); font-size: 0.78rem; font-weight: 850; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
}
.field textarea { min-height: 124px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid rgba(169, 214, 226, 0.65);
  border-color: var(--navy);
}
.form-note { color: var(--ink-soft); font-size: 0.76rem; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.cta-band { position: relative; overflow: hidden; padding: 76px 0; background: var(--coral); color: white; }
.cta-band::after { content: ""; position: absolute; inset: 0; opacity: 0.08; background: url("assets/wgw-pattern-texture.webp") 50% 0 / 460px auto repeat; }
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 42px; align-items: center; }
.cta-band h2 { max-width: 14ch; color: white; font-size: clamp(2.5rem, 5vw, 4.4rem); }
.cta-band p { max-width: 620px; margin-top: 16px; color: rgba(255, 255, 255, 0.87); }

.site-footer { padding: 54px 0 28px; background: var(--navy); color: rgba(255, 253, 247, 0.68); }
.footer-top { display: grid; grid-template-columns: minmax(280px, 1fr) repeat(2, minmax(160px, 0.45fr)); gap: 48px; }
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-brand .brand-mark { flex: none; }
.footer-brand strong { display: block; color: white; font-family: "Fraunces", Georgia, serif; font-size: 1.45rem; }
.footer-brand p { max-width: 420px; margin-top: 8px; font-size: 0.82rem; }
.footer-nav h2 { font-family: "Inter", sans-serif; color: var(--aqua); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-nav ul { list-style: none; display: grid; gap: 9px; margin-top: 14px; }
.footer-nav a { color: rgba(255, 253, 247, 0.72); font-size: 0.82rem; text-decoration: none; }
.footer-nav a:hover { color: white; text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255, 253, 247, 0.16); font-size: 0.72rem; }

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

@media (max-width: 980px) {
  .brand-descriptor { display: none; }
  .primary-nav { gap: 15px; }
  .nav-link { font-size: 0.72rem; }
  .hero-grid { grid-template-columns: 1fr; align-items: start; }
  .capability-index { max-width: 620px; }
  .lane { grid-template-columns: 88px 1fr; }
  .lane > :last-child { grid-column: 2; }
  .bento-card,
  .bento-card.half { grid-column: span 6; }
  .bento-card.wide { grid-column: span 12; }
  .proof-row, .contact-layout { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card .summary, .price-note { min-height: 0; }
}

@media (max-width: 820px) {
  .container, .narrow { width: min(100% - 36px, var(--container)); }
  .menu-toggle { display: inline-grid; place-items: center; }
  .primary-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 1px);
    display: none;
    align-items: stretch;
    padding: 18px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: var(--navy-deep);
    box-shadow: var(--shadow-dark);
  }
  .primary-nav.open { display: grid; }
  .nav-link { padding: 11px 5px; font-size: 0.85rem; }
  .nav-link[aria-current="page"]::after { display: none; }
  .nav-cta { margin-top: 4px; }
  .section-heading.split { grid-template-columns: 1fr; gap: 18px; }
  .definition { grid-template-columns: 1fr; gap: 12px; }
  .lane { grid-template-columns: 64px 1fr; padding: 26px 22px; gap: 20px; }
  .lane-number { font-size: 3.5rem; }
  .step { grid-template-columns: 70px 1fr; gap: 18px; }
  .step p { grid-column: 2; }
  .answer-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .brand-mark { width: 42px; height: 42px; }
  .brand-mark img { width: 38px; height: 38px; }
  .brand-name { font-size: 1.1rem; }
  .display { max-width: 100%; font-size: clamp(3rem, 14vw, 4.25rem); }
  .hero-actions .btn { width: 100%; }
  .page-hero { padding: 68px 0 76px; }
  .page-hero h1 { max-width: 100%; font-size: clamp(2.75rem, 12vw, 4rem); }
  .hero-intro,
  .page-hero p { max-width: 100%; }
  .bento { grid-template-columns: 1fr; }
  .bento-card, .bento-card.half, .bento-card.wide { grid-column: 1; }
  .lane { grid-template-columns: 1fr; }
  .lane > :last-child { grid-column: 1; }
  .lane-number { font-size: 2.8rem; }
  .step { grid-template-columns: 1fr; }
  .step p { grid-column: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
}

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

/* V2 supplementary layout helpers (additive, do not replace the design system) */
.footer-top.footer-4 { grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(140px, 0.5fr)); }
.footer-contact { margin-top: 26px; font-size: 0.82rem; }
.footer-contact a { color: var(--aqua); font-weight: 700; }
.footer-cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255, 253, 247, 0.16); }
.footer-cta-row p { margin: 0; color: rgba(255, 253, 247, 0.7); font-size: 0.82rem; }

.hero-card {
  align-self: center;
  padding: 32px;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 247, 0.07);
  border: 1px solid rgba(255, 253, 247, 0.22);
  color: var(--paper-strong);
  box-shadow: var(--shadow-dark);
}
.hero-card .kicker { color: var(--aqua); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-card .price { margin-top: 10px; color: var(--paper-strong); }
.hero-card .price small { color: var(--aqua); }
.hero-card p { margin-top: 14px; color: rgba(255, 253, 247, 0.82); font-size: 0.95rem; }

.plan-note { margin-top: 28px; color: var(--sage); font-size: 0.85rem; font-weight: 700; }
.section-dark .plan-note { color: var(--aqua); }

.mini-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.stat-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.stat { padding-top: 16px; border-top: 3px solid var(--coral); }
.stat:nth-child(2) { border-color: var(--aqua); }
.stat:nth-child(3) { border-color: var(--gold); }
.stat:nth-child(4) { border-color: var(--sage); }
.stat strong { display: block; font-family: "Fraunces", Georgia, serif; font-size: 2.6rem; font-weight: 850; line-height: 1; color: var(--paper-strong); }
.stat span { display: block; margin-top: 10px; color: rgba(255, 253, 247, 0.72); font-size: 0.86rem; }

.link-row { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 8px; }

@media (max-width: 980px) {
  .stat-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .footer-top.footer-4 { grid-template-columns: 1fr 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .footer-top.footer-4 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
}

/* Agentic OS workflow, readable without scripts or animation. */
.hero-note { margin-top: 22px; color: var(--aqua); font-size: 0.8rem; }
.workflow-preview { max-width: 640px; padding: 26px; border: 1px solid rgba(255,253,247,.3); border-radius: 14px; background: var(--navy-deep); color: var(--paper-strong); box-shadow: var(--shadow-dark); }
.workflow-preview figcaption { font-size: .8rem; line-height: 1.5; font-weight: 700; padding-bottom: 22px; border-bottom: 1px solid rgba(255,253,247,.2); }
.status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--aqua); margin-right: 7px; }
.workflow-preview ol { list-style: none; display: grid; gap: 14px; padding: 22px 0; }
.workflow-preview li { padding: 0 0 14px 16px; border-left: 2px solid rgba(169,214,226,.5); }
.workflow-label { display: block; font-size: .65rem; font-weight: 800; letter-spacing: .08em; color: var(--aqua); margin-bottom: 5px; }
.workflow-preview strong { display: block; font-size: 1rem; line-height: 1.4; }
.workflow-preview li p { margin-top: 6px; font-size: .83rem; line-height: 1.55; color: #d3dfd8; }
.workflow-preview .approval-step { border-left-color: var(--coral-light); }
.approval-step .workflow-label { color: var(--coral-light); }
.workflow-preview .workflow-caption { font-size: .72rem; line-height: 1.6; color: #bdcbc3; }
.prose { max-width: 760px; font-size: 1.07rem; }
.prose p + p { margin-top: 20px; }
.prose .text-link { margin-top: 24px; }
.founder-photo { width: 100%; max-width: 390px; aspect-ratio: 1; object-fit: cover; border-radius: 14px; }
.bento-card > img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: top; margin-bottom: 24px; border-radius: 8px; }
.faq-list { max-width: 860px; }
.faq-list details { padding: 23px 0; border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-weight: 700; color: var(--navy); }
.faq-list p { margin-top: 16px; max-width: 720px; }
.plan-terms { margin-top: 16px; font-size: .84rem; }
.pricing-note { margin-top: 28px; font-size: .84rem; }
:focus-visible { outline: 3px solid var(--coral-dark); outline-offset: 5px; }
.site-header :focus-visible, .hero :focus-visible, .page-hero :focus-visible, .site-footer :focus-visible { outline-color: var(--aqua); }
[id] { scroll-margin-top: 100px; }
@media (max-width: 980px) { .workflow-preview { width: 100%; } }
@media (max-width: 580px) {
  .display { font-size: clamp(2.6rem, 10.5vw, 3.6rem); }
  .hero-grid { gap: 38px; }
  .workflow-preview, .contact-panel { padding: 22px; }
  .prose a { overflow-wrap: anywhere; }
}
