:root {
  color-scheme: light;
  --page-bg: #eef4f7;
  --page-bg-deep: #dfe8ee;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-tint: rgba(242, 248, 251, 0.92);
  --line: rgba(121, 147, 173, 0.2);
  --line-strong: rgba(83, 111, 141, 0.3);
  --text: #163049;
  --text-soft: #4f647d;
  --text-muted: #72839a;
  --accent: #2d7acb;
  --accent-strong: #155fa8;
  --accent-soft: #e6f2fb;
  --teal: #1e9aa0;
  --teal-soft: #dbf3f2;
  --gold: #b98531;
  --gold-soft: #fff4df;
  --danger: #b65a5a;
  --shadow-soft: 0 18px 42px rgba(28, 53, 82, 0.09);
  --shadow-deep: 0 28px 64px rgba(28, 53, 82, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1240px, calc(100% - 40px));
  --transition: 160ms ease;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% 8%, rgba(45, 122, 203, 0.14), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(30, 154, 160, 0.14), transparent 24%),
    radial-gradient(circle at 78% 84%, rgba(185, 133, 49, 0.12), transparent 20%),
    linear-gradient(180deg, #f5f9fc 0%, var(--page-bg) 45%, var(--page-bg-deep) 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(14px);
}

body::before {
  top: 88px;
  right: -140px;
  width: 320px;
  height: 320px;
  background: rgba(45, 122, 203, 0.08);
}

body::after {
  left: -120px;
  bottom: 60px;
  width: 280px;
  height: 280px;
  background: rgba(30, 154, 160, 0.08);
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  top: -44px;
  left: 18px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 12px;
  color: #ffffff;
  background: #153450;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 18px;
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  padding: 28px 0 10px;
  position: relative;
  z-index: 5;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-soft);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(230, 241, 250, 0.96)),
    linear-gradient(135deg, rgba(45, 122, 203, 0.16), rgba(30, 154, 160, 0.18));
  border: 1px solid rgba(69, 113, 152, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: var(--accent);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-title {
  font-family: "Outfit", "Avenir Next", sans-serif;
  font-size: clamp(1.22rem, 2vw, 1.46rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.brand-subtitle {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(86, 118, 150, 0.14);
  border-radius: 999px;
  background: rgba(246, 250, 252, 0.82);
}

.site-nav a,
.footer-links a {
  text-decoration: none;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-soft);
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-strong);
  background: rgba(229, 239, 248, 0.92);
}

.site-nav a[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, #4d97df 100%);
  box-shadow: 0 10px 22px rgba(45, 122, 203, 0.22);
}

.site-main {
  padding: 18px 0 40px;
  position: relative;
  z-index: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, #4d97df 100%);
  box-shadow: 0 16px 32px rgba(45, 122, 203, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 36px rgba(45, 122, 203, 0.28);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(83, 111, 141, 0.2);
  background: rgba(255, 255, 255, 0.88);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(45, 122, 203, 0.28);
  color: var(--accent-strong);
}

.button-compact {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.96rem;
}

.content-shell {
  display: grid;
  gap: 24px;
}

.hero-card,
.section-card,
.page-hero,
.content-panel,
.cta-band,
.footer-shell {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  padding: clamp(30px, 4vw, 46px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 252, 0.88)),
    radial-gradient(circle at 84% 24%, rgba(45, 122, 203, 0.14), transparent 28%);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-card::before {
  right: -120px;
  top: -110px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(45, 122, 203, 0.08);
}

.hero-card::after {
  inset: auto 24px 24px auto;
  width: min(44%, 520px);
  aspect-ratio: 1;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
    url("landing/hero-art.png") center / contain no-repeat;
  opacity: 0.28;
}

.hero-copy,
.hero-preview {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(230, 242, 251, 0.92);
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Outfit", "Avenir Next", sans-serif;
  letter-spacing: -0.03em;
  color: var(--text);
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  line-height: 0.98;
  max-width: 11ch;
}

.lead {
  margin-top: 18px;
  max-width: 44ch;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  color: var(--text-soft);
}

.cta-row,
.badge-row,
.stats-row,
.button-row,
.footer-links,
.summary-row,
.key-point-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row {
  margin-top: 26px;
}

.badge-row {
  margin-top: 24px;
}

.badge,
.mini-badge,
.summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(83, 111, 141, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.mini-badge {
  padding: 8px 12px;
  font-size: 0.9rem;
}

.hero-preview {
  display: grid;
  gap: 16px;
  align-content: center;
}

.preview-window {
  border-radius: 28px;
  padding: 20px;
  border: 1px solid rgba(83, 111, 141, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(240, 247, 251, 0.92));
  box-shadow: var(--shadow-deep);
}

.preview-window-header,
.preview-window-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.preview-window-header {
  margin-bottom: 18px;
}

.preview-window-title {
  display: grid;
  gap: 4px;
}

.preview-window-title strong {
  font-size: 1.08rem;
}

.preview-window-title span,
.preview-window-row span,
.preview-note,
.section-copy,
.metric-card p,
.content-panel p,
.footer-shell p,
.support-card p,
.info-note,
.policy-callout p,
li {
  color: var(--text-soft);
}

.preview-window-row + .preview-window-row {
  margin-top: 12px;
}

.preview-window-row strong {
  font-size: 1.05rem;
}

.preview-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.88rem;
}

.preview-pill-teal {
  background: var(--teal-soft);
  color: #0e6e72;
}

.preview-chart {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
  height: 140px;
}

.preview-chart span {
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(180deg, rgba(45, 122, 203, 0.18), rgba(45, 122, 203, 0.78));
}

.preview-chart span:nth-child(2n) {
  background: linear-gradient(180deg, rgba(30, 154, 160, 0.2), rgba(30, 154, 160, 0.76));
}

.preview-chart span:nth-child(1) { height: 44%; }
.preview-chart span:nth-child(2) { height: 56%; }
.preview-chart span:nth-child(3) { height: 62%; }
.preview-chart span:nth-child(4) { height: 48%; }
.preview-chart span:nth-child(5) { height: 76%; }
.preview-chart span:nth-child(6) { height: 68%; }
.preview-chart span:nth-child(7) { height: 82%; }

.preview-note {
  margin-top: 14px;
  font-size: 0.92rem;
}

.section-block {
  display: grid;
  gap: 18px;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 62ch;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.section-copy {
  font-size: 1.03rem;
}

.feature-grid,
.metric-grid,
.panel-grid,
.policy-grid,
.support-grid,
.summary-grid {
  display: grid;
  gap: 18px;
}

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

.panel-grid,
.policy-grid,
.support-grid,
.summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.metric-card,
.support-card,
.policy-card,
.summary-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(83, 111, 141, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 252, 0.9));
  box-shadow: var(--shadow-soft);
}

.feature-card h3,
.metric-card h3,
.support-card h3,
.policy-card h3,
.summary-card h3 {
  font-size: 1.34rem;
}

.section-icon,
.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(83, 111, 141, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(226, 241, 248, 0.98));
  color: var(--accent);
}

.section-icon svg,
.card-icon svg,
.inline-icon svg,
.footer-mark svg {
  width: 22px;
  height: 22px;
}

.card-accent-teal .card-icon,
.policy-card-accent .card-icon {
  background: linear-gradient(180deg, rgba(237, 250, 249, 0.96), rgba(220, 244, 243, 0.98));
  color: var(--teal);
}

.card-accent-gold .card-icon {
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.96), rgba(255, 244, 223, 0.98));
  color: var(--gold);
}

.section-card,
.page-hero,
.content-panel,
.cta-band {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 38px);
}

.section-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 252, 0.9)),
    radial-gradient(circle at right top, rgba(45, 122, 203, 0.1), transparent 34%);
}

.section-card-grid {
  display: grid;
  gap: 18px;
}

.section-card-grid.two-col {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.list-check,
.timeline-list,
.detail-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-check li,
.timeline-list li,
.detail-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.inline-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(230, 242, 251, 0.9);
  color: var(--accent-strong);
  margin-top: 1px;
}

.stats-row {
  margin-top: 18px;
}

.metric-card strong {
  font-family: "Outfit", "Avenir Next", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.metric-card p {
  font-size: 0.96rem;
}

.page-hero {
  display: grid;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 251, 0.92)),
    radial-gradient(circle at right top, rgba(30, 154, 160, 0.12), transparent 28%);
}

.page-hero h1 {
  max-width: 14ch;
}

.page-hero .lead {
  max-width: 56ch;
}

.content-panel {
  display: grid;
  gap: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 249, 252, 0.9));
}

.content-panel h2 {
  font-size: 1.54rem;
}

.content-panel h3 {
  font-size: 1.24rem;
}

.content-panel section {
  display: grid;
  gap: 10px;
}

.content-panel section + section {
  padding-top: 18px;
  border-top: 1px solid rgba(121, 147, 173, 0.16);
}

.summary-card {
  align-content: start;
}

.summary-card p,
.policy-card p,
.support-card p {
  margin: 0;
}

.policy-callout,
.info-note {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(83, 111, 141, 0.16);
  background: rgba(248, 251, 253, 0.92);
}

.policy-callout strong,
.summary-card strong,
.support-card strong {
  color: var(--text);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(21, 95, 168, 0.96), rgba(30, 154, 160, 0.92));
  color: #ffffff;
  box-shadow: var(--shadow-deep);
}

.cta-band h2,
.cta-band p,
.cta-band .badge {
  color: inherit;
}

.cta-band .badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.cta-band .button-secondary {
  border-color: rgba(217, 234, 247, 0.72);
  background: rgba(255, 255, 255, 0.94);
  color: #124a7a;
  box-shadow: 0 12px 28px rgba(8, 34, 61, 0.14);
}

.cta-band .button-secondary:hover,
.cta-band .button-secondary:focus-visible {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.96);
  color: #0f3c63;
}

.site-footer {
  padding: 10px 0 34px;
  position: relative;
  z-index: 1;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 26px;
}

.footer-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-mark {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(230, 242, 251, 0.96), rgba(214, 237, 247, 0.98));
  color: var(--accent);
}

.footer-shell p {
  margin: 0;
  max-width: 62ch;
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a {
  padding: 10px 0;
  font-weight: 700;
  color: var(--text-soft);
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-strong);
}

.footer-links a[aria-current="page"] {
  color: var(--accent-strong);
  border-bottom-color: rgba(45, 122, 203, 0.34);
}

:focus-visible {
  outline: 3px solid rgba(45, 122, 203, 0.28);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .site-header-inner,
  .site-header-actions,
  .hero-card,
  .section-card-grid.two-col,
  .cta-band,
  .footer-shell {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header-actions {
    width: 100%;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
  }

  .hero-card::after {
    width: 80%;
    right: -30px;
    bottom: -20px;
  }

  .hero-preview {
    width: 100%;
  }

  .feature-grid,
  .panel-grid,
  .policy-grid,
  .support-grid,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100%, calc(100% - 22px));
  }

  .site-header {
    padding-top: 18px;
  }

  .site-header-inner {
    padding: 16px;
    border-radius: 22px;
  }

  .brand-lockup {
    align-items: flex-start;
  }

  .site-nav {
    gap: 6px;
    padding: 5px;
  }

  .site-nav a {
    padding: 9px 12px;
    font-size: 0.94rem;
  }

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

  .hero-card,
  .section-card,
  .page-hero,
  .content-panel,
  .cta-band,
  .footer-shell {
    padding: 20px;
    border-radius: 24px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .lead {
    font-size: 1rem;
  }

  .preview-window {
    padding: 16px;
    border-radius: 22px;
  }

  .preview-chart {
    height: 110px;
    gap: 6px;
  }

  .footer-note {
    align-items: center;
  }
}

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

/* Final 2026 public redesign */

:root {
  --public-ink: #10253b;
  --public-ink-soft: #50647b;
  --public-line-strong: rgba(85, 113, 142, 0.24);
  --public-panel: rgba(255, 255, 255, 0.86);
  --public-panel-strong: #ffffff;
  --public-panel-deep: rgba(10, 31, 54, 0.88);
  --public-accent: #1770c8;
  --public-teal: #0e9b9b;
  --public-gold: #b88a35;
  --public-shadow-soft: 0 24px 54px rgba(18, 37, 59, 0.1);
  --public-shadow-deep: 0 32px 80px rgba(18, 37, 59, 0.16);
}

body.public-page {
  color: var(--public-ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(23, 112, 200, 0.16), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(14, 155, 155, 0.16), transparent 24%),
    radial-gradient(circle at 78% 84%, rgba(184, 138, 53, 0.13), transparent 20%),
    linear-gradient(180deg, #f8fbfd 0%, #eef4f8 44%, #e1eaf2 100%);
}

body.public-page::before {
  top: 84px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: rgba(23, 112, 200, 0.11);
}

body.public-page::after {
  left: -100px;
  bottom: 40px;
  width: 300px;
  height: 300px;
  background: rgba(14, 155, 155, 0.1);
}

.public-page h1,
.public-page h2,
.public-page h3,
.public-page h4,
.public-page .brand-title {
  font-family: "Sora", "Avenir Next", sans-serif;
}

.public-page .site-header-inner,
.public-page .hero-card,
.public-page .section-card,
.public-page .page-hero,
.public-page .content-panel,
.public-page .cta-band,
.public-page .footer-shell,
.public-page .feature-card,
.public-page .support-card,
.public-page .policy-card {
  border-color: var(--public-line-strong);
  box-shadow: var(--public-shadow-soft);
}

.public-page .site-header {
  padding-top: 24px;
}

.public-page .site-header-inner {
  padding: 16px 18px 16px 20px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 250, 253, 0.78)),
    linear-gradient(120deg, rgba(23, 112, 200, 0.08), rgba(14, 155, 155, 0.08));
  backdrop-filter: blur(26px);
}

.public-page .brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 26px rgba(23, 112, 200, 0.12);
}

.public-page .site-nav {
  padding: 7px;
  background: rgba(248, 251, 253, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.public-page .site-nav a {
  padding: 10px 17px;
}

.public-page .button {
  border-radius: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.public-page .button-primary {
  background: linear-gradient(135deg, #1770c8 0%, #2c93e2 60%, #3ab7dd 100%);
  box-shadow: 0 18px 36px rgba(23, 112, 200, 0.24);
}

.public-page .button-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(81, 108, 136, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  color: var(--text);
}

.hero-card-premium {
  align-items: stretch;
  gap: 38px;
  padding: clamp(32px, 4.5vw, 54px);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(243, 249, 252, 0.9)),
    radial-gradient(circle at 78% 22%, rgba(23, 112, 200, 0.16), transparent 26%),
    radial-gradient(circle at 86% 78%, rgba(14, 155, 155, 0.14), transparent 24%);
}

.hero-card-premium::before {
  background: radial-gradient(circle at center, rgba(23, 112, 200, 0.18), transparent 72%);
}

.hero-card-premium h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-card-premium .lead {
  max-width: 58ch;
  font-size: 1.14rem;
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hero-proof-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(84, 112, 140, 0.18);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.hero-proof-card-accent {
  background: linear-gradient(145deg, rgba(226, 246, 247, 0.9), rgba(255, 255, 255, 0.84));
}

.hero-proof-label {
  display: inline-flex;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #56708c;
}

.hero-proof-card strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.hero-proof-card p {
  margin: 0;
  color: var(--public-ink-soft);
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: stretch;
}

.hero-stage-secondary {
  display: grid;
  gap: 16px;
}

.preview-window-primary {
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(14, 30, 51, 0.96), rgba(15, 45, 70, 0.96)),
    linear-gradient(160deg, rgba(23, 112, 200, 0.16), rgba(14, 155, 155, 0.12));
  color: #f6fbff;
  box-shadow: var(--public-shadow-deep);
}

.preview-window-primary .preview-window-row,
.preview-window-primary .preview-note {
  color: rgba(233, 244, 250, 0.84);
}

.preview-window-secondary {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.preview-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 14px;
}

.preview-stat-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(229, 241, 248, 0.12);
}

.preview-stat-card span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 238, 246, 0.72);
}

.preview-stat-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.preview-activity-list {
  display: grid;
  gap: 10px;
}

.preview-activity-row {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  font-size: 0.95rem;
}

.preview-activity-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #69b4ff;
  box-shadow: 0 0 0 6px rgba(105, 180, 255, 0.14);
}

.preview-activity-dot-teal {
  background: #53d0c8;
  box-shadow: 0 0 0 6px rgba(83, 208, 200, 0.14);
}

.preview-activity-dot-gold {
  background: #d7a95c;
  box-shadow: 0 0 0 6px rgba(215, 169, 92, 0.14);
}

.hero-side-note {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(226, 246, 247, 0.84), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(68, 129, 141, 0.16);
  display: grid;
  gap: 8px;
}

.hero-side-note-label,
.page-rail-label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #5a6f84;
}

.hero-side-note strong,
.page-rail-card strong {
  font-size: 1.08rem;
  line-height: 1.35;
}

.hero-side-note p,
.page-rail-card p {
  margin: 0;
  color: var(--public-ink-soft);
}

.feature-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

.feature-mosaic-tight {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.feature-card {
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 252, 0.86)),
    linear-gradient(145deg, rgba(23, 112, 200, 0.04), rgba(14, 155, 155, 0.04));
}

.feature-card-large {
  display: grid;
  gap: 12px;
}

.feature-card-large h2,
.feature-card-large h3 {
  max-width: 16ch;
}

.feature-card-accent-teal {
  background: linear-gradient(160deg, rgba(226, 246, 247, 0.9), rgba(255, 255, 255, 0.9));
}

.feature-card-accent-gold {
  background: linear-gradient(160deg, rgba(255, 245, 224, 0.92), rgba(255, 255, 255, 0.9));
}

.feature-card-accent-sky {
  background: linear-gradient(160deg, rgba(230, 240, 255, 0.92), rgba(255, 255, 255, 0.9));
}

.feature-points {
  margin: 0;
  padding-left: 18px;
  color: var(--public-ink-soft);
}

.workflow-board {
  overflow: hidden;
}

.workflow-board-grid {
  align-items: start;
}

.journey-board {
  display: grid;
  gap: 14px;
}

.journey-step {
  position: relative;
  padding-left: 28px;
}

.journey-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1770c8, #26a8d7);
}

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

.showcase-panel {
  padding: 26px;
  border-radius: 28px;
}

.page-hero-premium {
  padding: clamp(26px, 4vw, 40px);
  border-radius: 32px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.93), rgba(246, 250, 253, 0.88)),
    radial-gradient(circle at 82% 18%, rgba(23, 112, 200, 0.13), transparent 28%);
}

.page-hero-grid,
.info-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 20px;
}

.page-rail-card,
.content-panel-rich,
.support-card,
.policy-card {
  border-radius: 28px;
  background: var(--public-panel);
  backdrop-filter: blur(18px);
}

.page-rail-card {
  padding: 22px;
  align-self: stretch;
  display: grid;
  gap: 10px;
}

.page-rail-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.page-rail-metric {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(85, 113, 141, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.page-rail-metric span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6a8198;
}

.page-rail-metric strong {
  display: block;
  margin-top: 6px;
  font-size: 0.94rem;
  line-height: 1.35;
}

.page-rail-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  color: var(--public-ink-soft);
}

.page-rail-list li {
  position: relative;
  padding-left: 18px;
}

.page-rail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1770c8, #26a8d7);
  box-shadow: 0 0 0 4px rgba(23, 112, 200, 0.1);
}

.page-rail-card-warning {
  background: linear-gradient(160deg, rgba(255, 244, 231, 0.92), rgba(255, 255, 255, 0.9));
}

.content-panel-rich {
  padding: 28px;
}

.support-grid-rich,
.policy-grid-rich {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-card-featured {
  background:
    linear-gradient(150deg, rgba(230, 240, 255, 0.92), rgba(255, 255, 255, 0.9)),
    linear-gradient(160deg, rgba(23, 112, 200, 0.08), rgba(58, 183, 221, 0.05));
}

.policy-card-accent {
  background: linear-gradient(150deg, rgba(226, 246, 247, 0.92), rgba(255, 255, 255, 0.9));
}

.info-note-strong {
  background: rgba(17, 37, 59, 0.05);
}

.footer-shell {
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 253, 0.84)),
    linear-gradient(145deg, rgba(23, 112, 200, 0.04), rgba(14, 155, 155, 0.04));
}

@media (max-width: 1180px) {
  .hero-stage,
  .feature-mosaic,
  .feature-mosaic-tight,
  .showcase-grid,
  .support-grid-rich,
  .policy-grid-rich {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero-grid,
  .info-split-grid {
    grid-template-columns: 1fr;
  }

  .page-rail-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .hero-card-premium,
  .hero-stage,
  .feature-mosaic,
  .feature-mosaic-tight,
  .showcase-grid,
  .support-grid-rich,
  .policy-grid-rich {
    grid-template-columns: 1fr;
  }

  .hero-proof-row,
  .preview-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .public-page .site-header-inner {
    border-radius: 28px;
  }

  .hero-card-premium h1 {
    max-width: 9ch;
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .page-hero-premium,
  .content-panel-rich,
  .feature-card,
  .support-card,
  .policy-card {
    border-radius: 24px;
  }
}

/* Stronger public-page differentiation for the major redesign pass. */
.public-page .support-card,
.public-page .policy-card,
.public-page .content-panel-rich {
  position: relative;
  overflow: hidden;
}

.public-page .support-card::before,
.public-page .policy-card::before,
.public-page .content-panel-rich::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #1770c8, #2fb2dd 58%, #26c6b8 100%);
  opacity: 0.95;
}

.public-page .support-card,
.public-page .policy-card {
  align-content: start;
}

.public-page .support-grid-rich .support-card:nth-child(1) {
  background:
    linear-gradient(160deg, rgba(230, 240, 255, 0.96), rgba(255, 255, 255, 0.92)),
    linear-gradient(150deg, rgba(23, 112, 200, 0.12), rgba(58, 183, 221, 0.06));
}

.public-page .support-grid-rich .support-card:nth-child(2) {
  background:
    linear-gradient(160deg, rgba(231, 248, 247, 0.96), rgba(255, 255, 255, 0.92)),
    linear-gradient(150deg, rgba(14, 155, 155, 0.1), rgba(255, 255, 255, 0.04));
}

.public-page .support-grid-rich .support-card:nth-child(3) {
  background:
    linear-gradient(160deg, rgba(255, 247, 235, 0.96), rgba(255, 255, 255, 0.92)),
    linear-gradient(150deg, rgba(184, 138, 53, 0.12), rgba(255, 255, 255, 0.04));
}

.public-page .support-grid-rich .support-card:nth-child(4) {
  background:
    linear-gradient(160deg, rgba(241, 239, 255, 0.96), rgba(255, 255, 255, 0.92)),
    linear-gradient(150deg, rgba(95, 97, 215, 0.1), rgba(255, 255, 255, 0.04));
}

.public-page .policy-grid-rich .policy-card:nth-child(1) {
  background:
    linear-gradient(160deg, rgba(232, 241, 255, 0.96), rgba(255, 255, 255, 0.92)),
    linear-gradient(150deg, rgba(23, 112, 200, 0.1), rgba(255, 255, 255, 0.04));
}

.public-page .policy-grid-rich .policy-card:nth-child(2) {
  background:
    linear-gradient(160deg, rgba(232, 248, 247, 0.96), rgba(255, 255, 255, 0.92)),
    linear-gradient(150deg, rgba(14, 155, 155, 0.1), rgba(255, 255, 255, 0.04));
}

.public-page .policy-grid-rich .policy-card:nth-child(3) {
  background:
    linear-gradient(160deg, rgba(255, 247, 236, 0.96), rgba(255, 255, 255, 0.92)),
    linear-gradient(150deg, rgba(184, 138, 53, 0.1), rgba(255, 255, 255, 0.04));
}

.public-page .support-card .card-icon,
.public-page .policy-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 28px rgba(18, 37, 59, 0.1);
}

.public-page .support-card h3,
.public-page .policy-card h3 {
  max-width: 14ch;
}

/* Public home centring and calmer blue hero refresh. */
body.public-page-home {
  background:
    radial-gradient(circle at 12% 10%, rgba(28, 121, 207, 0.2), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(53, 178, 213, 0.22), transparent 25%),
    radial-gradient(circle at 74% 80%, rgba(21, 109, 188, 0.12), transparent 22%),
    linear-gradient(180deg, #f5fafe 0%, #eaf3fa 44%, #dce8f1 100%);
}

body.public-page-about,
body.public-page-contact,
body.public-page-privacy,
body.public-page-terms {
  background:
    radial-gradient(circle at 12% 10%, rgba(28, 121, 207, 0.16), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(53, 178, 213, 0.18), transparent 25%),
    radial-gradient(circle at 74% 80%, rgba(21, 109, 188, 0.08), transparent 22%),
    linear-gradient(180deg, #f7fbfe 0%, #edf4fa 44%, #e0e9f1 100%);
}

.public-page-about .page-hero:not(.page-hero-premium),
.public-page-contact .page-hero:not(.page-hero-premium),
.public-page-privacy .page-hero:not(.page-hero-premium),
.public-page-terms .page-hero:not(.page-hero-premium) {
  justify-items: center;
  text-align: center;
  border-color: rgba(171, 212, 238, 0.22);
  background:
    radial-gradient(circle at 12% 14%, rgba(142, 209, 255, 0.18), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(110, 229, 222, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 247, 252, 0.92));
  box-shadow: 0 24px 60px rgba(14, 45, 73, 0.11);
}

.public-page-about .page-hero:not(.page-hero-premium) h1,
.public-page-contact .page-hero:not(.page-hero-premium) h1,
.public-page-privacy .page-hero:not(.page-hero-premium) h1,
.public-page-terms .page-hero:not(.page-hero-premium) h1 {
  max-width: 14ch;
  margin-inline: auto;
}

.public-page-about .page-hero:not(.page-hero-premium) .lead,
.public-page-contact .page-hero:not(.page-hero-premium) .lead,
.public-page-privacy .page-hero:not(.page-hero-premium) .lead,
.public-page-terms .page-hero:not(.page-hero-premium) .lead {
  max-width: 52ch;
  margin-inline: auto;
}

.public-page-about .stats-row,
.public-page-contact .stats-row,
.public-page-privacy .stats-row,
.public-page-terms .stats-row {
  justify-content: center;
}

.public-page-about .section-heading,
.public-page-contact .section-heading,
.public-page-privacy .section-heading,
.public-page-terms .section-heading {
  justify-items: center;
  text-align: center;
  margin-inline: auto;
}

.public-page-about .section-heading h2,
.public-page-contact .section-heading h2,
.public-page-privacy .section-heading h2,
.public-page-terms .section-heading h2 {
  max-width: 15ch;
  margin-inline: auto;
}

.public-page-about .section-copy,
.public-page-contact .section-copy,
.public-page-privacy .section-copy,
.public-page-terms .section-copy {
  max-width: 44rem;
  margin-inline: auto;
}

.public-page-contact .content-panel[aria-labelledby="contact-when-title"] > h2,
.public-page-contact .content-panel[aria-labelledby="contact-when-title"] > .info-note {
  text-align: center;
}

.public-page-home .hero-card:not(.hero-card-premium) {
  border-color: rgba(171, 212, 238, 0.26);
  background:
    radial-gradient(circle at 12% 14%, rgba(142, 209, 255, 0.18), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(110, 229, 222, 0.16), transparent 24%),
    linear-gradient(136deg, rgba(244, 250, 255, 0.96), rgba(226, 239, 250, 0.94) 46%, rgba(210, 232, 247, 0.92) 100%);
  box-shadow: 0 28px 72px rgba(14, 45, 73, 0.12);
}

.public-page-home .hero-card:not(.hero-card-premium) .hero-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.public-page-home .hero-card:not(.hero-card-premium) .eyebrow {
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(239, 247, 255, 0.96);
  color: #0f548e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.public-page-home .hero-card:not(.hero-card-premium) h1 {
  max-width: 10ch;
  margin-inline: auto;
}

.public-page-home .hero-card:not(.hero-card-premium) .lead {
  max-width: 46ch;
  margin-inline: auto;
}

.public-page-home .hero-card:not(.hero-card-premium) .cta-row,
.public-page-home .hero-card:not(.hero-card-premium) .badge-row {
  justify-content: center;
}

.public-page-home .hero-card:not(.hero-card-premium) .badge-row {
  max-width: 42rem;
  margin-inline: auto;
}

.public-page-home .hero-card:not(.hero-card-premium) .badge {
  background: rgba(245, 250, 255, 0.94);
  border-color: rgba(191, 220, 239, 0.34);
  color: #163d5c;
}

.public-page-home .hero-card:not(.hero-card-premium) .hero-preview {
  align-content: center;
}

.public-page-home .hero-card:not(.hero-card-premium) .preview-window:first-child {
  background:
    radial-gradient(circle at 85% 14%, rgba(143, 214, 255, 0.16), transparent 24%),
    linear-gradient(160deg, rgba(11, 55, 96, 0.97), rgba(22, 94, 145, 0.95) 62%, rgba(40, 142, 180, 0.92) 100%);
  border-color: rgba(190, 224, 244, 0.16);
  color: #f4fbff;
}

.public-page-home .hero-card:not(.hero-card-premium) .preview-window:first-child .preview-window-title span,
.public-page-home .hero-card:not(.hero-card-premium) .preview-window:first-child .preview-window-row span,
.public-page-home .hero-card:not(.hero-card-premium) .preview-window:first-child .preview-note {
  color: rgba(228, 240, 248, 0.84);
}

.public-page-home .hero-card:not(.hero-card-premium) .preview-window:last-child {
  background:
    linear-gradient(180deg, rgba(252, 254, 255, 0.96), rgba(239, 248, 252, 0.92)),
    radial-gradient(circle at right top, rgba(51, 178, 213, 0.12), transparent 26%);
}

.public-page-home .hero-card-premium {
  border-color: rgba(171, 212, 238, 0.26);
  background:
    radial-gradient(circle at 12% 14%, rgba(142, 209, 255, 0.24), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(110, 229, 222, 0.2), transparent 24%),
    linear-gradient(136deg, #185f9f 0%, #1e76b3 44%, #2b90be 74%, #39a9be 100%);
  box-shadow: 0 32px 86px rgba(14, 45, 73, 0.2);
}

.public-page-home .hero-card-premium::before {
  background: radial-gradient(circle at center, rgba(189, 228, 255, 0.22), transparent 70%);
}

.public-page-home .hero-card-premium::after {
  opacity: 0.16;
}

.public-page-home .hero-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.public-page-home .hero-card-premium .eyebrow,
.public-page-home .hero-proof-label {
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(239, 247, 255, 0.94);
  color: #0f548e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.public-page-home .hero-proof-label {
  margin-bottom: 10px;
  letter-spacing: 0.12em;
}

.public-page-home .hero-card-premium h1,
.public-page-home .hero-card-premium .lead,
.public-page-home .hero-proof-card strong,
.public-page-home .hero-proof-card p,
.public-page-home .hero-side-note strong,
.public-page-home .hero-side-note p,
.public-page-home .hero-side-note-label,
.public-page-home .cta-band h2,
.public-page-home .cta-band .lead {
  color: #f6fbff;
}

.public-page-home .hero-card-premium .lead,
.public-page-home .hero-side-note-label,
.public-page-home .cta-band .lead {
  color: rgba(236, 245, 251, 0.9);
}

.public-page-home .hero-card-premium .lead {
  max-width: 50ch;
}

.public-page-home .cta-row,
.public-page-home .badge-row {
  justify-content: center;
}

.public-page-home .badge-row {
  max-width: 42rem;
  margin-inline: auto;
}

.public-page-home .badge {
  background: rgba(245, 250, 255, 0.94);
  border-color: rgba(191, 220, 239, 0.34);
  color: #163d5c;
}

.public-page-home .hero-proof-row {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
}

.public-page-home .hero-proof-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border-color: rgba(223, 239, 248, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.public-page-home .hero-side-note {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border-color: rgba(220, 237, 247, 0.18);
}

.public-page-home .preview-window-primary {
  border: 1px solid rgba(216, 236, 249, 0.14);
  background: linear-gradient(180deg, rgba(8, 27, 47, 0.95), rgba(13, 40, 65, 0.95));
}

.public-page-home .preview-window-secondary {
  background: rgba(250, 253, 255, 0.93);
  box-shadow: 0 18px 42px rgba(13, 42, 68, 0.14);
}

.public-page-home .section-heading {
  justify-items: center;
  text-align: center;
  max-width: min(46rem, 100%);
  margin-inline: auto;
}

.public-page-home .section-kicker {
  justify-self: center;
}

.public-page-home .section-heading h2 {
  max-width: 15ch;
  margin-inline: auto;
}

.public-page-home .section-copy {
  max-width: 46rem;
  margin-inline: auto;
}

.public-page-home .workflow-board-grid {
  align-items: center;
}

.public-page-home .workflow-board-grid > .section-heading {
  max-width: 34rem;
}

.public-page-home .cta-band {
  border-color: rgba(173, 212, 238, 0.22);
  background:
    radial-gradient(circle at 12% 18%, rgba(157, 214, 255, 0.2), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(112, 231, 224, 0.18), transparent 24%),
    linear-gradient(136deg, rgba(24, 95, 159, 0.96), rgba(31, 121, 184, 0.94) 48%, rgba(50, 161, 189, 0.92) 100%);
}

.public-page-home .cta-band > div:first-child {
  display: grid;
  gap: 16px;
  max-width: 42rem;
}

.public-page-home .cta-band .section-kicker {
  background: rgba(244, 249, 255, 0.16);
  color: #eff8ff;
}

.public-page-home .cta-band h2 {
  max-width: 18ch;
}

.public-page-home .cta-band .lead {
  margin-top: 0;
}

.public-page-home .cta-band .button-secondary {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(217, 234, 247, 0.72);
  color: #124a7a;
}

.public-page-home .cta-band .button-secondary:hover,
.public-page-home .cta-band .button-secondary:focus-visible {
  background: #ffffff;
  color: #0f3c63;
}

@media (max-width: 920px) {
  .public-page-home .workflow-board-grid > .section-heading {
    max-width: min(46rem, 100%);
  }
}

@media (max-width: 720px) {
  .public-page-about .page-hero:not(.page-hero-premium) h1,
  .public-page-contact .page-hero:not(.page-hero-premium) h1,
  .public-page-privacy .page-hero:not(.page-hero-premium) h1,
  .public-page-terms .page-hero:not(.page-hero-premium) h1,
  .public-page-home .hero-card:not(.hero-card-premium) h1,
  .public-page-home .hero-card-premium h1,
  .public-page-home .section-heading h2,
  .public-page-home .cta-band h2 {
    max-width: none;
  }

  .public-page-home .hero-card:not(.hero-card-premium) .cta-row,
  .public-page-home .hero-card:not(.hero-card-premium) .badge-row,
  .public-page-home .hero-card-premium .cta-row,
  .public-page-home .hero-card-premium .badge-row,
  .public-page-home .cta-band .button-row {
    width: 100%;
  }

  .public-page-home .badge {
    width: 100%;
    justify-content: center;
  }

  .public-page-home .cta-band .button-row {
    justify-content: center;
  }
}

/* Public-site clarity pass: stronger brand, clearer homepage structure, better centred cards. */
.brand-mark img,
.footer-mark img,
.hero-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark,
.footer-mark,
.hero-brand-icon {
  overflow: hidden;
}

.public-page .brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 24px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 245, 250, 0.98)),
    linear-gradient(145deg, rgba(30, 123, 212, 0.12), rgba(28, 181, 169, 0.12));
  border-color: rgba(101, 145, 181, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 30px rgba(18, 37, 59, 0.12);
}

.public-page .brand-mark svg,
.public-page .brand-mark img {
  width: 42px;
  height: 42px;
}

.public-page .brand-copy {
  gap: 2px;
}

.public-page .brand-title {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  letter-spacing: -0.05em;
}

.public-page .brand-subtitle {
  font-size: 0.92rem;
  color: #5f7389;
}

.public-page .footer-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(229, 244, 249, 0.98)),
    linear-gradient(145deg, rgba(30, 123, 212, 0.08), rgba(28, 181, 169, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 26px rgba(18, 37, 59, 0.1);
}

.public-page .footer-mark img {
  width: 36px;
  height: 36px;
}

.public-page .button,
.public-page .badge,
.public-page .mini-badge,
.public-page .preview-pill,
.public-page .section-kicker,
.public-page .page-kicker,
.public-page .eyebrow {
  letter-spacing: -0.01em;
}

.public-page-home .hero-card-premium {
  border-color: rgba(169, 212, 236, 0.34);
  background:
    radial-gradient(circle at 12% 18%, rgba(160, 220, 255, 0.22), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(122, 227, 220, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(248, 252, 255, 0.98), rgba(231, 242, 251, 0.96) 56%, rgba(220, 235, 246, 0.94) 100%);
  box-shadow: 0 34px 82px rgba(15, 45, 73, 0.14);
}

.public-page-home .hero-card-premium::before {
  right: -100px;
  top: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at center, rgba(30, 123, 212, 0.12), transparent 72%);
}

.public-page-home .hero-card-premium::after {
  opacity: 0.12;
}

.public-page-home .hero-copy {
  align-content: center;
  justify-items: center;
  text-align: center;
}

.public-page-home .hero-card-premium .hero-copy h1,
.public-page-home .hero-card-premium .hero-copy .lead,
.public-page-home .hero-card-premium .hero-copy .badge,
.public-page-home .hero-card-premium .hero-brand-panel p,
.public-page-home .hero-card-premium .hero-brand-wordmark {
  color: #15314a;
}

.public-page-home .hero-card-premium .lead {
  max-width: 46ch;
  font-size: 1.12rem;
  color: #4f657b;
}

.hero-brand-panel {
  display: grid;
  gap: 12px;
  width: min(100%, 34rem);
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(128, 173, 205, 0.24);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(231, 244, 250, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 16px 34px rgba(19, 47, 75, 0.08);
}

.hero-brand-panel p {
  margin: 0;
  font-size: 0.98rem;
  color: #56708a;
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-brand-icon {
  width: 72px;
  height: 72px;
  border-radius: 26px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(228, 244, 249, 0.98)),
    linear-gradient(145deg, rgba(30, 123, 212, 0.12), rgba(28, 181, 169, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 32px rgba(20, 50, 78, 0.12);
}

.hero-brand-wordmark {
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hero-title-stack {
  display: grid;
  gap: 10px;
  max-width: 10.8ch;
  margin-inline: auto;
}

.hero-title-stack > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-check {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #1aa56d, #4ecf8d);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(26, 165, 109, 0.24);
}

.hero-check svg {
  width: 18px;
  height: 18px;
}

.public-page-home .cta-row,
.public-page-home .badge-row,
.public-page-home .button-row {
  justify-content: center;
}

.public-page-home .badge-row {
  max-width: 44rem;
  margin-inline: auto;
}

.public-page-home .badge {
  justify-content: center;
  min-height: 48px;
  padding-inline: 16px;
  border-color: rgba(162, 198, 224, 0.32);
  background: rgba(248, 252, 255, 0.94);
  color: #1d4566;
}

.public-page-home .hero-stage {
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: stretch;
}

.preview-window-title-large strong {
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  line-height: 1.02;
}

.preview-window-title-large span {
  font-size: 0.98rem;
}

.preview-window-primary {
  border-color: rgba(212, 235, 246, 0.16);
  background:
    radial-gradient(circle at 88% 14%, rgba(126, 213, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(9, 31, 53, 0.98), rgba(16, 53, 82, 0.97) 62%, rgba(31, 112, 149, 0.94) 100%);
  color: #f5fbff;
}

.preview-window-primary .preview-window-title span,
.preview-window-primary .preview-note,
.preview-window-primary .preview-activity-row span {
  color: rgba(226, 240, 248, 0.84);
}

.preview-window-secondary {
  border-color: rgba(166, 201, 223, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 252, 0.94)),
    radial-gradient(circle at right top, rgba(74, 182, 214, 0.12), transparent 26%);
}

.preview-window-plain-language {
  display: grid;
  gap: 14px;
  align-content: start;
}

.preview-visual-board {
  display: grid;
  gap: 12px;
  margin: 18px 0 16px;
}

.preview-visual-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(223, 239, 248, 0.12);
}

.preview-visual-card p {
  margin: 6px 0 0;
  color: rgba(228, 240, 248, 0.82);
}

.preview-visual-label,
.workflow-step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.preview-visual-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.18rem;
}

.preview-visual-timeline {
  display: grid;
  gap: 10px;
}

.preview-timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(223, 239, 248, 0.1);
}

.preview-timeline-item span {
  color: rgba(228, 240, 248, 0.84);
}

.preview-timeline-item strong {
  color: #f7fcff;
}

.preview-timeline-item.is-complete strong {
  color: #7ae0a8;
}

.preview-timeline-item.is-current strong {
  color: #9fdcff;
}

.preview-check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.preview-check-list li {
  position: relative;
  padding-left: 28px;
  color: #39546f;
  font-weight: 600;
}

.preview-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1e7bd4, #1cb5a9);
  box-shadow: 0 0 0 5px rgba(30, 123, 212, 0.1);
  transform: translateY(-50%);
}

.hero-side-note {
  gap: 10px;
  align-content: start;
  background: linear-gradient(145deg, rgba(226, 247, 245, 0.96), rgba(255, 255, 255, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature-grid-home,
.principles-grid-home {
  align-items: stretch;
}

.feature-card-home,
.support-card-home,
.about-card,
.workflow-step-card,
.content-panel-centered {
  justify-items: center;
  text-align: center;
}

.feature-card-home,
.support-card-home {
  min-height: 100%;
}

.feature-card-home h3,
.support-card-home h3,
.workflow-step-card h3 {
  max-width: 16ch;
  margin-inline: auto;
}

.feature-card-home p,
.support-card-home p,
.workflow-step-card p {
  margin: 0;
  max-width: 28ch;
}

.feature-card-home .card-icon,
.support-card-home .card-icon,
.workflow-step-card .card-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 16px 30px rgba(18, 37, 59, 0.1);
}

.workflow-board {
  background:
    radial-gradient(circle at 14% 16%, rgba(175, 224, 255, 0.18), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(161, 233, 226, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 252, 0.94));
}

.workflow-intro,
.section-heading-emphasis {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.workflow-intro h2,
.section-heading-emphasis h2 {
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  line-height: 1.02;
  max-width: 12ch;
}

.workflow-intro .section-copy,
.section-heading-emphasis .section-copy {
  max-width: 45rem;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.workflow-step-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
}

.workflow-step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 12px;
  height: 12px;
  border-top: 3px solid rgba(23, 112, 200, 0.42);
  border-right: 3px solid rgba(23, 112, 200, 0.42);
  transform: translateY(-50%) rotate(45deg);
}

.workflow-step-label {
  color: #0f5c9f;
  background: rgba(233, 243, 251, 0.96);
}

.panel-grid-home {
  align-items: stretch;
}

.content-panel-centered {
  gap: 18px;
  padding: 28px;
}

.content-panel-centered h3 {
  font-size: 1.5rem;
}

.content-panel-centered .list-check {
  width: min(100%, 30rem);
  margin: 0 auto;
  text-align: left;
}

.about-section-home {
  background:
    radial-gradient(circle at 50% 12%, rgba(168, 221, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(250, 253, 255, 0.96), rgba(239, 247, 251, 0.94));
}

.about-grid-home {
  align-items: stretch;
}

.about-card p {
  margin: 0;
  max-width: 31ch;
}

.principles-section-home {
  background:
    radial-gradient(circle at 20% 14%, rgba(167, 221, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(172, 235, 226, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 252, 0.94));
}

.principles-grid-home {
  margin-top: 10px;
}

.public-page-home .cta-band {
  grid-template-columns: minmax(0, 1fr) auto;
  border-color: rgba(173, 212, 238, 0.28);
  background:
    radial-gradient(circle at 12% 18%, rgba(157, 214, 255, 0.2), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(112, 231, 224, 0.18), transparent 24%),
    linear-gradient(136deg, rgba(24, 95, 159, 0.96), rgba(31, 121, 184, 0.94) 48%, rgba(50, 161, 189, 0.92) 100%);
}

.public-page-home .cta-band > div:first-child {
  display: grid;
  gap: 16px;
  max-width: 40rem;
}

.public-page-home .cta-band .section-kicker {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.public-page-home .cta-band h2 {
  max-width: 15ch;
  color: #ffffff;
}

.public-page-home .cta-band .lead {
  margin-top: 0;
  color: rgba(239, 247, 252, 0.92);
}

.public-page-home .cta-band .button-row {
  gap: 14px;
}

.public-page-contact .support-card,
.public-page-about .summary-card,
.public-page-about .content-panel {
  justify-items: center;
  text-align: center;
}

.public-page-contact .support-card p,
.public-page-about .summary-card p,
.public-page-about .content-panel p {
  max-width: 30ch;
}

.public-page-contact .support-card .card-icon,
.public-page-about .summary-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 28px rgba(18, 37, 59, 0.08);
}

@media (max-width: 1080px) {
  .public-page-home .hero-stage,
  .workflow-steps,
  .public-page-home .cta-band {
    grid-template-columns: 1fr;
  }

  .workflow-step-card:not(:last-child)::after {
    top: auto;
    bottom: -18px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(135deg);
  }
}

@media (max-width: 920px) {
  .feature-grid-home,
  .panel-grid-home,
  .principles-grid-home {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .public-page .brand-mark {
    width: 56px;
    height: 56px;
    padding: 9px;
  }

  .public-page .brand-mark img {
    width: 36px;
    height: 36px;
  }

  .hero-brand-panel {
    padding: 16px;
  }

  .hero-brand-lockup {
    flex-direction: column;
    gap: 10px;
  }

  .hero-brand-icon {
    width: 64px;
    height: 64px;
  }

  .hero-title-stack > span {
    gap: 10px;
  }

  .hero-check {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .preview-window-title-large strong,
  .workflow-intro h2,
  .section-heading-emphasis h2 {
    max-width: none;
  }

  .content-panel-centered,
  .workflow-step-card {
    padding: 22px;
  }

  .public-page-home .cta-band > div:first-child {
    max-width: none;
  }
}

/* Public-site refinement pass: calmer premium header, stronger hierarchy,
   safer text wrapping, and more intentional About layouts. */
.public-page .content-shell {
  gap: 32px;
}

.public-page .content-shell > * {
  min-width: 0;
}

.public-page .site-header {
  padding-top: 22px;
}

.public-page .site-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 252, 0.86)),
    radial-gradient(circle at 12% 10%, rgba(26, 122, 210, 0.12), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(30, 181, 169, 0.1), transparent 24%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 24px 60px rgba(14, 45, 73, 0.12);
  overflow: hidden;
}

.public-page .site-header-inner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(23, 112, 200, 0.94), rgba(43, 154, 210, 0.72), rgba(33, 187, 174, 0.76));
}

.public-page .brand-lockup {
  gap: 18px;
  padding: 6px 10px 6px 4px;
  border-radius: 26px;
  align-self: center;
}

.public-page .site-header-actions {
  justify-self: end;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.public-page .site-nav {
  padding: 8px;
  border-color: rgba(129, 163, 193, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(240, 247, 251, 0.78)),
    linear-gradient(145deg, rgba(26, 122, 210, 0.05), rgba(33, 187, 174, 0.05));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 10px 24px rgba(15, 43, 70, 0.06);
}

.public-page .site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 102px;
  padding: 11px 18px;
  font-size: 0.96rem;
}

.public-page .site-header .button-secondary.button-compact {
  min-height: 52px;
  padding: 0 24px;
  border-color: rgba(22, 104, 175, 0.18);
  background: linear-gradient(135deg, #155b96 0%, #1e7bbb 58%, #2ca0cf 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(18, 86, 139, 0.22);
}

.public-page .site-header .button-secondary.button-compact:hover,
.public-page .site-header .button-secondary.button-compact:focus-visible {
  border-color: rgba(22, 104, 175, 0.28);
  background: linear-gradient(135deg, #134f81 0%, #1b71ac 58%, #2796c2 100%);
  color: #ffffff;
}

.public-page-home .hero-card-premium {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
  gap: 30px;
  align-items: center;
  padding: clamp(32px, 4vw, 48px);
}

.public-page-home .hero-card-premium .hero-copy {
  justify-items: start;
  text-align: left;
}

.public-page-home .hero-card-premium .eyebrow,
.public-page-home .hero-proof-label {
  justify-content: flex-start;
}

.public-page-home .hero-brand-panel {
  width: min(100%, 31rem);
  margin-top: 14px;
}

.hero-title-stack {
  max-width: 12.6ch;
  margin-inline: 0;
}

.hero-title-stack > span {
  justify-content: flex-start;
  align-items: flex-start;
}

.hero-title-text {
  display: inline-block;
}

.hero-check {
  margin-top: 0.16em;
}

.public-page-home .hero-card-premium .lead {
  max-width: 43ch;
}

.public-page-home .cta-row,
.public-page-home .badge-row,
.public-page-home .button-row {
  justify-content: flex-start;
  margin-inline: 0;
}

.public-page-home .badge-row {
  max-width: 42rem;
}

.public-page-home .hero-stage {
  grid-template-columns: minmax(0, 1.02fr) minmax(260px, 0.82fr);
  gap: 16px;
  width: min(100%, 700px);
  margin-left: auto;
}

.preview-window,
.preview-window-header,
.preview-window-title,
.preview-stat-grid,
.preview-stat-card,
.preview-activity-list,
.preview-activity-row,
.preview-visual-board,
.preview-visual-card,
.preview-visual-timeline,
.preview-timeline-item,
.preview-check-list li,
.content-panel,
.feature-card,
.summary-card,
.support-card,
.button,
.badge,
.mini-badge {
  min-width: 0;
}

.preview-window-header {
  align-items: flex-start;
}

.preview-window-header > * {
  min-width: 0;
}

.preview-pill {
  flex: 0 0 auto;
}

.preview-stat-grid {
  margin: 18px 0 16px;
}

.preview-window-title-large strong {
  font-size: clamp(1.42rem, 2.2vw, 1.78rem);
  line-height: 1.06;
  overflow-wrap: normal;
  word-break: normal;
}

.preview-stat-card strong {
  font-size: 0.96rem;
  line-height: 1.42;
  overflow-wrap: normal;
  word-break: normal;
}

.preview-timeline-item strong,
.preview-activity-row strong {
  overflow-wrap: normal;
  word-break: normal;
}

.preview-stat-card strong,
.preview-window-title strong,
.preview-window-title span,
.preview-activity-row span,
.preview-activity-row strong,
.preview-timeline-item span,
.preview-timeline-item strong,
.preview-check-list li,
.feature-card h3,
.feature-card p,
.summary-card h3,
.summary-card p,
.content-panel h3,
.content-panel p,
.cta-band h2,
.cta-band p {
  overflow-wrap: anywhere;
}

.preview-activity-row {
  grid-template-columns: 10px minmax(0, 1fr) max-content;
}

.preview-activity-row span:nth-child(2) {
  min-width: 0;
}

.preview-timeline-item {
  align-items: flex-start;
}

.hero-side-note {
  padding: 20px;
  background: linear-gradient(150deg, rgba(229, 248, 246, 0.98), rgba(255, 255, 255, 0.96));
  border-color: rgba(112, 176, 187, 0.2);
}

.public-page-home .hero-brand-lockup {
  justify-content: flex-start;
}

.public-page-home .hero-brand-panel p {
  text-align: left;
}

.public-page-home .hero-side-note strong,
.public-page-home .hero-side-note p,
.public-page-home .hero-side-note-label {
  color: #163049;
}

.public-page-home .hero-side-note p,
.public-page-home .hero-side-note-label {
  color: #587088;
}

.feature-grid-home,
.panel-grid-home,
.principles-grid-home,
.workflow-steps {
  gap: 22px;
}

.feature-card-home,
.support-card-home,
.workflow-step-card,
.about-focus-card,
.about-story-card,
.about-use-card {
  justify-items: start;
  text-align: left;
}

.feature-card-home h3,
.support-card-home h3,
.workflow-step-card h3,
.about-focus-card h3,
.about-use-card h3 {
  max-width: none;
}

.feature-card-home p,
.support-card-home p,
.workflow-step-card p,
.about-focus-card p,
.about-use-card p {
  max-width: none;
}

.workflow-board {
  background:
    radial-gradient(circle at 14% 16%, rgba(175, 224, 255, 0.16), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(161, 233, 226, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 252, 0.96));
}

.workflow-intro,
.section-heading-emphasis {
  gap: 14px;
}

.workflow-intro .section-kicker,
.workflow-board .section-kicker {
  background: linear-gradient(135deg, #123f66 0%, #1566a1 100%);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(18, 63, 102, 0.18);
}

.workflow-intro h2,
.section-heading-emphasis h2 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 4.6vw, 3.7rem);
  color: #12314b;
}

.workflow-steps {
  margin-top: 26px;
}

.workflow-step-card {
  gap: 16px;
  padding: 28px;
  border-color: rgba(154, 193, 219, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 253, 0.95)),
    radial-gradient(circle at right top, rgba(23, 112, 200, 0.08), transparent 28%);
}

.workflow-step-label {
  background: rgba(233, 243, 251, 1);
  color: #0f5c9f;
}

.about-section-home {
  background:
    radial-gradient(circle at 12% 14%, rgba(160, 220, 255, 0.16), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(161, 233, 226, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(241, 248, 252, 0.96));
}

.about-heading-home .section-copy {
  max-width: 42rem;
}

.about-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.about-focus-card {
  min-height: 100%;
  padding: 26px;
  border-radius: 26px;
}

.about-focus-card-owner {
  background: linear-gradient(160deg, rgba(232, 242, 255, 0.96), rgba(255, 255, 255, 0.92));
}

.about-focus-card-review {
  background: linear-gradient(160deg, rgba(233, 249, 247, 0.96), rgba(255, 255, 255, 0.92));
}

.about-focus-card-share {
  background: linear-gradient(160deg, rgba(255, 247, 235, 0.96), rgba(255, 255, 255, 0.92));
}

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

.about-story-card {
  gap: 18px;
  padding: 30px;
}

.about-story-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 252, 0.95)),
    radial-gradient(circle at right top, rgba(39, 169, 199, 0.1), transparent 28%);
}

.panel-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(233, 243, 251, 0.94);
  color: #0f5c9f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story-card .list-check {
  width: 100%;
  margin: 0;
}

.about-story-card .list-check li {
  gap: 14px;
}

.public-page-about .page-hero.about-page-hero {
  justify-items: start;
  text-align: left;
  gap: 22px;
  background:
    radial-gradient(circle at 10% 14%, rgba(159, 221, 255, 0.18), transparent 24%),
    radial-gradient(circle at 86% 20%, rgba(161, 233, 226, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 252, 0.96));
}

.public-page-about .page-hero.about-page-hero h1,
.public-page-about .page-hero.about-page-hero .lead {
  max-width: none;
  margin-inline: 0;
}

.about-page-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.about-page-signal {
  justify-items: start;
  text-align: left;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
}

.about-page-signal h2 {
  font-size: 1.42rem;
}

.about-purpose-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
}

.about-purpose-card {
  gap: 18px;
  padding: 32px;
}

.about-purpose-card h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.06;
  max-width: 15ch;
}

.about-purpose-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 252, 0.95)),
    radial-gradient(circle at right top, rgba(39, 169, 199, 0.12), transparent 28%);
}

.about-purpose-card .list-check {
  width: 100%;
}

.about-use-grid,
.about-principles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-use-card {
  min-height: 100%;
}

.public-page-about .summary-card,
.public-page-about .content-panel {
  justify-items: start;
  text-align: left;
}

.public-page-about .summary-card p,
.public-page-about .content-panel p {
  max-width: none;
}

.public-page-about .section-heading {
  justify-items: start;
  text-align: left;
  margin-inline: 0;
}

.public-page-about .section-heading h2,
.public-page-about .section-copy {
  margin-inline: 0;
}

@media (max-width: 1180px) {
  .public-page .site-header-inner {
    grid-template-columns: 1fr;
  }

  .public-page .site-header-actions {
    justify-self: stretch;
    width: 100%;
    justify-content: space-between;
  }

  .public-page-home .hero-card-premium,
  .about-purpose-layout,
  .about-page-signal-grid,
  .about-use-grid,
  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .public-page-home .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .public-page-home .hero-card-premium .eyebrow,
  .public-page-home .hero-proof-label,
  .public-page-home .cta-row,
  .public-page-home .badge-row,
  .public-page-home .button-row {
    justify-content: center;
  }

  .hero-title-stack {
    margin-inline: auto;
  }

  .hero-title-stack > span {
    justify-content: center;
  }

  .public-page-home .hero-stage {
    margin: 0 auto;
  }

  .public-page-about .page-hero.about-page-hero,
  .public-page-about .section-heading,
  .public-page-about .summary-card,
  .public-page-about .content-panel {
    justify-items: center;
    text-align: center;
  }

  .about-purpose-card .list-check,
  .about-story-card .list-check {
    width: min(100%, 36rem);
    margin-inline: auto;
  }
}

@media (max-width: 920px) {
  .public-page .site-header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .public-page .site-nav {
    width: 100%;
    justify-content: center;
  }

  .public-page .site-header .button-secondary.button-compact {
    width: 100%;
  }

  .public-page-home .hero-stage,
  .about-focus-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .public-page-home .hero-stage {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .public-page .site-header-inner {
    padding: 18px;
    border-radius: 28px;
  }

  .public-page .brand-lockup {
    padding: 0;
    gap: 14px;
  }

  .public-page .site-nav {
    gap: 8px;
  }

  .public-page .site-nav a {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .preview-window-header {
    flex-direction: column;
  }

  .preview-pill {
    align-self: flex-start;
  }

  .preview-stat-grid {
    grid-template-columns: 1fr;
  }

  .preview-activity-row {
    grid-template-columns: 10px minmax(0, 1fr);
  }

  .preview-activity-row strong {
    grid-column: 2;
    justify-self: start;
  }

  .preview-timeline-item {
    flex-direction: column;
    gap: 8px;
  }

  .hero-title-stack > span {
    align-items: flex-start;
  }

  .workflow-step-card,
  .about-focus-card,
  .about-story-card,
  .about-purpose-card,
  .about-page-signal {
    padding: 22px;
  }
}
