:root {
  --navy: #082b63;
  --navy-deep: #061d46;
  --emerald: #0b5848;
  --gold: #b78a43;
  --paper: #f7f3eb;
  --ink: #0a2a56;
  --muted: #52647a;
  --white: #ffffff;
  --line: rgba(8, 43, 99, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(190px, 240px) 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 27px clamp(28px, 4.8vw, 82px);
}

.brand {
  display: block;
  width: min(220px, 100%);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.5vw, 48px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.main-nav a,
.header-link {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.language-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
}

.language-button {
  padding: 5px 6px;
  color: rgba(8, 43, 99, 0.52);
  background: transparent;
  border: 0;
  font: 600 11px/1 var(--sans);
  letter-spacing: 0.08em;
  cursor: pointer;
}

.language-button.is-active {
  color: var(--navy);
}

.language-button:not(:last-child)::after {
  display: inline-block;
  margin-left: 9px;
  color: rgba(8, 43, 99, 0.24);
  content: "/";
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(8, 43, 99, 0.45);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: 145px clamp(28px, 7.1vw, 120px) 100px;
  isolation: isolate;
}

.hero-art,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-art {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: heroReveal 1400ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(250, 248, 242, 0.99) 0%, rgba(250, 248, 242, 0.95) 28%, rgba(250, 248, 242, 0.54) 49%, rgba(250, 248, 242, 0.05) 72%),
    linear-gradient(180deg, rgba(247, 243, 235, 0.55) 0%, transparent 34%, rgba(5, 28, 67, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(660px, 54vw);
  margin-top: 18px;
  animation: contentRise 900ms 160ms ease-out both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 25px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 48px;
  height: 1px;
  content: "";
  background: var(--gold);
}

h1 {
  max-width: 620px;
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(62px, 6.5vw, 112px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 590px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.025em;
  touch-action: manipulation;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(6, 29, 70, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 36px rgba(6, 29, 70, 0.25);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(8, 43, 99, 0.28);
  backdrop-filter: blur(10px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.66);
}

.button-icon {
  font-size: 16px;
}

.direction-card {
  position: absolute;
  z-index: 2;
  right: clamp(26px, 5vw, 82px);
  bottom: clamp(34px, 6vh, 72px);
  width: min(430px, 34vw);
  padding: 24px 27px 23px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(5, 40, 72, 0.81), rgba(10, 77, 69, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  box-shadow: 0 22px 55px rgba(5, 29, 66, 0.2);
  backdrop-filter: blur(14px);
  animation: contentRise 900ms 320ms ease-out both;
}

.direction-card-label {
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direction-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px 0 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.direction-row strong {
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.direction-row span {
  display: block;
  min-width: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.5;
}

.scroll-cue {
  position: absolute;
  bottom: 35px;
  left: clamp(28px, 7.1vw, 120px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(8, 43, 99, 0.56);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-line {
  width: 38px;
  height: 1px;
  background: currentColor;
}

.page-anchor {
  height: 1px;
}

.participation-teaser {
  position: relative;
  padding: clamp(100px, 10vw, 150px) clamp(28px, 7.1vw, 120px);
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.participation-teaser::after {
  position: absolute;
  top: -230px;
  right: -150px;
  width: 580px;
  height: 580px;
  content: "";
  border: 1px solid rgba(242, 208, 140, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(242, 208, 140, 0.025);
}

.participation-heading,
.participation-levels,
.participation-action {
  position: relative;
  z-index: 1;
}

.participation-heading {
  display: grid;
  max-width: 1280px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(35px, 6vw, 90px);
  align-items: end;
  margin: 0 auto 60px;
}

.participation-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -16px;
  color: #d9b56f;
}

.participation-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.participation-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.75;
}

.participation-levels {
  display: grid;
  max-width: 1280px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.participation-levels article {
  min-height: 310px;
  padding: 32px clamp(24px, 3vw, 42px) 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.participation-levels article:last-child {
  border-right: 0;
}

.participation-levels article > span {
  display: block;
  margin-bottom: 55px;
  color: #d9b56f;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.participation-levels article > p:first-of-type {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.participation-levels h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.1;
}

.participation-levels article > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.7;
}

.participation-action {
  width: fit-content;
  margin: 42px auto 0;
  color: var(--navy-deep);
  background: #f1d49b;
  box-shadow: none;
}

.participation-action:hover,
.participation-action:focus-visible {
  background: var(--white);
  box-shadow: none;
}

.methodology-teaser {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(50px, 7vw, 120px);
  align-items: center;
  padding: clamp(100px, 11vw, 170px) clamp(28px, 7.1vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 40%, rgba(183, 138, 67, 0.1), transparent 31%),
    linear-gradient(145deg, #f8f5ee 0%, #f3f2ed 48%, #eef4f1 100%);
}

.methodology-teaser::before {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(183, 138, 67, 0.26);
  border-radius: 50%;
}

.teaser-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.teaser-copy h2,
.method-section h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(46px, 4.5vw, 76px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.teaser-intro {
  margin: 30px 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.25;
}

.teaser-copy > p:not(.section-kicker):not(.teaser-intro) {
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding-bottom: 8px;
  color: var(--navy);
  border-bottom: 1px solid rgba(8, 43, 99, 0.45);
  font-size: 14px;
  font-weight: 600;
}

.methodology-visual {
  position: relative;
  min-height: 570px;
  padding: 36px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 29, 70, 0.98), rgba(8, 70, 65, 0.93)),
    url("./assets/arcos-hero.webp") center/cover;
  border-radius: 34px;
  box-shadow: 0 35px 80px rgba(6, 29, 70, 0.17);
  isolation: isolate;
}

.methodology-visual::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: url("./assets/arcos-hero.webp") 68% center/cover;
  opacity: 0.14;
  mix-blend-mode: screen;
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  top: -100px;
  right: -90px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(242, 208, 140, 0.45);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(242, 208, 140, 0.04),
    0 0 0 82px rgba(242, 208, 140, 0.025);
}

.visual-label {
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-flow {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-flow li {
  display: grid;
  grid-template-columns: 42px 150px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.method-flow li > span {
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
}

.method-flow strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.method-flow small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.methodology-visual blockquote {
  position: absolute;
  right: 36px;
  bottom: 34px;
  left: 36px;
  margin: 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(242, 208, 140, 0.52);
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.22;
}

.team-section {
  position: relative;
  padding: clamp(100px, 11vw, 170px) clamp(28px, 7.1vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 14%, rgba(183, 138, 67, 0.12), transparent 26%),
    linear-gradient(180deg, #f5f1e8 0%, #ece9e2 100%);
}

.team-section::after {
  position: absolute;
  z-index: 0;
  right: -210px;
  bottom: 14%;
  width: 470px;
  height: 470px;
  content: "";
  border: 1px solid rgba(183, 138, 67, 0.24);
  border-radius: 50%;
}

.team-heading,
.founders-grid,
.team-promise {
  position: relative;
  z-index: 1;
}

.team-heading {
  display: grid;
  max-width: 1280px;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.65fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: end;
  margin: 0 auto 64px;
}

.team-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.team-heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(50px, 5.7vw, 84px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.team-heading-copy > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.team-heading-copy .text-link {
  margin-top: 24px;
}

.founders-grid {
  display: grid;
  max-width: 1280px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
  margin: 0 auto;
}

.founder-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(8, 43, 99, 0.1);
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(6, 29, 70, 0.1);
}

.founder-photo {
  position: relative;
  aspect-ratio: 4 / 3.6;
  overflow: hidden;
  background: #d9d1c4;
}

.founder-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 68%, rgba(6, 29, 70, 0.28));
}

.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.founder-card:hover .founder-photo img {
  transform: scale(1.018);
}

.founder-photo > span {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 600;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.founder-copy {
  padding: clamp(30px, 3.2vw, 48px);
}

.founder-role {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-copy h3 {
  margin: 0 0 24px;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(36px, 3.2vw, 50px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
}

.founder-copy h3 span {
  display: block;
  margin-top: 7px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-copy > p:not(.founder-role) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.founder-copy .founder-focus {
  margin-top: 23px;
  padding-top: 22px;
  color: var(--navy);
  border-top: 1px solid rgba(8, 43, 99, 0.14);
}

.team-promise {
  display: grid;
  max-width: 1280px;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin: 42px auto 0;
  padding: clamp(34px, 4.4vw, 62px);
  color: var(--white);
  background: linear-gradient(120deg, var(--navy-deep), #0b514c);
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(6, 29, 70, 0.14);
}

.team-promise .section-kicker {
  margin: 8px 0 0;
  color: #d6b06e;
}

.team-promise blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.15;
}

.back-to-top {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: rgba(8, 43, 99, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(6, 29, 70, 0.2);
  place-items: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(10px);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--emerald);
}

.back-to-top span {
  font-size: 21px;
  line-height: 1;
}

/* Methodology page */
.methodology-page {
  background: #f8f6f0;
}

.methodology-header {
  position: absolute;
}

.methodology-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 70px;
  align-items: end;
  padding: 190px clamp(28px, 7.1vw, 120px) 95px;
  overflow: hidden;
  isolation: isolate;
}

.methodology-hero-art,
.methodology-hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.methodology-hero-art {
  object-fit: cover;
  object-position: center;
}

.methodology-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(249, 247, 241, 0.99) 0%, rgba(249, 247, 241, 0.92) 39%, rgba(249, 247, 241, 0.35) 67%, rgba(249, 247, 241, 0.1) 100%),
    linear-gradient(180deg, rgba(249, 247, 241, 0.55), transparent 45%, rgba(6, 29, 70, 0.1));
}

.methodology-hero-copy {
  max-width: 760px;
}

.methodology-hero-copy h1 {
  max-width: none;
  font-size: clamp(72px, 8vw, 132px);
}

.methodology-hero-copy > p:last-child {
  max-width: 680px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 22px);
}

.methodology-hero-note {
  align-self: end;
  padding: 27px 30px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(6, 35, 75, 0.88), rgba(8, 79, 66, 0.77));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(6, 29, 70, 0.19);
  backdrop-filter: blur(14px);
}

.methodology-hero-note span {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.methodology-hero-note strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.2;
}

.methodology-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 890px);
  gap: clamp(60px, 8vw, 130px);
  justify-content: center;
  padding: clamp(90px, 10vw, 150px) clamp(28px, 7.1vw, 120px);
}

.methodology-index {
  position: sticky;
  top: 36px;
  align-self: start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.methodology-index > p {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.methodology-index a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.methodology-index a:hover {
  color: var(--navy);
}

.methodology-index a span {
  color: rgba(183, 138, 67, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.methodology-article {
  min-width: 0;
}

.method-section {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 30px;
  padding: 0 0 105px;
  scroll-margin-top: 40px;
}

.section-number {
  margin: 9px 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.method-section h2 {
  max-width: 760px;
  font-size: clamp(44px, 4.5vw, 69px);
}

.method-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.method-section .article-lead {
  margin-top: 30px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.65;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: 22px;
}

.architecture-flow div {
  min-height: 160px;
  padding: 24px 20px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.architecture-flow div:last-child {
  border-right: 0;
}

.architecture-flow span,
.architecture-flow strong,
.architecture-flow small {
  display: block;
}

.architecture-flow span {
  margin-bottom: 25px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
}

.architecture-flow strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.architecture-flow small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.4;
}

.methodology-statement {
  position: relative;
  margin: 10px 0 110px 88px;
  padding: 46px 52px 48px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(130deg, var(--navy-deep), var(--emerald));
  border-radius: 28px;
}

.methodology-statement::after {
  position: absolute;
  top: -100px;
  right: -70px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(242, 208, 140, 0.4);
  border-radius: 50%;
}

.methodology-statement span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.methodology-statement p {
  max-width: 700px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3.2vw, 50px);
  line-height: 1.08;
}

.method-section-important > div {
  padding: 34px 38px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(8, 43, 99, 0.12);
  border-radius: 24px;
}

.methodology-closing {
  margin-left: 88px;
  padding: 52px 0 15px;
  border-top: 1px solid var(--line);
}

.methodology-closing > p {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.1;
}

.methodology-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 38px clamp(28px, 7.1vw, 120px);
  background: #f1eee6;
  border-top: 1px solid var(--line);
}

.methodology-footer img {
  width: 190px;
  height: auto;
}

.methodology-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Team page */
.team-page {
  background: #f7f4ed;
}

.team-page-header {
  position: absolute;
}

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

.team-page-hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 52px);
  align-items: start;
  padding: 126px clamp(28px, 7.1vw, 120px) 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 30%, rgba(183, 138, 67, 0.14), transparent 31%),
    linear-gradient(135deg, #f8f5ee 0%, #eeeee8 58%, #e6efeb 100%);
}

.team-page-hero-copy {
  max-width: 680px;
  padding-top: 42px;
}

.team-page-hero-copy h1 {
  max-width: 620px;
  font-size: clamp(60px, 5.6vw, 92px);
  line-height: 0.95;
}

.team-page-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.58;
}

.team-page-hero-copy blockquote {
  margin: 24px 0 0;
  padding: 18px 0 0 25px;
  color: var(--navy);
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(25px, 2vw, 32px);
  line-height: 1.2;
}

.team-page-group-photo {
  position: relative;
  width: min(100%, 600px);
  justify-self: start;
  margin: 88px 0 0;
  overflow: hidden;
  background: #dcd5c9;
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(6, 29, 70, 0.14);
}

.team-page-group-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.team-page-group-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 15px;
  color: var(--white);
  background: rgba(6, 29, 70, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(12px);
}

.team-founders-detail {
  padding: 0 clamp(28px, 7.1vw, 120px);
}

.values-section {
  padding: clamp(100px, 10vw, 155px) clamp(28px, 7.1vw, 120px);
}

.team-section-header {
  max-width: 900px;
  margin: 0 auto 65px;
  text-align: center;
}

.team-section-header h2,
.care-copy h2,
.origin-mission-section h2,
.guidance-section h2,
.team-final-promise h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.team-section-header > p:last-child {
  max-width: 720px;
  margin: 27px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.founder-profile {
  display: grid;
  max-width: 1360px;
  min-height: 100svh;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
  margin: 0 auto;
  padding: 88px 0 52px;
  border-top: 1px solid rgba(8, 43, 99, 0.1);
}

.founder-profile-reverse .founder-profile-image {
  grid-column: 2;
  grid-row: 1;
}

.founder-profile-reverse .founder-profile-copy {
  grid-column: 1;
  grid-row: 1;
}

.founder-profile-image {
  width: min(100%, 520px);
  justify-self: start;
  overflow: hidden;
  background: #ddd5c8;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(6, 29, 70, 0.13);
}

.founder-profile-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.founder-profile-reverse .founder-profile-image {
  justify-self: end;
}

.founder-profile-copy h3 {
  margin: 0 0 22px;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(48px, 4.4vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.founder-profile-copy h3 span {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-profile-copy > p:not(.founder-role) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.founder-profile-copy .profile-lead {
  color: var(--navy);
  font-size: 18px;
}

.founder-profile-copy blockquote {
  margin: 22px 0 0;
  padding: 19px 0 0 24px;
  color: var(--navy-deep);
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(25px, 2vw, 32px);
  line-height: 1.2;
}

.care-section {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding: clamp(95px, 10vw, 150px) clamp(28px, 7.1vw, 120px);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(242, 208, 140, 0.12), transparent 28%),
    linear-gradient(135deg, var(--navy-deep), #0a514b);
}

.care-copy h2 {
  color: var(--white);
}

.care-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.75;
}

.care-copy > p:nth-of-type(2) {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.care-principles {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
}

.care-principles article {
  display: grid;
  grid-template-columns: 44px 160px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.care-principles article:last-child {
  border-bottom: 0;
}

.care-principles span,
.values-grid span {
  color: var(--gold);
  font-size: 17px;
  font-weight: 600;
}

.care-principles h3,
.values-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.care-principles p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.6;
}

.origin-mission-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: clamp(100px, 10vw, 155px) clamp(28px, 7.1vw, 120px);
  background: #f0ede6;
}

.origin-mission-section article {
  padding: clamp(40px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(8, 43, 99, 0.1);
  border-radius: 30px;
}

.origin-mission-section article > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.origin-mission-section .mission-card {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-deep), #164f57);
}

.mission-card h2 {
  color: var(--white);
}

.origin-mission-section .mission-card > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.mission-card blockquote {
  margin: 30px 0 0;
  padding-top: 27px;
  color: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(242, 208, 140, 0.45);
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.17;
}

.values-grid {
  display: grid;
  max-width: 1280px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(8, 43, 99, 0.11);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(6, 29, 70, 0.08);
}

.values-grid article {
  min-height: 260px;
  padding: 30px 24px;
  border-right: 1px solid rgba(8, 43, 99, 0.11);
}

.values-grid article:last-child {
  border-right: 0;
}

.values-grid h3 {
  margin-top: 42px;
  color: var(--navy-deep);
  font-size: 26px;
}

.values-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.guidance-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(55px, 8vw, 130px);
  padding: clamp(95px, 10vw, 150px) clamp(28px, 7.1vw, 120px);
  background: linear-gradient(145deg, #f7f3eb, #edf3f0);
}

.guidance-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: guidance;
}

.guidance-section li {
  position: relative;
  padding: 24px 0 24px 58px;
  color: var(--navy);
  border-top: 1px solid var(--line);
  font-size: 17px;
  line-height: 1.6;
  counter-increment: guidance;
}

.guidance-section li::before {
  position: absolute;
  top: 27px;
  left: 0;
  color: var(--gold);
  content: "0" counter(guidance);
  font-size: 16px;
  font-weight: 600;
}

.team-final-promise {
  padding: clamp(95px, 10vw, 150px) clamp(28px, 9vw, 150px);
  color: var(--white);
  background: var(--navy-deep);
  text-align: center;
}

.team-final-promise .section-kicker {
  color: #d5ae6a;
}

.team-final-promise h2 {
  max-width: 1060px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(50px, 6.2vw, 92px);
}

.promise-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 44px auto 0;
}

.promise-actions span {
  padding: 10px 17px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 13px;
}

.team-final-promise > p:not(.section-kicker) {
  max-width: 730px;
  margin: 36px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.75;
}

.team-final-promise .button {
  margin-top: 35px;
  color: var(--navy-deep);
  background: var(--white);
  border-color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@keyframes contentRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Products page */
.products-page {
  background: #f6f3ec;
}

.products-header {
  position: absolute;
}

.products-hero {
  display: grid;
  min-height: 740px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.62fr);
  gap: clamp(50px, 8vw, 140px);
  align-items: end;
  padding: 190px clamp(28px, 7.1vw, 120px) 90px;
  background:
    radial-gradient(circle at 85% 28%, rgba(183, 138, 67, 0.16), transparent 25%),
    linear-gradient(145deg, #f8f5ed 0%, #eef2ef 66%, #e9efeb 100%);
}

.products-hero-copy h1 {
  max-width: 830px;
  font-size: clamp(70px, 8vw, 126px);
}

.products-hero-copy > p:last-child {
  max-width: 750px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.72;
}

.products-hero-formula {
  padding: 30px 32px 32px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(6, 29, 70, 0.95), rgba(8, 77, 67, 0.89));
  border-radius: 26px;
  box-shadow: 0 28px 65px rgba(6, 29, 70, 0.16);
}

.products-hero-formula > span {
  display: block;
  margin-bottom: 22px;
  color: #d7b46f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.products-hero-formula p {
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.18;
}

.participation-map,
.product-tier,
.support-section,
.contact-route {
  padding: clamp(95px, 10vw, 150px) clamp(28px, 7.1vw, 120px);
}

.section-heading-row {
  display: grid;
  max-width: 1280px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin: 0 auto 55px;
}

.section-heading-row h2,
.tier-heading h2,
.support-copy h2,
.contact-route h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-heading-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.participation-map-grid {
  display: grid;
  max-width: 1280px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(8, 43, 99, 0.12);
  border-radius: 28px;
}

.participation-map-grid a {
  min-height: 255px;
  padding: 31px 34px 36px;
  border-right: 1px solid rgba(8, 43, 99, 0.12);
  transition: color 180ms ease, background 180ms ease;
}

.participation-map-grid a:nth-child(1) {
  background: rgba(248, 241, 226, 0.68);
}

.participation-map-grid a:nth-child(2) {
  background: rgba(226, 239, 233, 0.72);
}

.participation-map-grid a:nth-child(3) {
  background: rgba(231, 237, 244, 0.66);
}

.participation-map-grid a:last-child {
  border-right: 0;
}

.participation-map-grid a:hover,
.participation-map-grid a:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.participation-map-grid span {
  display: block;
  margin-bottom: 52px;
  color: var(--gold);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.participation-map-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.1;
}

.participation-map-grid small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.participation-map-grid a:hover small,
.participation-map-grid a:focus-visible small {
  color: rgba(255, 255, 255, 0.68);
}

.product-tier-light {
  background: #f6efe2;
}

.availability-note {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px clamp(22px, 5vw, 72px);
  color: var(--white);
  background: var(--navy-deep);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

.availability-note strong {
  color: #f1d49b;
  font-weight: 600;
}

.product-tier-guided {
  background: #e7f0ec;
}

.product-tier-deep {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 11%, rgba(183, 138, 67, 0.2), transparent 25%),
    linear-gradient(145deg, #061d46, #073f45);
}

.tier-heading {
  display: grid;
  max-width: 1280px;
  grid-template-columns: 76px minmax(0, 800px);
  gap: 20px;
  margin: 0 auto 56px;
}

.tier-heading > span {
  padding-top: 4px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.tier-heading > div > p:last-child {
  max-width: 750px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.tier-heading-light h2 {
  color: var(--white);
}

.tier-heading-light > div > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.tier-heading-light .section-kicker {
  color: #d7b46f;
}

.product-grid {
  display: grid;
  max-width: 1280px;
  gap: 24px;
  margin: 0 auto;
}

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

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 43, 99, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 62px rgba(6, 29, 70, 0.08);
}

.product-card-accent {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(229, 239, 235, 0.92));
  border-color: rgba(11, 88, 72, 0.28);
}

.product-card-dark,
.product-card-private {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.product-card-private {
  background: linear-gradient(145deg, rgba(183, 138, 67, 0.22), rgba(255, 255, 255, 0.07));
  border-color: rgba(222, 185, 111, 0.4);
}

.product-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.product-type {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.product-card-dark .product-type,
.product-card-private .product-type {
  color: #d7b46f;
}

.product-index {
  flex: 0 0 auto;
  color: rgba(8, 43, 99, 0.32);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.product-card-dark .product-index,
.product-card-private .product-index {
  color: rgba(255, 255, 255, 0.45);
}

.product-card h3 {
  margin: 48px 0 16px;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(37px, 3.2vw, 51px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.product-card-dark h3,
.product-card-private h3 {
  color: var(--white);
}

.product-tagline {
  margin: 0 0 21px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.22;
}

.product-card-dark .product-tagline,
.product-card-private .product-tagline {
  color: rgba(255, 255, 255, 0.9);
}

.product-card > p:not(.product-type):not(.product-tagline):not(.product-status) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.product-card-dark > p:not(.product-type):not(.product-tagline),
.product-card-private > p:not(.product-type):not(.product-tagline) {
  color: rgba(255, 255, 255, 0.65);
}

.product-card .deep-card-intro {
  color: #eef3f5 !important;
  opacity: 1 !important;
}

.product-card details {
  margin: 28px 0 0;
  padding: 18px 0;
  border-top: 1px solid rgba(8, 43, 99, 0.14);
  border-bottom: 1px solid rgba(8, 43, 99, 0.14);
}

.product-card-dark details,
.product-card-private details {
  border-color: rgba(255, 255, 255, 0.16);
}

.product-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.product-card summary::after {
  content: "+";
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
}

.product-card details[open] summary::after {
  content: "−";
}

.product-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.product-card-dark ul,
.product-card-private ul {
  color: rgba(255, 255, 255, 0.65);
}

.product-price-promo {
  gap: 9px;
}

.promo-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(8, 43, 99, 0.12);
}

.promo-price-row > span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.promo-price-row > strong {
  font-size: 31px;
}

.promo-price-current > span,
.promo-price-current > strong {
  color: #a87424;
}

.product-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 34px;
}

.product-price-stack {
  display: grid;
  justify-content: stretch;
}

.product-price strong {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(37px, 3.4vw, 51px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.product-card-dark .product-price strong,
.product-card-private .product-price strong {
  color: var(--white);
}

.product-price strong small {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
}

.product-price > span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.product-card-dark .product-price > span,
.product-card-private .product-price > span {
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 821px) {
  .tier-heading-light > div > p:last-child {
    color: rgba(255, 255, 255, 0.82);
  }

  .product-card-dark > p:not(.product-type):not(.product-tagline),
  .product-card-private > p:not(.product-type):not(.product-tagline) {
    color: #dce5ea;
    opacity: 1;
  }

  .product-card-dark details,
  .product-card-private details {
    border-color: rgba(255, 255, 255, 0.26);
  }

  .product-card-dark ul,
  .product-card-private ul {
    color: rgba(255, 255, 255, 0.8);
  }

  .product-card-dark .product-price > span,
  .product-card-private .product-price > span {
    color: rgba(255, 255, 255, 0.74);
  }
}

.product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  padding: 17px 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

/* Audio performance detail */
.audio-detail-page {
  color: var(--navy-deep);
  background: var(--cream);
}

.audio-detail-hero {
  display: grid;
  min-height: calc(100svh - 108px);
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(44px, 8vw, 128px);
  align-items: center;
  padding: clamp(96px, 11vw, 168px) clamp(28px, 7vw, 120px) clamp(72px, 9vw, 130px);
  background:
    radial-gradient(circle at 88% 24%, rgba(183, 138, 67, 0.13), transparent 30%),
    linear-gradient(145deg, #f7f3eb, #edf2ef);
}

.audio-detail-copy {
  max-width: 850px;
}

.audio-detail-copy h1 {
  max-width: 820px;
  margin: 24px 0 28px;
  font-family: var(--serif);
  font-size: clamp(62px, 7.6vw, 118px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.audio-detail-lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.65;
}

.audio-detail-meta {
  display: grid;
  max-width: 790px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}

.audio-detail-meta > span {
  display: grid;
  min-height: 120px;
  align-content: center;
  gap: 7px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.audio-detail-meta strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.audio-detail-meta small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.audio-payment-panel {
  display: grid;
  gap: 18px;
  padding: clamp(32px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-deep), #0b4d4a);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow: 0 28px 78px rgba(6, 29, 70, 0.18);
}

.audio-payment-panel p,
.audio-payment-panel small {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.audio-payment-panel > strong {
  font-family: var(--serif);
  font-size: clamp(56px, 5vw, 78px);
  font-weight: 500;
  line-height: 1;
}

.audio-payment-button {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 16px 22px;
  color: var(--navy-deep);
  background: #f2d08c;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.audio-payment-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.audio-detail-section {
  display: grid;
  grid-template-columns: 90px minmax(0, 920px);
  gap: 28px;
  justify-content: center;
  padding: clamp(92px, 11vw, 160px) clamp(28px, 8vw, 140px);
}

.audio-section-number {
  padding-top: 6px;
  color: var(--gold);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.audio-detail-section h2,
.audio-composition-section h2 {
  margin: 18px 0 26px;
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.audio-detail-section p:not(.section-kicker),
.audio-composition-heading > p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.audio-composition-section {
  padding: clamp(92px, 11vw, 160px) clamp(28px, 7vw, 120px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 8%, rgba(183, 138, 67, 0.18), transparent 28%),
    linear-gradient(145deg, #061d46, #073f45);
}

.audio-composition-heading {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.audio-composition-heading .section-kicker {
  color: #d7b46f;
}

.audio-composition-heading > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.audio-properties-grid {
  display: grid;
  max-width: 1280px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
}

.audio-properties-grid article {
  display: grid;
  min-height: 170px;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 24px;
  align-content: center;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.07);
}

.audio-properties-grid span {
  color: #d7b46f;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.audio-properties-grid p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.12;
}

.audio-use {
  background: rgba(255, 255, 255, 0.58);
}

.audio-detail-section .audio-disclaimer {
  margin-top: 30px !important;
  padding: 20px 24px;
  color: var(--navy) !important;
  background: rgba(8, 43, 99, 0.055);
  border-left: 2px solid var(--gold);
  font-size: 15px !important;
}

.mira-start-hero {
  background:
    radial-gradient(circle at 88% 24%, rgba(183, 138, 67, 0.17), transparent 30%),
    linear-gradient(145deg, #f8f2e6, #edf2ef);
}

.mira-start-meta > span:nth-child(2) strong {
  font-size: 32px;
}

.mira-start-payment {
  background: linear-gradient(145deg, #082b63, #153e58);
}

.mira-base-price {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.mira-start-results {
  background:
    radial-gradient(circle at 88% 8%, rgba(183, 138, 67, 0.2), transparent 28%),
    linear-gradient(145deg, #082b63, #123d55);
}

.mira-start-video {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
  padding: clamp(92px, 11vw, 160px) clamp(28px, 7vw, 120px);
}

.mira-start-video h2 {
  margin: 18px 0 26px;
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.mira-start-video > div:first-child > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.mira-video-placeholder {
  display: grid;
  min-height: 390px;
  place-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 50% 35%, rgba(242, 208, 140, 0.18), transparent 34%),
    linear-gradient(145deg, #061d46, #0a514b);
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 28px 74px rgba(6, 29, 70, 0.14);
}

.mira-video-placeholder span {
  display: grid;
  width: 72px;
  height: 72px;
  place-content: center;
  margin: 0 auto;
  padding-left: 4px;
  color: var(--navy-deep);
  background: #f2d08c;
  border-radius: 50%;
  font-size: 22px;
}

.mira-video-placeholder p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .audio-detail-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 58px 20px 64px;
  }

  .audio-detail-copy h1 {
    margin-top: 18px;
    font-size: clamp(52px, 16vw, 76px);
  }

  .audio-detail-meta {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .audio-detail-meta > span {
    min-height: 86px;
    grid-template-columns: 100px minmax(0, 1fr);
    align-items: center;
  }

  .audio-detail-section {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 76px 20px;
  }

  .audio-detail-section h2,
  .audio-composition-section h2 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .audio-composition-section {
    padding: 76px 20px;
  }

  .audio-composition-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .audio-properties-grid {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .audio-properties-grid article {
    min-height: 126px;
    padding: 25px 22px;
  }

  .mira-start-video {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 76px 20px;
  }

  .mira-start-video h2 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .mira-video-placeholder {
    min-height: 260px;
    border-radius: 20px;
  }
}

.product-link:hover,
.product-link:focus-visible {
  background: var(--emerald);
  transform: translateY(-2px);
}

.product-card-dark .product-link,
.product-card-private .product-link {
  color: var(--navy-deep);
  background: #f1d49b;
}

.product-status {
  margin: 26px 0 0;
  padding: 15px 17px;
  color: var(--muted);
  background: rgba(8, 43, 99, 0.055);
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.55;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  background: #edf1ee;
}

.support-copy {
  max-width: 530px;
}

.support-copy > p:last-child {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.support-facts {
  border-top: 1px solid rgba(8, 43, 99, 0.14);
}

.support-facts article {
  display: grid;
  grid-template-columns: 54px minmax(170px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(8, 43, 99, 0.14);
}

.support-facts span {
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
}

.support-facts strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.support-facts p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.support-note {
  grid-column: 2;
  margin: -25px 0 0;
  padding: 18px 20px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.54);
  border-left: 2px solid var(--gold);
  font-size: 13px;
  line-height: 1.6;
}

.contact-route {
  text-align: center;
  background: #f8f5ee;
}

.contact-route h2 {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.contact-route > p:not(.section-kicker):not(.contact-status) {
  max-width: 780px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.contact-status {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 17px 20px;
  color: var(--navy);
  background: #ece8dd;
  border-radius: 15px;
  font-size: 14px;
}

.payment-note {
  max-width: 720px;
  margin: 26px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(8, 43, 99, 0.14);
}

.payment-note strong {
  font-size: 14px;
}

.payment-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.products-footer {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 38px clamp(28px, 7.1vw, 120px);
  background: #ece8df;
  border-top: 1px solid rgba(8, 43, 99, 0.12);
}

.products-footer img {
  width: 190px;
  height: auto;
}

.products-footer nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 13px;
}

.products-footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

  .main-nav {
    display: none;
  }

  .hero-content {
    width: min(650px, 63vw);
  }

  .direction-card {
    width: min(390px, 36vw);
  }

  .products-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
    gap: 45px;
  }

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

  .product-grid-three .product-card:last-child {
    grid-column: 1 / -1;
  }

  .methodology-teaser {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .methodology-layout {
    grid-template-columns: 220px minmax(0, 760px);
    gap: 60px;
  }

  .team-page-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    gap: 32px;
    min-height: calc(100svh - 62px);
  }

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

  .values-grid article {
    border-bottom: 1px solid rgba(8, 43, 99, 0.11);
  }

  .values-grid article:nth-child(3n) {
    border-right: 0;
  }

  .mobile-section-nav {
    position: sticky;
    z-index: 35;
    top: 0;
    display: flex;
    gap: clamp(25px, 4vw, 48px);
    margin-top: 98px;
    padding: 0 22px;
    overflow-x: auto;
    background: rgba(247, 244, 237, 0.9);
    border-top: 1px solid rgba(8, 43, 99, 0.08);
    border-bottom: 1px solid rgba(8, 43, 99, 0.13);
    box-shadow: 0 5px 18px rgba(6, 29, 70, 0.035);
    scrollbar-width: none;
    backdrop-filter: blur(14px);
  }

  .mobile-section-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-section-nav a {
    flex: 0 0 auto;
    padding: 14px 0 12px;
    color: var(--navy);
    background: transparent;
    border: 0;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
  }

  .mobile-section-nav a:hover,
  .mobile-section-nav a:focus-visible,
  .mobile-section-nav a:active,
  .mobile-section-nav a[aria-current="true"] {
    color: var(--navy-deep);
    background: transparent;
    border-bottom-color: var(--navy-deep);
  }

  #about,
  #directions,
  #methodology,
  #team,
  #products,
  #simple,
  #architecture,
  #device,
  #system,
  #important,
  #founders,
  #care,
  #origin,
  #values,
  #principles {
    scroll-margin-top: 72px;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 17px;
  }

  .site-header {
    position: absolute;
    grid-template-columns: minmax(150px, 190px) auto;
    gap: 18px;
    padding: 22px 22px;
  }

  .header-actions {
    justify-self: end;
  }

  .header-link {
    display: none;
  }

  .products-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 72px;
  }

  .products-hero-copy h1 {
    font-size: clamp(58px, 15vw, 86px);
  }

  .section-heading-row,
  .support-section {
    grid-template-columns: 1fr;
  }

  .participation-map-grid,
  .product-grid-three,
  .product-grid-two {
    grid-template-columns: 1fr;
  }

  .product-grid-three .product-card:last-child {
    grid-column: auto;
  }

  .participation-map-grid a {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 43, 99, 0.12);
  }

  .participation-map-grid a:last-child {
    border-bottom: 0;
  }

  .participation-map-grid span {
    margin-bottom: 30px;
  }

  .support-note {
    grid-column: auto;
    margin-top: -20px;
  }

  .products-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero {
    display: block;
    min-height: 100svh;
    padding: 72px 22px 36px;
  }

  .hero-art {
    object-position: 76% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(250, 248, 242, 0.95) 0%, rgba(250, 248, 242, 0.88) 40%, rgba(250, 248, 242, 0.58) 64%, rgba(250, 248, 242, 0.2) 100%),
      linear-gradient(90deg, rgba(250, 248, 242, 0.87), rgba(250, 248, 242, 0.08));
  }

  .hero-content {
    width: 100%;
    margin: 0;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .eyebrow::before {
    width: 31px;
  }

  h1 {
    max-width: 600px;
    font-size: clamp(52px, 14.8vw, 80px);
    line-height: 0.94;
  }

  .hero-lead {
    max-width: 550px;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .button {
    min-height: 54px;
  }

  .direction-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 560px;
    margin-top: 30px;
  }

  .scroll-cue {
    display: none;
  }

  .participation-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .participation-heading .section-kicker {
    grid-column: auto;
    margin-bottom: -6px;
  }

  .participation-levels {
    grid-template-columns: 1fr;
  }

  .participation-levels article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .participation-levels article:last-child {
    border-bottom: 0;
  }

  .participation-levels article > span {
    margin-bottom: 30px;
  }

  .methodology-teaser {
    grid-template-columns: 1fr;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .methodology-visual {
    min-height: 0;
  }

  .methodology-visual blockquote {
    position: static;
    margin-top: 30px;
  }

  .team-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .team-heading .section-kicker {
    grid-column: auto;
    margin-bottom: -8px;
  }

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

  .founder-photo {
    aspect-ratio: 4 / 3;
  }

  .team-promise {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .methodology-header .header-link {
    display: inline-flex;
  }

  .methodology-hero {
    min-height: 820px;
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 72px;
    padding-bottom: 55px;
  }

  .methodology-hero-shade {
    background: linear-gradient(180deg, rgba(249, 247, 241, 0.98) 0%, rgba(249, 247, 241, 0.9) 56%, rgba(6, 42, 65, 0.18) 100%);
  }

  .methodology-layout {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .methodology-index {
    position: static;
    display: none;
  }

  .method-section {
    padding-bottom: 78px;
  }

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

  .architecture-flow div:nth-child(2) {
    border-right: 0;
  }

  .architecture-flow div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .methodology-statement,
  .methodology-closing {
    margin-left: 0;
  }

  .team-page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 72px;
  }

  .team-page-hero-copy {
    max-width: 720px;
    padding-top: 0;
  }

  .team-page-group-photo {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 40px;
  }

  .founder-profile,
  .founder-profile-reverse {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 78px 0 60px;
  }

  .founder-profile-image,
  .founder-profile-reverse .founder-profile-image {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .founder-profile-image img {
    height: auto;
    object-fit: contain;
  }

  .founder-profile-copy,
  .founder-profile-reverse .founder-profile-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .care-section,
  .guidance-section {
    grid-template-columns: 1fr;
  }

  .origin-mission-section {
    grid-template-columns: 1fr;
  }

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

  .values-grid article:nth-child(3n) {
    border-right: 1px solid rgba(8, 43, 99, 0.11);
  }

  .values-grid article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 540px) {
  .brand {
    width: 165px;
  }

  .products-hero {
    gap: 26px;
    padding: 48px 20px 52px;
  }

  .products-hero-copy h1 {
    font-size: clamp(47px, 13.5vw, 62px);
    line-height: 0.95;
  }

  .products-hero-copy > p:last-child {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.58;
  }

  .products-hero-formula {
    padding: 20px 20px 21px;
    border-radius: 20px;
  }

  .products-hero-formula > span {
    margin-bottom: 12px;
  }

  .products-hero-formula p {
    padding: 8px 0;
    font-size: 22px;
  }

  .participation-map,
  .product-tier,
  .support-section,
  .contact-route {
    padding: 50px 20px;
  }

  .section-heading-row,
  .tier-heading {
    margin-bottom: 28px;
  }

  .section-heading-row {
    gap: 20px;
  }

  .section-heading-row h2,
  .tier-heading h2,
  .support-copy h2,
  .contact-route h2 {
    font-size: clamp(38px, 11.5vw, 49px);
    line-height: 1;
  }

  .section-heading-row > p,
  .tier-heading > div > p:last-child,
  .support-copy > p:last-child,
  .contact-route > p:not(.section-kicker):not(.contact-status) {
    font-size: 16px;
    line-height: 1.58;
  }

  .participation-map-grid {
    border-radius: 20px;
  }

  .participation-map-grid a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 5px 12px;
    align-items: start;
    padding: 19px 18px 20px;
  }

  .participation-map-grid span {
    grid-row: 1 / 3;
    margin: 3px 0 0;
    font-size: 18px;
  }

  .participation-map-grid strong {
    font-size: 26px;
    line-height: 1.05;
  }

  .participation-map-grid small {
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.42;
  }

  .availability-note {
    display: grid;
    gap: 2px;
    padding: 14px 20px 15px;
    font-size: 14px;
    line-height: 1.45;
  }

  .tier-heading {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
  }

  .tier-heading > span {
    padding-top: 2px;
    font-size: 22px;
  }

  .tier-heading > div > p:last-child {
    margin-top: 14px;
  }

  .product-grid {
    gap: 14px;
  }

  .product-card {
    padding: 22px 20px 23px;
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(6, 29, 70, 0.065);
  }

  .product-index {
    font-size: 18px;
  }

  .product-card h3 {
    margin: 25px 0 11px;
    font-size: clamp(34px, 10.5vw, 43px);
    line-height: 1;
  }

  .product-tagline {
    margin-bottom: 14px;
    font-size: clamp(21px, 6.7vw, 25px);
    line-height: 1.18;
  }

  .product-card > p:not(.product-type):not(.product-tagline):not(.product-status) {
    font-size: 16px;
    line-height: 1.55;
  }

  .product-tier-guided .product-card > p:not(.product-type):not(.product-tagline):not(.product-status),
  .product-tier-deep .product-card > p:not(.product-type):not(.product-tagline):not(.product-status) {
    display: none;
  }

  .product-card details {
    margin-top: 18px;
    padding: 14px 0;
  }

  .product-card ul {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .product-price {
    display: grid;
    gap: 6px;
    padding-top: 22px;
  }

  .product-price strong {
    font-size: 39px;
  }

  .promo-price-row > strong {
    font-size: 28px;
  }

  .product-price > span,
  .product-status,
  .contact-status {
    font-size: 13px;
  }

  .product-status {
    margin-top: 17px;
    padding: 12px 14px;
  }

  .product-link {
    margin-top: 18px;
    padding: 14px 17px;
  }

  .support-facts article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .support-facts p {
    grid-column: 2;
    font-size: 16px;
  }

  .support-note {
    margin-top: 0;
    font-size: 14px;
  }

  .products-footer {
    padding: 36px 20px;
  }

  .products-footer nav {
    flex-wrap: wrap;
    gap: 16px 25px;
  }

  .language-button {
    padding-right: 3px;
    padding-left: 3px;
    font-size: 10px;
  }

  .language-button:not(:last-child)::after {
    margin-left: 6px;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .direction-card {
    padding: 20px;
    border-radius: 18px;
  }

  .participation-teaser {
    padding: 84px 20px;
  }

  .participation-heading {
    margin-bottom: 42px;
  }

  .participation-heading h2 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .participation-heading > p:last-child,
  .participation-levels article > p:last-child {
    font-size: 17px;
  }

  .participation-levels article {
    padding: 28px 4px 32px;
  }

  .participation-levels article > span {
    font-size: 22px;
  }

  .participation-action {
    width: 100%;
  }

  .direction-row {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 12px;
  }

  .methodology-teaser {
    padding-right: 20px;
    padding-left: 20px;
  }

  .methodology-visual {
    padding: 25px;
    border-radius: 24px;
  }

  .method-flow li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
  }

  .method-flow small {
    grid-column: 2;
    font-size: 15px;
    line-height: 1.5;
  }

  .method-flow strong {
    font-size: 25px;
  }

  .method-flow li > span,
  .visual-label {
    font-size: 17px;
  }

  .methodology-visual blockquote {
    margin-top: 28px;
  }

  .team-section {
    padding: 86px 20px;
  }

  .team-heading {
    margin-bottom: 42px;
  }

  .team-heading h2 {
    font-size: clamp(47px, 14vw, 66px);
  }

  .team-heading-copy > p,
  .founder-copy > p:not(.founder-role) {
    font-size: 17px;
  }

  .founder-card,
  .team-promise {
    border-radius: 24px;
  }

  .founder-photo {
    aspect-ratio: 1 / 1.05;
  }

  .founder-photo img {
    object-position: 50% 24%;
  }

  .founder-copy {
    padding: 28px 24px 32px;
  }

  .founder-role {
    font-size: 13px;
    line-height: 1.45;
  }

  .team-promise {
    margin-top: 24px;
    padding: 30px 24px 34px;
  }

  .team-promise blockquote {
    font-size: 31px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .methodology-header .header-link {
    display: none;
  }

  .methodology-hero {
    min-height: 760px;
    padding-top: 58px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .methodology-hero-copy h1 {
    font-size: clamp(58px, 17vw, 82px);
  }

  .methodology-hero-note {
    padding: 22px;
  }

  .methodology-layout {
    padding-right: 20px;
    padding-left: 20px;
  }

  .method-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-number {
    margin: 0;
    font-size: 34px;
  }

  .method-section h2 {
    font-size: 43px;
  }

  .methodology-page .section-kicker {
    font-size: 13px;
  }

  .methodology-page .method-section p {
    font-size: 19px;
    line-height: 1.72;
  }

  .method-section .article-lead {
    font-size: 20px;
    line-height: 1.62;
  }

  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .architecture-flow div {
    min-height: 0;
    padding: 30px 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .architecture-flow div:last-child {
    border-bottom: 0;
  }

  .architecture-flow span {
    margin-bottom: 22px;
    font-size: 17px;
  }

  .architecture-flow strong {
    font-size: 29px;
    line-height: 1.15;
  }

  .architecture-flow small {
    margin-top: 11px;
    font-size: 16px;
    line-height: 1.5;
  }

  .methodology-statement {
    padding: 35px 28px;
    border-radius: 22px;
  }

  .method-section-important > div {
    padding: 26px 23px;
  }

  .methodology-footer {
    display: grid;
    padding: 30px 20px;
  }

  .methodology-footer p {
    font-size: 15px;
  }

  .team-page-hero {
    gap: 46px;
    padding: 54px 20px 70px;
  }

  .team-page-hero-copy h1 {
    font-size: clamp(57px, 16vw, 76px);
  }

  .team-page-hero-copy blockquote {
    padding-left: 20px;
    font-size: 29px;
  }

  .team-page-group-photo {
    border-radius: 20px;
  }

  .team-page-group-photo figcaption {
    right: 9px;
    bottom: 9px;
    left: 9px;
    padding: 8px 9px;
    font-size: 11px;
    text-align: center;
  }

  .mobile-section-nav {
    margin-top: 86px;
    gap: 28px;
    padding: 0 18px;
  }

  .mobile-section-nav a {
    padding: 13px 0 11px;
    font-size: 13px;
  }

  .home-page .hero {
    padding-top: 58px;
  }

  .team-founders-detail {
    padding: 0 20px;
  }

  .values-section {
    padding: 86px 20px;
  }

  .team-section-header {
    margin-bottom: 48px;
    text-align: left;
  }

  .team-section-header h2,
  .care-copy h2,
  .origin-mission-section h2,
  .guidance-section h2 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .team-section-header > p:last-child {
    margin-left: 0;
  }

  .founder-profile {
    margin-bottom: 0;
    padding: 72px 0 58px;
  }

  .founder-profile-image {
    border-radius: 22px;
  }

  .founder-profile-copy h3 {
    font-size: 52px;
  }

  .founder-profile-copy > p:not(.founder-role),
  .origin-mission-section article > p:not(.section-kicker),
  .team-final-promise > p:not(.section-kicker) {
    font-size: 17px;
  }

  .care-section,
  .origin-mission-section,
  .guidance-section,
  .team-final-promise {
    padding: 86px 20px;
  }

  .care-principles article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 26px 22px;
  }

  .care-principles p {
    grid-column: 2;
    font-size: 15px;
  }

  .origin-mission-section article {
    padding: 34px 26px;
    border-radius: 24px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .values-grid article,
  .values-grid article:nth-child(2n),
  .values-grid article:nth-child(3n) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 43, 99, 0.11);
  }

  .values-grid article:last-child {
    border-bottom: 0;
  }

  .values-grid h3 {
    margin-top: 25px;
  }

  .guidance-section {
    gap: 42px;
  }

  .team-final-promise h2 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .promise-actions {
    margin-top: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
