:root {
  --bg: #f6efe4;
  --bg-soft: rgba(255, 250, 243, 0.76);
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: #fff8f1;
  --border: rgba(111, 83, 49, 0.14);
  --text: #1f2a1f;
  --muted: #5f635b;
  --brand-purple: #525395;
  --brand-orange: #FB8F3B;
  --accent: #ca6a2f;
  --accent-deep: #7f4f24;
  --teal: #1d6f6d;
  --sage: #7f9b6c;
  --shadow: 0 22px 60px rgba(74, 49, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(202, 106, 47, 0.18), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(29, 111, 109, 0.18), transparent 26%),
    linear-gradient(180deg, #f9f2e7 0%, #f3eadb 100%);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  position: relative;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

h1,
h2,
h3,
strong {
  font-family: "Baskerville", "Georgia", serif;
  letter-spacing: -0.02em;
}

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

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
  position: relative;
  z-index: 1;
}

.loading-state,
.error-banner {
  position: sticky;
  top: 12px;
  z-index: 30;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 12px;
  border-radius: 18px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.loading-state {
  background: rgba(29, 111, 109, 0.14);
  color: var(--teal);
  font-weight: 700;
}

.error-banner {
  background: rgba(202, 106, 47, 0.14);
  color: var(--accent-deep);
  line-height: 1.6;
}

.backdrop {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
}

.backdrop-a {
  width: 260px;
  height: 260px;
  background: rgba(202, 106, 47, 0.14);
  top: 120px;
  left: -60px;
  animation: drift 14s ease-in-out infinite;
}

.backdrop-b {
  width: 320px;
  height: 320px;
  background: rgba(29, 111, 109, 0.12);
  right: -80px;
  bottom: 100px;
  animation: drift 18s ease-in-out infinite reverse;
}

.topbar,
.footer,
.panel,
.panel-soft,
.quote-banner,
.contact-card,
.category-card,
.highlight-card,
.journey-card,
.terms-card,
.stat-card,
.spotlight-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 20;
  margin-bottom: 28px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  overflow: visible;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: auto;
  height: 46px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  width: auto;
  height: 30px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.topbar-actions {
  display: none;
}

.menu-toggle {
  border: 0;
  font: inherit;
  cursor: pointer;
}
.site-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 22px 44px rgba(49, 31, 12, 0.12);
}

.site-menuLink {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(82, 83, 149, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-menuLink:hover {
  transform: translateY(-1px);
  border-color: rgba(82, 83, 149, 0.18);
}

.site-menuLink span {
  font-size: 1rem;
  color: var(--accent-deep);
}

.site-menuLink small {
  color: var(--muted);
  line-height: 1.45;
}

.menu-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(82, 83, 149, 0.1);
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-purple);
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 17px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.site-menu {
  width: min(340px, calc(100vw - 32px));
  padding: 12px;
}

.site-menuLinks {
  display: grid;
  gap: 8px;
}

.site-menuLink.active {
  background: rgba(82, 83, 149, 0.08);
  border-color: rgba(82, 83, 149, 0.16);
}

.site-menuLink.active span,
.site-menuLink.active small {
  color: var(--brand-purple);
}

.brand strong,
.footer strong {
  display: block;
  font-size: 1.2rem;
}

.brand span {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-logoLockup {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  width: fit-content;
}

.footer-logoIcon {
  width: auto;
  height: 40px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-logoWordmark {
  width: auto;
  height: 26px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.topbar-meta {
  display: grid;
  gap: 6px;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(29, 111, 109, 0.12);
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-copy {
  color: var(--muted);
  font-size: 0.9rem;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.96rem;
  color: var(--muted);
}

.topnav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--accent-deep);
}

.topnav a.active,
.footer-links a.active {
  color: var(--teal);
  font-weight: 700;
}

.panel,
.panel-soft {
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.panel {
  background: linear-gradient(145deg, rgba(255, 248, 241, 0.9), rgba(255, 255, 255, 0.72));
}

.panel-soft {
  background: rgba(255, 249, 242, 0.72);
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  padding: 34px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tag,
.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(29, 111, 109, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.96;
  max-width: 10ch;
}

.hero-announcement,
.hero-subtitle,
.section-head p,
.story-card p,
.quote-banner span,
.contact-card strong,
.terms-card p,
.terms-hero p,
.spotlight-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 58ch;
  font-size: 1.04rem;
}

.eyebrow-chip,
.section-eyebrow,
.contact-label,
.spotlight-label,
.journey-step,
.section-index {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--accent-deep);
  background: rgba(202, 106, 47, 0.12);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #235856);
  box-shadow: 0 14px 30px rgba(29, 111, 109, 0.24);
}

.button-secondary {
  border: 1px solid rgba(29, 111, 109, 0.2);
  background: rgba(255, 255, 255, 0.64);
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.spotlight-card,
.stat-card,
.category-card,
.highlight-card,
.journey-card,
.contact-card,
.terms-card,
.quote-banner {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.spotlight-card {
  border-radius: 24px;
  padding: 22px;
}

.stats-grid,
.highlight-grid,
.category-grid,
.journey-grid,
.contact-grid,
.terms-grid {
  display: grid;
  gap: 18px;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
  padding: 26px 30px;
}

.trust-strip-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.trust-strip-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.stat-card {
  padding: 20px;
  border-radius: 24px;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-value {
  font-size: 2rem;
  color: var(--teal);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.section-wrap {
  margin-top: 38px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head-left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-head h2,
.story-card h2,
.terms-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
}

.highlight-grid {
  grid-template-columns: repeat(4, 1fr);
}

.highlight-card,
.category-card,
.journey-card,
.contact-card,
.terms-card {
  padding: 22px;
  border-radius: 26px;
}

.highlight-card h3,
.category-card h3,
.journey-card h3,
.terms-card h2 {
  margin: 12px 0 10px;
  font-size: 1.38rem;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
}

.story-card {
  padding: 30px;
}

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

.story-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.story-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
}

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

.journey-step,
.section-index,
.contact-label,
.section-eyebrow {
  color: var(--accent-deep);
}

.quote-banner {
  margin-top: 38px;
  padding: 28px;
  border-radius: 30px;
  text-align: center;
}

.quote-banner p {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.28;
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.terms-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.terms-preview-card,
.summary-card {
  display: block;
  padding: 22px;
  border-radius: 26px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.terms-preview-card:hover,
.terms-nav-link:hover {
  transform: translateY(-2px);
}

.terms-preview-card:hover {
  border-color: rgba(29, 111, 109, 0.28);
  box-shadow: 0 18px 38px rgba(29, 111, 109, 0.12);
}

.terms-preview-card h3,
.summary-card strong {
  margin: 12px 0 10px;
  font-size: 1.3rem;
}

.terms-preview-card p,
.summary-card span {
  color: var(--muted);
  line-height: 1.7;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.contact-card {
  display: block;
  min-height: 170px;
}

.contact-label {
  display: block;
  margin-bottom: 16px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 24px 36px;
  align-items: start;
  margin-top: 42px;
  padding: 26px 28px 22px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

.footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-brandBlock {
  display: grid;
  gap: 14px;
  max-width: 34ch;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-socialLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: rgba(120, 109, 124, 0.82);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.footer-socialLink:hover {
  transform: translateY(-1px);
  color: var(--brand-purple);
  background: rgba(82, 83, 149, 0.06);
}

.footer-socialIcon {
  width: 26px;
  height: 26px;
  display: block;
}

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

.footer-links a {
  width: fit-content;
}

.footer-navBlock {
  display: grid;
  align-content: start;
  gap: 0;
}

.footer-contactLink {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(82, 83, 149, 0.08);
  border: 1px solid rgba(82, 83, 149, 0.12);
  color: var(--brand-purple);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-contactLink:hover {
  transform: translateY(-1px);
  border-color: rgba(251, 143, 59, 0.26);
  background: rgba(251, 143, 59, 0.1);
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(82, 83, 149, 0.08);
}

.footer-tagline,
.footer-copy {
  margin: 0;
}

.footer-metaCopy {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.footer-legalName {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-copy {
  text-align: right;
  max-width: 38ch;
}

.terms-shell .topbar {
  margin-bottom: 34px;
}

.about-main {
  display: grid;
  gap: 24px;
}

.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  padding: 34px;
  align-items: stretch;
}

.about-hero-copy {
  display: grid;
  gap: 22px;
  align-content: space-between;
}

.about-hero-copyTop {
  display: grid;
  gap: 0;
}

.about-hero-copy h1,
.about-hero-side h2,
.about-closing-copy h2,
.about-contact-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.04;
}

.about-hero-copy p,
.about-hero-side p,
.about-card p,
.about-closing-copy p,
.about-contact-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.about-hero-note {
  display: grid;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(82, 83, 149, 0.1);
  background:
    radial-gradient(circle at top left, rgba(82, 83, 149, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 242, 0.84));
}

.about-hero-noteLead {
  margin: 0;
  color: var(--accent-deep);
  font-size: 1.06rem;
  line-height: 1.75;
}

.about-hero-points {
  display: grid;
  gap: 12px;
}

.about-hero-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid rgba(82, 83, 149, 0.08);
  color: var(--muted);
  line-height: 1.6;
}

.about-hero-point:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-hero-pointIndex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(251, 143, 59, 0.12);
  color: var(--brand-orange);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-hero-side,
.about-contact {
  padding: 26px;
}

.about-hero-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
  background:
    radial-gradient(circle at top right, rgba(82, 83, 149, 0.14), transparent 35%),
    radial-gradient(circle at bottom left, rgba(251, 143, 59, 0.1), transparent 28%),
    rgba(255, 249, 242, 0.72);
}

.about-hero-side h2,
.about-closing-copy h2,
.about-contact-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.about-connect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.about-connect-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 242, 0.72));
  border: 1px solid var(--border);
  box-shadow: 0 14px 28px rgba(74, 49, 22, 0.08);
}

.about-connect-card .section-index {
  color: var(--brand-orange);
}

.about-connect-card strong {
  font-size: 1.02rem;
}

.about-message {
  padding: 24px 30px;
  text-align: center;
}

.about-message p {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: var(--brand-purple);
}

.about-links {
  display: grid;
  gap: 18px;
  padding: 28px 30px;
  align-items: start;
}

.about-links-copy {
  max-width: 620px;
}

.about-links-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.about-links-copy p,
.about-link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.about-link-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(82, 83, 149, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(251, 143, 59, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 242, 0.76));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  position: relative;
  overflow: hidden;
}

.about-link-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(251, 143, 59, 0.12);
  pointer-events: none;
}

.about-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(82, 83, 149, 0.28);
  box-shadow: 0 18px 38px rgba(82, 83, 149, 0.12);
}

.about-link-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.about-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(82, 83, 149, 0.2), rgba(251, 143, 59, 0.22));
  color: var(--brand-purple);
  box-shadow: inset 0 0 0 1px rgba(82, 83, 149, 0.12);
}

.about-link-iconSvg {
  width: 22px;
  height: 22px;
  display: block;
}

.about-link-card .section-index {
  display: inline-flex;
  width: fit-content;
}

.about-link-card h3 {
  margin: 0;
  font-size: 1.2rem;
  word-break: break-word;
  line-height: 1.25;
}

.about-link-card p {
  margin-top: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-card {
  padding: 24px;
  border-radius: 26px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 100%;
}

.about-card h2 {
  margin: 10px 0 12px;
  font-size: 1.45rem;
}

.about-card-featured,
.about-closing {
  background:
    linear-gradient(135deg, rgba(29, 111, 109, 0.12), rgba(202, 106, 47, 0.08)),
    var(--panel);
}

.about-card-featured {
  grid-column: span 3;
  padding: 30px;
}

.about-card-featured h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.about-closing {
  padding: 30px 32px;
}

.about-contact {
  display: grid;
  gap: 22px;
  align-items: start;
  padding: 30px 32px;
  scroll-margin-top: 110px;
  background:
    radial-gradient(circle at top left, rgba(82, 83, 149, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(251, 143, 59, 0.1), transparent 26%),
    rgba(255, 249, 242, 0.74);
}

.about-contact-copy {
  max-width: 64ch;
}

.about-contact-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-contact-legal {
  display: grid;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(82, 83, 149, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.about-contact-legal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-contact-legal strong {
  font-size: 1.08rem;
}

.about-contact-group {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(82, 83, 149, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 249, 242, 0.82));
  box-shadow: 0 18px 40px rgba(74, 49, 22, 0.08);
  overflow: hidden;
}

.about-contact-group::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.8;
}

.about-contact-group--support::after {
  background: radial-gradient(circle, rgba(82, 83, 149, 0.18), transparent 70%);
}

.about-contact-group--grievance::after {
  background: radial-gradient(circle, rgba(251, 143, 59, 0.2), transparent 70%);
}

.about-contact-group-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.about-contact-group-head h3 {
  margin: 6px 0 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.about-contact-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(82, 83, 149, 0.08);
  color: var(--brand-purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-contact-group--grievance .about-contact-kicker {
  background: rgba(251, 143, 59, 0.12);
  color: var(--brand-orange);
}

.about-contact-icon,
.about-contact-methodIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: var(--brand-purple);
  background:
    linear-gradient(135deg, rgba(82, 83, 149, 0.16), rgba(251, 143, 59, 0.16));
  box-shadow: inset 0 0 0 1px rgba(82, 83, 149, 0.1);
}

.about-contact-group--grievance .about-contact-icon {
  color: var(--brand-orange);
}

.about-contact-iconSvg {
  width: 28px;
  height: 28px;
  display: block;
}

.about-contact-items {
  display: grid;
  gap: 12px;
}

.about-contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(82, 83, 149, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-contact-item:hover {
  transform: translateY(-1px);
  border-color: rgba(82, 83, 149, 0.22);
  box-shadow: 0 16px 24px rgba(82, 83, 149, 0.08);
}

.about-contact-group--grievance .about-contact-item:hover {
  border-color: rgba(251, 143, 59, 0.28);
  box-shadow: 0 16px 24px rgba(251, 143, 59, 0.08);
}

.about-contact-methodIcon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--brand-purple);
  background: rgba(82, 83, 149, 0.08);
}

.about-contact-group--grievance .about-contact-methodIcon {
  color: var(--brand-orange);
  background: rgba(251, 143, 59, 0.12);
}

.about-contact-methodSvg {
  width: 20px;
  height: 20px;
  display: block;
}

.about-contact-itemCopy {
  display: grid;
  gap: 4px;
}

.about-contact-itemCopy .contact-label {
  margin-bottom: 0;
}

.about-contact-itemCopy strong {
  font-size: 1.08rem;
  line-height: 1.35;
  word-break: break-word;
}

.careers-main {
  display: grid;
  gap: 24px;
}

.careers-hero {
  padding: 32px;
}

.careers-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.careers-hero p,
.careers-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 62ch;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.careers-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.careers-card h2 {
  margin: 10px 0 12px;
  font-size: 1.45rem;
}

.privacy-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.terms-main {
  display: grid;
  gap: 24px;
}

.terms-hero {
  padding: 32px;
}

.terms-updated {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(29, 111, 109, 0.12);
  color: var(--teal);
  font-weight: 700;
}

.terms-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.terms-layout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 24px;
  align-items: start;
}

.terms-sidebar {
  padding: 28px;
  position: sticky;
  top: 20px;
}

.terms-sidebar h2 {
  margin: 10px 0 12px;
  font-size: 1.8rem;
}

.terms-sidebar p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.terms-nav-list {
  display: grid;
  gap: 10px;
}

.terms-nav-link {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  color: var(--accent-deep);
  font-weight: 700;
}

.terms-sidebar-actions {
  margin-top: 22px;
}

.terms-grid--single {
  grid-template-columns: 1fr;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding: 30px;
}

.cta-panel-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.cta-panel-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 58ch;
}

.cta-panel-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 640ms ease forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, -24px, 0);
  }
}

@media (max-width: 1080px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 14px;
  }

  .topbar {
    gap: 10px;
    padding: 12px 14px;
    min-height: 68px;
    border-radius: 22px;
    align-items: center;
  }

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

  .topnav {
    display: none;
  }

  .brand-mark {
    gap: 8px;
    max-width: 100%;
  }

  .brand-icon {
    height: 38px;
  }

  .brand-name {
    height: 31px;
    max-width: min(220px, 58vw);
  }

  .topbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .menu-toggle span {
    left: 11px;
    width: 20px;
  }

  .menu-toggle span:nth-child(1) {
    top: 14px;
  }

  .menu-toggle span:nth-child(2) {
    top: 20px;
  }

  .menu-toggle span:nth-child(3) {
    top: 26px;
  }

  .menu-toggle.is-open span:nth-child(1),
  .menu-toggle.is-open span:nth-child(3) {
    top: 20px;
  }

  .hero,
  .split-layout,
  .trust-strip,
  .about-hero,
  .about-contact,
  .terms-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

  .category-grid,
  .journey-grid,
  .contact-grid,
  .careers-grid,
  .terms-grid,
  .terms-preview-grid,
  .terms-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-links-grid,
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-card-featured {
    grid-column: span 2;
  }

  .footer {
    grid-template-columns: 1fr;
  }

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

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-metaCopy {
    justify-items: start;
  }

  .privacy-contact-actions {
    width: 100%;
  }

  .footer-copy {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 10px;
  }

  .topbar {
    min-height: 64px;
    padding: 10px 12px;
    border-radius: 20px;
  }

  .brand-mark {
    gap: 6px;
  }

  .brand-icon {
    height: 32px;
  }

  .brand-name {
    height: 22px;
    max-width: min(176px, 50vw);
  }

  .topbar-actions {
    gap: 6px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .menu-toggle span {
    left: 10px;
    width: 18px;
  }

  .menu-toggle span:nth-child(1) {
    top: 13px;
  }

  .menu-toggle span:nth-child(2) {
    top: 19px;
  }

  .menu-toggle span:nth-child(3) {
    top: 25px;
  }

  .menu-toggle.is-open span:nth-child(1),
  .menu-toggle.is-open span:nth-child(3) {
    top: 19px;
  }

  .footer-logoLockup {
    gap: 6px;
  }

  .footer-logoIcon {
    display: block;
    height: 28px;
  }

  .footer-logoWordmark {
    height: 18px;
    max-width: min(130px, 42vw);
  }

  .hero,
  .story-card,
  .about-hero,
  .about-hero-note,
  .about-message,
  .about-closing,
  .about-contact,
  .careers-hero,
  .terms-hero {
    padding: 24px;
  }

  .stats-grid,
  .highlight-grid,
  .category-grid,
  .journey-grid,
  .contact-grid,
  .careers-grid,
  .about-links-grid,
  .about-grid,
  .terms-grid,
  .terms-preview-grid,
  .terms-summary-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .pill-row,
  .section-cta {
    justify-content: flex-start;
  }

  .cta-panel-actions {
    width: 100%;
  }

  .cta-panel-actions .button {
    width: 100%;
  }

  .privacy-contact-actions .button {
    width: 100%;
  }

  .about-contact-legal {
    width: 100%;
  }

  .about-contact-groups {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .about-connect-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2px;
  }

  .about-card-featured {
    grid-column: span 1;
  }

  .about-hero {
    gap: 18px;
  }

  .about-hero-copy {
    gap: 18px;
  }

  .about-hero-note,
  .about-hero-side {
    padding: 18px 0 0;
    border: 0;
    border-top: 1px solid rgba(82, 83, 149, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-hero-note {
    gap: 14px;
  }

  .about-hero-points {
    gap: 10px;
  }

  .about-connect-card {
    padding: 14px 0;
    border: 0;
    border-top: 1px solid rgba(82, 83, 149, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-connect-card:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-contactLink {
    width: 100%;
    justify-content: center;
  }
}
