:root {
  --bg: #eef6ff;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #0a2f5f;
  --surface-dark: #072349;
  --text: #0d2544;
  --text-light: #eef6ff;
  --muted: #5d7088;
  --line: rgba(10, 47, 95, 0.12);
  --accent: #ff8a1d;
  --accent-soft: #ffd1a5;
  --success: #166534;
  --success-bg: rgba(34, 197, 94, 0.12);
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(17, 53, 45, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(72, 133, 255, 0.16) 0, rgba(72, 133, 255, 0) 28%),
    radial-gradient(circle at 82% 10%, rgba(171, 206, 255, 0.22) 0, rgba(171, 206, 255, 0) 30%),
    linear-gradient(180deg, #fbfdff 0%, #eef5ff 52%, #e7f0ff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

p,
li {
  color: rgba(13, 37, 68, 0.88);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(248, 251, 255, 0.88);
  border-bottom: 1px solid rgba(10, 47, 95, 0.08);
}

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

.header-inner,
.footer-bottom,
.hero-actions,
.filter-bar,
.tab-buttons,
.nav-list,
.footer-nav,
.kicker-row,
.cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-inner,
.footer-bottom {
  justify-content: space-between;
  padding: 1rem 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.site-brand img {
  width: min(240px, 48vw);
}

.resource-type,
.microcopy {
  font-size: 0.92rem;
  color: var(--muted);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  margin-top: -0.95rem;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.breadcrumbs li + li::before {
  content: "/";
  color: rgba(10, 47, 95, 0.45);
  font-weight: 700;
  margin-right: 0.05rem;
}

.breadcrumbs a,
.breadcrumbs span {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.1;
}

.breadcrumbs a {
  color: var(--surface-strong);
}

.breadcrumbs span[aria-current="page"] {
  color: var(--accent);
}

.nav-shell,
.nav-list,
.footer-nav {
  display: flex;
  align-items: center;
}

.nav-shell {
  flex: 1;
  justify-content: space-between;
  gap: 2rem;
}

.nav-list,
.footer-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 1rem;
}

.nav-shell nav {
  flex: 1;
}

.nav-list {
  justify-content: center;
  gap: clamp(1.25rem, 2.2vw, 2.5rem);
}

.nav-mobile-only {
  display: none;
}

.nav-list a,
.footer-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  font-weight: 600;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-list a:hover::after,
.nav-list a.is-current::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(10, 47, 95, 0.12);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.12rem auto;
  background: var(--surface-strong);
  border-radius: 999px;
}

.button,
.button-ghost,
.filter-chip,
.tab-button,
.accordion-trigger {
  font: inherit;
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button {
  border: none;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 138, 29, 0.28);
}

.button-ghost {
  border: 1px solid rgba(255, 138, 29, 0.22);
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.9), rgba(255, 255, 255, 0.72));
}

.button:hover,
.button-ghost:hover,
.filter-chip:hover,
.tab-button:hover,
.accordion-trigger:hover {
  transform: translateY(-1px);
}

.button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 138, 29, 0.34);
  filter: saturate(1.06);
  color: var(--surface-strong);
}

.button-ghost:hover {
  border-color: rgba(255, 138, 29, 0.42);
  box-shadow: 0 16px 32px rgba(255, 138, 29, 0.14);
}

.hero,
.section,
.page-hero {
  padding: 4.25rem 0;
}

.hero {
  padding: 1.5rem 0 2.5rem;
}

.page-hero {
  padding-top: 1.6rem;
  padding-bottom: 1rem;
}

.page-hero-inner {
  max-width: 880px;
}

.community-hero-banner {
  overflow: hidden;
  margin: 0 0 1.1rem;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.community-hero-banner img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-hero + .section,
.page-hero + .section.section-dark,
.page-hero + .section.section-band {
  padding-top: 0.9rem;
}

.hero-grid,
.split-grid,
.footer-grid,
.cards,
.stats-grid,
.story-grid,
.timeline-grid,
.cta-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.split-grid,
.footer-grid,
.cta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-grid {
  align-items: start;
}

.align-start {
  align-items: start;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  max-width: 15ch;
  margin-bottom: 0.8rem;
}

.lead,
.section-heading p,
.prose,
.prose p {
  font-size: 1.08rem;
  color: rgba(13, 37, 68, 0.82);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.hero-panel,
.panel-card,
.info-card,
.resource-card,
.footer-card,
.accordion-item,
.metric-card,
.timeline-card,
.contact-card,
.form-shell {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(10, 47, 95, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card,
.resource-card,
.contact-card {
  position: relative;
}

.info-card::before,
.resource-card::before,
.contact-card::before,
.footer-card::before {
  content: "";
  position: absolute;
  inset: 16px auto 16px 0;
  width: 3px;
  height: auto;
  background: linear-gradient(180deg, rgba(255, 138, 29, 0.85), rgba(255, 209, 165, 0.3));
  border-radius: 999px;
  opacity: 0.6;
}

.hero-panel,
.panel-card,
.resource-card,
.info-card,
.footer-card,
.metric-card,
.timeline-card,
.contact-card,
.form-shell {
  padding: 1.5rem;
}

.hero-panel {
  margin-top: 0.25in;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.panel-highlight,
.highlight-band {
  background: linear-gradient(160deg, rgba(10, 47, 95, 0.98), rgba(24, 76, 144, 0.92));
  color: var(--text-light);
}

.panel-highlight p,
.panel-highlight li,
.highlight-band p,
.highlight-band li,
.section-dark p,
.section-dark li {
  color: rgba(237, 244, 241, 0.9);
}

.section-dark .info-card h3 {
  color: var(--text);
  text-align: center;
  margin-bottom: 0.25rem;
}

.section-dark .info-card p,
.section-dark .info-card li {
  color: rgba(13, 37, 68, 0.82);
  text-align: center;
}

.section-dark .metric-card h3 {
  color: var(--text);
}

.section-dark .metric-card p,
.section-dark .metric-card li {
  color: rgba(13, 37, 68, 0.82);
}

.about-mission-callout .image-caption,
.about-mission-callout .image-caption strong {
  color: var(--surface-strong);
}

.about-hero + .section .image-caption,
.about-hero + .section .image-caption strong {
  color: var(--surface-strong);
}

.about-hero + .section.section-dark .metric-card h3,
.about-hero + .section.section-dark .metric-card p,
.about-hero + .section.section-dark .metric-card li,
.about-hero + .section.section-dark .section-heading h2,
.about-hero + .section.section-dark .section-heading p {
  color: var(--surface-strong);
}

.section-dark .info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

.foundation-icon-group {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 auto 0.7rem;
}

.foundation-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(24, 74, 136, 0.9), rgba(38, 98, 168, 0.88));
  border: 1px solid rgba(171, 206, 255, 0.18);
  box-shadow: 0 12px 24px rgba(7, 35, 73, 0.22);
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1;
  transform-origin: center center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.foundation-icon:hover {
  transform: scale(2);
  box-shadow: 0 20px 36px rgba(7, 35, 73, 0.28);
  z-index: 2;
}

.foundation-icon::after {
  content: attr(data-foundation-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.5rem);
  transform: translateX(-50%);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(7, 35, 73, 0.96);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.foundation-icon:hover::after {
  opacity: 1;
}

.panel-label {
  margin-top: 0;
  color: var(--accent-soft);
  font-weight: 600;
}

.feature-image {
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 138, 29, 0.14), transparent 18rem),
    radial-gradient(circle at 88% 10%, rgba(37, 99, 235, 0.12), transparent 20rem);
  pointer-events: none;
}

.about-hero-grid,
.about-story-grid,
.about-metrics-grid,
.about-ecosystem-grid {
  display: grid;
  gap: 1.5rem;
}

.experience-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.about-hero-grid,
.about-story-grid,
.about-ecosystem-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.about-hero-grid {
  align-items: start;
}

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

.about-hero-copy h1 {
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  max-width: 12ch;
}

.about-hero-panel,
.about-image-card,
.question-panel,
.question-card {
  position: relative;
  z-index: 1;
}

.about-hero-panel {
  display: grid;
  gap: 1rem;
  padding-top: 5rem;
}

.about-image-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 47, 95, 0.08);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.92);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.learning-image-card {
  align-self: start;
  justify-self: start;
  display: inline-block;
  margin-top: 6rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.learning-image-card .learning-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.who-for-section {
  padding-top: 2.75rem;
}

.who-for-section .cta-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
}

.who-for-visual {
  min-height: 100%;
  display: flex;
  align-self: stretch;
  height: 100%;
  padding: 0;
}

.who-for-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(10, 47, 95, 0.08);
  color: var(--surface-strong);
  font-weight: 700;
}

.question-panel {
  padding: 1.8rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(10, 47, 95, 0.98), rgba(24, 76, 144, 0.92));
  color: var(--text-light);
  box-shadow: var(--shadow);
}

.question-panel h3,
.question-panel p,
.question-panel li {
  color: inherit;
}

.question-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.question-card {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.question-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

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

.about-story-copy {
  max-width: 720px;
}

.image-caption {
  padding: 1rem 1.2rem;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.95), rgba(255, 255, 255, 0.98));
}

.image-caption strong {
  display: block;
  margin-bottom: 0.35rem;
}

.mission-visual {
  overflow: hidden;
  max-width: 560px;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 47, 95, 0.08);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.92);
  justify-self: start;
}

.mission-visual img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.signal-list,
.check-list,
.number-list {
  margin: 0;
  padding-left: 1.2rem;
}

.signal-list,
.check-list {
  display: grid;
  gap: 0.75rem;
}

.stats-grid,
.cards.three-up,
.resource-grid,
.story-grid,
.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.metric-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 47, 95, 0.08);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
}

.section-band {
  padding-top: 0;
}

.narrow,
.section-heading {
  max-width: 760px;
}

.founding-join-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.founding-join-visual img {
  display: block;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(10, 47, 95, 0.16);
}

.section-heading h2,
.split-grid h2,
.footer-grid h2,
.cta-grid h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(255, 138, 29, 0.18) 0, rgba(255, 138, 29, 0) 30%),
    linear-gradient(160deg, var(--surface-dark), var(--surface-strong));
  color: var(--text-light);
}

.tabs {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem;
}

.tab-button,
.filter-chip {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.tab-button.is-active,
.filter-chip.is-active {
  background: var(--accent);
  color: white;
}

.tab-panel {
  display: none;
  padding-top: 1rem;
}

.tab-panel.is-active {
  display: block;
}

.tabs-footer,
.stack-top {
  padding-top: 1rem;
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.resource-card h3 {
  margin-bottom: 0.15rem;
}

.icon-card-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 138, 29, 0.2), rgba(255, 209, 165, 0.12));
  border: 1px solid rgba(255, 138, 29, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
  line-height: 1;
  flex: 0 0 auto;
}

.resource-card a {
  margin-top: auto;
  font-weight: 700;
  color: var(--surface-strong);
}

.resource-card.is-hidden {
  display: none;
}

.accordion {
  display: grid;
  gap: 1rem;
}

.accordion-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 1.2rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
}

.accordion-panel {
  display: none;
  padding: 0 1.4rem 1.4rem;
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-card,
.form-shell {
  background: linear-gradient(180deg, #fff8f0, #ffffff);
}

.highlight-band {
  border-radius: var(--radius);
}

.tag-row,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1rem;
}

.tag,
.audience-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 4.2rem;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 255, 0.92));
  border: 1px solid rgba(10, 47, 95, 0.1);
  box-shadow: 0 16px 34px rgba(8, 29, 58, 0.08);
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--surface-strong);
  text-align: center;
  line-height: 1.2;
  transition: transform 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.audience-pill:hover {
  transform: translateY(-2px) scale(1.02);
  color: var(--accent);
  border-color: rgba(255, 138, 29, 0.35);
  box-shadow: 0 20px 42px rgba(8, 29, 58, 0.12), 0 0 0 1px rgba(255, 138, 29, 0.08);
}

.audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  font-size: 1.45rem;
  line-height: 1;
  flex: 0 0 auto;
}

.audience-pill span:last-child {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(10, 47, 95, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-status {
  display: none;
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
  background: var(--success-bg);
  color: var(--success);
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list strong {
  display: block;
}

.site-note {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.95), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(255, 138, 29, 0.16);
}

.contact-updates-note {
  background: rgba(255, 255, 255, 0.98);
}

.cards.two-up.detail-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

#software .cards.three-up {
  margin-top: 2.25rem;
}

.detail-card {
  height: 100%;
}

.detail-card p:last-child {
  margin-bottom: 0;
}

.learning-pillars {
  margin-top: 2rem;
}

.solutions-persona-band {
  margin-top: 2.25rem;
}

.solutions-persona-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.solutions-persona-card {
  position: relative;
  padding: 1rem 0.8rem;
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(10, 47, 95, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transform-origin: center center;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.solutions-persona-card:hover {
  z-index: 3;
  transform: scale(1.24);
  box-shadow: 0 34px 68px rgba(8, 29, 58, 0.24);
}

.solutions-persona-icon {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.solutions-persona-card h3 {
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
  color: var(--surface-strong);
}

.solutions-persona-card p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(13, 37, 68, 0.78);
}

.software-gallery-shell {
  display: grid;
  gap: 1rem;
  padding-top: 100px;
}

.software-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.software-shot {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 47, 95, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.software-shot-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.12rem;
  background: linear-gradient(180deg, #f6f9ff, #eef3fb);
}

.software-shot-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.software-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(10, 47, 95, 0.08);
}

.software-shot-caption {
  padding: 0.68rem 0.78rem 0.78rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(13, 37, 68, 0.84);
}

.software-shot-caption strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--surface-strong);
}

.software-shot-note {
  margin: 0.25rem 0 0;
}

.solutions-section-title {
  font-size: clamp(2.45rem, 3.8vw, 4.2rem);
}

.section-dark .solutions-section-title {
  color: var(--text-light);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 38, 0.82);
  backdrop-filter: blur(6px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 1200px);
  margin: 4vh auto;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(248, 251, 255, 0.98);
  box-shadow: 0 30px 80px rgba(6, 18, 38, 0.3);
}

.lightbox-dialog img {
  display: block;
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 18px;
  background: #ffffff;
}

.lightbox-close {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 47, 95, 0.14);
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(8, 29, 58, 0.18);
}

.embed-note {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px dashed rgba(10, 47, 95, 0.2);
  background: rgba(10, 47, 95, 0.04);
}

.embed-note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.hubspot-embed-target {
  margin-top: 1rem;
  min-height: 120px;
}

#founding-form .hubspot-embed-target {
  margin-top: 0;
  min-height: 0;
}

#hubspot-company-contact {
  margin-top: -0.35rem !important;
  min-height: 0;
  padding-top: 0;
}

#hubspot-company-contact .hs-form-frame,
#hubspot-company-contact iframe,
#hubspot-company-contact form {
  margin-top: -0.45rem !important;
  padding-top: 0 !important;
}

.form-shell > p {
  margin-bottom: 0.15rem;
}

#founding-form p {
  margin-bottom: 0.1rem;
}

.form-shell > p + .hubspot-embed-target,
.form-shell > h2 + .hubspot-embed-target,
.form-shell > .site-note + .hubspot-embed-target {
  margin-top: 0 !important;
}

#founding-form .hs-form-frame,
#founding-form iframe,
#founding-form form {
  margin-top: -0.15rem !important;
}

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .footer-grid,
  .stats-grid,
  .cards.three-up,
  .cards.two-up.detail-card-grid,
  .resource-grid,
  .story-grid,
  .timeline-grid,
  .solutions-persona-grid,
  .software-shot-grid,
  .about-hero-grid,
  .about-story-grid,
  .about-metrics-grid,
  .about-ecosystem-grid,
  .experience-intro-grid,
  .founding-join-grid,
  .cta-grid,
  .form-grid.two-up {
    grid-template-columns: 1fr;
  }

  .tag-row,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-panel {
    padding-top: 0 !important;
    margin-top: 0.75rem;
    display: block;
  }

  .about-hero-grid {
    gap: 1.25rem;
  }

  .about-hero-panel .about-image-card,
  .about-hero-panel .about-image-card img {
    width: 100%;
  }

  .about-hero-panel .about-image-card img {
    height: auto;
    min-height: 0;
    max-height: 320px;
    object-fit: cover;
    object-position: center;
  }

  .header-inner {
    flex-wrap: nowrap;
    gap: 0.75rem;
    align-items: center;
    position: relative;
    padding-bottom: 0.2rem;
  }

  .breadcrumbs {
    padding-bottom: 0;
    margin-top: -0.95rem;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .nav-shell {
    display: none;
    width: 100vw;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem;
    position: absolute;
    top: calc(100% + 0.1rem);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 22px 22px;
    border: 1px solid rgba(10, 47, 95, 0.08);
    border-top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 40px rgba(7, 35, 73, 0.12);
    z-index: 30;
  }

  .nav-shell.is-open {
    display: flex;
  }

  .nav-list,
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .nav-shell > .button {
    display: none;
  }

  .nav-mobile-only {
    display: list-item;
    width: 100%;
  }

  .nav-mobile-only a {
    display: inline-flex;
    width: 100%;
    min-height: 3rem;
    align-items: center;
    justify-content: flex-start;
    padding: 0.2rem 0;
    border-radius: 0;
    background: transparent;
    color: var(--surface-strong);
    font-weight: 600;
    text-align: left;
    box-shadow: none;
  }

  .nav-mobile-only a:hover {
    color: var(--surface-strong);
  }

  .nav-list a::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .page-hero {
    padding: 3.5rem 0;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .site-header {
    background: rgba(250, 252, 255, 0.96);
    box-shadow: 0 8px 24px rgba(7, 35, 73, 0.08);
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.7rem 0 0.08rem;
  }

  .breadcrumbs {
    padding-bottom: 0;
    margin-top: -1rem;
  }

  .breadcrumbs a,
  .breadcrumbs span {
    font-size: 0.85rem;
  }

  .site-brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-brand img {
    width: min(250px, 60vw);
  }

  .nav-toggle {
    width: 2.55rem;
    height: 2.55rem;
    flex: 0 0 auto;
    border-color: rgba(255, 138, 29, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
    box-shadow: 0 10px 18px rgba(7, 35, 73, 0.1);
  }

  .nav-toggle-bar {
    width: 1rem;
    height: 2.2px;
    margin: 0.11rem auto;
  }

  .nav-shell {
    left: 50%;
    right: auto;
    width: 100vw;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0.95rem 1.1rem 1.1rem;
    border-left: 0;
    border-right: 0;
    border-radius: 0 0 22px 22px;
  }

  .button,
  .button-ghost,
  .nav-mobile-only a,
  .hero-actions a,
  .cta-row a,
  .form-actions a {
    justify-content: center;
    text-align: center;
  }

  .button,
  .button-ghost {
    margin-left: auto;
    margin-right: auto;
  }

  .who-for-visual {
    display: none;
  }

  .who-for-section .container {
    width: min(calc(100% - 1rem), var(--max));
  }

  .who-for-section .cta-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .who-for-section .cta-grid > div:first-child {
    width: 100%;
    max-width: none;
  }

  .hero-actions,
  .cta-row,
  .form-actions {
    justify-content: center;
    align-items: center;
  }

  .hero-actions a,
  .cta-row a,
  .form-actions a {
    margin-left: auto;
    margin-right: auto;
  }

  .form-shell {
    padding-left: 0;
    padding-right: 0;
  }

  .hubspot-embed-target,
  #hubspot-company-contact,
  #hubspot-contact-newsletter,
  #founding-form .hubspot-embed-target {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-actions,
  .filter-bar,
  .tab-buttons,
  .footer-bottom,
  .kicker-row,
  .cta-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }
}
