:root {
  --font-sans: "Segoe UI Variable", "Segoe UI", "Aptos", "Helvetica Neue", "Noto Sans", Arial, sans-serif;
  --bg: #eef3f8;
  --surface: #ffffff;
  --surface-soft: #e7eff5;
  --surface-warm: #faf3ec;
  --surface-dark: #12263f;
  --surface-dark-alt: #1b3a5d;
  --text: #16263c;
  --text-soft: #5a6c80;
  --text-invert: #f8fbff;
  --border: rgba(18, 36, 61, 0.1);
  --accent: #1b6f95;
  --accent-soft: rgba(27, 111, 149, 0.1);
  --warm: #9a5d2f;
  --warm-soft: rgba(154, 93, 47, 0.1);
  --success: #1d7a63;
  --shadow: 0 18px 40px rgba(13, 32, 59, 0.07);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1100px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.6;
  background: #f8fbfd;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

input[type="checkbox"] {
  width: auto;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(13, 159, 204, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: var(--surface-dark);
  color: #fff;
}

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

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

.narrow {
  width: min(calc(100% - 2rem), 760px);
}

.section {
  padding: 3rem 0;
}

.section-soft {
  background: transparent;
}

.section-muted {
  background: transparent;
}

.section-accent {
  background: transparent;
  color: var(--text-invert);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(18, 38, 63, 0.95), rgba(27, 58, 93, 0.92));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(190, 212, 229, 0.18);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: min(100%, 360px);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.18;
}

.brand-text strong {
  font-size: 1.14rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.brand-text span {
  font-size: 0.82rem;
  color: rgba(248, 251, 255, 0.7);
}

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

.site-nav a {
  color: rgba(248, 251, 255, 0.76);
  font-weight: 600;
  padding: 0.4rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #ffffff;
  border-color: rgba(123, 208, 236, 0.52);
}

.site-nav .nav-highlight {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(190, 212, 229, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.6rem;
  border-radius: 14px;
  border: 1px solid rgba(160, 214, 236, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.nav-toggle span + span {
  margin-top: 0.35rem;
}

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

.senior-eyebrow {
  color: var(--warm);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.55rem, 3.3vw, 2.35rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
}

p,
li {
  hanging-punctuation: first last;
}

.lead {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 56ch;
}

.flow > * + *,
.hero-copy > * + *,
.panel > * + *,
.portrait-card > * + * {
  margin-top: 0.9rem;
}

.hero {
  padding-top: 3.1rem;
  position: relative;
}

.hero-layout,
.simple-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 1.5rem;
  align-items: start;
}

.hero-visual-pair {
  display: grid;
  gap: 1.2rem;
  align-self: start;
}

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

.hero-copy,
.panel,
.card,
.portrait-card,
.form-card,
.notice {
  min-width: 0;
}

.panel,
.card,
.portrait-card,
.form-card {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.panel {
  color: var(--text);
}

.panel p {
  color: var(--text-soft);
}

.panel-label {
  margin-bottom: 0.6rem;
  color: rgba(248, 251, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-note {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(18, 52, 93, 0.12);
}

.panel-note strong,
.panel-note span {
  display: block;
}

.hero-profile {
  display: grid;
  gap: 0.9rem;
}

.hero-brand-panel {
  color: var(--text);
}

.hero-brand-panel p {
  color: var(--text-soft);
}

.hero-brand-panel .panel-note {
  border-top-color: rgba(18, 52, 93, 0.12);
}

.hero-profile-image {
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 0;
}

.hero-profile-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: contain;
}

.hero-visual-card {
  position: relative;
  padding: 0.2rem 0 1rem;
}

.hero-photo-stage {
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.hero-photo-stage img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.hero-logo-stage {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.hero-logo-stage img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
}

.hero-profile-copy > * + * {
  margin-top: 0.55rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0.95rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.8rem;
}

.check-list li,
.trust-row span {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.check-list li::before,
.trust-row span::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.38rem;
  flex: 0 0 0.72rem;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(29, 122, 99, 0.12);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.signature {
  margin-top: 0.55rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.button-primary {
  background: linear-gradient(135deg, #1f5f82, #2d7ba1);
  color: #fff;
}

.button-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 248, 0.92));
  color: var(--text);
  border-color: var(--border);
}

.button-warm {
  background: linear-gradient(135deg, #875028, #a56636);
  color: #fff;
}

.button-full {
  width: 100%;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.trust-row span {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  min-height: 100%;
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.35rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(27, 111, 149, 0.18);
}

.section-heading h2 {
  color: #0f2f52;
}

.section-heading p:last-child {
  color: var(--text-soft);
  max-width: 58ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

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

.card {
  display: grid;
  gap: 0.6rem;
  align-content: start;
  position: relative;
  overflow: visible;
  transition: none;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(18, 52, 93, 0.12);
}

.card p {
  color: var(--text-soft);
  max-width: 34ch;
}

.card::before {
  content: none;
}

.card-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f5f84;
}

.card-warm {
  background: transparent;
}

.card-warm::before {
  content: none;
}

.card:hover,
.card:focus-within {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

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

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

.page-hero::before {
  content: none;
}

.page-hero .narrow {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
}

.page-hero-plain .narrow {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.summary-card,
.summary-panel {
  height: 100%;
}

.summary-card {
  display: grid;
  gap: 0.8rem;
}

.compact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.compact-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.legal-hero-copy {
  padding: 1.1rem 0 0.2rem;
}

.legal-layout {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.legal-card h2 {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}

.legal-card p + p {
  margin-top: 0.7rem;
}

.legal-card-compact p {
  margin-top: 0;
}

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

.legal-fact {
  padding: 0.35rem 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.legal-fact span,
.legal-fact strong {
  display: block;
}

.legal-fact span {
  margin-bottom: 0.28rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.legal-fact strong {
  font-size: 0.98rem;
  line-height: 1.5;
}

.legal-fact-wide {
  grid-column: 1 / -1;
}

.legal-address {
  font-style: normal;
  line-height: 1.7;
  color: var(--text);
}

.legal-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  margin-top: 0.9rem;
  color: var(--text-soft);
  font-weight: 600;
}

.legal-text > .notice {
  margin-bottom: 0.2rem;
}

.legal-text > h2 {
  margin-top: 0.2rem;
  padding: 1rem 1.15rem 0;
  border-top: 1px solid rgba(22, 32, 51, 0.08);
  font-size: 1.12rem;
}

.legal-text > h2:first-of-type {
  border-top: none;
  padding-top: 0.2rem;
}

.legal-text > h2 + p,
.legal-text > h2 + .legal-address {
  margin-top: 0.65rem;
}

.legal-text > p,
.legal-text > address {
  padding: 0 1.15rem;
}

.legal-text > p + p {
  margin-top: 0.65rem;
}

.trust-panel {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}

.trust-panel strong,
.trust-panel span {
  display: block;
}

.trust-panel strong {
  margin-bottom: 0.25rem;
}

.trust-panel-light {
  border: none;
  background: transparent;
  color: var(--text);
}

.trust-panel-light span {
  color: var(--text-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 1.2rem;
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 0.9rem;
}

.contact-copy h2,
.form-card h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
}

.contact-copy,
.contact-notes,
.form-card,
.editorial-copy,
.about-copy,
.open-form-copy {
  max-width: 62ch;
}

.contact-copy p,
.contact-notes p {
  color: var(--text-soft);
  line-height: 1.72;
}

.contact-notes {
  padding-top: 0.2rem;
}

.contact-notes a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.contact-quickfacts {
  display: grid;
  gap: 0.7rem;
}

.contact-quickfacts p {
  padding: 0.1rem 0;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(161, 219, 239, 0.18);
}

.contact-quickfacts strong,
.contact-quickfacts span {
  display: block;
}

.contact-quickfacts span {
  margin-top: 0.15rem;
  color: var(--text-soft);
}

.contact-quickfacts a {
  color: var(--text);
}

.contact-panel {
  gap: 0.7rem;
}

.contact-panel .eyebrow {
  margin: 0;
}

.contact-panel .feature-list {
  gap: 0.6rem;
}

.contact-panel .feature-list li::before {
  top: 0.58rem;
}

.contact-panel p {
  margin: 0;
  color: var(--text-soft);
}

.contact-panel .action-row {
  margin-top: 0.15rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.step-card {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  position: relative;
  overflow: visible;
  transition: none;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(18, 52, 93, 0.12);
}

.step-card::after {
  content: none;
}

.step-card h3 {
  margin: 0.2rem 0 0.5rem;
}

.step-card p {
  color: var(--text-soft);
}

.step-card:hover,
.step-card:focus-within {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.step-number {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(13, 159, 204, 0.12);
  color: var(--accent);
  font-weight: 800;
}

.cta-panel {
  display: grid;
  gap: 1rem;
  padding: 1.2rem 0 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(18, 52, 93, 0.12);
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

.cta-panel h2,
.cta-panel p,
.cta-panel .eyebrow {
  color: inherit;
}

.cta-panel .eyebrow {
  color: var(--accent);
}

.cta-panel .button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1.2rem;
  align-items: center;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 1.7rem;
  align-items: center;
}

.editorial-split-reverse {
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.editorial-copy {
  min-width: 0;
}

.editorial-copy > * + * {
  margin-top: 0.95rem;
}

.editorial-figure {
  margin: 0;
  position: relative;
}

.editorial-figure::before {
  content: "";
  position: absolute;
  inset: auto 8% -1.1rem -0.9rem;
  height: 66%;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(27, 111, 149, 0.12), rgba(255, 255, 255, 0));
  z-index: 0;
}

.editorial-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.editorial-figure-square img {
  aspect-ratio: 1 / 1;
}

.editorial-figure-brand::before {
  inset: auto 14% -1rem 0;
  background: linear-gradient(135deg, rgba(27, 111, 149, 0.08), rgba(15, 23, 42, 0.02));
}

.editorial-figure-brand img {
  aspect-ratio: 16 / 11;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  padding: 1rem;
}

.editorial-figure-soft::before {
  background: linear-gradient(135deg, rgba(154, 93, 47, 0.12), rgba(255, 255, 255, 0));
}

.editorial-figure-portrait img {
  aspect-ratio: 4 / 5;
}

.editorial-figure figcaption {
  margin-top: 0.8rem;
  max-width: 36ch;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.editorial-inline-note {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(18, 52, 93, 0.12);
  color: var(--text-soft);
  max-width: 56ch;
}

.media-feature-shell {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.media-feature-shell-dark {
  background: transparent;
  border-color: transparent;
  color: var(--text);
}

.media-feature-shell > .media-split,
.media-feature-shell > .contact-grid,
.media-feature-shell > .about-layout {
  padding: 1rem 1.1rem;
}

.media-feature-shell .image-card,
.media-feature-shell .context-card,
.media-feature-shell .form-card {
  box-shadow: none;
}

.media-feature-shell .notice,
.media-feature-shell .trust-panel,
.media-feature-shell .about-fact {
  box-shadow: none;
}

.media-feature-shell-dark .image-card {
  box-shadow: none;
}

.media-feature-shell .context-card {
  padding: 0;
  background: transparent;
  border: none;
}

.media-feature-shell .image-card {
  background: transparent;
  border: none;
}

.media-feature-shell .form-card {
  background: transparent;
  border: none;
}

.media-feature-shell-dark .form-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
}

.media-feature-shell-dark .form-card h2 {
  color: var(--text);
}

.media-feature-shell-dark .form-card .form-intro,
.media-feature-shell-dark .form-card .form-note {
  color: var(--text-soft);
}

.media-feature-shell-dark .form-row input,
.media-feature-shell-dark .form-row select,
.media-feature-shell-dark .form-row textarea {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(161, 219, 239, 0.2);
}

.about-shell .about-layout {
  padding: 1.1rem;
}

.about-shell .about-stage-image {
  box-shadow: none;
}

.image-card {
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.image-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.context-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.feature-card {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.feature-card-dark {
  border-color: rgba(161, 219, 239, 0.16);
  background:
    radial-gradient(circle at top right, rgba(123, 208, 236, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(16, 39, 72, 0.96), rgba(11, 29, 55, 0.96));
  color: var(--text-invert);
}

.feature-card-dark p,
.feature-card-dark li {
  color: rgba(248, 251, 255, 0.84);
}

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

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.feature-list li {
  position: relative;
  padding-left: 1rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
}

.feature-card-dark .feature-list li::before {
  background: #9edff4;
}

.about-hero {
  padding-top: 3rem;
}

.about-shell {
  background: transparent;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
}

.about-stage {
  position: relative;
}

.about-stage-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.about-stage-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.ai-disclosure-badge {
  position: absolute;
  z-index: 2;
  top: 0.8rem;
  right: 0.8rem;
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(158, 223, 244, 0.5);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.ai-disclosure-badge:hover,
.ai-disclosure-badge:focus-visible {
  border-color: #9edff4;
  background: #0f172a;
  color: #ffffff;
}

.about-stage-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  backdrop-filter: blur(12px);
}

.about-stage-badge strong,
.about-stage-badge span {
  display: block;
}

.about-stage-badge span {
  margin-top: 0.2rem;
  color: rgba(248, 251, 255, 0.8);
  font-size: 0.95rem;
}

.about-intro {
  display: grid;
  gap: 0.95rem;
  align-content: center;
}

.about-intro h1 {
  max-width: 10ch;
}

.about-standfirst {
  max-width: 38rem;
  font-size: 1rem;
  color: var(--text);
}

.about-facts-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--text-soft);
}

.about-facts-inline li {
  padding-left: 1rem;
  position: relative;
}

.about-facts-inline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 300px);
  gap: 1.2rem;
  align-items: start;
}

.about-copy {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.about-copy p {
  max-width: 64ch;
  line-height: 1.75;
}

.about-side-note {
  padding: 0.2rem 0 0 1rem;
  border-left: 3px solid rgba(13, 159, 204, 0.22);
  color: var(--text-soft);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

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

.about-value::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  right: -0.7rem;
  top: -0.7rem;
  border-radius: 999px;
  background: rgba(13, 159, 204, 0.08);
}

.notice {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(18, 52, 93, 0.1);
  background: rgba(255, 255, 255, 0.74);
}

.notice strong {
  display: block;
  font-weight: 800;
}

.notice span {
  color: inherit;
}

.notice-strong {
  border-color: rgba(154, 93, 47, 0.22);
  border-left: 5px solid rgba(154, 93, 47, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, rgba(154, 93, 47, 0.1), rgba(255, 255, 255, 0));
}

.notice-dark {
  border-color: rgba(27, 111, 149, 0.18);
  border-left: 5px solid rgba(27, 111, 149, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, rgba(27, 111, 149, 0.08), rgba(255, 255, 255, 0));
}

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

.contact-list a {
  color: #fff;
}

.form-card {
  background: transparent;
  color: var(--text);
}

.form-row + .form-row {
  margin-top: 0.8rem;
}

.form-row label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.78rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(22, 32, 51, 0.14);
  background: #fbfcfe;
  color: var(--text);
}

.form-row textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-note {
  margin-top: 0.8rem;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.portrait-card {
  text-align: center;
}

.portrait-card p {
  color: var(--text-soft);
}

.portrait-role {
  font-size: 0.95rem;
}

.price {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--surface-dark);
}

.price-overview {
  display: grid;
  border-top: 1px solid rgba(18, 52, 93, 0.16);
  border-bottom: 1px solid rgba(18, 52, 93, 0.16);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.42fr);
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(18, 52, 93, 0.1);
}

.price-row:first-child {
  border-top: none;
}

.price-row h3 {
  margin-bottom: 0.25rem;
}

.price-row p {
  color: var(--text-soft);
  line-height: 1.7;
}

.price-amount {
  display: grid;
  gap: 0.18rem;
  justify-items: end;
  text-align: right;
}

.price-amount strong {
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  line-height: 1;
  color: var(--surface-dark);
}

.price-amount span {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.35;
}

.price-amount-free strong {
  color: var(--accent-warm);
}

.price-footnote {
  color: var(--text-soft);
  font-size: 0.96rem;
}

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

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

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.6rem;
  border-top: 1px solid rgba(18, 52, 93, 0.16);
}

.activity-group {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(18, 52, 93, 0.1);
}

.activity-group h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.activity-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.activity-group li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.activity-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: var(--accent);
}

.plain-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 1.4rem;
  align-items: start;
}

.plain-rule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.plain-rule-list li {
  padding: 0.8rem 0;
  border-top: 1px solid rgba(18, 52, 93, 0.12);
  color: var(--text-soft);
}

.plain-rule-list li strong {
  color: var(--text);
}

.topic-columns,
.value-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 1.4rem;
}

.topic-item,
.value-item {
  padding: 0.9rem 0;
  border-top: 1px solid rgba(18, 52, 93, 0.12);
}

.topic-item h3,
.value-item h3 {
  margin-bottom: 0.35rem;
}

.topic-item p,
.value-item p {
  color: var(--text-soft);
}

.line-facts {
  display: grid;
  gap: 0.75rem;
}

.line-facts p {
  padding: 0.7rem 0;
  border-top: 1px solid rgba(18, 52, 93, 0.12);
}

.line-facts strong,
.line-facts span {
  display: block;
}

.line-facts span {
  color: var(--text-soft);
}

.open-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: start;
}

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

.open-form-copy p {
  color: var(--text-soft);
}

body.privacy-open {
  overflow: hidden;
}

.privacy-scrim {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(9, 20, 35, 0.42);
  backdrop-filter: blur(3px);
}

.privacy-banner,
.privacy-panel {
  position: fixed;
  z-index: 920;
  border: 1px solid rgba(190, 212, 229, 0.22);
  box-shadow: 0 22px 55px rgba(9, 20, 35, 0.22);
}

.privacy-banner[hidden],
.privacy-panel[hidden],
.privacy-scrim[hidden] {
  display: none;
}

.privacy-banner {
  left: max(1rem, calc((100vw - var(--container)) / 2));
  right: max(1rem, calc((100vw - var(--container)) / 2));
  bottom: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(123, 208, 236, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(18, 38, 63, 0.98), rgba(27, 58, 93, 0.98));
  color: var(--text-invert);
}

.privacy-banner h2,
.privacy-panel h2 {
  font-size: 1.18rem;
}

.privacy-banner p {
  max-width: 68ch;
  color: rgba(248, 251, 255, 0.82);
}

.privacy-banner a {
  display: inline-flex;
  margin-top: 0.35rem;
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.privacy-banner .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.privacy-panel {
  right: 1rem;
  bottom: 1rem;
  width: min(calc(100% - 2rem), 540px);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 1.15rem;
  border-radius: 24px;
  background: #f8fbfd;
  color: var(--text);
}

.privacy-panel > p {
  margin-top: 0.8rem;
  color: var(--text-soft);
}

.privacy-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.privacy-panel-head .eyebrow {
  margin-bottom: 0.35rem;
}

.privacy-close,
.footer-cookie-button {
  border: none;
  background: transparent;
  color: inherit;
  font-weight: 700;
}

.privacy-close {
  padding: 0.25rem 0;
  color: var(--accent);
}

.privacy-close:hover,
.privacy-close:focus-visible,
.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.privacy-category-list {
  display: grid;
  gap: 0;
  margin: 1rem 0;
  border-top: 1px solid rgba(18, 52, 93, 0.12);
  border-bottom: 1px solid rgba(18, 52, 93, 0.12);
}

.privacy-category {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(18, 52, 93, 0.1);
}

.privacy-category:first-child {
  border-top: none;
}

.privacy-category input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.25rem;
  accent-color: var(--accent);
}

.privacy-category strong,
.privacy-category span {
  display: block;
}

.privacy-category strong {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.6rem;
  justify-content: space-between;
  color: var(--text);
}

.privacy-category small {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.privacy-category strong + span {
  margin-top: 0.25rem;
  color: var(--text-soft);
}

.site-footer {
  padding: 1.1rem 0 1.5rem;
  background: rgba(14, 26, 42, 0.98);
  color: rgba(248, 251, 255, 0.74);
  border-top: 1px solid rgba(190, 212, 229, 0.14);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-cookie-button {
  padding: 0;
  color: rgba(248, 251, 255, 0.74);
}

@media (max-width: 960px) {
  .hero-layout,
  .simple-split,
  .contact-grid,
  .steps-grid,
  .card-grid,
  .two-up,
  .trust-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-layout,
  .simple-split {
    grid-template-columns: 1fr;
  }

  .about-layout,
  .about-story,
  .media-split,
  .editorial-split,
  .summary-grid,
  .about-values,
  .feature-grid,
  .price-row,
  .activity-grid,
  .plain-split,
  .topic-columns,
  .value-columns,
  .open-form-layout {
    grid-template-columns: 1fr;
  }

  .about-intro h1 {
    max-width: none;
  }

  .editorial-split-reverse {
    grid-template-columns: 1fr;
  }

  .hero-visual-pair {
    gap: 1rem;
  }

  .editorial-figure::before {
    inset: auto 8% -0.8rem -0.6rem;
    border-radius: 22px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(18, 38, 63, 0.98), rgba(27, 58, 93, 0.96));
    border: 1px solid rgba(190, 212, 229, 0.16);
    box-shadow: var(--shadow);
  }

  .brand {
    max-width: 240px;
  }

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

  .check-list,
  .contact-grid,
  .trust-row,
  .card-grid,
  .two-up,
  .about-values {
    grid-template-columns: 1fr;
  }

  .editorial-figure figcaption {
    max-width: none;
  }

  .section {
    padding: 2.45rem 0;
  }

  .about-stage-badge {
    position: static;
    margin-top: 0.8rem;
    background: rgba(15, 23, 42, 0.92);
  }

  .privacy-banner {
    grid-template-columns: 1fr;
  }

  .privacy-actions {
    width: 100%;
  }

  .privacy-actions .button {
    flex: 1 1 100%;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .panel,
  .card,
  .portrait-card,
  .form-card {
    padding: 1rem;
  }

  .action-row .button {
    width: 100%;
  }

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

  .price-amount {
    justify-items: start;
    text-align: left;
  }

  .privacy-banner,
  .privacy-panel {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    width: auto;
    border-radius: 18px;
  }

  .privacy-panel {
    max-height: calc(100vh - 1.2rem);
  }

  .privacy-panel-head {
    display: grid;
  }
}
