/* Adviin — warm dark shell, mint accent, editorial type */

:root {
  --bg: #0f1419;
  --bg-elevated: #161d26;
  --bg-tint: #f4f1eb;
  --ink: #0f1419;
  --ink-muted: #5c6570;
  --ink-soft: #a7b0bc;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(15, 20, 25, 0.12);
  --accent: #3ecf8e;
  --accent-dim: #2a9d67;
  --accent-glow: rgba(62, 207, 142, 0.35);
  --warning: #f0c674;
  --shell-max: 1120px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e8ecf1;
  background: var(--bg);
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(100% - 2.5rem, var(--shell-max));
  margin-inline: auto;
}

.narrow {
  max-width: 720px;
}

.req {
  color: var(--warning);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.65rem 0;
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.92) 0%, rgba(15, 20, 25, 0.9) 100%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(62, 207, 142, 0.35) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.15rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo__mark {
  display: block;
  height: 2.75rem;
  width: auto;
  flex-shrink: 0;
  scale: 1.5;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(62, 207, 142, 0.45);
  background: rgba(62, 207, 142, 0.08);
}

.nav-toggle__bars {
  width: 1.15rem;
  height: 2px;
  background: #e8ecf1;
  position: relative;
  border-radius: 999px;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e8ecf1;
  border-radius: 999px;
}

.nav-toggle__bars::before {
  top: -6px;
}

.nav-toggle__bars::after {
  top: 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav__list a {
  display: block;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  color: #b8c2ce;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.nav__list a:hover,
.nav__list a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav__cta {
  padding: 0.62rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #042016 !important;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(62, 207, 142, 0.22);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: #5ae0a4;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(62, 207, 142, 0.3);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 4.35rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem 1.1rem;
    background: rgba(12, 16, 20, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.45rem;
    border-radius: var(--radius);
  }

  .nav__list a {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.95rem;
  }

  .nav__cta {
    text-align: center;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
  }
}

/* Hero */

.hero {
  position: relative;
  min-height: clamp(28rem, 78vh, 42rem);
  display: flex;
  align-items: center;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("./images/hero.jpg") center center / cover no-repeat;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, rgba(8, 12, 16, 0.55) 0%, rgba(8, 12, 16, 0.3) 70%),
    linear-gradient(180deg, rgba(8, 12, 16, 0.3) 0%, rgba(8, 12, 16, 0.5) 100%);
  pointer-events: none;
}

.hero__inner--center {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: left;
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

.hero-stats li {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.hero-stats strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.hero-stats span {
  display: block;
  font-size: 0.92rem;
  color: #c5ced8;
  line-height: 1.45;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.hero .eyebrow {
  color: #8ef0c0;
}

.hero h1 {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__note {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: #eef2f6;
  font-weight: 500;
}

.lede {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

.hero .lede {
  color: #c5ced8;
  max-width: 46ch;
  margin-inline: auto;
}

.section__head--center {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 2.25rem;
}

.section__sub--center {
  margin-inline: auto;
}

.section--about {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.question-chips {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.question-chips li {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #dce4ec;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.about-visual--primary {
  grid-row: span 2;
  min-height: 100%;
}

.about-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 12rem;
}

.about-visual--primary img {
  min-height: 22rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pillar {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.pillar__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.pillar h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: #fff;
}

.pillar p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.pillar p strong {
  color: #e8ecf1;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  background: rgba(62, 207, 142, 0.08);
  border: 1px solid rgba(62, 207, 142, 0.22);
}

.about-cta p {
  margin: 0;
  max-width: 42rem;
  color: #dce4ec;
  font-size: 1.05rem;
}

.about-cta p strong {
  color: #fff;
}

/* Bento services */

.bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

@media (max-width: 820px) {
  .bento {
    grid-template-columns: 1fr;
  }
}

.bento__cell {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.bento__cell--featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(62, 207, 142, 0.1) 0%, var(--bg-elevated) 45%);
  border-color: rgba(62, 207, 142, 0.25);
  padding-bottom: 1rem;
}

.bento__cell--featured ul {
  margin-bottom: 0;
}

.bento__media {
  margin: 1.25rem 0 0;
  flex: 1;
  min-height: 11rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.bento__media img {
  display: block;
  width: 100%;
  height: 350px;
  min-height: 11rem;
  object-fit: contain;
  object-position: center 40%;
}

.bento__label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.bento__cell h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
}

.bento__cell > p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.bento__cell ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #cfd6df;
  font-size: 0.93rem;
}

.bento__cell li {
  margin-bottom: 0.35rem;
}

/* Process timeline */

.process-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  counter-reset: process;
}

@media (max-width: 1024px) {
  .process-track {
    grid-template-columns: 1fr;
    max-width: 36rem;
    margin-inline: auto;
  }
}

.process-step {
  position: relative;
  padding: 1.35rem 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

@media (min-width: 1025px) {
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.1rem;
    right: -0.55rem;
    width: 0.85rem;
    height: 2px;
    background: rgba(62, 207, 142, 0.45);
    z-index: 1;
  }
}

.process-step__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(62, 207, 142, 0.15);
  border: 1px solid rgba(62, 207, 142, 0.4);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
}

.process-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: #fff;
}

.process-step p {
  margin: 0;
  font-size: 0.88rem;
  color: #b8c2ce;
  line-height: 1.55;
}

.faq--grid {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  align-items: start;
}

@media (max-width: 760px) {
  .faq--grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }
}

.section--faq {
  background: var(--bg-tint);
  color: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.section--faq .section__head h2 {
  color: var(--ink);
}

.section--faq .eyebrow {
  color: var(--accent-dim);
}

.section--faq .section__sub {
  color: var(--ink-muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

.faq-layout__intro .section__head {
  max-width: none;
  margin-bottom: 1.5rem;
}

.faq-layout__visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: 0 20px 50px rgba(15, 20, 25, 0.1);
}

.faq-layout__visual img {
  display: block;
  width: 100%;
  height: 200px;
  min-height: 14rem;
  object-fit: cover;
}

.faq--stack {
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section--faq .faq__item {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 0 1.5rem;
  box-shadow: 0 8px 28px rgba(15, 20, 25, 0.06);
}

.section--faq .faq__item summary {
  font-size: 1.12rem;
  padding: 1.35rem 0;
  color: var(--ink);
}

.section--faq .faq__item p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0 0 1.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn--primary {
  background: var(--accent);
  color: #042016;
  border-color: var(--accent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #5ae0a4;
}

.btn--ghost {
  background: transparent;
  color: #e8ecf1;
  border-color: var(--line);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.btn--ghost.btn--dark {
  color: var(--ink);
  border-color: var(--line-dark);
}

.btn--ghost.btn--dark:hover,
.btn--ghost.btn--dark:focus-visible {
  background: rgba(15, 20, 25, 0.05);
  border-color: rgba(15, 20, 25, 0.25);
}

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

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.35rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: #fff;
}

.section--soft {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
}

.lead-in {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section--tint {
  background: var(--bg-tint);
  color: var(--ink);
}

.section--tint h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section--tint .prose {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.h2-display {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: #fff;
}

.h2-display--dark {
  color: var(--ink);
}

.prose--on-dark {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.prose--on-dark strong {
  color: #e8ecf1;
}

.question-list {
  margin: 1.75rem 0;
  padding-left: 1.35rem;
  color: #cfd6df;
  font-size: 1.05rem;
}

.question-list li {
  margin-bottom: 0.7rem;
}

.question-list li::marker {
  color: var(--accent);
}

.block-cta {
  margin-top: 1.75rem;
}

.eyebrow--dark {
  color: var(--accent-dim);
}

/* Split layouts */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split--reverse-mobile .split__copy {
    order: 1;
  }

  .split--reverse-mobile .split__media {
    order: 2;
  }
}

.split__media {
  margin: 0;
}

.split__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.split__media--center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.split__media--center img {
  width: auto;
  max-width: min(100%, 270px);
}

.split__copy .prose {
  margin: 0 0 1.25rem;
}

.split__copy .btn {
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.prose-block {
  margin-top: 0.5rem;
}

.prose-block p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.prose-block p strong {
  color: var(--ink);
}

.section--beliefs {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head--wide {
  max-width: 640px;
}

.section__head .eyebrow + h2 {
  margin-top: 0.35rem;
}

.section__head {
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.section__sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section__head--light .section__sub {
  color: #b8c2ce;
}

.section--dark {
  background: linear-gradient(180deg, #0c1014 0%, #0f1419 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards {
  display: grid;
  gap: 1.25rem;
}

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

@media (max-width: 960px) {
  .cards--3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: #fff;
}

.card > p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #cfd6df;
  font-size: 0.95rem;
}

.card li {
  margin-bottom: 0.35rem;
}

/* How we support you — service grid */

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 1024px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

.support-card img {
  width: 4.75rem;
  height: auto;
}

.support-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.support-badge img {
  display: block;
  width: 100%;
  max-width: 11rem;
  height: auto;
}

.support-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
}

.support-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
}

.support-card p {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  color: #b8c2ce;
  line-height: 1.55;
}

.support-card p strong {
  color: #dce4ec;
}

.text-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  align-self: flex-start;
  margin-top: 0.15rem;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

/* FAQ */

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq__item {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 1rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 0;
  list-style: none;
  color: #fff;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.25rem;
}

.section--faq .faq__item summary::after {
  color: var(--accent-dim);
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Contact */

.section--contact {
  background: var(--bg-tint);
  color: var(--ink);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 800px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

.contact__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.contact__intro > p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.form {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 16px 50px rgba(15, 20, 25, 0.08);
}

.form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}

.form input,
.form select,
.form textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-dark);
  font: inherit;
  background: #faf9f7;
  color: var(--ink);
}

.form input:focus-visible,
.form select:focus-visible,
.form textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: transparent;
}

.contact__form-area {
  position: relative;
}

.form-success {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 16px 50px rgba(15, 20, 25, 0.08);
  outline: none;
}

.form-success:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.form-success__title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-dim);
}

.form-success__text {
  margin: 0 0 1.25rem;
  color: var(--ink-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

/* Footer */

.footer {
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

@media (max-width: 960px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer__logo img {
  display: block;
  height: 2.35rem;
  width: auto;
  flex-shrink: 0;
  scale: 1.5;
}

.footer__domain {
  margin: 0.65rem 0 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
}

.footer__tagline {
  margin: 0.55rem 0 0;
  max-width: 26ch;
  line-height: 1.55;
  color: #9aa5b3;
  font-size: 0.9rem;
}

.footer__label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__links a {
  color: var(--ink-soft);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.15s ease;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: #fff;
}

.footer__contact {
  font-style: normal;
}

.footer__contact p {
  margin: 0 0 0.65rem;
  line-height: 1.55;
}

.footer__contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.footer__contact a:hover,
.footer__contact a:focus-visible {
  text-decoration: underline;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer__copy,
.footer__reg {
  margin: 0;
  font-size: 0.82rem;
  color: #7d8794;
}

/* Subpages (about, contact, etc.) */

.page-hero {
  padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(62, 207, 142, 0.06) 0%, transparent 100%);
}

.page-hero__inner {
  max-width: 44rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: #fff;
}

.page-hero__lede {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 42ch;
}

.nav__list a[aria-current="page"] {
  color: #fff;
  background: rgba(62, 207, 142, 0.14);
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 720px) {
  .beliefs-grid {
    grid-template-columns: 1fr;
  }
}

.belief {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.belief h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #fff;
}

.belief p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.section--cta-band {
  border-top: 1px solid var(--line);
}

.section--cta-band .about-cta {
  margin-top: 0;
}

.page-hero--compact {
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.page-hero--compact:has(+ .section--legal) {
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.nav__cta[aria-current="page"] {
  background: #5ae0a4;
  box-shadow: 0 10px 28px rgba(62, 207, 142, 0.35);
}

.section--contact-page {
  background: var(--bg-tint);
  color: var(--ink);
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 860px) {
  .contact-page {
    grid-template-columns: 1fr;
  }
}

.contact-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.contact-page__intro {
  margin: 0 0 1.75rem;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 36ch;
}

.contact-details {
  margin: 0;
}

.contact-details__item {
  margin-bottom: 1.35rem;
}

.contact-details__item:last-child {
  margin-bottom: 0;
}

.contact-details dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 0.35rem;
}

.contact-details dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}

.contact-details a {
  color: var(--accent-dim);
  font-weight: 600;
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  text-decoration: underline;
}

.form__heading {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}

.form__sub {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.form__sub .req {
  color: var(--accent-dim);
}

.form__consent {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.form__consent a {
  color: var(--accent-dim);
  font-weight: 600;
  text-decoration: underline;
}

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

.contact-page__data-note {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-dark);
}

.contact-page__data-note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.section--legal {
  background: var(--bg-tint);
  color: var(--ink);
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.legal-doc {
  max-width: 48rem;
  margin: 0 auto;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(15, 20, 25, 0.06);
}

.legal-doc__meta {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.legal-doc__block {
  margin-bottom: 2rem;
}

.legal-doc__block:last-child {
  margin-bottom: 0;
}

.legal-doc h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.legal-doc h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--ink);
}

.legal-doc p,
.legal-doc li {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.legal-doc p {
  margin: 0 0 0.85rem;
}

.legal-doc ul {
  margin: 0 0 0.85rem;
  padding-left: 1.35rem;
}

.legal-doc li {
  margin-bottom: 0.35rem;
}

.legal-doc a {
  color: var(--accent-dim);
  font-weight: 600;
  text-decoration: underline;
}

.legal-doc a:hover,
.legal-doc a:focus-visible {
  color: var(--accent);
}

.legal-doc strong {
  color: var(--ink);
  font-weight: 600;
}

.page-hero__lede strong {
  font-weight: 600;
  color: inherit;
}

