:root {
  color-scheme: dark;
  --bg: #08121e;
  --text: #f7f2eb;
  --muted: rgba(239, 231, 221, 0.8);
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(255, 255, 255, 0.08);
  --accent: #7ec4f0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.hero__background,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__background {
  background:
    linear-gradient(90deg, rgba(8, 18, 30, 0.68), rgba(8, 18, 30, 0.1)),
    url("./assets/hero-minergi-web-desktop.jpg") right center / cover no-repeat;
  transform: scale(1.02);
}

.hero__overlay--left {
  background: linear-gradient(
    90deg,
    rgba(8, 18, 30, 0.9) 0%,
    rgba(8, 18, 30, 0.78) 28%,
    rgba(8, 18, 30, 0.45) 54%,
    rgba(8, 18, 30, 0.12) 76%,
    rgba(8, 18, 30, 0) 100%
  );
}

.hero__overlay--bottom {
  background: linear-gradient(
    180deg,
    rgba(8, 18, 30, 0) 54%,
    rgba(8, 18, 30, 0.52) 78%,
    rgba(8, 18, 30, 0.96) 100%
  );
}

.nav,
.hero__content,
.hero__footer {
  position: relative;
  z-index: 1;
}

.nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
}

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

.brand__mark {
  display: inline-flex;
  gap: 2px;
  flex: 0 0 auto;
}

.brand__mark span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.brand__mark span:nth-child(1) {
  background: #ef3340;
}

.brand__mark span:nth-child(2) {
  background: #009a44;
}

.brand__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: lowercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 42px;
  color: rgba(247, 242, 235, 0.78);
  font-size: 18px;
}

.nav__item.has-submenu {
  position: relative;
}

.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav__trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.65;
  transform: rotate(45deg);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__item.is-open .nav__trigger::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.nav__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  z-index: 20;
  display: grid;
  gap: 2px;
  width: max-content;
  min-width: 200px;
  padding: 20px 10px 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(10, 20, 32, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(24px);
  transition: opacity 200ms cubic-bezier(0.16, 1, 0.3, 1), transform 200ms cubic-bezier(0.16, 1, 0.3, 1), visibility 200ms;
}

.nav__item.is-open .nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (hover: hover) {
  .nav__item.has-submenu:hover .nav__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav__submenu,
  .nav__trigger::after {
    transition: none;
  }
}

.nav__submenu-link {
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(247, 242, 235, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 160ms ease;
}

.nav__submenu-link:hover,
.nav__submenu-link:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.lang-switch__option {
  min-width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(247, 242, 235, 0.62);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.lang-switch__option.is-active {
  color: #fff;
}

.lang-switch--mobile {
  margin: 0;
}

.mobile-menu {
  display: none;
}

.mobile-menu__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  list-style: none;
  cursor: pointer;
}

.mobile-menu__toggle::-webkit-details-marker {
  display: none;
}

.mobile-menu__toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu[open] .mobile-menu__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu[open] .mobile-menu__toggle span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] .mobile-menu__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(320px, calc(100vw - 32px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(8, 18, 30, 0.9);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.mobile-menu__links {
  display: grid;
  gap: 0;
}

.mobile-menu__links a {
  position: relative;
  padding: 24px 36px 24px 0;
  color: rgba(247, 242, 235, 0.92);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__links a::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  color: rgba(247, 242, 235, 0.5);
  font-size: 2rem;
  line-height: 1;
}

.mobile-menu__links a:last-child {
  border-bottom: 0;
}

.mobile-submenu {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-submenu summary {
  position: relative;
  padding: 24px 36px 24px 0;
  color: rgba(247, 242, 235, 0.92);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
}

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

.mobile-submenu summary::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%) rotate(90deg);
  color: rgba(247, 242, 235, 0.5);
  font-size: 2rem;
  line-height: 1;
  transition: transform 200ms ease;
}

.mobile-submenu[open] summary::after {
  transform: translateY(-50%) rotate(-90deg);
}

.mobile-submenu__panel {
  display: grid;
  gap: 2px;
  padding: 0 0 20px;
}

.mobile-submenu__panel > a {
  padding: 8px 0;
  color: rgba(247, 242, 235, 0.86);
  font-size: 0.95rem;
  font-weight: 500;
}

.mobile-menu__meta {
  display: grid;
  gap: 16px;
  padding-top: 22px;
}

.mobile-menu__cta {
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.button--light {
  background: #fff;
  color: #151515;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
  backdrop-filter: blur(12px);
}

  .button--join {
  min-height: 62px;
  padding-inline: 36px;
}

.hero__content {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 220px);
  padding-top: 72px;
}

.hero__copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 34px;
  padding: 12px 20px;
  border: 1px solid rgba(126, 196, 240, 0.16);
  border-radius: 999px;
  background: rgba(122, 177, 208, 0.08);
  backdrop-filter: blur(18px);
  color: var(--accent);
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(4rem, 7vw, 6.25rem);
  line-height: 0.96;
  font-weight: 400;
  text-wrap: balance;
}

.hero__summary {
  margin: 34px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.hero__summary--mobile {
  display: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 44px;
}

.trust {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 640px;
  margin-top: 30px;
  color: rgba(247, 242, 235, 0.78);
  font-size: 15px;
  line-height: 1.45;
}

.trust strong {
  color: var(--text);
  font-weight: 500;
}

.trust--mobile {
  display: none;
}

.trust__avatars {
  display: flex;
  flex: 0 0 auto;
}

.trust__avatars img {
  display: block;
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 2px solid rgba(8, 18, 30, 0.88);
  border-radius: 50%;
  object-fit: cover;
  background: #d9d6cf;
}

.trust__avatars img:first-child {
  margin-left: 0;
}

.hero__footer {
  display: none;
}

.problem {
  position: relative;
  padding: 72px 0 104px;
  border-top: 0;
  background:
    linear-gradient(180deg, #07101a 0%, #060b11 96px, #060b11 100%);
}

.problem__inner {
  display: grid;
  gap: 72px;
}

.problem__trust {
  display: grid;
  gap: 20px;
  text-align: center;
}

.problem__trust-label {
  margin: 0;
  color: rgba(203, 213, 225, 0.78);
  font-size: 1.14rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
}

.problem__trust-mobile {
  display: none;
}

.problem__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 42px;
}

.problem__logos img {
  height: 78px;
  width: auto;
  max-width: 290px;
  opacity: 1;
  filter: none;
}

.problem__intro {
  display: grid;
  gap: 24px;
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.problem__headline h2,
.problem__summary p {
  margin: 0;
}

.problem__headline h2 {
  max-width: 1120px;
  margin: 0 auto;
  color: #f8fafc;
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
}

.problem__summary p {
  max-width: 58rem;
  margin: 0 auto;
  padding-top: 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: 1.1rem;
  line-height: 1.75;
}

.problem__summary-mobile {
  display: none;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.problem-card {
  min-height: 100%;
  padding: 32px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  background: rgba(248, 244, 237, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.problem-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  border-radius: 10px;
  background: rgba(180, 121, 31, 0.08);
  color: #b7791f;
}

.problem-card__icon svg {
  width: 20px;
  height: 20px;
}

.problem-card h3,
.problem-card p {
  margin: 0;
}

.problem-card h3 {
  margin-bottom: 12px;
  color: #111827;
  font-size: 1.25rem;
  font-weight: 600;
}

.problem-card p {
  color: rgba(71, 85, 105, 0.88);
  font-size: 0.95rem;
  line-height: 1.65;
}

.pathways {
  padding: 104px 0 112px;
  background: #fff;
  color: #111827;
}

.pathways__inner {
  display: grid;
  gap: 56px;
}

.pathways__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 48px;
  align-items: end;
}

.pathways__lead {
  max-width: 900px;
}

.pathways__eyebrow,
.pathways__lead h2,
.pathways__lead p,
.pathways__philosophy p,
.pathway-card__meta,
.pathway-card h3,
.pathway-card p {
  margin: 0;
}

.pathways__eyebrow {
  margin-bottom: 18px;
  color: #b7791f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pathways__lead h2 {
  max-width: 920px;
  font-size: clamp(2.55rem, 5.3vw, 5.2rem);
  line-height: 1.02;
  font-weight: 650;
  letter-spacing: 0;
}

.pathways__lead > p {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(71, 85, 105, 0.9);
  font-size: 1.08rem;
  line-height: 1.7;
}

.pathways__philosophy {
  padding-left: 20px;
  border-left: 2px solid rgba(183, 121, 31, 0.72);
}

.pathways__philosophy p {
  color: rgba(71, 85, 105, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pathways__philosophy strong {
  display: block;
  margin-top: 8px;
  color: #111827;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.18;
  font-weight: 650;
}

.pathways__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pathway-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #fbfbfa;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.pathway-card__meta {
  color: rgba(71, 85, 105, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pathway-card__body {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.pathway-card h3 {
  color: #111827;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: 0;
}

.pathway-card p {
  color: rgba(71, 85, 105, 0.9);
  font-size: 1rem;
  line-height: 1.68;
}

.pathway-card a {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 34px;
  color: #111827;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 24, 39, 0.28);
}

.pathway-card a:hover {
  border-bottom-color: #111827;
}

.insight {
  padding: 112px 0;
  background: #060b11;
  color: #f8fafc;
}

.insight__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.insight__content {
  max-width: 560px;
}

.insight__eyebrow,
.insight__content h2,
.insight__content p {
  margin: 0;
}

.insight__eyebrow {
  margin-bottom: 18px;
  color: #f0b35a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight__content h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  line-height: 1.04;
  font-weight: 650;
  letter-spacing: 0;
}

.insight__content > p {
  margin-top: 24px;
  color: rgba(226, 232, 240, 0.76);
  font-size: 1.05rem;
  line-height: 1.72;
}

.insight__panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.insight__globe {
  position: relative;
  height: min(54vw, 520px);
  min-height: 420px;
  overflow: hidden;
  border-radius: 10px;
  background: #02060a;
}

.insight__globe iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.insight__click-layer {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.insight-confirm[hidden] {
  display: none;
}

.insight-confirm {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 6, 10, 0.72);
  backdrop-filter: blur(10px);
}

.insight-confirm__card {
  width: min(100%, 440px);
  padding: 28px;
  border: 1px solid rgba(248, 250, 252, 0.14);
  border-radius: 12px;
  background: #09101a;
  color: #f8fafc;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.insight-confirm__card h3,
.insight-confirm__card p {
  margin: 0;
}

.insight-confirm__card h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 650;
}

.insight-confirm__card p {
  margin-top: 10px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.insight-confirm__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.insight-confirm__stay,
.insight-confirm__go {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.insight-confirm__stay {
  border: 1px solid rgba(248, 250, 252, 0.14);
  background: transparent;
  color: #f8fafc;
}

.insight-confirm__go {
  display: inline-flex;
  align-items: center;
  border: 1px solid #f8fafc;
  background: #f8fafc;
  color: #060b11;
}

.audience {
  padding: 104px 0 112px;
  background: #fff;
  color: #111827;
}

.audience__inner {
  display: grid;
  gap: 52px;
}

.audience__header {
  display: grid;
  gap: 24px;
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.audience__eyebrow,
.audience__header h2,
.audience__header p,
.audience-card span,
.audience-card h3,
.audience-card p {
  margin: 0;
}

.audience__eyebrow {
  color: #b7791f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience__header h2 {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(2.35rem, 4.8vw, 4.75rem);
  line-height: 1.04;
  font-weight: 650;
  letter-spacing: 0;
}

.audience__header > p {
  max-width: 58rem;
  margin: 0 auto;
  color: rgba(71, 85, 105, 0.88);
  font-size: 1.05rem;
  line-height: 1.72;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.audience__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-block: 8px 4px;
}

.audience-stat {
  position: relative;
  padding: 6px 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
}

.audience-stat__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.audience-stat strong,
.audience-stat p {
  margin: 0;
}

.audience-stat strong {
  display: block;
  color: #111827;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0;
}

.audience-stat p {
  max-width: 220px;
  margin-inline: auto;
  margin-top: 10px;
  color: rgba(71, 85, 105, 0.82);
  font-size: 0.88rem;
  line-height: 1.45;
}

.audience-stat__hint {
  display: block;
  margin-top: 10px;
  margin-inline: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(71, 85, 105, 0.82);
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
  cursor: pointer;
  max-width: 220px;
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-color: rgba(71, 85, 105, 0.42);
  text-underline-offset: 0.18em;
}

.audience-stat__hint:hover,
.audience-stat__hint[aria-expanded="true"] {
  color: rgba(31, 41, 55, 0.92);
  text-decoration-color: rgba(183, 121, 31, 0.5);
}

.audience-stat__hint:focus-visible {
  outline: 2px solid rgba(183, 121, 31, 0.3);
  outline-offset: 6px;
  border-radius: 4px;
}

.audience-stat__tooltip {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  z-index: 2;
  width: min(220px, calc(100vw - 48px));
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: rgba(255, 252, 245, 0.96);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  color: rgba(71, 85, 105, 0.72);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: left;
  transform: translateX(-50%);
}

.audience-stat__tooltip::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 252, 245, 0.96);
  transform: translateX(-50%) rotate(45deg);
}

.audience-stat__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b7791f;
  box-shadow: 0 0 0 0 rgba(183, 121, 31, 0.32);
  animation: audiencePulse 2.4s ease-out infinite;
}

@keyframes audiencePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.88;
    box-shadow: 0 0 0 0 rgba(183, 121, 31, 0.28);
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(183, 121, 31, 0);
  }
}

.audience-card {
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #fcfbf8;
}

.audience-card span {
  display: block;
  margin-bottom: 28px;
  color: rgba(183, 121, 31, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.audience-card h3 {
  color: #111827;
  font-size: 1.48rem;
  line-height: 1.14;
  font-weight: 650;
}

.audience-card p {
  margin-top: 12px;
  color: rgba(71, 85, 105, 0.88);
  font-size: 0.97rem;
  line-height: 1.66;
}

.product-list {
  padding: 96px 0 108px;
}

.product-list__inner {
  display: grid;
  gap: 40px;
}

.product-list__inner h2 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 650;
  text-wrap: balance;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: start;
  gap: 24px;
}

.product-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.product-card--link {
  min-height: 100%;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-card--link:hover,
.product-card--link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(126, 196, 240, 0.38);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.product-card__meta {
  margin: 0;
  color: rgba(247, 242, 235, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  color: #f7f2eb;
  font-size: 1.34rem;
  line-height: 1.14;
  font-weight: 650;
  letter-spacing: 0;
}

.product-card p:not(.product-card__meta) {
  margin: 0;
  color: rgba(247, 242, 235, 0.7);
  font-size: 0.97rem;
  line-height: 1.66;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 112px 0 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(circle at 50% 100%, rgba(183, 121, 31, 0.12), rgba(183, 121, 31, 0) 44%),
    #060b11;
}

.final-cta__inner {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.final-cta__eyebrow,
.final-cta__inner h2,
.final-cta__summary {
  margin: 0;
}

.final-cta__eyebrow {
  color: rgba(247, 242, 235, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-cta__inner h2 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 1.04;
  font-weight: 650;
  letter-spacing: 0;
}

.final-cta__summary {
  max-width: 640px;
  color: rgba(239, 231, 221, 0.74);
  font-size: 1.04rem;
  line-height: 1.72;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.site-footer {
  overflow: hidden;
  padding: 48px 0 0;
  background: #f8f4ee;
  color: #111827;
}

.site-footer__inner {
  display: grid;
  gap: 36px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.site-footer__column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.site-footer__heading,
.site-footer__meta p {
  margin: 0;
}

.site-footer__heading {
  color: rgba(12, 18, 28, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__column a {
  color: rgba(17, 24, 39, 0.88);
  font-size: 1rem;
  line-height: 1.45;
}

.site-footer__column a:hover {
  color: rgba(0, 154, 68, 0.92);
}

.site-footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.site-footer__meta p:first-child {
  max-width: 760px;
  color: rgba(71, 85, 105, 0.82);
  font-size: 0.94rem;
  line-height: 1.62;
}

.site-footer__meta p:last-child {
  flex: 0 0 auto;
  color: rgba(71, 85, 105, 0.62);
  font-size: 0.82rem;
  line-height: 1.4;
}

.site-footer__brand {
  width: 100%;
  margin-top: 48px;
  color: rgba(17, 24, 39, 0.06);
  font-size: clamp(9rem, 32vw, 28rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.78;
  text-transform: lowercase;
  white-space: nowrap;
  text-align: center;
  transform: translateY(0);
}

/* --- /chat/ — Chat dengan Advisor Minergi -----------------------------------
   Built to the approved wireframe (alya/wireframe.html, docs/chat-alya-wireframe.md):
   a LIGHT page, unlike the dark site baseline, so the whole thing redeclares its
   own tokens on .chat-page rather than inheriting :root. Mobile is one column;
   from 900px it becomes hero-left / topic-list-right.

   The nav is the SHARED site nav (.nav / .nav__links / .mobile-menu), same
   markup and same behaviour as the homepage — including the Solution submenu
   and the mobile sheet. Only its colours are restated below, because the shared
   rules paint it for a dark hero and this page is light. Do not fork the nav
   here again: structure belongs to the shared component.

   The chat bubble and panel are NOT ours — the Perron widget injects them
   (see shared/alya-launch.js); the wireframe's mock bubble/panel is not ported. */
.chat-page {
  --chat-bg: #fbfbfa;
  --chat-surface: #ffffff;
  --chat-ink: #111111;
  --chat-text: #2f3437;
  --chat-muted: #787774;
  --chat-line: #eaeaea;
  color-scheme: light;
  background: var(--chat-bg);
  color: var(--chat-text);
}

/* --- shared nav, repainted for a light page --- */
.chat-page .nav {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--chat-line);
}

.chat-page .brand__name {
  color: var(--chat-ink);
}

.chat-page .nav__links {
  color: rgba(17, 24, 39, 0.68);
  font-size: 15px;
  gap: 30px;
}

.chat-page .nav__links a[aria-current="page"] {
  color: var(--chat-ink);
  font-weight: 650;
}

.chat-page .nav__submenu {
  border-color: var(--chat-line);
  background: var(--chat-surface);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
}

.chat-page .nav__submenu-link {
  color: rgba(17, 24, 39, 0.88);
}

.chat-page .nav__submenu-link:hover,
.chat-page .nav__submenu-link:focus-visible {
  background: rgba(17, 24, 39, 0.05);
}

.chat-page .button--join {
  background: var(--chat-ink);
  color: #fff;
}

.chat-page .lang-switch__option {
  color: rgba(17, 24, 39, 0.5);
}

.chat-page .lang-switch__option.is-active {
  color: var(--chat-ink);
}

.chat-page .mobile-menu__toggle {
  border-color: rgba(17, 24, 39, 0.14);
  background: var(--chat-surface);
  backdrop-filter: none;
}

.chat-page .mobile-menu__toggle span {
  background: var(--chat-ink);
}

.chat-page .mobile-menu[open] .mobile-menu__toggle {
  border-color: rgba(17, 24, 39, 0.24);
  background: var(--chat-surface);
}

.chat-page .mobile-menu[open]::before {
  background: rgba(17, 24, 39, 0.24);
}

.chat-page .mobile-menu__panel {
  border-color: var(--chat-line);
  background: var(--chat-surface);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
  backdrop-filter: none;
}

.chat-page .mobile-menu__links a,
.chat-page .mobile-submenu summary {
  border-bottom-color: rgba(17, 24, 39, 0.1);
  color: rgba(17, 24, 39, 0.92);
}

.chat-page .mobile-submenu {
  border-bottom-color: rgba(17, 24, 39, 0.1);
}

.chat-page .mobile-menu__links a::after,
.chat-page .mobile-submenu summary::after {
  color: rgba(17, 24, 39, 0.4);
}

.chat-page .mobile-submenu__panel > a {
  color: rgba(17, 24, 39, 0.78);
}

.chat-page .mobile-menu__cta {
  background: var(--chat-ink);
  color: #fff;
}

/* --- page shell --- */
.chat-shell {
  min-height: 60vh;
  background: var(--chat-bg);
}

/* --- hero --- */
.chat-hero {
  padding: 48px 24px 34px;
}

.chat-hero__eyebrow {
  margin: 0 0 16px;
  color: var(--chat-muted);
  font-family: "SF Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chat-hero__title {
  max-width: 340px;
  margin: 0 0 18px;
  color: var(--chat-ink);
  font-family: Georgia, "Times New Roman", serif;
  /* Scales down on narrow phones so "Advisor Minergi" still holds one line. */
  font-size: clamp(36px, 11.5vw, 46px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}

.chat-hero__title span {
  display: block;
}

.chat-hero__intro {
  max-width: 340px;
  margin: 0;
  color: #5f6365;
  font-size: 16px;
  line-height: 1.62;
}

.chat-hero__actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.chat-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--chat-line);
  border-radius: 6px;
  color: var(--chat-ink);
  font: inherit;
  cursor: pointer;
}

.chat-button--primary {
  border-color: var(--chat-ink);
  background: var(--chat-ink);
  color: #fff;
  font-weight: 700;
}

.chat-button--ghost {
  background: #fff;
}

.chat-status {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid var(--chat-line);
  border-radius: 8px;
  background: var(--chat-surface);
  color: var(--chat-ink);
}

.chat-status small {
  display: block;
  margin-bottom: 10px;
  color: #346538;
  font-family: "SF Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-status h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.chat-status p {
  margin: 0;
  color: var(--chat-muted);
  line-height: 1.55;
}

/* --- topic list ---
   Buttons, not links: each one opens the Perron widget and sends its <strong>
   text as the first message (shared/alya-launch.js). */
.chat-topics {
  display: grid;
  gap: 10px;
  padding: 22px 24px 28px;
  border-top: 1px solid var(--chat-line);
  background: var(--chat-surface);
}

.chat-topics__heading {
  margin: 0;
  color: var(--chat-muted);
  font-family: "SF Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-topic {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--chat-line);
  border-radius: 8px;
  background: var(--chat-bg);
  color: var(--chat-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.chat-topic:hover {
  border-color: rgba(17, 17, 17, 0.28);
  background: #fff;
}

.chat-topic strong,
.chat-topic small {
  display: block;
}

.chat-topic strong {
  font-size: 15px;
  line-height: 1.2;
}

.chat-topic small {
  grid-column: 1;
  color: var(--chat-muted);
  font-size: 12.5px;
  line-height: 1.35;
}

.chat-topic span {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: #a8a8a4;
  font-size: 24px;
}

@media (min-width: 900px) {
  /* Same measure as .container, so the two columns line up with the nav above. */
  .chat-shell {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 620px);
    column-gap: clamp(40px, 5vw, 80px);
    align-items: center;
  }

  .chat-hero {
    min-width: 0;
  }

  .chat-hero {
    align-self: center;
    padding: 80px 0 96px;
  }

  .chat-hero__title {
    max-width: 100%;
    font-size: clamp(44px, 4.6vw, 76px);
    line-height: 0.98;
  }

  .chat-hero__intro {
    max-width: 560px;
    font-size: 19px;
    line-height: 1.7;
  }

  .chat-hero__actions {
    max-width: 420px;
    grid-template-columns: 1fr 1fr;
    margin-top: 36px;
  }

  .chat-status {
    max-width: 460px;
    margin-top: 42px;
    padding: 24px;
  }

  .chat-topics {
    align-self: center;
    padding: 28px;
    border: 1px solid var(--chat-line);
    border-radius: 12px;
  }

  .chat-topics__heading {
    margin-bottom: 6px;
  }

  .chat-topic {
    min-height: 62px;
    padding: 14px 16px;
  }

  .chat-topic strong {
    font-size: 16px;
  }

  .chat-topic small {
    font-size: 13px;
  }
}

.hero__footer p {
  max-width: 720px;
  margin: 0;
  color: rgba(247, 242, 235, 0.88);
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  line-height: 1.28;
}

.about-page {
  background: #060b11;
  color: #f7f2eb;
}

.about-page .nav__links a:first-child {
  color: #fff;
}

.about-hero {
  padding: 0 0 92px;
  background:
    radial-gradient(circle at 50% 0%, rgba(183, 121, 31, 0.12), rgba(183, 121, 31, 0) 36%),
    #060b11;
}

.about-hero__inner {
  display: grid;
  gap: 24px;
  padding-top: 88px;
}

.about-hero__eyebrow,
.about-story__eyebrow,
.about-difference__eyebrow,
.about-expertise__eyebrow,
.about-process__eyebrow,
.about-vision__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-hero__eyebrow,
.about-expertise__eyebrow,
.about-vision__eyebrow {
  color: rgba(247, 242, 235, 0.64);
}

.about-story__eyebrow,
.about-difference__eyebrow,
.about-process__eyebrow {
  color: #b7791f;
}

.about-hero__inner h1,
.about-story__intro h2,
.about-difference__header h2,
.about-expertise__header h2,
.about-process__header h2,
.about-vision__inner h2 {
  margin: 0;
  letter-spacing: 0;
  font-weight: 650;
}

.about-hero__inner h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.98;
}

.about-hero__summary {
  max-width: 740px;
  margin: 0;
  color: rgba(239, 231, 221, 0.76);
  font-size: 1.08rem;
  line-height: 1.74;
}

.about-hero__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
}

.about-hero__signal {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.about-hero__signal span,
.about-process__step span {
  display: block;
  color: rgba(183, 121, 31, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-hero__signal strong {
  display: block;
  margin-top: 10px;
  color: #f7f2eb;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 560;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-story,
.about-process {
  background: #f8f4ee;
  color: #111827;
}

.about-story {
  padding: 96px 0 108px;
  background:
    radial-gradient(circle at 50% 0%, rgba(183, 121, 31, 0.08), rgba(183, 121, 31, 0) 36%),
    #f8f4ee;
}

.about-story__inner {
  display: grid;
  gap: 32px;
  align-items: start;
}

.about-story__intro h2 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 4.6vw, 4.9rem);
  line-height: 0.98;
}

.about-story__intro {
  display: grid;
  gap: 20px;
}

.about-story__bridge {
  max-width: 33rem;
  margin: 0;
  color: rgba(71, 85, 105, 0.9);
  font-size: 1.02rem;
  line-height: 1.68;
}

.about-story__visual {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  padding: 18px 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(247, 242, 235, 0.9)),
    #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.about-story__visual-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 2px;
  color: #111827;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}

.about-story__visual-line {
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, rgba(183, 121, 31, 0.92), rgba(183, 121, 31, 0.18));
}

.about-story__body {
  display: grid;
  gap: 16px;
  counter-reset: story-step;
}

.about-story__block {
  position: relative;
  padding: 22px 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 3px solid rgba(183, 121, 31, 0.82);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68)),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.about-story__block::before {
  content: counter(story-step, decimal-leading-zero);
  counter-increment: story-step;
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(148, 163, 184, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about-story__label {
  margin: 0 0 10px;
  color: #111827;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-story__body p {
  margin: 0;
  color: rgba(71, 85, 105, 0.9);
  font-size: 1rem;
  line-height: 1.76;
}

.about-story__closing {
  margin-top: 12px;
  color: #111827;
  font-size: 1.05rem;
  line-height: 1.72;
  font-weight: 560;
  text-align: center;
}

@media (min-width: 1081px) {
  .about-story__inner {
    gap: 36px;
  }

  .about-story__intro {
    width: 100%;
    text-align: center;
    margin: 0;
  }

  .about-story__intro h2 {
    max-width: none;
    width: 100%;
    font-size: clamp(3.4rem, 5.1vw, 5.6rem);
  }

  .about-story__bridge {
    max-width: 46rem;
    font-size: 1.08rem;
    margin-inline: auto;
  }

  .about-story__eyebrow,
  .about-story__visual {
    margin-inline: auto;
  }

  .about-story__visual {
    width: min(100%, 760px);
    justify-content: space-between;
  }

  .about-story__body {
    max-width: 920px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    margin: 0 auto;
  }

  .about-story__block {
    min-height: 184px;
    padding: 24px 26px;
  }

  .about-story__block:nth-child(3),
  .about-story__block:nth-child(4) {
    transform: translateY(-10px);
  }

  .about-story__closing {
    grid-column: 1 / -1;
    max-width: 58rem;
    margin-top: 8px;
  }
}

.about-difference {
  padding: 88px 0 104px;
  background: #fffdf9;
  color: #111827;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.about-difference__inner,
.about-expertise__inner,
.about-process__inner {
  display: grid;
  gap: 34px;
}

.about-difference__header h2,
.about-expertise__header h2,
.about-process__header h2,
.about-vision__inner h2 {
  max-width: 780px;
  font-size: clamp(2.2rem, 4.5vw, 4.1rem);
  line-height: 1.05;
}

.about-difference__grid,
.about-expertise__grid,
.about-process__grid {
  display: grid;
  gap: 20px;
}

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

.about-difference__card,
.about-process__step {
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #fcfbf8;
}

.about-difference__card h3,
.about-expertise__card h3,
.about-process__step h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.14;
  font-weight: 650;
  letter-spacing: 0;
}

.about-difference__card p,
.about-expertise__card p,
.about-process__step p,
.about-vision__summary {
  margin: 12px 0 0;
  font-size: 0.97rem;
  line-height: 1.66;
}

.about-difference__card p,
.about-process__step p {
  color: rgba(71, 85, 105, 0.88);
}

.about-expertise {
  padding: 92px 0 108px;
  background: #060b11;
  color: #f7f2eb;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.about-expertise__card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.about-expertise__card p,
.about-vision__summary {
  color: rgba(239, 231, 221, 0.76);
}

.about-expertise__inner {
  display: grid;
  gap: 28px;
}

.about-expertise__inner h2 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 650;
  text-wrap: balance;
}

.about-expertise__lead {
  max-width: 30rem;
  margin: 0;
  color: rgba(239, 231, 221, 0.76);
  font-size: 1rem;
  line-height: 1.74;
}

@media (min-width: 1081px) {
  .about-expertise__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 64px;
  }

  .about-expertise__inner h2 {
    max-width: none;
  }

  .about-expertise__lead {
    font-size: 1.05rem;
  }
}

.about-process {
  padding: 92px 0 108px;
}

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

.about-process__step span {
  margin-bottom: 24px;
}

.about-vision {
  padding: 104px 0 116px;
  background: #f8f4ee;
  color: #111827;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.about-vision__inner {
  display: grid;
  gap: 40px;
}

.about-vision__intro {
  display: grid;
  gap: 32px;
  align-items: center;
}

.about-vision__content {
  display: grid;
  gap: 20px;
}

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

.about-vision__eyebrow {
  margin: 0;
  color: #b7791f;
}

.about-vision__lead h2 {
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: clamp(2.35rem, 3.9vw, 3.4rem);
  line-height: 1.04;
  text-wrap: balance;
}

.about-vision__summary {
  max-width: 42rem;
  margin: 0;
  color: rgba(71, 85, 105, 0.92);
  font-size: 1rem;
  line-height: 1.74;
}

.about-vision__media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -32px rgba(15, 23, 42, 0.28);
}

.about-vision__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1081px) {
  .about-vision__inner {
    gap: 42px;
  }

  .about-vision__intro {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 56px;
    max-width: none;
    width: 100%;
    margin: 0;
  }

  .about-vision__lead h2 {
    font-size: clamp(2.8rem, 3.6vw, 4rem);
  }

  .about-vision__summary {
    max-width: 40rem;
    font-size: 1.08rem;
  }

  .about-vision__media {
    height: 100%;
    min-height: 360px;
  }
}

.about-mission {
  display: grid;
  gap: 28px;
  margin-top: 12px;
  padding-top: 44px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.about-mission__header {
  display: grid;
  gap: 10px;
  max-width: 38rem;
}

@media (min-width: 1081px) {
  .about-mission__header {
    max-width: 46rem;
    margin: 0 auto;
    text-align: center;
  }
}

.about-mission__eyebrow,
.about-mission__item-title {
  margin: 0;
  color: rgba(183, 121, 31, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-mission__lead {
  margin: 0;
  color: rgba(71, 85, 105, 0.9);
  font-size: 1rem;
  line-height: 1.7;
}

.about-mission__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  counter-reset: mission-item;
}

.about-mission__item {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: #fcfbf8;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-mission__item:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 121, 31, 0.35);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.about-mission__item::before {
  counter-increment: mission-item;
  content: counter(mission-item, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(183, 121, 31, 0.12);
  color: #b7791f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

@media (min-width: 1081px) {
  .about-mission__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-mission__item-title {
  margin: 0;
  color: #111827;
  letter-spacing: 0.08em;
}

.about-mission__item p:last-child {
  margin: 0;
  color: rgba(71, 85, 105, 0.9);
  font-size: 0.97rem;
  line-height: 1.66;
}

/* Hallmark · macrostructure: Split Studio · genre: editorial · theme: custom (brand-preserved warm paper / petrol accent)
 * display: Fraunces 600 roman · body: Inter · H2 hero knobs: ratio=7/5, right=proof-column, divider=vertical rule
 * archetypes: S2 hanging heads · F4 step-sequence (DRILL) · F3 tabular value stack · T4 stat strip · C4 sticky bottom bar
 * nav/footer: site chrome preserved · redesign of prior card-grid layout · i18n keys untouched
 * Hallmark · pre-emit critique: P4 H4 E4 S4 R4 V4
 */
.blueprint-page {
  --bp-paper: oklch(96.9% 0.011 85);
  --bp-paper-2: oklch(94.6% 0.014 85);
  --bp-card: oklch(98.9% 0.005 90);
  --bp-ink: oklch(21% 0.021 255);
  --bp-ink-2: oklch(21% 0.021 255 / 0.72);
  --bp-ink-3: oklch(21% 0.021 255 / 0.52);
  --bp-rule: oklch(21% 0.021 255 / 0.14);
  --bp-rule-strong: oklch(21% 0.021 255 / 0.42);
  --bp-accent: oklch(50% 0.1 235);
  --bp-accent-soft: oklch(50% 0.1 235 / 0.08);
  --bp-dark: oklch(19% 0.032 250);
  --bp-dark-ink: oklch(96.2% 0.009 85);
  --bp-dark-ink-2: oklch(96.2% 0.009 85 / 0.68);
  --bp-dark-rule: oklch(96.2% 0.009 85 / 0.16);
  --bp-dark-accent: oklch(84% 0.062 235);
  --bp-font-display: Inter, ui-sans-serif, system-ui, sans-serif;
  --bp-font-body: Inter, ui-sans-serif, system-ui, sans-serif;
  --bp-section-pad: clamp(72px, 9vw, 116px);
  --bp-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --bp-dur: 220ms;
  background: var(--bp-paper);
  color: var(--bp-ink);
  font-family: var(--bp-font-body);
  overflow-x: clip;
}

.blueprint-page :focus-visible {
  outline: 2px solid var(--bp-accent);
  outline-offset: 2px;
}

.blueprint-page [id] {
  scroll-margin-top: 24px;
}

@media (prefers-reduced-motion: no-preference) {
  .blueprint-page {
    scroll-behavior: smooth;
  }
}

/* --- Display type --- */
.blueprint-hero h1,
.blueprint-section-heading h2,
.blueprint-method__intro h2,
.blueprint-fit h2,
.blueprint-faq h2,
.blueprint-cta h2,
.blueprint-about__copy h2,
.blueprint-stories__heading h2,
.blueprint-pricing__card h2 {
  margin: 0;
  font-family: var(--bp-font-display);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-wrap: balance;
  overflow-wrap: anywhere;
  min-width: 0;
}

/* --- Hero (Split Studio diptych: headline left, proof rail right) --- */
.blueprint-hero {
  position: relative;
  overflow: hidden;
  background: var(--bp-paper);
  color: var(--bp-ink);
  border-bottom: 1px solid var(--bp-rule);
}

.blueprint-hero::after {
  content: none;
}

.blueprint-hero .brand__name,
.blueprint-hero .nav__links,
.blueprint-hero .nav__trigger {
  color: var(--bp-ink);
}

.blueprint-hero .nav__links > a,
.blueprint-hero .nav__trigger {
  color: var(--bp-ink-2);
}

.blueprint-hero .nav__links > a:hover,
.blueprint-hero .nav__trigger:hover {
  color: var(--bp-ink);
}

.blueprint-hero .lang-switch {
  border-color: var(--bp-rule);
  background: var(--bp-accent-soft);
}

.blueprint-hero .lang-switch__option {
  color: var(--bp-ink-3);
}

.blueprint-hero .lang-switch__option.is-active {
  background: var(--bp-ink);
  color: var(--bp-dark-ink);
}

.blueprint-hero .button--light {
  background: var(--bp-ink);
  color: var(--bp-dark-ink);
}

.blueprint-hero .button--ghost {
  border-color: var(--bp-rule-strong);
  background: transparent;
  color: var(--bp-ink);
  backdrop-filter: none;
}

.blueprint-hero .mobile-menu__toggle {
  border-color: var(--bp-rule);
  background: var(--bp-accent-soft);
}

.blueprint-hero .mobile-menu__toggle span {
  background: var(--bp-ink);
}

.blueprint-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  grid-template-areas: "text proof" "cta proof";
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(64px, 8vw, 104px);
  text-align: left;
  min-width: 0;
}

.blueprint-hero__headline {
  grid-area: text;
  display: grid;
  gap: 22px;
  justify-items: start;
  min-width: 0;
}

.blueprint-hero__cta {
  grid-area: cta;
  display: grid;
  gap: 12px;
  justify-items: start;
  min-width: 0;
}

.blueprint-kicker {
  margin: 0;
  color: var(--bp-accent);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blueprint-hero h1 {
  width: 100%;
  font-size: clamp(2.2rem, 3.9vw, 3.3rem);
  line-height: 1.08;
}

.blueprint-hero__summary {
  max-width: 40rem;
  margin: 0;
  color: var(--bp-ink-2);
  font-size: 1.08rem;
  line-height: 1.62;
}

.blueprint-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.blueprint-hero__price-note {
  margin: 0;
  color: var(--bp-ink-3);
  font-size: 0.86rem;
  font-weight: 550;
}

.blueprint-hero__proof {
  grid-area: proof;
  display: grid;
  align-self: center;
  min-width: 0;
  border-left: 1px solid var(--bp-rule-strong);
  padding-left: clamp(24px, 3vw, 44px);
}

.blueprint-hero__proof p {
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid var(--bp-rule);
  color: var(--bp-ink-2);
  font-size: 0.93rem;
  line-height: 1.6;
}

.blueprint-hero__proof p:first-child {
  border-top: 0;
  padding-top: 0;
}

.blueprint-hero__proof p:last-child {
  padding-bottom: 0;
}

/* --- Section heading (S2 hanging, left-aligned) --- */
.blueprint-section-heading {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.blueprint-section-heading h2,
.blueprint-method__intro h2,
.blueprint-fit h2,
.blueprint-faq h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.08;
}

.blueprint-section-heading p,
.blueprint-method__intro p,
.blueprint-fit p,
.blueprint-cta p {
  margin: 0;
  max-width: 40rem;
  color: var(--bp-ink-2);
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Stories / social proof --- */
.blueprint-stories {
  padding: var(--bp-section-pad) 0;
  background: var(--bp-paper);
}

.blueprint-stories__inner {
  display: grid;
  gap: 44px;
}

.blueprint-stories__heading {
  display: grid;
  justify-items: start;
  text-align: left;
  gap: 14px;
  max-width: 52rem;
}

.blueprint-stories__heading h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.08;
}

.blueprint-stories__summary {
  margin: 0;
  max-width: 44rem;
  color: var(--bp-ink-2);
  font-size: 0.96rem;
  line-height: 1.62;
}

.blueprint-stories__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  max-width: 720px;
}

.blueprint-stories__stats > div {
  display: grid;
  gap: 6px;
  align-content: start;
  padding-left: 18px;
  border-left: 1px solid var(--bp-rule-strong);
}

.blueprint-stories__stats dt {
  margin: 0;
  order: 2;
  color: var(--bp-ink-3);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.blueprint-stories__stats dd {
  margin: 0;
  order: 1;
  color: var(--bp-accent);
  font-family: var(--bp-font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.blueprint-stories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.blueprint-story {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  padding: 26px 24px;
  border: 1px solid var(--bp-rule);
  border-top: 2px solid var(--bp-ink);
  border-radius: 3px;
  background: var(--bp-card);
}

.blueprint-story__top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.blueprint-story__status {
  padding: 4px 10px;
  border: 1px solid var(--bp-accent);
  border-radius: 999px;
  background: var(--bp-accent-soft);
  color: var(--bp-accent);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.blueprint-story__metric {
  color: var(--bp-accent);
  font-family: var(--bp-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.blueprint-story__headline {
  margin: 0;
  font-family: var(--bp-font-display);
  font-style: normal;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.32;
  color: var(--bp-ink);
}

.blueprint-story blockquote {
  margin: 0;
  color: var(--bp-ink-2);
  font-size: 0.9rem;
  line-height: 1.58;
}

.blueprint-story__author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--bp-rule);
}

.blueprint-story__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: var(--bp-accent-soft);
  border: 1px solid var(--bp-rule);
  color: var(--bp-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.blueprint-story__who {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.blueprint-story__who strong {
  color: var(--bp-ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.blueprint-story__tags {
  display: flex;
  flex-wrap: wrap;
  color: var(--bp-ink-3);
  font-size: 0.76rem;
  line-height: 1.45;
}

.blueprint-story__tags span + span::before {
  content: "·";
  margin: 0 8px;
  color: var(--bp-rule-strong);
}

.blueprint-stories__note {
  margin: 0;
  max-width: 52rem;
  color: var(--bp-ink-3);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* --- About (diptych: copy left, image right) --- */
.blueprint-about {
  padding: var(--bp-section-pad) 0;
  background: var(--bp-paper-2);
}

.blueprint-about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.blueprint-about__image {
  width: 100%;
  height: auto;
  order: 2;
  border: 1px solid var(--bp-rule);
  border-radius: 3px;
}

.blueprint-about__copy {
  display: grid;
  gap: 18px;
  order: 1;
  min-width: 0;
}

.blueprint-about__copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.1;
}

.blueprint-about__copy p {
  margin: 0;
  color: var(--bp-ink-2);
  font-size: 1rem;
  line-height: 1.7;
}

.blueprint-about__copy strong {
  color: var(--bp-ink);
  font-weight: 700;
}

/* --- DRILL method (F4 step sequence, hairline rows) --- */
.blueprint-method {
  padding: var(--bp-section-pad) 0;
  background: var(--bp-paper);
}

.blueprint-method__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.blueprint-method__intro {
  position: sticky;
  top: 32px;
  display: grid;
  gap: 16px;
}

.blueprint-method__steps {
  display: grid;
}

.blueprint-method__steps article {
  display: grid;
  grid-template-columns: 76px minmax(0, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid var(--bp-rule);
}

.blueprint-method__steps article:last-child {
  border-bottom: 1px solid var(--bp-rule);
}

.blueprint-method__steps strong {
  font-family: var(--bp-font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--bp-accent);
}

.blueprint-method__steps h3 {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 680;
  line-height: 1.2;
}

.blueprint-method__steps p {
  margin: 0;
  color: var(--bp-ink-2);
  font-size: 0.96rem;
  line-height: 1.62;
}

/* --- Compare table (hairline editorial) --- */
.blueprint-compare {
  padding: var(--bp-section-pad) 0;
  background: var(--bp-paper);
}

.blueprint-compare__inner,
.blueprint-momentum__inner,
.blueprint-learn__inner,
.blueprint-included__inner,
.blueprint-faq__inner {
  display: grid;
  gap: 44px;
}

.blueprint-compare__table-wrap {
  min-width: 0;
  overflow-x: auto;
}

.blueprint-compare__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  border-top: 2px solid var(--bp-ink);
}

.blueprint-compare__table th,
.blueprint-compare__table td {
  padding: 20px 24px 20px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--bp-rule);
  font-size: 0.97rem;
  line-height: 1.55;
}

.blueprint-compare__table th {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blueprint-compare__table th:first-child {
  color: var(--bp-ink-3);
}

.blueprint-compare__table th:last-child,
.blueprint-compare__table td:last-child {
  padding-left: 24px;
  border-left: 1px solid var(--bp-rule-strong);
}

.blueprint-compare__table th:last-child {
  color: var(--bp-accent);
}

.blueprint-compare__table td:first-child {
  color: var(--bp-ink-3);
}

.blueprint-compare__table td:last-child {
  color: var(--bp-ink);
  font-weight: 620;
}

/* --- Market momentum --- */
.blueprint-momentum {
  padding: var(--bp-section-pad) 0;
  background: var(--bp-paper-2);
}

.blueprint-momentum__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blueprint-momentum__chips span {
  padding: 12px 22px;
  border: 1px solid var(--bp-rule-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--bp-ink);
  font-size: 0.92rem;
  font-weight: 600;
}

/* --- Who it's for (diptych, dash list) --- */
.blueprint-fit {
  padding: var(--bp-section-pad) 0;
  background: var(--bp-paper);
}

.blueprint-fit__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.blueprint-fit__inner > div {
  position: sticky;
  top: 32px;
  display: grid;
  gap: 16px;
}

.blueprint-fit__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blueprint-fit__list li {
  position: relative;
  padding: 18px 0 18px 32px;
  border-top: 1px solid var(--bp-rule);
  color: var(--bp-ink);
  font-size: 0.98rem;
  font-weight: 550;
  line-height: 1.55;
}

.blueprint-fit__list li:last-child {
  border-bottom: 1px solid var(--bp-rule);
}

.blueprint-fit__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--bp-accent);
  font-weight: 700;
}

/* --- What you learn (two-column checklist rows) --- */
.blueprint-learn {
  padding: var(--bp-section-pad) 0;
  background: var(--bp-paper-2);
}

.blueprint-learn__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(32px, 4vw, 64px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.blueprint-learn__list li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-top: 1px solid var(--bp-rule);
  color: var(--bp-ink);
  font-size: 0.96rem;
  font-weight: 550;
  line-height: 1.55;
}

.blueprint-learn__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--bp-accent);
  font-weight: 700;
}

/* --- Benefits (dark band, hairline columns) --- */
.blueprint-benefits {
  padding: var(--bp-section-pad) 0;
  background: var(--bp-dark);
  color: var(--bp-dark-ink);
}

.blueprint-benefits__inner {
  display: grid;
  gap: 48px;
}

.blueprint-benefits .blueprint-section-heading h2 {
  color: var(--bp-dark-ink);
}

.blueprint-benefits .blueprint-section-heading p {
  color: var(--bp-dark-ink-2);
}

.blueprint-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 clamp(28px, 3vw, 48px);
}

.blueprint-benefits__grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid var(--bp-dark-rule);
}

.blueprint-benefits__grid h3 {
  margin: 0;
  color: var(--bp-dark-accent);
  font-size: 1.08rem;
  font-weight: 680;
  line-height: 1.25;
}

.blueprint-benefits__grid p {
  margin: 0;
  color: var(--bp-dark-ink-2);
  font-size: 0.94rem;
  line-height: 1.6;
}

.blueprint-benefits__logos {
  display: grid;
  gap: 26px;
  justify-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--bp-dark-rule);
}

.blueprint-benefits__logos p {
  margin: 0;
  color: var(--bp-dark-ink-2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.blueprint-benefits__logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
}

.blueprint-benefits__logo-row img {
  height: 50px;
  width: auto;
  max-width: 180px;
}

/* --- Value stack (F3 tabular receipt rows) --- */
.blueprint-included {
  padding: var(--bp-section-pad) 0;
  background: var(--bp-paper);
}

.blueprint-included__grid {
  display: grid;
  border-top: 2px solid var(--bp-ink);
}

.blueprint-included__item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr) minmax(150px, auto);
  gap: 8px 32px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--bp-rule);
}

.blueprint-included__item--main {
  grid-column: 1 / -1;
  padding: 26px 24px;
  margin: 0 0 4px;
  background: var(--bp-accent-soft);
  border-left: 3px solid var(--bp-accent);
  border-bottom: 1px solid var(--bp-rule);
}

.blueprint-included__item h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 680;
  line-height: 1.3;
}

.blueprint-included__item--main h3 {
  font-family: var(--bp-font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.blueprint-included__item p {
  margin: 0;
  color: var(--bp-ink-2);
  font-size: 0.92rem;
  line-height: 1.58;
}

.blueprint-included__value {
  justify-self: end;
  text-align: right;
  color: var(--bp-accent);
  font-size: 0.84rem;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* --- Pricing (dark band) --- */
.blueprint-pricing {
  padding: var(--bp-section-pad) 0;
  background: var(--bp-dark);
  color: var(--bp-dark-ink);
}

.blueprint-pricing__inner {
  display: grid;
  justify-items: center;
}

.blueprint-pricing__card {
  display: grid;
  gap: 18px;
  justify-items: center;
  width: min(100%, 560px);
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--bp-dark-rule);
  border-top: 2px solid var(--bp-dark-accent);
  border-radius: 3px;
  text-align: center;
}

.blueprint-pricing__badge {
  padding: 5px 14px;
  border: 1px solid var(--bp-dark-accent);
  border-radius: 999px;
  background: transparent;
  color: var(--bp-dark-accent);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blueprint-pricing__card h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.12;
}

.blueprint-pricing__desc {
  margin: 0;
  max-width: 30rem;
  color: var(--bp-dark-ink-2);
  font-size: 0.95rem;
  line-height: 1.6;
}

.blueprint-pricing__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin: 0;
}

.blueprint-pricing__price s {
  color: var(--bp-dark-ink-2);
  font-size: 1.1rem;
}

.blueprint-pricing__price strong {
  color: var(--bp-dark-accent);
  font-family: var(--bp-font-display);
  font-size: clamp(2.3rem, 4vw, 3rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.blueprint-pricing__features {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.blueprint-pricing__features li {
  position: relative;
  padding-left: 26px;
  color: var(--bp-dark-ink-2);
  font-size: 0.92rem;
  line-height: 1.5;
}

.blueprint-pricing__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bp-dark-accent);
  font-weight: 700;
}

.blueprint-pricing__cta {
  width: 100%;
  justify-content: center;
  background: var(--bp-dark-accent);
  color: var(--bp-dark);
  font-weight: 700;
}

.blueprint-pricing__note {
  margin: 0;
  color: var(--bp-dark-ink-2);
  font-size: 0.8rem;
}

/* --- FAQ (hairline accordion, no boxes) --- */
.blueprint-faq {
  padding: var(--bp-section-pad) 0;
  background: var(--bp-paper);
}

.blueprint-faq h2 {
  max-width: 720px;
}

.blueprint-faq__list {
  display: grid;
  max-width: 860px;
  border-top: 2px solid var(--bp-ink);
}

.blueprint-faq details {
  border-bottom: 1px solid var(--bp-rule);
}

.blueprint-faq summary {
  position: relative;
  padding: 22px 44px 22px 0;
  color: var(--bp-ink);
  font-size: 1.03rem;
  font-weight: 650;
  line-height: 1.42;
  cursor: pointer;
  list-style: none;
}

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

.blueprint-faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bp-accent);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--bp-dur) var(--bp-ease-out);
}

.blueprint-faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.blueprint-faq p {
  margin: 0;
  padding: 0 0 24px;
  max-width: 44rem;
  color: var(--bp-ink-2);
  font-size: 0.96rem;
  line-height: 1.66;
}

/* --- Disclaimer --- */
.blueprint-disclaimer {
  padding: 56px 0 64px;
  background: var(--bp-paper-2);
  color: var(--bp-ink);
}

.blueprint-disclaimer__inner {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.blueprint-disclaimer__heading {
  margin: 0;
  color: var(--bp-ink-3);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blueprint-disclaimer__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.blueprint-disclaimer__list li {
  color: var(--bp-ink-3);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* --- Final CTA (statement) --- */
.blueprint-cta {
  padding: var(--bp-section-pad) 0;
  background: var(--bp-paper);
  border-top: 1px solid var(--bp-rule);
  color: var(--bp-ink);
}

.blueprint-cta__inner {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.blueprint-cta h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.05;
}

.blueprint-cta .button--light {
  background: var(--bp-ink);
  color: var(--bp-dark-ink);
}

/* --- Sticky bottom CTA bar (C4) --- */
.blueprint-stickybar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px clamp(16px, 4vw, 32px);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: var(--bp-card);
  border-top: 1px solid var(--bp-rule);
  transform: translateY(102%);
  transition: transform var(--bp-dur) var(--bp-ease-out);
}

.blueprint-stickybar.is-visible {
  transform: translateY(0);
}

.blueprint-stickybar__label {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--bp-ink-2);
  font-size: 0.9rem;
}

.blueprint-stickybar__label strong {
  color: var(--bp-ink);
  font-weight: 700;
}

.blueprint-stickybar .button {
  flex: 0 0 auto;
  width: auto;
  min-height: 46px;
  white-space: nowrap;
  background: var(--bp-ink);
  color: var(--bp-dark-ink);
}

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

  .blueprint-stickybar,
  .blueprint-faq summary::after {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav__links {
    order: 3;
    width: 100%;
    gap: 24px;
    font-size: 16px;
  }

  .hero__content {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .hero h1 {
    max-width: 640px;
  }

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

  .pathways__header,
  .pathways__grid,
  .audience__header,
  .audience__grid,
  .audience__stats {
    grid-template-columns: 1fr;
  }

  .about-story__inner,
  .about-hero__signals,
  .about-difference__grid,
  .about-expertise__grid,
  .about-process__grid,
  .blueprint-hero__inner,
  .blueprint-method__inner,
  .blueprint-fit__inner,
  .blueprint-about__inner {
    grid-template-columns: 1fr;
  }

  .blueprint-hero h1 {
    max-width: 760px;
  }

  .blueprint-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "text" "proof" "cta";
  }

  .blueprint-hero__proof {
    border-left: 0;
    border-top: 1px solid var(--bp-rule-strong);
    padding-left: 0;
    padding-top: 8px;
  }

  .blueprint-about__image {
    order: 0;
  }

  .blueprint-method__intro,
  .blueprint-fit__inner > div {
    position: static;
  }

  .blueprint-benefits__grid {
    grid-template-columns: 1fr 1fr;
  }

  .blueprint-stories__grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .about-story__visual {
    border-radius: 14px;
  }

  .pathways__header {
    align-items: start;
  }

  .pathway-card {
    min-height: auto;
  }

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

  .insight__content {
    max-width: 760px;
  }

  .audience__header > p {
    max-width: 760px;
  }

  .final-cta {
    padding: 92px 0 100px;
  }

  .about-hero__inner {
    padding-top: 72px;
  }

  .about-story__intro h2,
  .about-difference__header h2,
  .about-expertise__header h2,
  .about-process__header h2,
  .about-vision__inner h2 {
    max-width: 760px;
  }

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

  .site-footer__meta {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1280px);
  }

  .blueprint-hero {
    min-height: auto;
  }

  .blueprint-hero__inner {
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .blueprint-hero__headline {
    gap: 18px;
  }

  .blueprint-kicker {
    font-size: 0.64rem;
  }

  .blueprint-hero h1 {
    font-size: clamp(1.8rem, 7.6vw, 2.4rem);
    line-height: 1.16;
  }

  .blueprint-hero__summary {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .blueprint-section-heading h2,
  .blueprint-method__intro h2,
  .blueprint-fit h2,
  .blueprint-faq h2,
  .blueprint-stories__heading h2,
  .blueprint-about__copy h2 {
    font-size: clamp(1.7rem, 7.4vw, 2.2rem);
  }

  .blueprint-stories__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blueprint-benefits__grid,
  .blueprint-learn__list {
    grid-template-columns: 1fr;
  }

  .blueprint-benefits__logo-row img {
    height: 40px;
    max-width: 150px;
  }

  .blueprint-method__steps article {
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
    gap: 12px 16px;
  }

  .blueprint-method__steps article p {
    grid-column: 2;
  }

  .blueprint-method__steps strong {
    font-size: 2rem;
  }

  .blueprint-included__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .blueprint-included__item--main {
    padding: 22px 18px;
  }

  .blueprint-included__value {
    justify-self: start;
    text-align: left;
  }

  .blueprint-cta h2 {
    font-size: clamp(1.9rem, 8.4vw, 2.7rem);
  }

  .blueprint-stickybar__label {
    font-size: 0.82rem;
  }

  .hero {
    min-height: 100svh;
  }

  .problem {
    padding: 28px 0 72px;
  }

  .problem__inner {
    gap: 34px;
  }

  .problem__trust {
    gap: 14px;
  }

  .problem__trust-label {
    display: none;
  }

  .problem__trust-mobile {
    display: none;
  }

  .problem__trust-mobile,
  .problem__summary p {
    margin: 0;
  }

  .problem__logos {
    display: none;
  }

  .problem__intro {
    gap: 14px;
    text-align: left;
  }

  .problem__headline h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(1.85rem, 8.2vw, 2.55rem);
    line-height: 1.12;
  }

  .problem__summary p:not(.problem__summary-mobile) {
    display: none;
  }

  .problem__summary-mobile {
    display: block;
    max-width: none;
    margin: 0;
    padding-top: 0;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .problem__grid {
    gap: 12px;
  }

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

  .problem-card__icon {
    margin-bottom: 18px;
  }

  .problem-card h3 {
    font-size: 1.08rem;
  }

  .problem-card p {
    font-size: 0.9rem;
  }

  .pathways {
    padding: 72px 0 80px;
  }

  .pathways__inner {
    gap: 34px;
  }

  .pathways__header {
    gap: 24px;
  }

  .pathways__eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
  }

  .pathways__lead h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1.04;
  }

  .pathways__lead > p {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .pathways__philosophy {
    padding-left: 16px;
  }

  .pathways__philosophy strong {
    font-size: 1.2rem;
  }

  .pathways__grid {
    gap: 12px;
  }

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

  .pathway-card__body {
    gap: 14px;
    margin-top: 34px;
  }

  .pathway-card h3 {
    font-size: 1.65rem;
  }

  .pathway-card p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .pathway-card a {
    margin-top: 28px;
    font-size: 0.94rem;
  }

  .insight {
    padding: 76px 0 80px;
  }

  .insight__inner {
    gap: 34px;
  }

  .insight__eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
  }

  .insight__content h2 {
    font-size: clamp(2.15rem, 9.6vw, 3.1rem);
    line-height: 1.06;
  }

  .insight__content > p {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .insight__panel {
    padding: 0;
    border-radius: 0;
  }

  .about-hero {
    padding-bottom: 72px;
  }

  .about-hero__inner {
    gap: 18px;
    padding-top: 56px;
  }

  .about-hero__inner h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.6rem);
    line-height: 1.02;
  }

  .about-hero__summary {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .about-story,
  .about-difference,
  .about-expertise,
  .about-process,
  .about-vision {
    padding: 76px 0 84px;
  }

  .about-story__inner,
  .about-difference__inner,
  .about-expertise__inner,
  .about-process__inner,
  .about-vision__inner {
    gap: 24px;
  }

  .about-story__intro h2,
  .about-vision__lead h2,
  .about-difference__header h2,
  .about-expertise__header h2,
  .about-process__header h2,
  .about-vision__inner h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8vw, 2.85rem);
    line-height: 1.08;
  }

  .about-vision__intro {
    gap: 16px;
  }

  .about-vision__summary {
    padding-top: 0;
  }

  .about-story__body {
    gap: 16px;
  }

  .about-story__visual {
    display: grid;
    gap: 12px;
    width: auto;
    max-width: none;
    padding: 22px;
    border-radius: 14px;
  }

  .about-story__visual-node {
    display: block;
    min-height: 0;
    padding: 0;
    white-space: normal;
  }

  .about-story__visual-line {
    width: 1px;
    height: 30px;
    margin-left: 10px;
    background: linear-gradient(180deg, rgba(183, 121, 31, 0.92), rgba(183, 121, 31, 0.18));
  }

  .about-story__body p,
  .about-difference__card p,
  .about-expertise__card p,
  .about-process__step p,
  .about-vision__summary,
  .about-mission__lead,
  .about-mission__item p:last-child {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .about-vision__summary {
    max-width: none;
  }

  .about-difference__card,
  .about-expertise__card,
  .about-process__step,
  .about-mission__item {
    padding: 24px 22px;
  }

  .about-story__block {
    padding: 20px 18px;
  }

  .about-mission__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-difference__card h3,
  .about-expertise__card h3,
  .about-process__step h3 {
    font-size: 1.08rem;
  }

  .insight__globe {
    min-height: 300px;
    height: 62vh;
    max-height: 460px;
  }

  .audience {
    padding: 76px 0 80px;
  }

  .audience__inner {
    gap: 34px;
  }

  .audience__header {
    gap: 16px;
    text-align: left;
  }

  .audience__eyebrow {
    margin-bottom: 0;
    font-size: 0.72rem;
  }

  .audience__header h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(1.82rem, 7.9vw, 2.5rem);
    line-height: 1.08;
  }

  .audience__header > p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .audience__grid {
    gap: 12px;
  }

  .audience__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding-block: 2px;
  }

  .audience-stat {
    min-width: 0;
    text-align: center;
  }

  .audience-stat strong {
    font-size: 1.4rem;
  }

  .audience-stat p,
  .audience-stat__hint {
    max-width: none;
    margin-inline: auto;
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .audience-stat__value {
    gap: 8px;
  }

  .audience-stat__pulse {
    width: 6px;
    height: 6px;
  }

  .audience-stat__tooltip {
    width: min(190px, calc(100vw - 40px));
    padding: 9px 11px;
    font-size: 0.66rem;
  }

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

  .audience-card span {
    margin-bottom: 22px;
  }

  .audience-card h3 {
    font-size: 1.04rem;
  }

  .audience-card p {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .final-cta {
    padding: 80px 0 88px;
  }

  .final-cta__inner {
    gap: 18px;
  }

  .final-cta__inner h2 {
    font-size: clamp(2rem, 10.8vw, 3rem);
    line-height: 1.02;
  }

  .final-cta__summary {
    max-width: 32ch;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .final-cta__actions {
    width: 100%;
    gap: 12px;
  }

  .final-cta__actions .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 40px;
    padding-bottom: 22px;
  }

  .site-footer__inner {
    gap: 28px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
  }

  .site-footer__column a {
    font-size: 0.94rem;
  }

  .site-footer__meta {
    gap: 12px;
    padding-top: 0;
    border-top: 0;
  }

  .site-footer__meta p:first-child {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .site-footer__meta p:last-child {
    font-size: 0.76rem;
  }

  .site-footer__brand {
    margin-top: 35px;
    font-size: clamp(6.4rem, 30vw, 10rem);
    line-height: 0.82;
    transform: translateY(0);
    letter-spacing: -0.03em;
  }

  .nav {
    position: relative;
    padding-top: 18px;
    gap: 18px;
  }

  .nav__links {
    display: none;
  }

  .lang-switch {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
    position: static;
  }

  .mobile-menu[open]::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(7, 14, 24, 0.28);
    backdrop-filter: blur(10px);
    z-index: 11;
  }

  .mobile-menu[open] .mobile-menu__toggle {
    position: relative;
    z-index: 13;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.18);
  }

  .mobile-menu__panel {
    position: fixed;
    top: 86px;
    right: 16px;
    left: 16px;
    width: auto;
    bottom: 16px;
    max-height: none;
    padding: 18px 18px 20px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 30px;
    background: rgba(251, 248, 243, 0.96);
    box-shadow: 0 30px 80px rgba(7, 14, 24, 0.18);
    z-index: 12;
  }

  .mobile-menu__links a {
    padding-block: 22px;
    padding-inline: 0 34px;
    color: #141414;
    font-size: 1.15rem;
    font-weight: 500;
    border-bottom-color: rgba(20, 20, 20, 0.08);
  }

  .mobile-menu__links a::after {
    right: 0;
    color: rgba(20, 20, 20, 0.48);
  }

  .mobile-submenu {
    border-bottom-color: rgba(20, 20, 20, 0.08);
  }

  .mobile-submenu summary {
    padding-block: 22px;
    padding-inline: 0 34px;
    color: #141414;
    font-size: 1.15rem;
  }

  .mobile-submenu summary::after {
    right: 0;
    color: rgba(20, 20, 20, 0.48);
  }

  .mobile-submenu__panel > a {
    color: rgba(20, 20, 20, 0.72);
    font-size: 1rem;
  }

  .mobile-menu__meta {
    position: sticky;
    bottom: 0;
    margin-top: 12px;
    display: grid;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(20, 20, 20, 0.08);
    background: linear-gradient(
      180deg,
      rgba(251, 248, 243, 0) 0%,
      rgba(251, 248, 243, 0.9) 18%,
      rgba(251, 248, 243, 0.98) 100%
    );
  }

  .lang-switch--mobile {
    display: inline-flex;
    justify-self: start;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .lang-switch--mobile .lang-switch__option {
    color: rgba(20, 20, 20, 0.54);
    font-size: 0.92rem;
  }

  .lang-switch--mobile .lang-switch__option.is-active {
    color: #151515;
  }

  .mobile-menu__cta {
    min-height: 58px;
    border-radius: 18px;
    background: #151515;
    color: #fff;
  }

  .hero:has(.mobile-menu[open]) .hero__content,
  .hero:has(.mobile-menu[open]) .hero__footer {
    opacity: 0;
    pointer-events: none;
  }

  .hero:has(.mobile-menu[open]) .hero__overlay--left,
  .hero:has(.mobile-menu[open]) .hero__overlay--bottom {
    opacity: 0.18;
  }

  .button {
    width: 100%;
    min-height: 58px;
    border-radius: 14px;
    font-size: 17px;
  }

  .button--join {
    display: none;
  }

  .hero__background {
    background:
      linear-gradient(180deg, rgba(8, 18, 30, 0.02) 0%, rgba(8, 18, 30, 0.2) 40%),
      url("./assets/hero-minergi-web-mobile.jpg") 63% 16% / cover no-repeat;
    transform: none;
  }

  .hero__overlay--left {
    background: linear-gradient(
      180deg,
      rgba(8, 18, 30, 0.02) 0%,
      rgba(8, 18, 30, 0.08) 18%,
      rgba(8, 18, 30, 0.32) 46%,
      rgba(8, 18, 30, 0.78) 72%,
      rgba(8, 18, 30, 0.98) 100%
    );
  }

  .hero__overlay--bottom {
    background: linear-gradient(
      180deg,
      rgba(8, 18, 30, 0) 48%,
      rgba(8, 18, 30, 0.26) 62%,
      rgba(8, 18, 30, 0.7) 78%,
      rgba(8, 18, 30, 1) 100%
    );
  }

  .hero__content {
    align-items: flex-end;
    min-height: calc(100svh - 88px);
    padding-top: 140px;
    padding-bottom: 22px;
  }

  .eyebrow {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 12.6vw, 3.9rem);
    line-height: 0.96;
  }

  .hero__summary {
    margin-top: 16px;
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .hero__summary:not(.hero__summary--mobile) {
    display: none;
  }

  .hero__summary--mobile {
    display: block;
  }

  .hero__actions {
    margin-top: 22px;
    gap: 12px;
  }

  .trust--mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    margin-top: 16px;
    color: rgba(247, 242, 235, 0.72);
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .trust--mobile p {
    margin: 0;
  }

  .trust--mobile .trust__avatars img {
    width: 28px;
    height: 28px;
    margin-left: -8px;
    border-width: 1.5px;
  }

  .trust--mobile .trust__avatars img:first-child {
    margin-left: 0;
  }

  .trust--mobile strong {
    font-weight: 600;
  }

  .hero__actions .button--ghost {
    display: none;
  }

  .trust {
    display: none;
  }

  .trust.trust--mobile {
    display: block;
  }

  .hero__footer {
    display: none;
  }

  .button:not(.button--join) {
    min-height: 56px;
    font-size: 1rem;
    border-radius: 16px;
  }
}

/* Support Page
   -------------------------------------------------------------- */

.support-hero {
  padding: 0 0 64px;
  background:
    radial-gradient(circle at 50% 0%, rgba(126, 196, 240, 0.12), rgba(126, 196, 240, 0) 36%),
    var(--bg);
}

.support-hero__inner {
  display: grid;
  gap: 20px;
  padding-top: 88px;
  max-width: 46rem;
}

.support-hero__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.support-hero__intro {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.support-hero__intro a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-reach {
  padding: 104px 0 112px;
  background: #fff;
  color: #111827;
}

.support-reach__header {
  display: grid;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.support-reach__eyebrow {
  margin: 0;
  color: #b7791f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-reach__header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 650;
}

.support-reach__header p {
  margin: 0;
  color: rgba(71, 85, 105, 0.9);
  font-size: 1.02rem;
  line-height: 1.7;
}

.support-reach > .container {
  width: min(1520px, calc(100% - 64px));
}

.support-reach__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.support-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #fbfbfa;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.support-card h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 1.25rem;
  font-weight: 600;
}

.support-card > p {
  margin: 0 0 20px;
  color: rgba(71, 85, 105, 0.88);
  font-size: 0.95rem;
  line-height: 1.65;
}

.support-card__hours {
  display: grid;
  gap: 10px;
  margin: 0;
}

.support-card__hours div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.92rem;
}

.support-card__hours div:first-child {
  padding-top: 0;
  border-top: 0;
}

.support-card__hours dt {
  margin: 0;
  color: #111827;
  font-weight: 600;
}

.support-card__hours dd {
  margin: 0;
  color: rgba(71, 85, 105, 0.75);
}

.support-card__link {
  display: inline-block;
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: #111827;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.support-card__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
}

.support-card__list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 12px;
  overflow-wrap: anywhere;
}

.support-card__list li span {
  color: #111827;
  font-weight: 600;
}

.support-card__list li a {
  color: #b7791f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-card__footnote {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: rgba(71, 85, 105, 0.68);
  font-size: 0.8rem;
  line-height: 1.55;
}

.support-cta {
  position: relative;
  overflow: hidden;
  padding: 112px 0 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(circle at 50% 100%, rgba(126, 196, 240, 0.12), rgba(126, 196, 240, 0) 44%),
    #060b11;
}

.support-cta__inner {
  display: grid;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.support-cta__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-cta__inner h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.06;
  font-weight: 650;
}

.support-cta__inner > p {
  margin: 0;
  color: rgba(239, 231, 221, 0.78);
  font-size: 1.02rem;
  line-height: 1.7;
}

.support-cta__inner p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-cta__actions {
  margin-top: 4px;
}

.support-cta__note {
  margin-top: 16px;
  color: rgba(239, 231, 221, 0.56);
  font-size: 0.85rem;
}

@media (max-width: 1080px) {
  .support-reach__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .support-hero__inner {
    padding-top: 40px;
    gap: 16px;
  }

  .support-reach {
    padding: 72px 0 80px;
  }

  .support-reach__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .support-cta {
    padding: 80px 0 88px;
  }
}

/* Legal pages (/privacy) — long-form prose on white, reusing the support page
   shell (nav + hero + site footer). One measure-constrained column; the copy
   itself is injected by the i18n layer as HTML, so the paragraph/list rules
   below are element-scoped rather than class-scoped. */
.legal {
  padding: 88px 0 104px;
  background: #fff;
  color: #111827;
}

.legal__inner {
  display: grid;
  gap: 40px;
  max-width: 760px;
}

.legal__intro {
  display: grid;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
}

.legal__section {
  display: grid;
  gap: 12px;
}

.legal__section h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.3;
  font-weight: 650;
}

.legal p {
  margin: 0;
  color: rgba(17, 24, 39, 0.78);
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: rgba(17, 24, 39, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal a {
  color: #b7791f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__section > div {
  display: grid;
  gap: 12px;
}

@media (max-width: 720px) {
  .legal {
    padding: 64px 0 80px;
  }

  .legal__inner {
    gap: 32px;
  }
}
