:root {
  color-scheme: light dark;
  --paper: #f4f2ea;
  --paper-2: #ebe8de;
  --ink: #101514;
  --muted: #66706c;
  --soft: #dfe6e1;
  --dark: #0d1315;
  --dark-2: #141c1f;
  --line: rgba(16, 21, 20, 0.14);
  --line-dark: rgba(238, 244, 240, 0.18);
  --accent: #b8d7ad;
  --accent-2: #4d785d;
  --max: 1180px;
  font-family: Inter, "Helvetica Neue", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
}

body.home {
  background: var(--dark);
  color: #f4f6f1;
}

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

p {
  color: var(--muted);
  margin: 0 0 18px;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

h1,
h2 {
  font-family: inherit;
  font-weight: 740;
}

h1 {
  font-size: clamp(48px, 8vw, 104px);
  letter-spacing: -0.015em;
  max-width: 1040px;
}

h2 {
  font-size: clamp(34px, 5vw, 68px);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 22px;
  font-weight: 680;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.home .site-header {
  position: absolute;
  width: 100%;
  border-bottom: 0;
  background: transparent;
  color: #f6f7f2;
  backdrop-filter: none;
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 28px;
}

.home .nav {
  width: min(1380px, calc(100% - 72px));
}

.brand {
  display: inline-flex;
  font-weight: 760;
  line-height: 1.15;
  justify-self: start;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 70px;
  width: min(636px, 52vw);
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
  justify-self: center;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--ink);
}

.home .nav-links {
  color: rgba(246, 247, 242, 0.72);
}

.home .nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  justify-self: end;
}

.nav-actions .button {
  min-height: 30px;
  border: 0;
  border-radius: 39px;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  padding: 0 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  padding: 3px;
}

.language-switch span,
.language-switch strong {
  min-width: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
}

.language-switch strong {
  background: rgba(16, 21, 20, 0.08);
  color: var(--ink);
}

.home .language-switch {
  background: rgba(13, 19, 21, 0.22);
  color: rgba(246, 247, 242, 0.56);
}

.home .language-switch strong {
  background: rgba(246, 247, 242, 0.14);
  color: #fff;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 215, 173, 0.58);
  border-radius: 2px;
  background: transparent;
  color: inherit;
  font-weight: 400;
  padding: 0 18px;
  white-space: nowrap;
}

.button:hover {
  border-color: rgba(184, 215, 173, 0.88);
  background: rgba(184, 215, 173, 0.08);
}

.button.secondary {
  border-color: rgba(246, 247, 242, 0.28);
  background: transparent;
}

.light .button.secondary,
.article .button.secondary,
.choice .button.secondary {
  border-color: rgba(16, 21, 20, 0.24);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.anchor-marker {
  display: block;
  position: relative;
  top: -96px;
  width: 0;
  height: 0;
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: #f7f8f4;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.86) brightness(1.06) contrast(0.98);
  opacity: 1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(13, 19, 21, 0.08) 0%, rgba(13, 19, 21, 0.36) 44%, rgba(13, 19, 21, 0.8) 100%),
    linear-gradient(180deg, rgba(13, 19, 21, 0.16) 0%, rgba(13, 19, 21, 0.22) 48%, rgba(13, 19, 21, 0.76) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(132px, 20vh, 210px) 0 68px;
  text-align: center;
}

.hero-inner h1 {
  font-size: clamp(58px, 8.8vw, 125px);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-left: auto;
  margin-right: auto;
}

.hero-inner .eyebrow {
  margin-bottom: clamp(24px, 3vw, 38px);
}

.hero-inner .lead {
  margin-top: clamp(34px, 4vw, 52px);
}

.hero-inner .actions {
  margin-top: clamp(42px, 5vw, 64px);
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.lead {
  color: rgba(247, 248, 244, 0.78);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 200;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 26px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
  border-bottom: 1px solid var(--line);
}

.home .section {
  background: var(--dark);
  border-bottom-color: var(--line-dark);
  color: #f4f6f1;
}

.home .section p {
  color: rgba(244, 246, 241, 0.66);
}

.section.dark {
  background: transparent;
  color: var(--ink);
  border-bottom-color: var(--line);
}

.section.dark p {
  color: var(--muted);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  justify-items: center;
  margin-bottom: 38px;
  text-align: center;
}

.section-head p {
  max-width: 680px;
  font-weight: 200;
  margin-bottom: 0;
}

.path-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home .path-map {
  border-color: var(--line-dark);
}

.path-node {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  padding: clamp(24px, 3vw, 38px);
}

.home .path-node {
  border-right-color: var(--line-dark);
}

.path-node:last-child {
  border-right: 0;
}

.path-node.muted {
  color: rgba(16, 21, 20, 0.62);
}

.home .path-node.muted {
  color: rgba(244, 246, 241, 0.62);
}

.path-node.active {
  background: rgba(244, 246, 241, 0.035);
  color: #f4f6f1;
}

.path-node.active p {
  color: rgba(244, 246, 241, 0.66);
}

.path-node a {
  display: inline-flex;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-size: 14px;
  font-weight: 740;
  margin-top: 18px;
  padding-bottom: 3px;
}

.path-index {
  color: var(--muted);
  font-family: inherit;
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 760;
  line-height: 0.9;
  margin-bottom: 70px;
}

.home .path-index {
  color: rgba(244, 246, 241, 0.26);
}

.path-node.active .path-index {
  color: rgba(244, 246, 241, 0.24);
}

.path-node h3 {
  margin: 16px 0 12px;
}

.path-node p {
  font-size: 15px;
  margin-bottom: 0;
}

.status {
  justify-self: start;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  padding: 5px 10px;
}

.home .status {
  border-color: rgba(244, 246, 241, 0.2);
  color: rgba(244, 246, 241, 0.62);
}

.status.active {
  border-color: rgba(43, 107, 77, 0.36);
  color: var(--accent-2);
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.feature-band .rule {
  border-top: 1px solid var(--line);
  max-width: 720px;
  padding-top: 26px;
}

.feature-band .rule p {
  font-weight: 200;
}

.home .feature-band .rule {
  border-top-color: var(--line-dark);
}

#learning-center .rule {
  border-top: 0;
  padding-top: 0;
}

.home .light .button.secondary,
.home .article .button.secondary,
.home .choice .button.secondary {
  border-color: rgba(246, 247, 242, 0.28);
}

.split-lines {
  border-top: 1px solid var(--line-dark);
}

.split-line {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  border-bottom: 1px solid var(--line-dark);
  padding: 22px 0;
}

.split-line h3 {
  font-size: 18px;
}

.split-line p {
  margin: 0;
}

.article {
  max-width: 1040px;
  padding: clamp(62px, 9vw, 106px) 0;
}

.article h1 {
  font-size: clamp(46px, 7vw, 86px);
  max-width: 860px;
  margin-bottom: 26px;
}

.article .lead {
  color: var(--muted);
  margin-bottom: 34px;
}

.article h2 {
  border-top: 1px solid var(--line);
  font-family: inherit;
  font-size: 20px;
  font-weight: 760;
  margin: 34px 0 12px;
  padding-top: 24px;
}

.article > p:not(.lead),
.article .note,
.article .actions,
.choice-list {
  max-width: 760px;
}

.note {
  border-left: 3px solid var(--accent-2);
  background: rgba(43, 107, 77, 0.08);
  color: var(--muted);
  padding: 16px 18px;
}

.choice-list {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.choice h2 {
  border: 0;
  font-family: inherit;
  font-size: 22px;
  margin: 0 0 10px;
  padding: 0;
}

.choice p {
  margin-bottom: 0;
}

.apply-page {
  position: relative;
  overflow-x: hidden;
  background: var(--dark);
  color: #f4f6f1;
}

.apply-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("image4.png") center center / cover no-repeat;
  opacity: 0.3;
}

.apply-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 60% 28%, rgba(13, 19, 21, 0.44) 0%, rgba(13, 19, 21, 0.8) 58%, rgba(13, 19, 21, 0.98) 100%),
    linear-gradient(180deg, rgba(13, 19, 21, 0.52), rgba(13, 19, 21, 0.98));
  pointer-events: none;
}

.apply-page .site-header {
  border-bottom-color: rgba(244, 246, 241, 0.08);
  background: rgba(13, 19, 21, 0.78);
  color: #f6f7f2;
  backdrop-filter: blur(18px);
}

.apply-page .nav-links {
  color: rgba(246, 247, 242, 0.58);
}

.apply-page .nav-links a:hover {
  color: #fff;
}

.apply-page .language-switch {
  background: rgba(246, 247, 242, 0.06);
  color: rgba(246, 247, 242, 0.56);
}

.apply-page .language-switch strong {
  background: rgba(246, 247, 242, 0.14);
  color: #fff;
}

.apply-page .article {
  max-width: var(--max);
  padding: clamp(108px, 13vw, 170px) 0 clamp(76px, 9vw, 120px);
}

.apply-page .article h1 {
  max-width: 840px;
  color: #f4f6f1;
  font-size: clamp(66px, 8vw, 116px);
  font-weight: 500;
  margin-bottom: 28px;
}

.apply-page .article .lead {
  max-width: 760px;
  color: rgba(244, 246, 241, 0.6);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.68;
  margin-left: 0;
  margin-right: 0;
}

.apply-page .choice-list {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  margin: clamp(48px, 6vw, 78px) 0 clamp(54px, 7vw, 92px);
}

.apply-page .choice {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line-dark);
  border-bottom: 0;
  padding: clamp(26px, 3vw, 38px);
}

.apply-page .choice:last-child {
  border-right: 0;
}

.apply-page .choice .path-index {
  margin-bottom: clamp(54px, 8vw, 86px);
}

.apply-page .choice h2 {
  color: #f4f6f1;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  margin-bottom: 14px;
}

.apply-page .choice p {
  color: rgba(244, 246, 241, 0.58);
  font-size: 15px;
}

.apply-page .choice .button {
  min-height: auto;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: var(--accent);
  font-size: 14px;
  margin-top: auto;
  padding: 0 0 3px;
}

.apply-page .article > h2 {
  max-width: 760px;
  border-top: 1px solid var(--line-dark);
  color: #f4f6f1;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  margin-top: 0;
  padding-top: 34px;
}

.apply-page .article > p:not(.lead),
.apply-page .article .note,
.apply-page .article .actions {
  max-width: 820px;
}

.apply-page .article > p:not(.lead) {
  color: rgba(244, 246, 241, 0.58);
}

.apply-page .note {
  border-left-color: var(--accent);
  background: rgba(244, 246, 241, 0.045);
  color: rgba(244, 246, 241, 0.62);
}

.apply-page .actions {
  justify-content: flex-start;
}

.apply-page .button {
  border-radius: 999px;
}

.about-page {
  background: var(--dark);
  color: #f4f6f1;
}

.about-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("imgi_2_image.webp") center center / cover no-repeat;
  filter: saturate(0.8) brightness(0.78) contrast(1.04);
}

.about-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 48% 34%, rgba(13, 19, 21, 0.18) 0%, rgba(13, 19, 21, 0.56) 56%, rgba(13, 19, 21, 0.94) 100%),
    linear-gradient(180deg, rgba(13, 19, 21, 0.12) 0%, rgba(13, 19, 21, 0.88) 100%);
  pointer-events: none;
}

.about-page .site-header {
  border-bottom-color: rgba(244, 246, 241, 0.08);
  background: rgba(13, 19, 21, 0.42);
  color: #f6f7f2;
}

.about-page .nav-links {
  color: rgba(246, 247, 242, 0.58);
}

.about-page .nav-links a:hover {
  color: #fff;
}

.about-page .language-switch {
  background: rgba(246, 247, 242, 0.06);
  color: rgba(246, 247, 242, 0.56);
}

.about-page .language-switch strong {
  background: rgba(246, 247, 242, 0.14);
  color: #fff;
}

.about-hero {
  position: relative;
  padding: clamp(98px, 12vw, 150px) 0 clamp(62px, 8vw, 96px);
}

.about-hero h1 {
  max-width: 980px;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 500;
}

.about-hero .lead {
  margin-left: 0;
  max-width: 760px;
  color: rgba(244, 246, 241, 0.64);
}

.about-hero .actions {
  justify-content: flex-start;
}

.about-stack {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: clamp(70px, 8vw, 110px);
}

.about-block {
  display: grid;
  grid-template-columns: minmax(92px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(34px, 5vw, 64px) 0;
}

.about-block:last-child {
  border-bottom: 0;
}

.about-index {
  color: rgba(244, 246, 241, 0.18);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 760;
  line-height: 0.9;
}

.about-block h2 {
  max-width: 760px;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500;
  margin-bottom: 22px;
}

.about-block p {
  max-width: 760px;
  color: rgba(244, 246, 241, 0.62);
  font-size: 16px;
}

.about-block a {
  display: inline-flex;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-size: 14px;
  font-weight: 400;
  margin-top: 12px;
  padding-bottom: 3px;
}

.program-page {
  background: var(--dark);
  color: #f4f6f1;
}

.program-page .site-header {
  border-bottom-color: rgba(244, 246, 241, 0.08);
  background: var(--dark);
  color: #f6f7f2;
}

.program-page .nav-links {
  color: rgba(246, 247, 242, 0.58);
}

.program-page .nav-links a:hover {
  color: #fff;
}

.program-page .language-switch {
  background: rgba(246, 247, 242, 0.06);
  color: rgba(246, 247, 242, 0.56);
}

.program-page .language-switch strong {
  background: rgba(246, 247, 242, 0.14);
  color: #fff;
}

.program-hero {
  display: grid;
  min-height: 62vh;
  align-content: center;
  padding: clamp(96px, 12vw, 150px) 0 clamp(52px, 7vw, 82px);
}

.program-hero h1 {
  max-width: 960px;
  font-size: clamp(52px, 6.4vw, 80px);
  font-weight: 400;
}

.program-hero .lead {
  margin-left: 0;
  max-width: 760px;
  color: rgba(244, 246, 241, 0.64);
}

.program-hero .actions {
  justify-content: flex-start;
}

.program-hero .button {
  border-radius: 999px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  margin-bottom: clamp(70px, 8vw, 110px);
}

.program-block {
  min-height: 260px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(24px, 3vw, 38px);
}

.program-block span {
  display: block;
  color: rgba(244, 246, 241, 0.18);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 760;
  line-height: 0.9;
  margin-bottom: 46px;
}

.program-block h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
}

.program-block p {
  color: rgba(244, 246, 241, 0.62);
  font-size: 15px;
  margin-bottom: 0;
}

.program-block a {
  display: inline-flex;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-size: 14px;
  font-weight: 400;
  margin-top: 18px;
  padding-bottom: 3px;
}

.waitlist-page {
  background: var(--dark);
  color: #f4f6f1;
}

.waitlist-page .site-header {
  border-bottom-color: rgba(244, 246, 241, 0.08);
  background: var(--dark);
  color: #f6f7f2;
}

.waitlist-page .nav-links {
  color: rgba(246, 247, 242, 0.58);
}

.waitlist-page .nav-links a:hover {
  color: #fff;
}

.waitlist-page .language-switch {
  background: rgba(246, 247, 242, 0.06);
  color: rgba(246, 247, 242, 0.56);
}

.waitlist-page .language-switch strong {
  background: rgba(246, 247, 242, 0.14);
  color: #fff;
}

.waitlist-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
  padding: clamp(96px, 12vw, 150px) 0 clamp(78px, 9vw, 118px);
}

.waitlist-copy h1 {
  max-width: 860px;
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 500;
}

.waitlist-copy .lead {
  margin-left: 0;
  max-width: 720px;
  color: rgba(244, 246, 241, 0.64);
}

.waitlist-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line-dark);
  background: rgba(244, 246, 241, 0.035);
  padding: clamp(24px, 3vw, 36px);
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: rgba(244, 246, 241, 0.56);
  font-size: 12px;
}

.waitlist-form input,
.waitlist-form select {
  min-height: 44px;
  border: 1px solid rgba(244, 246, 241, 0.18);
  border-radius: 0;
  background: rgba(13, 19, 21, 0.44);
  color: #f4f6f1;
  font: inherit;
  padding: 0 12px;
}

.waitlist-form input::placeholder {
  color: rgba(244, 246, 241, 0.32);
}

.waitlist-form p {
  color: rgba(244, 246, 241, 0.44);
  font-size: 12px;
  margin: 0;
}

.login-page {
  position: relative;
  overflow-x: hidden;
  background: var(--dark);
  color: #f4f6f1;
}

.login-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("image4.png") center center / cover no-repeat;
  filter: saturate(0.78) brightness(0.78) contrast(1.05);
}

.login-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 56% 42%, rgba(9, 18, 22, 0.34) 0%, rgba(9, 18, 22, 0.76) 62%, rgba(9, 18, 22, 0.98) 100%),
    linear-gradient(180deg, rgba(13, 19, 21, 0.5), rgba(13, 19, 21, 0.95));
  pointer-events: none;
}

.login-page .site-header {
  border-bottom-color: rgba(244, 246, 241, 0.08);
  background: rgba(13, 19, 21, 0.54);
  color: #f6f7f2;
  backdrop-filter: blur(18px);
}

.login-page .nav-links {
  color: rgba(246, 247, 242, 0.58);
}

.login-page .nav-links a:hover {
  color: #fff;
}

.login-page .language-switch {
  background: rgba(246, 247, 242, 0.06);
  color: rgba(246, 247, 242, 0.56);
}

.login-page .language-switch strong {
  background: rgba(246, 247, 242, 0.14);
  color: #fff;
}

.login-main {
  min-height: 100vh;
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: clamp(46px, 8vw, 126px);
  align-items: center;
  padding: clamp(118px, 15vw, 190px) 0 clamp(84px, 10vw, 138px);
}

.login-copy h1 {
  max-width: 820px;
  color: #f4f6f1;
  font-size: clamp(62px, 8vw, 118px);
  font-weight: 500;
}

.login-copy .lead {
  max-width: 720px;
  color: rgba(244, 246, 241, 0.62);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.62;
  margin: 28px 0 0;
}

.login-copy .actions {
  margin-top: 40px;
}

.login-primary,
.login-copy .button.secondary {
  border-radius: 999px;
}

.login-panel {
  border: 1px solid rgba(244, 246, 241, 0.16);
  background: rgba(244, 246, 241, 0.04);
  backdrop-filter: blur(18px);
  padding: clamp(28px, 4vw, 42px);
}

.panel-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.login-panel h2 {
  max-width: 360px;
  color: #f4f6f1;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 500;
}

.login-panel > p:not(.panel-label):not(.login-note) {
  color: rgba(244, 246, 241, 0.56);
  line-height: 1.7;
  margin: 18px 0 28px;
}

.login-steps {
  display: grid;
  border-top: 1px solid rgba(244, 246, 241, 0.14);
}

.login-steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 18px;
  border-bottom: 1px solid rgba(244, 246, 241, 0.14);
  padding: 18px 0;
}

.login-steps span {
  color: rgba(244, 246, 241, 0.32);
  font-size: 12px;
  font-weight: 500;
  padding-top: 3px;
}

.login-steps strong {
  color: rgba(244, 246, 241, 0.9);
  font-size: 15px;
  font-weight: 500;
}

.login-steps p {
  grid-column: 2;
  color: rgba(244, 246, 241, 0.48);
  font-size: 13px;
  line-height: 1.65;
  margin: 6px 0 0;
}

.login-note {
  color: rgba(244, 246, 241, 0.48);
  font-size: 13px;
  line-height: 1.7;
  margin: 24px 0 0;
}

.login-help {
  display: inline-flex;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-size: 13px;
  margin-top: 22px;
  padding-bottom: 3px;
}

.membership-page {
  background: var(--dark);
  color: #f4f6f1;
}

.membership-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("imgi_2_image.webp") center center / cover no-repeat;
  filter: saturate(0.78) brightness(0.82) contrast(1.02);
}

.membership-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 42%, rgba(13, 19, 21, 0.2) 0%, rgba(13, 19, 21, 0.58) 56%, rgba(13, 19, 21, 0.94) 100%),
    linear-gradient(180deg, rgba(13, 19, 21, 0.16) 0%, rgba(13, 19, 21, 0.84) 100%);
  pointer-events: none;
}

.membership-page .site-header {
  border-bottom-color: rgba(244, 246, 241, 0.08);
  background: rgba(13, 19, 21, 0.42);
  color: #f6f7f2;
}

.membership-page .nav-links {
  color: rgba(246, 247, 242, 0.58);
}

.membership-page .nav-links a:hover {
  color: #fff;
}

.membership-page .language-switch {
  background: rgba(246, 247, 242, 0.06);
  color: rgba(246, 247, 242, 0.56);
}

.membership-page .language-switch strong {
  background: rgba(246, 247, 242, 0.14);
  color: #fff;
}

.membership-hero {
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  display: grid;
  align-items: center;
}

.membership-bg {
  display: none;
}

.membership-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(110px, 14vw, 176px) 0 clamp(70px, 9vw, 110px);
  text-align: center;
}

.membership-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 500;
}

.membership-hero .lead {
  color: rgba(244, 246, 241, 0.66);
}

.membership-section {
  border-top: 1px solid var(--line-dark);
  padding: clamp(64px, 8vw, 108px) 0;
}

.membership-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.membership-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: 38px;
}

.membership-section h2,
.membership-flow h2 {
  color: #f4f6f1;
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 500;
}

.membership-section p,
.membership-flow p {
  color: rgba(244, 246, 241, 0.58);
}

.membership-why {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  gap: clamp(30px, 7vw, 96px);
}

.membership-callout {
  border-left: 2px solid var(--accent);
  margin-top: 28px;
  padding: 12px 0 12px 20px;
}

.membership-tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  margin: 0;
}

.membership-tier {
  min-height: 390px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(26px, 3vw, 40px);
}

.membership-tier span {
  display: block;
  color: rgba(244, 246, 241, 0.18);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 760;
  line-height: 0.9;
  margin-bottom: 62px;
}

.membership-tier h3 {
  color: #f4f6f1;
  font-size: 28px;
  font-weight: 500;
  margin: 16px 0 14px;
}

.membership-price {
  color: #f4f6f1;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 22px;
}

.membership-price small {
  display: inline-block;
  color: rgba(244, 246, 241, 0.46);
  font-size: 14px;
  font-weight: 300;
  margin-right: 8px;
}

.membership-tier p:not(.status) {
  color: rgba(244, 246, 241, 0.62);
  font-size: 15px;
}

.membership-tier ul {
  display: grid;
  gap: 8px;
  color: rgba(244, 246, 241, 0.48);
  font-size: 13px;
  line-height: 1.5;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.membership-tier li::before {
  content: "+";
  color: var(--accent);
  margin-right: 8px;
}

.membership-tier a {
  display: inline-flex;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-size: 14px;
  font-weight: 400;
  margin-top: 18px;
  padding-bottom: 3px;
}

.membership-tier.active {
  background: rgba(244, 246, 241, 0.035);
}

.membership-weekly {
  display: grid;
  grid-template-columns: 180px minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.membership-list {
  border-top: 1px solid var(--line-dark);
}

.membership-list p {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line-dark);
  margin: 0;
  padding: 18px 0;
}

.membership-list span,
.membership-steps span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
}

.membership-band {
  background: rgba(244, 246, 241, 0.04);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.membership-execution {
  border-top: 0;
}

.membership-modules,
.membership-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line-dark);
}

.membership-modules article,
.membership-audience-grid article {
  min-height: 220px;
  background: rgba(13, 19, 21, 0.82);
  padding: clamp(22px, 3vw, 34px);
}

.membership-modules article span,
.membership-audience-grid article span {
  color: var(--accent);
  font-size: 12px;
}

.membership-modules h3,
.membership-audience-grid h3 {
  color: #f4f6f1;
  font-size: 21px;
  font-weight: 500;
  margin: 52px 0 12px;
}

.membership-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
  border-top: 1px solid var(--line-dark);
  padding: clamp(54px, 7vw, 86px) 0 clamp(76px, 9vw, 118px);
}

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

.membership-start-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
  margin-top: 38px;
}

.membership-start-list a {
  display: grid;
  grid-template-columns: 72px minmax(160px, 0.55fr) 1fr;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  padding: 22px 0;
}

.membership-start-list span {
  color: rgba(244, 246, 241, 0.28);
  font-size: 22px;
  font-weight: 500;
}

.membership-start-list b {
  color: #f4f6f1;
  font-size: 18px;
  font-weight: 500;
}

.membership-start-list em {
  color: rgba(244, 246, 241, 0.48);
  font-style: normal;
}

.membership-hero .button {
  border-radius: 999px;
}

.membership-page .footer {
  background: rgba(13, 19, 21, 0.78);
}

.membership-main {
  padding-top: 118px;
}

.membership-title {
  padding: 42px 0 28px;
}

.membership-title h1 {
  color: #f4f6f1;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 520;
  letter-spacing: 0;
}

.founding-strip {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  border-top: 1px solid rgba(244, 246, 241, 0.1);
  border-bottom: 1px solid rgba(244, 246, 241, 0.1);
  padding: 28px 0 30px;
}

.founding-strip h2 {
  color: rgba(244, 246, 241, 0.9);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 520;
  letter-spacing: 0;
}

.founding-strip p {
  max-width: 620px;
  color: rgba(244, 246, 241, 0.42);
  font-size: 14px;
  margin: 10px 0 18px;
}

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

.founding-tags span {
  border: 1px solid rgba(244, 246, 241, 0.12);
  border-radius: 999px;
  color: rgba(244, 246, 241, 0.48);
  font-size: 12px;
  padding: 6px 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 68px 0 86px;
}

.pricing-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(244, 246, 241, 0.12);
  border-radius: 8px;
  background: rgba(244, 246, 241, 0.035);
  padding: 28px;
}

.pricing-card.featured {
  border-color: rgba(184, 215, 173, 0.58);
  background: rgba(184, 215, 173, 0.045);
}

.pricing-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.pricing-card h2 {
  color: #f4f6f1;
  font-size: 28px;
  font-weight: 520;
}

.pricing-card__head span {
  border: 1px solid rgba(184, 215, 173, 0.28);
  border-radius: 999px;
  color: var(--accent);
  font-size: 11px;
  padding: 4px 8px;
}

.pricing-card__price {
  color: #f4f6f1;
  font-size: clamp(40px, 4.6vw, 58px);
  font-weight: 560;
  line-height: 1;
  margin-bottom: 18px;
}

.pricing-card__price small {
  color: rgba(244, 246, 241, 0.42);
  font-size: 15px;
  font-weight: 300;
  margin-left: 8px;
}

.pricing-card p {
  color: rgba(244, 246, 241, 0.48);
  font-size: 14px;
  min-height: 66px;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  color: rgba(244, 246, 241, 0.62);
  font-size: 14px;
  list-style: none;
  margin: 10px 0 28px;
  padding: 0;
}

.pricing-card li::before {
  content: "✓";
  color: #a7ff2a;
  margin-right: 9px;
}

.pricing-card__button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f4f6f1;
  color: #050707;
  font-size: 14px;
  font-weight: 520;
  margin-top: auto;
}

.pricing-card__button.ghost {
  border: 1px solid rgba(244, 246, 241, 0.14);
  background: rgba(244, 246, 241, 0.04);
  color: rgba(244, 246, 241, 0.74);
}

.benefit-compare {
  padding: 8px 0 86px;
}

.benefit-compare h2,
.membership-faq h2 {
  color: #f4f6f1;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 520;
  margin-bottom: 42px;
}

.benefit-table {
  border-top: 1px solid rgba(244, 246, 241, 0.1);
}

.benefit-row {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(130px, 0.44fr));
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgba(244, 246, 241, 0.075);
  color: rgba(244, 246, 241, 0.52);
  font-size: 14px;
}

.benefit-head {
  color: rgba(244, 246, 241, 0.78);
  font-weight: 520;
}

.benefit-row > *:not(:first-child) {
  justify-self: center;
}

.benefit-row b {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #a7ff2a;
  box-shadow: 0 0 12px rgba(167, 255, 42, 0.72);
}

.benefit-row i {
  color: rgba(244, 246, 241, 0.24);
  font-style: normal;
}

.benefit-group {
  color: rgba(244, 246, 241, 0.78);
  font-size: 15px;
  font-weight: 520;
  padding: 30px 0 8px;
}

.membership-faq {
  padding: 0 0 86px;
}

.membership-faq-intro {
  max-width: 620px;
  color: rgba(244, 246, 241, 0.46);
  font-size: 14px;
  line-height: 1.7;
  margin: -24px 0 36px;
}

.membership-faq-list {
  border-top: 1px solid rgba(244, 246, 241, 0.1);
}

.membership-faq-list details {
  border-bottom: 1px solid rgba(244, 246, 241, 0.075);
  padding: 20px 0;
}

.membership-faq-list summary {
  list-style: none;
  cursor: pointer;
  color: rgba(244, 246, 241, 0.82);
  font-size: 15px;
  font-weight: 500;
}

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

.membership-faq-list summary::after {
  content: "+";
  float: right;
  color: rgba(244, 246, 241, 0.42);
  font-size: 22px;
  font-weight: 200;
}

.membership-faq-list details[open] summary::after {
  content: "−";
}

.membership-faq-list p {
  max-width: 760px;
  color: rgba(244, 246, 241, 0.5);
  font-size: 14px;
  margin: 14px 0 0;
}

.risk-page {
  position: relative;
  overflow-x: hidden;
  background: var(--dark);
  color: #f4f6f1;
}

.risk-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("image4.png") center center / cover no-repeat;
  opacity: 0.22;
}

.risk-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(13, 19, 21, 0.74), rgba(13, 19, 21, 0.96) 68%, rgba(13, 19, 21, 1)),
    radial-gradient(circle at 82% 16%, rgba(184, 215, 173, 0.12), transparent 28%);
  pointer-events: none;
}

.risk-page .site-header {
  border-bottom: 1px solid rgba(244, 246, 241, 0.08);
  background: rgba(13, 19, 21, 0.78);
  color: rgba(244, 246, 241, 0.92);
  backdrop-filter: blur(18px);
}

.risk-page .nav-links {
  color: rgba(246, 247, 242, 0.58);
}

.risk-page .nav-links a:hover {
  color: #fff;
}

.risk-page .language-switch {
  background: rgba(246, 247, 242, 0.06);
  color: rgba(246, 247, 242, 0.56);
}

.risk-page .language-switch strong {
  background: rgba(246, 247, 242, 0.14);
  color: #fff;
}

.risk-article {
  max-width: 980px;
  padding: clamp(118px, 14vw, 190px) 0 clamp(78px, 10vw, 130px);
}

.risk-article h1 {
  color: #f4f6f1;
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 500;
}

.risk-article .lead {
  max-width: 650px;
  color: rgba(244, 246, 241, 0.58);
  font-size: 16px;
  line-height: 1.58;
  margin-left: 0;
  margin-right: 0;
}

.risk-article h2 {
  border-top: 1px solid rgba(244, 246, 241, 0.16);
  color: rgba(244, 246, 241, 0.92);
  font-size: 18px;
  font-weight: 500;
  margin-top: 36px;
  padding-top: 26px;
}

.risk-article > p:not(.lead) {
  max-width: 820px;
  color: rgba(244, 246, 241, 0.56);
}

.risk-intro {
  max-width: 820px;
  border: 1px solid rgba(244, 246, 241, 0.14);
  background: rgba(244, 246, 241, 0.035);
  padding: clamp(20px, 3vw, 30px);
  margin: 34px 0 10px;
}

.risk-intro strong {
  display: block;
  color: rgba(244, 246, 241, 0.9);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
}

.risk-intro p {
  color: rgba(244, 246, 241, 0.56);
  margin: 0;
}

.risk-article .actions {
  margin-top: 42px;
}

.risk-article .button {
  border-radius: 999px;
}

.legal-article h1 {
  font-size: clamp(52px, 7vw, 92px);
}

body.legal-page .risk-article .lead {
  width: auto;
  max-width: 820px;
  font-size: 16px;
  margin-left: 0;
  margin-right: 0;
}

.membership-flow h2 {
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 500;
}

.membership-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.membership-steps p {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(244, 246, 241, 0.64);
  margin: 0;
  padding: 22px 0;
}

.membership-steps span {
  color: var(--accent);
}

.footer {
  border-top: 1px solid rgba(244, 246, 241, 0.08);
  background: #0d1315;
  color: rgba(244, 246, 241, 0.64);
  padding: clamp(52px, 6vw, 82px) 0 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(140px, 0.45fr) minmax(140px, 0.45fr);
  gap: clamp(56px, 8vw, 126px);
  align-items: start;
}

.footer-brand {
  max-width: 460px;
}

.footer-brand strong {
  display: block;
  color: rgba(244, 246, 241, 0.88);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 28px;
}

.footer-brand p {
  color: rgba(244, 246, 241, 0.42);
  font-size: 14px;
  max-width: 460px;
}

.footer-col {
  display: grid;
  gap: 22px;
  color: rgba(244, 246, 241, 0.46);
  font-size: 12px;
  font-weight: 200;
}

.footer-col > span:first-child {
  color: rgba(244, 246, 241, 0.32);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
}

.footer-col a:hover {
  color: rgba(244, 246, 241, 0.82);
}

.disclaimer {
  color: rgba(244, 246, 241, 0.36);
  font-size: 12px;
  max-width: 440px;
  margin-top: 22px;
}

.footer-brand .copyright {
  color: rgba(244, 246, 241, 0.24);
  font-family: system-ui, sans-serif;
  font-size: 10px;
  font-weight: 200;
  margin-top: clamp(54px, 7vw, 92px);
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  width: min(440px, calc(100% - 32px));
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(244, 246, 241, 0.18);
  background: rgba(13, 19, 21, 0.94);
  color: #f4f6f1;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  padding: 18px;
}

.cookie-consent__copy {
  flex: 1;
  min-width: 0;
}

.cookie-consent__copy strong {
  display: block;
  font-size: 14px;
  font-weight: 680;
  line-height: 1.3;
  margin-bottom: 4px;
}

.cookie-consent__copy p {
  color: rgba(244, 246, 241, 0.68);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.cookie-consent__button {
  min-height: 38px;
  border: 1px solid rgba(184, 215, 173, 0.68);
  border-radius: 2px;
  background: rgba(184, 215, 173, 0.12);
  color: #f4f6f1;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  padding: 0 16px;
  white-space: nowrap;
}

.cookie-consent__button:hover {
  border-color: rgba(184, 215, 173, 0.92);
  background: rgba(184, 215, 173, 0.2);
}

@media (max-width: 900px) {
  .nav {
    align-items: center;
    min-height: 62px;
    grid-template-columns: auto 1fr;
  }

  .nav-links {
    display: none;
  }

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

  .section-head,
  .feature-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .path-map {
    grid-template-columns: 1fr;
  }

  .path-node {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .path-node:last-child {
    border-bottom: 0;
  }

  .path-index {
    margin-bottom: 28px;
  }

  .split-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-block {
    grid-template-columns: 1fr;
  }

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

  .apply-page .choice-list {
    grid-template-columns: 1fr;
  }

  .apply-page .choice {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .apply-page .choice:last-child {
    border-bottom: 0;
  }

  .apply-page .choice .path-index {
    margin-bottom: 28px;
  }

  .program-block {
    min-height: auto;
  }

  .waitlist-shell {
    grid-template-columns: 1fr;
  }

  .login-shell {
    grid-template-columns: 1fr;
    padding-top: 96px;
  }

  .login-panel {
    max-width: 620px;
  }

  .membership-section-head,
  .membership-why,
  .membership-weekly,
  .membership-tiers,
  .membership-flow,
  .membership-modules,
  .membership-audience-grid {
    grid-template-columns: 1fr;
  }

  .membership-tier {
    min-height: auto;
  }

  .membership-section {
    padding: 58px 0;
  }

  .membership-tier span {
    margin-bottom: 34px;
  }

  .membership-start-list a {
    grid-template-columns: 48px 1fr;
  }

  .membership-start-list em {
    grid-column: 2;
  }

  .membership-main {
    padding-top: 86px;
  }

  .founding-strip,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    padding: 42px 0 64px;
  }

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

  .benefit-compare {
    overflow-x: auto;
  }

  .benefit-table {
    min-width: 720px;
  }

}

@media (max-width: 560px) {
  .home .site-header {
    position: absolute;
    width: 100%;
    background: transparent;
  }

  .nav {
    width: min(var(--max), calc(100% - 28px));
    gap: 12px;
  }

  .brand {
    font-size: 14px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .button {
    min-height: 30px;
    padding: 0 12px;
  }

  .language-switch {
    min-height: 30px;
  }

  .language-switch span,
  .language-switch strong {
    min-width: 26px;
    padding: 3px 6px;
  }

  h1 {
    font-size: 40px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-bg img {
    object-position: center center;
  }

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

  .choice .button {
    width: fit-content;
  }

  .cookie-consent {
    right: 16px;
    bottom: 16px;
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-consent__button {
    width: 100%;
  }
}
