:root {
  --alta-navy: #0E1F31;
  --alta-blue: #143246;
  --alta-gold: #8C723F;
  --alta-cream: #F3F3E9;
  --font-hebrew: "Noto Sans Hebrew", sans-serif;
  --font-english: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--alta-navy);
  color: var(--alta-cream);
  font-family: var(--font-hebrew);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

[dir="ltr"] body {
  font-family: var(--font-english);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

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

:focus-visible {
  outline: 1px solid var(--alta-gold);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  right: 14px;
  transform: translateY(-160%);
  background: var(--alta-cream);
  color: var(--alta-navy);
  padding: 10px 16px;
}

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

.sr-only,
.hidden-field,
.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.lead-submit-frame {
  display: none;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: 76px;
  display: grid;
  grid-template-columns: 128px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 16px clamp(22px, 5vw, 74px);
  background: var(--alta-navy);
  border-bottom: 1px solid var(--alta-gold);
}

.header-mark img {
  width: 100px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--alta-cream);
  font-size: 0.76rem;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 19px;
  opacity: 0.86;
  transition: opacity 280ms ease, color 280ms ease;
}

.site-nav a + a::before {
  content: "";
  position: absolute;
  right: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--alta-gold);
  opacity: 0.72;
}

[dir="ltr"] .site-nav a + a::before {
  right: auto;
  left: 0;
}

.site-nav .language-switch {
  margin-inline-start: 12px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid color-mix(in srgb, var(--alta-gold) 82%, transparent);
  color: var(--alta-gold);
  font-family: var(--font-english);
  letter-spacing: 0.08em;
}

.site-nav .language-switch::before {
  display: none;
}

.site-nav .language-switch::after {
  inset: auto 13px 6px 13px;
}

.site-nav a::after,
.text-cta::after {
  content: "";
  position: absolute;
  inset: auto 19px 7px 19px;
  height: 1px;
  background: var(--alta-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms ease;
}

[dir="ltr"] .site-nav a::after,
[dir="ltr"] .text-cta::after {
  transform-origin: left;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--alta-gold);
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.text-cta:hover::after,
.text-cta:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  border: 1px solid var(--alta-gold);
  color: var(--alta-gold);
  font-size: 0.78rem;
  transition: background 280ms ease, color 280ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--alta-gold);
  color: var(--alta-navy);
}

.mobile-language-switch {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--alta-gold) 82%, transparent);
  background: transparent;
  color: var(--alta-gold);
  font-family: var(--font-english);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  transition: background 280ms ease, color 280ms ease, border-color 280ms ease;
}

.mobile-language-switch:hover,
.mobile-language-switch:focus-visible {
  background: color-mix(in srgb, var(--alta-gold) 18%, transparent);
  border-color: var(--alta-gold);
  color: var(--alta-cream);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid var(--alta-gold);
  background: transparent;
  padding: 11px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--alta-gold);
  transition: transform 240ms ease, opacity 240ms ease;
}

.section,
.hero {
  position: relative;
  overflow: hidden;
}

.section {
  padding: clamp(108px, 13vw, 190px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-dark,
.hero,
.site-footer {
  background: var(--alta-navy);
  color: var(--alta-cream);
}

.section-dark::before,
.hero::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--alta-blue) 70%, transparent), transparent 46%),
    radial-gradient(circle at 50% 82%, color-mix(in srgb, var(--alta-gold) 9%, transparent), transparent 42%);
  opacity: 0.34;
  pointer-events: none;
}

.section-inner,
.site-header {
  position: relative;
  z-index: 1;
}

.section-blue {
  background: var(--alta-blue);
  color: var(--alta-cream);
}

.nowrap {
  white-space: nowrap;
}

.term-en,
.amount {
  direction: ltr;
  unicode-bidi: isolate;
  white-space: nowrap;
}

.text-gold {
  color: var(--alta-gold);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 112px 0 70px;
}

.hero-pattern {
  position: absolute;
  inset: 76px 0 0 0;
  background-image: url("assets/pattern-derived.svg");
  background-repeat: no-repeat;
  background-size: min(560px, 54vw);
  background-position: center 54%;
  opacity: 0.13;
}

.hero-inner {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-logo {
  width: min(360px, 58vw);
  margin-bottom: clamp(36px, 6vh, 68px);
}

.hero-label,
.eyebrow {
  margin: 0 0 20px;
  color: var(--alta-gold);
  font-family: var(--font-english);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 8.2vw, 7.6rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0;
}

[dir="ltr"] h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

h1 span,
.statement-layout h2 span {
  color: var(--alta-gold);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6.5vw, 6.8rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 15px;
  font-size: clamp(1.42rem, 2.15vw, 2rem);
  font-weight: 400;
  line-height: 1.24;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.9;
}

.hero-actions {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 42px;
}

.hero-actions small {
  color: var(--alta-cream);
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.78;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 24px;
  border: 1px solid var(--alta-gold);
  background: transparent;
  color: var(--alta-gold);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: inset 0 0 0 0 color-mix(in srgb, var(--alta-gold) 22%, transparent);
  transition: background 300ms ease, color 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--alta-gold);
  color: var(--alta-navy);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--alta-gold) 20%, transparent);
}

.hero-rule {
  width: min(620px, 72vw);
  height: 1px;
  margin-top: clamp(34px, 6vh, 62px);
  background: var(--alta-gold);
  opacity: 0.72;
}

.cycle-strip {
  padding: clamp(86px, 10vw, 140px) 0;
  border-top: 1px solid var(--alta-gold);
  border-bottom: 1px solid var(--alta-gold);
  box-shadow: inset 0 32px 90px color-mix(in srgb, var(--alta-blue) 32%, transparent), inset 0 -32px 90px color-mix(in srgb, var(--alta-blue) 28%, transparent);
}

.cycle-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
}

.cycle-copy p {
  margin-bottom: 0;
}

.cycle-label {
  color: var(--alta-gold);
  font-size: clamp(1.3rem, 2.4vw, 2.3rem);
  font-weight: 300;
  line-height: 1.25;
}

.cycle-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(64px, 1fr));
  gap: 1px;
  border: 1px solid var(--alta-gold);
  background: color-mix(in srgb, var(--alta-navy) 86%, var(--alta-blue));
  box-shadow: 0 18px 70px color-mix(in srgb, var(--alta-gold) 12%, transparent), inset 0 0 24px color-mix(in srgb, var(--alta-gold) 9%, transparent);
}

.cycle-countdown-title {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px 0;
  color: var(--alta-cream);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

.cycle-countdown span {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 12px 10px;
  font-size: 0.95rem;
  color: var(--alta-gold);
}

.cycle-countdown strong {
  color: var(--alta-cream);
  font-family: var(--font-english);
  font-size: 1.4rem;
  font-weight: 300;
  font-variant-numeric: tabular-nums;
}

.cycle-countdown [data-seconds] {
  color: var(--alta-gold);
  animation: seconds-pulse 1000ms ease-in-out infinite;
}

.text-cta {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--alta-cream);
}

.text-cta::after {
  inset-inline: 0;
}

.center-heading {
  max-width: 980px;
  margin: 0 auto clamp(52px, 8vw, 96px);
  text-align: center;
}

.center-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.02rem, 1.28vw, 1.18rem);
  line-height: 1.85;
}

.results-section {
  border-bottom: 1px solid var(--alta-gold);
  box-shadow: inset 0 38px 120px color-mix(in srgb, var(--alta-blue) 34%, transparent), inset 0 -28px 110px color-mix(in srgb, var(--alta-blue) 24%, transparent);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr 1fr 1fr;
  gap: clamp(18px, 2.1vw, 32px);
  max-width: 1180px;
  margin: 0 auto;
  border: 0;
}

.metric-item {
  position: relative;
  min-height: 178px;
  display: grid;
  grid-template-rows: 82px auto;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 34px 8px 24px;
  border-inline-start: 0;
  text-align: center;
}

.metric-item::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: var(--alta-gold);
  box-shadow: 0 0 18px color-mix(in srgb, var(--alta-gold) 28%, transparent);
}

.metric-item.reveal {
  transform: none;
  transition: opacity 520ms ease;
}

.metric-item:nth-child(3n + 1) {
  border-inline-start: 0;
}

.metric-item:nth-child(n + 4) {
  border-top: 0;
}

.metric-item strong {
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 82px;
  color: var(--alta-gold);
  font-family: var(--font-english);
  font-size: clamp(3rem, 4vw, 4.55rem);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  line-height: 0.9;
  white-space: nowrap;
}

.metric-feature strong {
  max-width: 100%;
  width: 100%;
  direction: ltr;
  unicode-bidi: isolate;
  text-align: center;
  font-size: clamp(1.95rem, 2.72vw, 3.05rem);
}

.metric-compact:nth-child(3) strong {
  font-size: clamp(3rem, 4vw, 4.55rem);
}

.metric-item span {
  align-self: start;
  color: var(--alta-gold);
  font-size: clamp(0.72rem, 0.8vw, 0.84rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.7;
  max-width: 170px;
}

.quiet-statements {
  width: min(100%, 820px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(34px, 5vw, 58px) auto 0;
  border-top: 1px solid color-mix(in srgb, var(--alta-gold) 42%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--alta-gold) 20%, transparent);
}

.quiet-statements span {
  min-height: 86px;
  display: grid;
  place-items: center;
  color: var(--alta-gold);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  padding: 18px 14px;
}

.quiet-statements span + span {
  border-inline-start: 1px solid color-mix(in srgb, var(--alta-gold) 24%, transparent);
}

.section-cta {
  display: grid;
  justify-items: center;
  margin-top: clamp(42px, 6vw, 72px);
}

.circle-section {
  min-height: 86svh;
  display: flex;
  align-items: center;
}

.circle-line {
  position: absolute;
  width: min(720px, 72vw);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  border: 1px solid var(--alta-gold);
  border-radius: 50%;
  opacity: 0.12;
  transform: translate(-50%, -50%);
}

.statement-layout {
  position: relative;
  max-width: 960px;
  text-align: center;
}

.statement-title {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(2.65rem, 5.3vw, 5.8rem);
  line-height: 1.06;
  text-wrap: balance;
}

.statement-copy {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.4vw, 1.26rem);
  line-height: 1.95;
}

.process-grid,
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
  align-items: stretch;
}

.circle-card {
  position: relative;
  min-height: clamp(440px, 36vw, 530px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(38px, 4.2vw, 58px) clamp(28px, 3vw, 44px) clamp(30px, 3.4vw, 44px);
  border: 1px solid color-mix(in srgb, var(--alta-gold) 74%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--alta-blue) 40%, transparent), transparent 42%),
    var(--alta-navy);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--alta-gold) 13%, transparent),
    0 26px 90px color-mix(in srgb, var(--alta-navy) 70%, transparent);
}

.circle-card::before {
  content: "";
  position: absolute;
  inset-inline-start: -1px;
  top: -1px;
  width: min(42%, 180px);
  height: 3px;
  background: var(--alta-gold);
}

.circle-card::after {
  content: "";
  position: absolute;
  inset-inline: clamp(24px, 3vw, 38px);
  top: clamp(24px, 3vw, 36px);
  height: 1px;
  background: color-mix(in srgb, var(--alta-gold) 14%, transparent);
}

.circle-roman {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(22px, 2.6vw, 34px);
  color: color-mix(in srgb, var(--alta-gold) 72%, transparent);
  font-family: var(--font-english);
  font-size: clamp(1.35rem, 2vw, 2.35rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.18em;
  pointer-events: none;
}

.circle-roman::before,
.circle-roman::after {
  content: none;
}

.circle-en {
  width: 100%;
  margin: 0 auto clamp(22px, 2.4vw, 34px);
  color: var(--alta-gold);
  font-family: var(--font-english);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.circle-card h3 {
  min-height: 2.16em;
  margin-bottom: clamp(26px, 3vw, 40px);
  color: var(--alta-cream);
  font-size: clamp(2.2rem, 2.9vw, 3.25rem);
  font-weight: 300;
  line-height: 1.12;
  text-align: center;
}

.circle-threshold {
  width: 100%;
  margin-bottom: clamp(24px, 2.5vw, 34px);
  color: color-mix(in srgb, var(--alta-cream) 82%, transparent);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.8;
  text-align: center;
}

.circle-threshold .amount {
  color: var(--alta-gold);
  font-family: var(--font-english);
}

.circle-divider {
  height: 1px;
  margin-bottom: clamp(28px, 3vw, 40px);
  background: color-mix(in srgb, var(--alta-gold) 28%, transparent);
}

.circle-body {
  max-width: 370px;
  margin-bottom: clamp(30px, 3vw, 42px);
  color: var(--alta-cream);
  font-size: clamp(1.06rem, 1.2vw, 1.18rem);
  line-height: 2;
  text-align: center;
}

.circle-note {
  width: 100%;
  margin-top: auto;
  margin-bottom: clamp(28px, 3vw, 40px);
  padding-top: clamp(24px, 2.8vw, 34px);
  border-top: 1px solid color-mix(in srgb, var(--alta-gold) 16%, transparent);
  color: color-mix(in srgb, var(--alta-cream) 72%, transparent);
  font-size: 0.94rem;
  line-height: 1.7;
  text-align: center;
}

.circle-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 42px;
  color: var(--alta-gold);
  font-weight: 500;
  justify-content: center;
}

.circle-cta::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms ease;
}

[dir="ltr"] .circle-cta::after {
  transform-origin: left;
}

.circle-cta:hover::after,
.circle-cta:focus-visible::after {
  transform: scaleX(1);
}

.process-block,
.membership-panel {
  position: relative;
  min-height: 320px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--alta-gold);
  background: var(--alta-blue);
  transition: border-color 300ms ease, background 300ms ease;
}

.membership-panel {
  min-height: clamp(430px, 38vw, 560px);
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto auto;
  align-content: start;
  padding: clamp(30px, 4.2vw, 58px) clamp(28px, 3.4vw, 48px);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--alta-blue) 44%, transparent), transparent 46%),
    color-mix(in srgb, var(--alta-navy) 92%, var(--alta-blue));
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--alta-gold) 20%, transparent),
    0 24px 80px color-mix(in srgb, var(--alta-navy) 74%, transparent);
}

.process-block:hover,
.membership-panel:hover {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--alta-blue) 58%, transparent), transparent 50%),
    color-mix(in srgb, var(--alta-navy) 90%, var(--alta-blue));
}

.process-block > span,
.membership-panel > span {
  display: block;
  margin-bottom: 46px;
  color: var(--alta-gold);
  font-family: var(--font-english);
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: 0.9;
  opacity: 0.72;
}

.process-block p,
.membership-panel p,
.application-copy p,
.footer-inner p {
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.85;
}

.credibility-section {
  border-top: 1px solid color-mix(in srgb, var(--alta-gold) 34%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--alta-gold) 28%, transparent);
  background:
    radial-gradient(circle at 13% 24%, color-mix(in srgb, var(--alta-blue) 12%, transparent), transparent 38%),
    var(--alta-navy);
}

.credibility-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(58px, 7vw, 96px);
  align-items: center;
}

.credibility-copy {
  max-width: 580px;
  justify-self: start;
}

.credibility-copy h2 {
  max-width: 580px;
  font-size: clamp(2.55rem, 4.05vw, 4.55rem);
  line-height: 1.08;
}

.portrait-frame {
  position: relative;
  width: min(100%, 500px);
  min-height: clamp(540px, 45vw, 640px);
  justify-self: end;
  border: 1px solid color-mix(in srgb, var(--alta-gold) 42%, transparent);
  overflow: hidden;
  box-shadow:
    0 24px 72px color-mix(in srgb, #000 22%, transparent),
    0 0 0 1px color-mix(in srgb, var(--alta-gold) 10%, transparent);
}

.portrait-frame > img:not(.founder-signature) {
  width: 100%;
  height: 100%;
  min-height: clamp(540px, 45vw, 640px);
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(1.03);
}

.portrait-frame::after {
  display: none;
}

.founder-portrait-gradient {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 38%;
  z-index: 1;
  background:
    radial-gradient(ellipse at 52% 92%, rgba(243, 243, 233, 0.46) 0%, rgba(243, 243, 233, 0.18) 34%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(243, 243, 233, 0.06) 58%, rgba(4, 8, 12, 0.14) 100%);
  pointer-events: none;
}

.portrait-identity {
  position: absolute;
  z-index: 1;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 28px;
  border-top: 1px solid color-mix(in srgb, var(--alta-gold) 48%, transparent);
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--alta-navy) 94%, var(--alta-blue)));
}

.portrait-identity strong,
.portrait-identity span {
  font-family: var(--font-hebrew);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0;
}

.portrait-identity strong {
  color: var(--alta-cream);
}

.portrait-identity span {
  color: var(--alta-gold);
  text-align: left;
}

.credibility-copy p:not(.eyebrow) {
  max-width: 580px;
  font-size: clamp(1.04rem, 1.16vw, 1.16rem);
  line-height: 1.9;
}

.founder-quote {
  position: relative;
  max-width: 580px;
  margin: clamp(28px, 3.6vw, 44px) 0 0;
  padding: 26px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--alta-gold) 24%, transparent);
  color: color-mix(in srgb, var(--alta-cream) 94%, white) !important;
  font-size: clamp(1.02rem, 1.12vw, 1.26rem) !important;
  font-weight: 300;
  line-height: 1.78 !important;
}

.founder-quote blockquote {
  position: relative;
  display: inline;
  margin: 0;
  color: inherit;
  font-family: "Heebo", "Assistant", "Noto Sans Hebrew", Arial, sans-serif;
  font-size: inherit;
  font-weight: 200;
  line-height: inherit;
  letter-spacing: 0.005em;
  font-style: normal;
}

.founder-quote blockquote::before {
  display: none;
}

.founder-quote figcaption {
  display: inline;
  margin: 0;
  color: color-mix(in srgb, var(--alta-gold) 88%, var(--alta-cream));
  font-size: 0.86em;
  font-weight: 500;
  line-height: inherit;
}

.founder-quote figcaption::before {
  content: "  ";
  white-space: pre;
}

[dir="ltr"] .founder-quote blockquote {
  font-family: "Poppins", "Avenir Next", Arial, sans-serif;
  font-style: normal;
  letter-spacing: 0;
}

.founder-signature {
  position: absolute;
  z-index: 2;
  inset-inline-end: clamp(-22px, -1.1vw, -10px);
  bottom: clamp(-118px, -7.2vw, -86px);
  width: min(820px, 132%);
  max-height: 330px;
  object-fit: contain !important;
  opacity: 0.9;
  filter: brightness(0) saturate(0) sepia(13%) hue-rotate(345deg) brightness(0.22) contrast(1.14);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.credibility-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: clamp(24px, 3vw, 34px);
  max-width: 580px;
  margin-top: clamp(34px, 4vw, 44px);
  align-items: start;
}

.credibility-metrics div {
  display: grid;
  gap: 8px;
  min-width: 0;
  align-content: start;
  justify-items: center;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--alta-gold) 26%, transparent);
  text-align: center;
}

.credibility-metrics div:nth-child(odd) {
  border-inline-start: 0;
}

.credibility-metrics div:nth-child(n + 3) {
  border-top: 1px solid color-mix(in srgb, var(--alta-gold) 34%, transparent);
}

.credibility-metrics strong {
  color: var(--alta-gold);
  font-family: var(--font-english);
  font-size: clamp(2.05rem, 2.8vw, 2.85rem);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
}

.credibility-metrics span {
  max-width: 220px;
  color: var(--alta-cream);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-inline: auto;
}

.membership-section {
  border-bottom: 1px solid var(--alta-gold);
}

.membership-section .center-heading {
  margin-bottom: clamp(46px, 6vw, 76px);
}

.membership-panel::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: -1px;
  width: 42%;
  height: 3px;
  background: var(--alta-gold);
  box-shadow: 0 0 24px color-mix(in srgb, var(--alta-gold) 24%, transparent);
}

.membership-panel::after {
  content: "";
  position: absolute;
  inset: 18px 22px auto;
  height: 1px;
  background: color-mix(in srgb, var(--alta-gold) 16%, transparent);
}

.membership-panel .tier-roman {
  justify-self: center;
  margin: 12px 0 52px;
  color: var(--alta-gold);
  font-family: var(--font-english);
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.08em;
  opacity: 0.74;
}

.membership-panel .tier-roman::before,
.membership-panel .tier-roman::after {
  content: "-";
  margin-inline: 12px;
  color: color-mix(in srgb, var(--alta-gold) 72%, transparent);
  font-size: 0.32em;
  vertical-align: middle;
}

.tier-name {
  margin-bottom: 16px;
  color: var(--alta-gold);
  font-family: var(--font-english);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.membership-panel h3 {
  margin-bottom: 20px;
  color: var(--alta-cream);
  font-family: var(--font-english);
  font-size: clamp(2.05rem, 3.2vw, 3.6rem);
  font-weight: 300;
  line-height: 1.05;
}

[dir="rtl"] .membership-panel h3 {
  font-family: var(--font-hebrew);
  letter-spacing: 0;
}

.membership-panel h3 span {
  color: var(--alta-gold);
}

.membership-panel strong {
  display: block;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--alta-gold) 24%, transparent);
  color: var(--alta-gold);
  font-family: var(--font-english);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.membership-panel strong bdi {
  letter-spacing: 0;
}

.membership-panel p:not(.tier-name):not(.tier-note) {
  max-width: 360px;
  margin-bottom: 28px;
  color: var(--alta-cream);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.9;
}

.tier-note {
  margin: auto 0 28px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--alta-gold) 17%, transparent);
  color: color-mix(in srgb, var(--alta-gold) 86%, var(--alta-cream));
  font-family: var(--font-english);
  font-size: 0.72rem !important;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.7 !important;
  text-transform: uppercase;
}

.panel-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  color: var(--alta-gold);
  font-family: var(--font-english);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

[dir="rtl"] .panel-cta {
  font-family: var(--font-hebrew);
  letter-spacing: 0;
  text-transform: none;
}

.panel-cta::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms ease;
}

[dir="ltr"] .panel-cta::after {
  transform-origin: left;
}

.panel-cta:hover::after,
.panel-cta:focus-visible::after {
  transform: scaleX(1);
}

.application-section {
  border-top: 1px solid var(--alta-gold);
}

.circle-page-hero {
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding-top: 132px;
}

.circle-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: end;
}

.circle-page-copy {
  display: grid;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--alta-gold);
}

.circle-page-copy p {
  margin: 0;
  font-size: clamp(1.04rem, 1.32vw, 1.2rem);
  line-height: 1.9;
}

.circle-page-section {
  border-top: 1px solid var(--alta-gold);
  border-bottom: 1px solid var(--alta-gold);
}

.circle-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--alta-gold);
  border-bottom: 1px solid var(--alta-gold);
}

.circle-highlights article {
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: 34px;
  padding: 28px;
  border-inline-start: 1px solid var(--alta-gold);
}

.circle-highlights article:first-child {
  border-inline-start: 0;
}

.circle-highlights span {
  color: var(--alta-gold);
  font-family: var(--font-english);
  font-size: 2rem;
  font-weight: 300;
}

.circle-highlights p {
  margin: 0;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.5;
}

.application-layout {
  display: grid;
  justify-items: center;
  gap: clamp(34px, 5vw, 58px);
}

.application-copy,
.application-intro {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  text-align: start;
}

.application-heading,
.application-intro-main {
  justify-self: end;
  max-width: 560px;
}

.application-intro-text,
.application-intro-copy {
  position: relative;
  max-width: 500px;
  padding-inline-start: clamp(22px, 3vw, 42px);
}

.application-intro-copy::before {
  content: "";
  position: absolute;
  inset-block: 6px;
  inset-inline-start: 0;
  width: 1px;
  background: color-mix(in srgb, var(--alta-gold) 52%, transparent);
}

.application-copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--alta-cream);
  font-size: clamp(2.55rem, 4.8vw, 5.2rem);
  font-weight: 300;
  line-height: 1.05;
  text-wrap: balance;
  text-shadow: 0 0 18px color-mix(in srgb, var(--alta-cream) 8%, transparent);
}

.application-copy p:not(.eyebrow) {
  max-width: 470px;
  color: color-mix(in srgb, var(--alta-cream) 88%, transparent);
  font-size: clamp(1.05rem, 1.22vw, 1.18rem);
  line-height: 1.85;
}

.application-intro-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--alta-gold) 22%, transparent);
}

.application-note {
  margin-top: 22px;
  color: var(--alta-gold);
  font-size: 0.96rem !important;
  letter-spacing: 0;
}

.application-form {
  position: relative;
  isolation: isolate;
  width: min(100%, 960px);
  padding: clamp(30px, 4.6vw, 58px);
  border: 1px solid color-mix(in srgb, var(--alta-gold) 62%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--alta-blue) 22%, transparent), transparent 46%),
    color-mix(in srgb, var(--alta-navy) 96%, var(--alta-blue));
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--alta-cream) 4%, transparent),
    0 30px 90px color-mix(in srgb, var(--alta-navy) 68%, transparent);
}

.application-form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-top: 2px solid color-mix(in srgb, var(--alta-gold) 82%, transparent);
  pointer-events: none;
}

.form-success {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
  padding: 18px 0;
  border-top: 1px solid var(--alta-gold);
  border-bottom: 1px solid var(--alta-gold);
}

.application-form a {
  color: var(--alta-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

fieldset {
  margin: 0 0 clamp(30px, 3.5vw, 42px);
  padding: 0 0 clamp(26px, 3vw, 36px);
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--alta-gold) 20%, transparent);
}

fieldset:last-of-type {
  margin-bottom: 30px;
}

legend {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 22px;
  padding-bottom: 0;
  border-bottom: 0;
  color: color-mix(in srgb, var(--alta-cream) 88%, transparent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
}

legend::after {
  content: "";
  flex: 1;
  height: 1px;
  background: color-mix(in srgb, var(--alta-gold) 18%, transparent);
}

legend span {
  color: var(--alta-gold);
  font-family: var(--font-english);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

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

label {
  display: grid;
  gap: 9px;
}

label span {
  color: color-mix(in srgb, var(--alta-cream) 78%, transparent);
  font-size: 0.88rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid color-mix(in srgb, var(--alta-gold) 20%, transparent);
  border-radius: 5px;
  background: color-mix(in srgb, var(--alta-blue) 18%, var(--alta-navy));
  color: var(--alta-cream);
  padding: 14px 15px;
  box-shadow: none;
  transition: border-color 280ms ease, color 280ms ease, background-color 280ms ease, box-shadow 280ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: color-mix(in srgb, var(--alta-gold) 74%, transparent);
  background: color-mix(in srgb, var(--alta-blue) 24%, var(--alta-navy));
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--alta-gold) 8%, transparent);
}

select option {
  background: var(--alta-navy);
  color: var(--alta-cream);
}

textarea {
  min-height: 142px;
  resize: vertical;
}

.textarea-field {
  margin-top: 32px;
  margin-bottom: 0;
}

.consent-group {
  display: grid;
  gap: 12px;
  margin: 0;
}

.consent-note,
.consent-helper,
.form-validation-message {
  margin: 0;
  color: color-mix(in srgb, var(--alta-cream) 74%, transparent);
  font-size: 0.92rem;
  line-height: 1.75;
}

.consent-note {
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.consent-helper {
  padding-inline-start: 38px;
  color: color-mix(in srgb, var(--alta-cream) 66%, transparent);
  font-size: 0.88rem;
}

.form-validation-message {
  margin: -8px 0 24px;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--alta-gold) 45%, transparent);
  color: var(--alta-gold);
}

.form-validation-message[hidden] {
  display: none;
}

.form-status {
  min-height: 0;
  margin: -4px 0 20px;
  color: color-mix(in srgb, var(--alta-cream) 86%, transparent);
  font-size: 0.94rem;
  line-height: 1.7;
  text-align: center;
}

.form-status:not(:empty) {
  padding: 13px 16px;
  border: 1px solid color-mix(in srgb, var(--alta-gold) 34%, transparent);
  background: color-mix(in srgb, var(--alta-blue) 12%, transparent);
}

.form-status.is-error {
  color: var(--alta-gold);
}

.form-status.is-success {
  color: var(--alta-cream);
}

.checkbox-field {
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 14px;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.checkbox-field input {
  width: 19px;
  height: 19px;
  min-height: 19px;
  margin-top: 6px;
  accent-color: var(--alta-gold);
}

.checkbox-field span {
  color: color-mix(in srgb, var(--alta-cream) 88%, transparent);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.7;
}

.checkbox-field a {
  color: var(--alta-gold);
  text-decoration: none;
}

.checkbox-field a:hover,
.checkbox-field a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button-submit {
  width: min(100%, 560px);
  min-height: 62px;
  margin-inline: auto;
  font-size: 0.98rem;
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.submit-desk {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding-top: 4px;
}

.submit-desk p {
  margin: 0;
  color: color-mix(in srgb, var(--alta-cream) 72%, transparent);
  font-size: 0.94rem;
  line-height: 1.7;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 66px 0;
  border-top: 1px solid var(--alta-gold);
}

.footer-inner {
  display: grid;
  gap: 18px;
}

.footer-logo {
  width: 96px;
  margin-bottom: 12px;
}

.footer-disclaimer {
  max-width: 780px;
  opacity: 0.78;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: var(--alta-gold);
}

.footer-link-button {
  border: 0;
  background: transparent;
  color: var(--alta-gold);
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--alta-cream);
}

.legal-page {
  min-height: 100vh;
  background: var(--alta-navy);
}

.legal-main {
  padding-top: var(--header-height);
}

.legal-content {
  max-width: 900px;
}

.legal-content h1 {
  margin-bottom: clamp(28px, 4vw, 44px);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.05;
}

.legal-content h2 {
  margin-top: clamp(34px, 5vw, 54px);
  margin-bottom: 12px;
  color: var(--alta-gold);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.legal-content p {
  color: color-mix(in srgb, var(--alta-cream) 86%, transparent);
  font-size: clamp(1rem, 1.22vw, 1.14rem);
  line-height: 1.9;
}

.legal-content a {
  color: var(--alta-gold);
}

.legal-note {
  margin-block: 28px 34px;
  padding: 18px 22px;
  border: 1px solid color-mix(in srgb, var(--alta-gold) 38%, transparent);
  background: color-mix(in srgb, var(--alta-blue) 18%, transparent);
}

.legal-toc {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(34px, 5vw, 56px) 0;
  border: 1px solid color-mix(in srgb, var(--alta-gold) 34%, transparent);
  background: color-mix(in srgb, var(--alta-gold) 20%, transparent);
}

.legal-toc a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--alta-navy);
  color: color-mix(in srgb, var(--alta-cream) 82%, transparent);
  padding: 12px;
  font-size: 0.86rem;
  text-align: center;
  text-decoration: none;
  transition: background 280ms ease, color 280ms ease;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  background: color-mix(in srgb, var(--alta-gold) 14%, var(--alta-navy));
  color: var(--alta-gold);
}

.legal-content ul {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.legal-content li {
  position: relative;
  color: color-mix(in srgb, var(--alta-cream) 84%, transparent);
  font-size: clamp(1rem, 1.18vw, 1.1rem);
  line-height: 1.85;
  padding-inline-start: 22px;
}

.legal-content li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--alta-gold);
}

.legal-content strong {
  color: var(--alta-cream);
  font-weight: 600;
}

small {
  opacity: 0.76;
}

.button-small {
  min-height: 40px;
  padding: 8px 16px;
  font-size: 0.82rem;
}

.button-subtle {
  color: var(--alta-cream);
}

.thank-you-page {
  min-height: 100vh;
  background: var(--alta-navy);
  color: var(--alta-cream);
}

.thank-you-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(92px, 10vw, 150px) 20px;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--alta-blue) 34%, transparent), transparent 44%),
    radial-gradient(circle at 50% 88%, color-mix(in srgb, var(--alta-gold) 8%, transparent), transparent 42%),
    var(--alta-navy);
}

.thank-you-panel {
  width: min(100%, 820px);
  padding: clamp(36px, 6vw, 76px);
  border: 1px solid color-mix(in srgb, var(--alta-gold) 64%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--alta-blue) 24%, transparent), transparent 56%),
    color-mix(in srgb, var(--alta-navy) 96%, var(--alta-blue));
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--alta-cream) 4%, transparent),
    0 32px 96px color-mix(in srgb, var(--alta-navy) 76%, transparent);
  text-align: center;
}

.thank-you-logo {
  width: min(210px, 58vw);
  height: auto;
  display: block;
  margin: 0 auto clamp(34px, 5vw, 54px);
}

.thank-you-panel .eyebrow {
  margin-bottom: 18px;
}

.thank-you-panel h1 {
  max-width: 680px;
  margin: 0 auto 24px;
  color: var(--alta-cream);
  font-size: clamp(3rem, 6vw, 5.9rem);
  font-weight: 300;
  line-height: 1.05;
  text-wrap: balance;
}

.thank-you-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto;
  color: color-mix(in srgb, var(--alta-cream) 86%, transparent);
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.9;
}

.thank-you-note {
  margin-top: clamp(30px, 4vw, 44px) !important;
  padding-block: 18px;
  border-top: 1px solid color-mix(in srgb, var(--alta-gold) 48%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--alta-gold) 22%, transparent);
  color: var(--alta-gold) !important;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  margin-top: clamp(34px, 5vw, 52px);
}

.cookie-banner,
.accessibility-widget {
  position: fixed;
  z-index: 80;
}

.cookie-banner {
  inset-inline: 24px auto;
  bottom: 24px;
  width: min(760px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--alta-gold) 72%, transparent);
  background: color-mix(in srgb, var(--alta-navy) 94%, var(--alta-blue));
  color: var(--alta-cream);
  box-shadow: 0 18px 60px color-mix(in srgb, var(--alta-navy) 62%, transparent);
}

.cookie-banner[hidden],
.a11y-panel[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: color-mix(in srgb, var(--alta-cream) 86%, transparent);
  font-size: 0.86rem;
  line-height: 1.65;
}

.cookie-banner a {
  color: var(--alta-gold);
  text-decoration: none;
}

.cookie-banner a:hover,
.cookie-banner a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.accessibility-widget {
  inset-inline: auto 24px;
  bottom: 24px;
}

.a11y-button {
  width: 42px;
  height: 42px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--alta-gold);
  background: var(--alta-navy);
  color: var(--alta-gold);
  padding: 0;
  cursor: pointer;
  font-family: var(--font-english);
  font-size: 0.82rem;
  letter-spacing: 0;
  box-shadow: 0 18px 50px color-mix(in srgb, var(--alta-navy) 76%, transparent);
}

.a11y-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.a11y-panel {
  position: absolute;
  inset-inline-end: 0;
  bottom: calc(100% + 10px);
  width: 220px;
  display: grid;
  border: 1px solid var(--alta-gold);
  background: var(--alta-navy);
}

.a11y-panel button {
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid var(--alta-gold);
  background: transparent;
  color: var(--alta-cream);
  cursor: pointer;
  padding: 10px 14px;
  text-align: right;
  font: inherit;
}

[dir="ltr"] .a11y-panel button {
  text-align: left;
}

.a11y-panel button:last-child {
  border-bottom: 0;
}

.a11y-panel button:hover,
.a11y-panel button:focus-visible,
.a11y-button:hover,
.a11y-button:focus-visible {
  background: var(--alta-gold);
  color: var(--alta-navy);
}

.a11y-large-text {
  font-size: 112%;
}

.a11y-high-contrast {
  --alta-navy: #0E1F31;
  --alta-blue: #0E1F31;
  --alta-cream: #F3F3E9;
}

.a11y-underline-links a,
.a11y-underline-links button {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.a11y-reduce-motion *,
.a11y-reduce-motion *::before,
.a11y-reduce-motion *::after {
  scroll-behavior: auto !important;
  transition-duration: 0.01ms !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
}

@keyframes seconds-pulse {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 0 transparent;
  }

  50% {
    opacity: 0.58;
    text-shadow: 0 0 18px color-mix(in srgb, var(--alta-gold) 58%, transparent);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block !important;
    grid-column: 3;
    grid-row: 1;
    position: fixed;
    inset-block-start: 13px;
    inset-inline-end: 16px;
    z-index: 102;
  }

  [dir="ltr"] .menu-toggle {
    right: 16px;
    left: auto;
  }

  [dir="rtl"] .menu-toggle {
    right: auto;
    left: 16px;
  }

  .mobile-language-switch {
    position: fixed;
    inset-block-start: 19px;
    z-index: 102;
    display: inline-flex;
  }

  [dir="ltr"] .mobile-language-switch {
    right: 74px;
    left: auto;
  }

  [dir="rtl"] .mobile-language-switch {
    right: auto;
    left: 74px;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    grid-column: 1 / -1;
    inset: 76px 0 0 0;
    display: grid;
    align-content: start;
    justify-items: stretch;
    gap: 0;
    padding: 34px 20px;
    background: var(--alta-navy);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease, transform 260ms ease;
  }

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

  .site-nav a {
    width: 100%;
    min-height: 56px;
    justify-content: center;
    border-bottom: 1px solid var(--alta-gold);
  }

  .site-nav a + a::before {
    display: none;
  }

  .header-cta {
    display: none;
  }

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

  .metric-item,
  .metric-item:nth-child(3n + 1) {
    border-inline-start: 1px solid var(--alta-gold);
  }

  .metric-item:nth-child(odd) {
    border-inline-start: 0;
  }

  .metric-item:nth-child(n + 3) {
    border-top: 1px solid var(--alta-gold);
  }

  .process-grid,
  .membership-grid,
  .credibility-layout,
  .application-layout,
  .circle-page-layout {
    grid-template-columns: 1fr;
  }

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

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

  .quiet-statements {
    grid-template-columns: 1fr;
  }

  .quiet-statements span + span {
    border-inline-start: 0;
    border-top: 1px solid color-mix(in srgb, var(--alta-gold) 20%, transparent);
  }

  .circle-highlights article:nth-child(odd) {
    border-inline-start: 0;
  }

  .circle-highlights article:nth-child(n + 3) {
    border-top: 1px solid var(--alta-gold);
  }

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

  .credibility-copy {
    order: 1;
    justify-self: stretch;
    max-width: 100%;
  }

  .portrait-frame {
    order: 2;
    justify-self: center;
    width: min(100%, 500px);
  }

  .founder-signature {
    width: min(560px, 132%);
    inset-inline-end: -18px;
    bottom: -92px;
  }

  .application-copy,
  .application-intro {
    position: static;
  }

  .application-copy,
  .application-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .application-heading,
  .application-intro-main {
    justify-self: stretch;
  }

  .application-intro-text,
  .application-intro-copy {
    max-width: 100%;
    padding-inline-start: 0;
  }

  .application-intro-copy::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    padding: 13px 16px;
  }

  .header-mark img {
    width: 88px;
  }

  .site-nav {
    inset-block-start: 72px;
  }

  .section-inner {
    width: min(calc(100% - 32px), 1180px);
  }

  .hero {
    padding: 104px 0 58px;
  }

  .hero-logo {
    width: min(250px, 76vw);
    margin-bottom: 40px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.05rem);
    line-height: 1.04;
  }

  [dir="ltr"] h1 {
    width: 100%;
    max-width: min(100%, 312px);
    font-size: clamp(2.05rem, 8vw, 2.55rem);
    overflow-wrap: break-word;
  }

  [dir="ltr"] .hero-copy {
    width: 100%;
    max-width: min(100%, 312px);
    font-size: 0.96rem;
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 3.9rem);
  }

  .results-section .center-heading {
    max-width: 100%;
  }

  .results-section .center-heading h2 {
    max-width: 300px;
    margin-inline: auto;
    font-size: clamp(2rem, 8.4vw, 2.85rem);
    line-height: 1.08;
  }

  .statement-title {
    font-size: clamp(2rem, 8.5vw, 2.95rem);
    line-height: 1.08;
  }

  [dir="ltr"] .statement-title {
    font-size: clamp(1.85rem, 7.2vw, 2.65rem);
  }

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

  .application-layout {
    gap: 28px;
  }

  .application-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3.45rem);
  }

  .application-form {
    padding: 28px 18px;
  }

  legend {
    align-items: center;
    gap: 10px;
  }

  input,
  select,
  textarea {
    min-height: 56px;
  }

  .checkbox-field {
    padding: 14px;
  }

  .consent-helper {
    padding-inline-start: 0;
  }

  .metric-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: min(100%, 280px);
    gap: 12px;
    border: 0;
  }

  .metric-item,
  .metric-item:nth-child(odd),
  .metric-item:nth-child(3n + 1) {
    min-height: 132px;
    min-width: 0;
    flex: 0 0 calc((100% - 12px) / 2);
    aspect-ratio: 1 / 0.86;
    grid-template-columns: 1fr;
    grid-template-rows: 58px auto;
    align-content: center;
    align-items: center;
    justify-items: center;
    gap: 12px;
    padding: 20px 12px;
    border: 1px solid var(--alta-gold);
    text-align: center;
  }

  .metric-item:nth-child(n + 3),
  .metric-item:nth-child(n + 4) {
    border-top: 0;
  }

  .metric-item strong,
  .metric-compact:nth-child(3) strong {
    justify-self: center;
    min-height: 58px;
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1;
  }

  .metric-feature strong {
    min-height: 58px;
    font-size: clamp(1.65rem, 6.7vw, 2.08rem);
  }

  .metric-item span {
    justify-self: center;
    max-width: 13ch;
    font-size: 0.82rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .metric-item:nth-child(5) {
    width: calc((100% - 12px) / 2);
    flex-basis: calc((100% - 12px) / 2);
    justify-self: center;
  }

  .credibility-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 100%;
  }

  .credibility-metrics div,
  .credibility-metrics div:nth-child(odd) {
    border-inline-start: 0;
    min-width: 0;
    padding: 16px 0 0;
  }

  .credibility-metrics div + div {
    border-top: 1px solid color-mix(in srgb, var(--alta-gold) 26%, transparent);
  }

  .process-block,
  .membership-panel {
    min-height: auto;
  }

  .circle-card {
    padding: 38px 24px 32px;
  }

  .circle-roman {
    margin-bottom: 24px;
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .circle-card h3 {
    font-size: clamp(2.05rem, 9vw, 2.75rem);
  }

  .circle-cta {
    width: 100%;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--alta-gold) 72%, transparent);
  }

  .circle-cta::after {
    display: none;
  }

  .portrait-frame,
  .portrait-frame > img:not(.founder-signature) {
    min-height: 410px;
  }

  .credibility-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .founder-quote {
    font-size: clamp(0.92rem, 3.85vw, 1.06rem) !important;
    line-height: 1.78 !important;
    padding-top: 18px;
  }

  .founder-quote figcaption {
    font-size: 0.82em;
  }

  .credibility-metrics strong {
    font-size: clamp(2.05rem, 9vw, 2.65rem);
  }

  .credibility-metrics span {
    font-size: 0.9rem;
  }

  .circle-page-hero {
    min-height: auto;
    padding-top: 116px;
  }

  .circle-highlights {
    grid-template-columns: 1fr;
  }

  .circle-highlights article,
  .circle-highlights article:nth-child(odd) {
    min-height: 150px;
    border-inline-start: 0;
  }

  .circle-highlights article + article {
    border-top: 1px solid var(--alta-gold);
  }

  .legal-toc {
    grid-template-columns: 1fr 1fr;
  }

  .legal-toc a {
    min-height: 48px;
    font-size: 0.78rem;
  }

  .cycle-countdown {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cycle-countdown span {
    padding: 10px 4px 12px;
    font-size: 0.72rem;
  }

  .cycle-countdown strong {
    font-size: 1.18rem;
  }

  .button {
    width: 100%;
  }

  .cookie-banner {
    inset-inline: 16px;
    bottom: 16px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .cookie-banner p {
    font-size: 0.82rem;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  [dir="ltr"] .cookie-actions {
    justify-content: flex-end;
  }

  .cookie-actions .button {
    width: auto;
  }

  .accessibility-widget {
    inset-inline: auto 16px;
    bottom: 16px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cycle-countdown [data-seconds] {
    animation: none;
  }
}
