@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;1,500&display=swap");

:root {
  --page: #1b1c1e;
  --page-soft: #242629;
  --surface: #fffaf7;
  --surface-2: #f8eee9;
  --surface-3: #ffe0d5;
  --peach: #ffc7b6;
  --coral: #f36e5f;
  --coral-dark: #d95145;
  --ink: #171717;
  --muted: #6e6460;
  --line: rgba(23, 23, 23, 0.11);
  --line-dark: rgba(255, 255, 255, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --gap: 16px;
  --frame-width: 1480px;
  --header-height: 82px;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-accent: "Playfair Display", Georgia, serif;
  color-scheme: light;
  font-family: var(--font-body);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 26px);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 125, 103, 0.08), transparent 27%),
    radial-gradient(circle at 87% 78%, rgba(255, 205, 188, 0.06), transparent 32%),
    var(--page);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(243, 110, 95, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 5000;
  top: -90px;
  left: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  color: white;
  background: var(--ink);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

.site-frame {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: clip;
  border: 0;
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(18px) saturate(120%);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 247, 0.97);
  box-shadow: 0 12px 34px rgba(46, 36, 32, 0.08);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  margin-right: auto;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand-main {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 13px;
  font-weight: 500;
}

.site-nav > a,
.language-links a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav > a:not(.nav-cta)::after,
.language-links a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--coral);
  transition: right 0.2s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-active::after,
.language-links a:hover::after,
.language-links a[aria-current="page"]::after {
  right: 0;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
}

.nav-cta:hover {
  background: var(--coral-dark);
}

.language-links {
  display: flex;
  gap: 12px;
  padding-left: 4px;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.section-shell {
  margin-inline: 18px;
}

.card {
  overflow: hidden;
  border: 1px solid rgba(80, 54, 45, 0.045);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
}

.hero {
  position: relative;
}

.hero-stage {
  min-height: 720px;
  min-height: calc(100vh - var(--header-height) - 58px);
  min-height: calc(100svh - var(--header-height) - 58px);
  margin-top: 18px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  color: white;
  background: #070709;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, transparent 0 23%, rgba(4, 4, 6, 0.12) 56%, rgba(4, 4, 6, 0.68) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.48));
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: inherit;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.48);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: -5%;
  overflow: hidden;
  background: #070709;
}

.hero-media canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  filter: blur(17px) saturate(1.24) contrast(1.12);
  transform: scale(1.06);
}

.hero-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  mix-blend-mode: screen;
  opacity: 0.63;
  animation: hero-aurora-drift 13s ease-in-out infinite alternate;
}

.hero-aurora-left {
  left: -8%;
  bottom: -16%;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  background: rgba(222, 53, 69, 0.66);
}

.hero-aurora-right {
  top: -18%;
  right: -10%;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  background: rgba(255, 157, 132, 0.55);
  animation-delay: -4s;
}

.hero-aurora-center {
  left: 38%;
  bottom: -30%;
  width: min(35vw, 520px);
  aspect-ratio: 1;
  background: rgba(102, 40, 106, 0.48);
  animation-delay: -8s;
}

@keyframes hero-aurora-drift {
  from { transform: translate3d(-4%, -3%, 0) scale(0.92); }
  to { transform: translate3d(6%, 5%, 0) scale(1.1); }
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
  background-size: 190px 190px;
  mix-blend-mode: soft-light;
  opacity: 0.1;
}

.hero-axis {
  position: absolute;
  z-index: 1;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28) 24%, rgba(243, 110, 95, 0.72) 50%, rgba(255, 255, 255, 0.24) 76%, transparent);
  box-shadow: 0 0 26px rgba(243, 110, 95, 0.42);
  transform: translateX(-50%);
}

.hero-portraits {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.hero-portrait {
  position: absolute;
  bottom: -1.5%;
  width: clamp(260px, 31vw, 480px);
  aspect-ratio: 1122 / 1402;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px 28px 8px 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    0 0 56px rgba(243, 110, 95, 0.13);
  transform-origin: 50% 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.7s ease;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, transparent 74%, rgba(7, 7, 9, 0.18));
  pointer-events: none;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.hero-portrait-coral {
  left: clamp(22px, 5.2vw, 84px);
  transform: rotate(-2.4deg) translateY(2.4%);
}

.hero-portrait-peach {
  right: clamp(22px, 5.2vw, 84px);
  transform: rotate(2.4deg) translateY(2.4%);
}

.hero-stage:hover .hero-portrait-coral {
  transform: rotate(-1.2deg) translate(-1.2%, 1.2%);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.58), 0 0 72px rgba(226, 70, 75, 0.2);
}

.hero-stage:hover .hero-portrait-peach {
  transform: rotate(1.2deg) translate(1.2%, 1.2%);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.58), 0 0 72px rgba(255, 171, 145, 0.18);
}

.hero-copy {
  position: absolute;
  z-index: 4;
  top: 47%;
  left: 50%;
  width: min(900px, 78%);
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero-eyebrow {
  margin: 0 0 clamp(24px, 4vh, 42px);
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(10px, 0.8vw, 13px);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.56);
}

.hero h1 {
  display: flex;
  align-items: baseline;
  margin: 0;
  color: #f8f1ea;
  font-size: clamp(100px, 14.4vw, 218px);
  font-weight: 300;
  line-height: 0.72;
  letter-spacing: -0.085em;
  text-shadow:
    0 7px 42px rgba(0, 0, 0, 0.62),
    0 0 70px rgba(0, 0, 0, 0.28);
}

.hero h1 span,
.hero h1 strong {
  font: inherit;
}

.hero h1 strong {
  color: var(--coral);
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  min-width: 218px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: clamp(42px, 6vh, 72px);
  padding: 0 26px;
  border: 1px solid rgba(255, 132, 111, 0.88);
  border-radius: 999px;
  color: white;
  background: rgba(10, 10, 12, 0.38);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px) saturate(120%);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.hero-cta:hover {
  border-color: var(--coral);
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.hero-cta span {
  font-size: 18px;
}


.primary-button {
  display: inline-flex;
  width: fit-content;
  min-width: 210px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 25px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: white;
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(23, 23, 23, 0.14);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
  box-shadow: 0 17px 38px rgba(197, 66, 55, 0.22);
  transform: translateY(-2px);
}

.primary-button span {
  font-size: 17px;
  line-height: 1;
}

.hero-footnote {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 18px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.content-section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 48px;
}

.section-label {
  margin: 0;
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.training-copy h2,
.reviews-heading h2,
.final-cta h2,
.application-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.8fr;
  gap: var(--gap);
}

.about-grid > .card {
  min-height: 370px;
  padding: clamp(25px, 3vw, 42px);
}

.about-main {
  display: flex;
  flex-direction: column;
  background: #f8ece7;
}

.about-lead {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: clamp(25px, 2.3vw, 36px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.about-main > p:not(.about-lead) {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: auto;
  color: var(--coral-dark);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link span {
  transition: transform 0.2s ease;
}

.freedom-card {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: linear-gradient(150deg, #ffad98, #ffd4c6);
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-left: auto;
  border: 1px solid rgba(23, 23, 23, 0.22);
  border-radius: 50%;
  font-size: 20px;
}

.eyebrow-small {
  margin: auto 0 10px;
  color: rgba(23, 23, 23, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.freedom-card h3 {
  margin: 0 0 18px;
  font-size: clamp(27px, 2.3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.freedom-card > p:last-child {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.trust-card {
  background: var(--ink);
  color: white;
}

.trust-card .eyebrow-small {
  margin-top: 0;
  color: var(--coral);
}

.plain-list {
  display: grid;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 14px;
}

.heading-split {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
}

.section-intro {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.income-section {
  border-top: 1px solid var(--line);
}

.income-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.income-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #f8ece7;
}

.income-card-primary {
  background: linear-gradient(145deg, #ffb19f, #ffd8cc);
}

.income-card-dark {
  color: white;
  background: var(--ink);
}

.income-step {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.income-card-dark .income-step {
  color: var(--coral);
}

.income-card strong {
  margin-block: auto;
  font-size: clamp(60px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.income-card p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.income-card-primary p {
  color: rgba(23, 23, 23, 0.72);
}

.income-card-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.requirements-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  margin-top: var(--gap);
  padding: clamp(28px, 4vw, 54px);
  border-radius: var(--radius-lg);
  background: #f4e9e4;
}

.requirements-heading h2 {
  max-width: 520px;
  margin: 18px 0 0;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.requirements-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.requirements-list li {
  min-height: 145px;
  padding: 24px;
  border: 1px solid rgba(23, 23, 23, 0.07);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.requirements-list li:nth-child(2),
.requirements-list li:nth-child(3) {
  background: rgba(255, 237, 230, 0.72);
}

.requirements-list li:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(45, 30, 27, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.requirements-list .requirement-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(197, 66, 55, 0.2);
  border-radius: 50%;
  color: var(--coral-dark);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 20px rgba(45, 30, 27, 0.07);
}

.requirements-list .requirement-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.requirements-list strong {
  display: block;
  font-size: 17px;
}

.requirements-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.training-section {
  padding-top: 30px;
}

.training-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--gap);
  padding: clamp(30px, 5vw, 70px);
  border-radius: var(--radius-xl);
  color: white;
  background:
    radial-gradient(circle at 6% 90%, rgba(243, 110, 95, 0.35), transparent 30%),
    linear-gradient(145deg, #232528, #171819);
}

.training-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: clamp(10px, 4vw, 60px);
}

.training-copy .section-label {
  color: var(--coral);
}

.training-copy .section-intro {
  margin: 28px 0 40px;
  color: rgba(255, 255, 255, 0.68);
}

.compact-button {
  min-width: 220px;
  min-height: 52px;
  margin-top: auto;
  border-color: var(--coral);
  background: var(--coral-dark);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.training-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.training-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  min-height: 150px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.training-steps > li > span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.training-steps h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.training-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.reviews-section {
  padding-bottom: 110px;
}

.reviews-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 32px;
  margin-bottom: 42px;
}

.reviews-heading > p {
  margin: 0;
  color: var(--muted);
}

.carousel {
  position: relative;
  width: 100%;
  min-height: 470px;
}

.slides {
  display: flex;
  gap: var(--gap);
  width: 100%;
  height: 470px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-inline: contain;
  touch-action: pan-x;
}

.slides::-webkit-scrollbar {
  display: none;
}

.slides.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.review-slide {
  position: relative;
  flex: 0 0 min(420px, 31vw);
  width: min(420px, 31vw);
  height: 470px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #efe8e4;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.review-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}


.slides.is-dragging .review-slide img {
  cursor: grabbing;
}

.review-slide:hover img {
  transform: scale(1.015);
  filter: contrast(1.03);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 18px;
  padding: clamp(34px, 5vw, 68px);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #ffd6ca, #ffb29f);
}

.final-cta h2 {
  max-width: 800px;
  margin-top: 14px;
  font-size: clamp(38px, 4.5vw, 66px);
}

.site-footer {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  gap: 36px;
  padding: 24px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.telegram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.telegram-link span {
  color: var(--coral-dark);
}

.application-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.application-modal:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.application-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 19, 0.78);
  backdrop-filter: blur(12px);
}

.application-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100dvh - 44px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  overflow: auto;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.52);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.25s ease;
}

.application-modal:target .application-panel {
  transform: none;
}

.application-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
}

.application-heading {
  display: flex;
  flex-direction: column;
  padding-right: 20px;
}

.application-heading h2 {
  margin: 22px 0 24px;
  font-size: clamp(46px, 6vw, 78px);
}

.application-heading > p:not(.section-label) {
  margin: 0;
  color: var(--muted);
}

.application-points {
  display: grid;
  gap: 0;
  margin-top: auto;
  padding-top: 40px;
}

.application-points span {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.application-form {
  display: grid;
  gap: 13px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: #f5e9e4;
}

.application-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.application-form input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 10px;
  color: var(--ink);
  background: white;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.application-form input:focus {
  border-color: var(--coral);
  outline: 3px solid rgba(243, 110, 95, 0.16);
}

.application-form input[aria-invalid="true"] {
  border-color: var(--coral-dark);
}

.application-form button {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 6px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--ink);
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.application-form button:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.privacy-copy {
  margin: 2px 0 0;
  color: #877a75;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.privacy-copy a {
  color: var(--ink);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.form-status.success {
  color: #247237;
}

.form-status.error {
  color: var(--coral-dark);
}

.privacy-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: min(82vh, 900px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  color: #f6f1ee;
  background: #202124;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

.privacy-dialog::backdrop {
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(6px);
}

.privacy-dialog-inner {
  position: relative;
  padding: clamp(28px, 5vw, 54px);
}

.privacy-dialog h2 {
  margin: 0 48px 25px 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.privacy-dialog h3 {
  margin: 26px 0 8px;
  color: var(--coral);
  font-size: 16px;
}

.privacy-dialog p,
.privacy-dialog li {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.privacy-dialog ul {
  padding-left: 22px;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  background: transparent;
  font-size: 28px;
}

/* Content stays visible when JavaScript is unavailable. */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.image-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: white;
  background: transparent;
  overflow: hidden;
}

.image-lightbox::backdrop {
  background: rgba(15, 15, 16, 0.92);
  backdrop-filter: blur(14px);
}

.lightbox-shell {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 34px;
  align-items: center;
}

.lightbox-stage {
  grid-row: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 22px 28px 8px;
  overflow: hidden;
}

.lightbox-image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1440px, 96vw);
  max-height: calc(100dvh - 58px);
  object-fit: contain;
  cursor: default;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  font: 500 24px/1 var(--font-body);
  backdrop-filter: blur(8px);
}

.lightbox-counter {
  grid-row: 2;
  align-self: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1160px) {
  .hero-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: minmax(560px, auto) minmax(240px, auto);
  }

  .hero-offer {
    grid-column: 1 / span 4;
    grid-row: 1;
  }

  .mirror-card {
    grid-column: 5 / span 4;
    grid-row: 1;
    min-height: 560px;
  }

  .quick-facts {
    grid-column: 1 / span 4;
    grid-row: 2;
  }

  .motion-card {
    grid-column: 5 / span 4;
    grid-row: 2;
  }

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

  .about-main {
    grid-column: 1 / -1;
  }

  .heading-split,
  .reviews-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .requirements-panel,
  .training-grid {
    grid-template-columns: 1fr;
  }

  .training-copy {
    min-height: 360px;
  }

  .review-slide {
    flex-basis: 42vw;
    width: 42vw;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .site-frame {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 0 18px;
  }

  .brand-main {
    font-size: 24px;
  }

  .brand-sub {
    font-size: 21px;
  }

  .menu-toggle {
    display: block;
  }

  .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;
    inset: var(--header-height) 10px auto;
    display: grid;
    gap: 0;
    padding: 16px 18px 22px;
    border: 1px solid var(--line);
    border-radius: 0 0 20px 20px;
    background: rgba(255, 250, 247, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    transform: translateY(-135%);
    transition: transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav > a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 10px;
    justify-content: center;
    border-bottom: 0 !important;
  }

  .language-links {
    min-height: 46px;
    align-items: center;
    padding: 8px 0 0;
  }

  .section-shell {
    margin-inline: 10px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
    gap: 10px;
  }

  .hero-offer,
  .mirror-card,
  .quick-facts,
  .motion-card {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-offer {
    min-height: 560px;
  }

  .mirror-card {
    min-height: 690px;
  }

  .quick-facts,
  .motion-card {
    min-height: 260px;
  }

  .content-section {
    padding: 82px 0;
  }

  .section-heading h2,
  .training-copy h2,
  .reviews-heading h2,
  .final-cta h2 {
    font-size: clamp(39px, 10vw, 58px);
  }

  .about-grid,
  .income-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-main {
    grid-column: auto;
  }

  .about-grid > .card {
    min-height: 330px;
  }

  .income-card {
    min-height: 290px;
  }

  .requirements-panel {
    gap: 36px;
    padding: 28px 22px;
  }

  .training-grid {
    padding: 34px 24px;
  }

  .training-copy {
    min-height: 340px;
    padding-right: 0;
  }

  .reviews-section {
    padding-bottom: 82px;
  }

  .review-slide {
    flex-basis: calc(100vw - 80px);
    width: calc(100vw - 80px);
    max-width: 440px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 22px;
    padding: 28px 20px;
  }

  .site-footer p:nth-child(2) {
    grid-column: 1 / -1;
    order: 3;
  }

  .application-panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .application-heading {
    min-height: 330px;
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .site-frame {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .section-shell {
    margin-inline: 8px;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-grid {
    gap: 8px;
  }

  .card,
  .training-grid,
  .final-cta {
    border-radius: 18px;
  }

  .hero-offer {
    min-height: 590px;
    padding: 26px 22px;
  }

  .hero h1 {
    margin-top: 32px;
    font-size: clamp(41px, 13vw, 58px);
  }

  .hero-offer-copy > p {
    font-size: 14px;
  }

  .primary-button {
    width: 100%;
    justify-content: space-between;
  }

  .mirror-card {
    min-height: 610px;
  }

  .mirror-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .mirror-card figcaption span {
    font-size: 14px;
  }

  .quick-facts {
    padding: 24px 18px;
  }

  .quick-facts dl {
    gap: 6px;
  }

  .quick-facts dt {
    font-size: 26px;
  }

  .motion-copy {
    width: 66%;
    padding: 24px 18px;
  }

  .content-section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .training-copy h2,
  .reviews-heading h2,
  .final-cta h2 {
    font-size: 42px;
  }

  .about-grid > .card {
    min-height: 310px;
    padding: 25px 22px;
  }

  .about-lead {
    font-size: 25px;
  }

  .income-card {
    min-height: 270px;
    padding: 25px 22px;
  }

  .income-card strong {
    font-size: 70px;
  }

  .requirements-list {
    grid-template-columns: 1fr;
  }

  .requirements-list li {
    min-height: 125px;
  }

  .training-grid {
    padding: 28px 20px;
  }

  .training-copy {
    min-height: 390px;
  }

  .training-steps li {
    grid-template-columns: 42px 1fr;
    min-height: 140px;
    gap: 12px;
  }

  .slides {
    height: 430px;
  }

  .carousel {
    min-height: 430px;
  }

  .review-slide {
    flex-basis: calc(100vw - 36px);
    width: calc(100vw - 36px);
    height: 430px;
  }

  .final-cta {
    padding: 30px 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer p:nth-child(2) {
    grid-column: auto;
    order: initial;
  }

  .application-modal {
    padding: 8px;
  }

  .application-panel {
    max-height: calc(100dvh - 16px);
    gap: 26px;
    padding: 28px 18px 18px;
    border-radius: 20px;
  }

  .application-heading {
    min-height: 380px;
    padding: 12px 6px 0;
  }

  .application-heading h2 {
    font-size: 52px;
  }

  .application-form {
    padding: 20px 16px;
  }

  .lightbox-shell {
    grid-template-rows: minmax(0, 1fr) 30px;
  }

  .lightbox-stage {
    padding: 14px 10px 4px;
  }

  .lightbox-image {
    max-width: 98vw;
    max-height: calc(100dvh - 40px);
  }

  .lightbox-close {
    width: 44px;
    height: 44px;
  }
}


/* Immersive hero responsive layout */
@media (max-width: 1160px) {
  .hero-stage {
    min-height: 680px;
    min-height: calc(100vh - var(--header-height) - 48px);
    min-height: calc(100svh - var(--header-height) - 48px);
  }

  .hero-portrait {
    width: clamp(250px, 35vw, 390px);
  }

  .hero-copy {
    top: 43%;
    width: 88%;
  }

  .hero h1 {
    font-size: clamp(94px, 17vw, 176px);
  }
}

@media (max-width: 900px) {
  .hero.hero-stage {
    min-height: 700px;
    min-height: calc(100vh - var(--header-height) - 20px);
    min-height: calc(100svh - var(--header-height) - 20px);
    margin-top: 10px;
    padding: 0;
  }

  .hero-copy {
    top: 31%;
    width: 92%;
  }

  .hero h1 {
    font-size: clamp(86px, 20vw, 148px);
  }

  .hero-eyebrow {
    margin-bottom: 24px;
  }

  .hero-cta {
    margin-top: 38px;
  }

  .hero-portrait {
    bottom: -0.5%;
    width: min(40vw, 340px);
    border-radius: 22px 22px 6px 6px;
  }

  .hero-portrait-coral {
    left: 3.5%;
    transform: rotate(-1.6deg) translateY(1.4%);
  }

  .hero-portrait-peach {
    right: 3.5%;
    transform: rotate(1.6deg) translateY(1.4%);
  }
}

@media (max-width: 560px) {
  .hero.hero-stage {
    min-height: 670px;
    min-height: calc(100vh - var(--header-height) - 8px);
    min-height: calc(100svh - var(--header-height) - 8px);
    margin-top: 8px;
    padding: 0;
    border-radius: 18px;
  }

  .hero-stage::before {
    background:
      radial-gradient(circle at 50% 34%, transparent 0 16%, rgba(4, 4, 6, 0.11) 46%, rgba(4, 4, 6, 0.62) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.1) 55%, rgba(0, 0, 0, 0.44));
  }

  .hero-axis {
    top: 5%;
    bottom: 4%;
    opacity: 0.65;
  }

  .hero-copy {
    top: 27%;
    width: 94%;
  }

  .hero-eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .hero h1 {
    font-size: clamp(70px, 24vw, 104px);
    letter-spacing: -0.09em;
  }

  .hero-cta {
    min-width: 194px;
    min-height: 54px;
    gap: 22px;
    margin-top: 34px;
    padding-inline: 22px;
    font-size: 10px;
  }

  .hero-portrait {
    bottom: 0;
    width: calc(50% - 12px);
    border-radius: 16px 16px 4px 4px;
  }

  .hero-portrait-coral {
    left: 6px;
    transform: rotate(-0.9deg) translateY(0.4%);
  }

  .hero-portrait-peach {
    right: 6px;
    transform: rotate(0.9deg) translateY(0.4%);
  }

  .hero-stage:hover .hero-portrait-coral {
    transform: rotate(-0.9deg) translateY(0.4%);
  }

  .hero-stage:hover .hero-portrait-peach {
    transform: rotate(0.9deg) translateY(0.4%);
  }

  .hero-footnote {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* Marketing pass: application path + stronger value hierarchy */
.trust-card .plain-list li {
  display: grid;
  gap: 4px;
}

.trust-card .plain-list li strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.trust-card .plain-list li span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

.application-journey {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.application-journey li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.application-journey li > span {
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.application-journey p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.application-journey strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 13px;
}

.application-heading .application-points {
  margin-top: 20px;
  padding-top: 0;
}

@media (max-width: 560px) {
  .application-heading {
    min-height: auto;
  }

  .application-journey {
    margin-top: 22px;
  }
}

/* Mobile hero refinement: denser composition without changing the concept */
@media (max-width: 560px) {
  .hero.hero-stage {
    min-height: clamp(620px, calc(100svh - var(--header-height) - 12px), 730px);
    margin-top: 6px;
    border-radius: 16px;
  }

  .hero-copy {
    top: 30%;
    width: 92%;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
  }

  .hero-cta {
    margin-top: 30px;
  }

  .hero-portrait {
    bottom: 0;
    width: 55%;
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 20px 20px 0 0;
    box-shadow:
      0 20px 54px rgba(0, 0, 0, 0.38),
      0 0 38px rgba(243, 110, 95, 0.1);
  }

  .hero-portrait-coral {
    left: -2%;
    transform: none;
  }

  .hero-portrait-peach {
    right: -2%;
    transform: none;
  }

  .hero-stage:hover .hero-portrait-coral,
  .hero-stage:hover .hero-portrait-peach {
    transform: none;
  }
}

/* Full-viewport hero: header + hero always fill exactly one screen */
.hero.hero-stage {
  height: calc(100vh - var(--header-height) - 18px);
  height: calc(100dvh - var(--header-height) - 18px);
  min-height: 0;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 0;
  }

  .hero.hero-stage {
    height: calc(100vh - var(--header-height) - 10px);
    height: calc(100dvh - var(--header-height) - 10px);
    min-height: 0;
    margin-top: 10px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 0;
  }

  .hero.hero-stage {
    height: calc(100vh - var(--header-height) - 6px);
    height: calc(100dvh - var(--header-height) - 6px);
    min-height: 0;
    margin-top: 6px;
  }
}


/* Mobile hero portrait fix: photos rise closer to the CTA and stay separated */
@media (max-width: 560px) {
  .hero-copy {
    top: 28%;
  }

  .hero-portraits {
    inset: 0;
  }

  .hero-portrait {
    top: 52%;
    bottom: auto;
    width: calc(50% - 8px);
    border-radius: 16px 16px 0 0;
  }

  .hero-portrait img {
    object-position: center bottom;
  }

  .hero-portrait-coral {
    left: 0;
    transform: none;
  }

  .hero-portrait-peach {
    right: 0;
    transform: none;
  }

  .hero-stage:hover .hero-portrait-coral,
  .hero-stage:hover .hero-portrait-peach {
    transform: none;
  }
}

@media (max-width: 420px) {
  .hero-copy {
    top: 27%;
  }

  .hero-portrait {
    top: 53%;
    width: calc(50% - 7px);
  }
}


/* Mobile hero match for ~567px width: keep portraits low, separated, and visually balanced */
@media (max-width: 700px) {
  .hero-copy {
    top: 27%;
    width: 90%;
  }

  .hero-cta {
    margin-top: 30px;
  }

  .hero-portrait {
    top: auto;
    bottom: 0;
    width: calc(50% - 22px);
    border-radius: 22px 22px 0 0;
  }

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

  .hero-portrait-coral {
    left: 12px;
    transform: none;
  }

  .hero-portrait-peach {
    right: 12px;
    transform: none;
  }

  .hero-stage:hover .hero-portrait-coral,
  .hero-stage:hover .hero-portrait-peach {
    transform: none;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    top: 26.5%;
    width: 90%;
  }

  .hero-portrait {
    top: auto;
    bottom: 0;
    width: calc(50% - 18px);
    border-radius: 18px 18px 0 0;
  }

  .hero-portrait-coral {
    left: 8px;
  }

  .hero-portrait-peach {
    right: 8px;
  }
}

/* Mobile about deck: natural scroll-driven stacked cards */
@media (max-width: 700px) {
  .about-grid {
    position: relative;
    display: block;
    padding: 6px 0 34px;
  }

  .about-grid > .card {
    --deck-index: 0;
    position: sticky;
    top: calc(var(--header-height) + 12px + (var(--deck-index) * 14px));
    min-height: 360px !important;
    max-height: none;
    margin: 0 0 18px;
    padding: 28px 24px 30px;
    overflow: hidden;
    cursor: default;
    transform: translateZ(0) scale(.985);
    transform-origin: 50% 0;
    box-shadow: 0 16px 34px rgba(35, 24, 20, .11);
    transition:
      transform .45s cubic-bezier(.22, 1, .36, 1),
      box-shadow .45s ease,
      filter .45s ease,
      opacity .45s ease;
    will-change: transform;
  }

  .about-grid > .card:nth-child(1) {
    --deck-index: 0;
    z-index: 1;
  }

  .about-grid > .card:nth-child(2) {
    --deck-index: 1;
    z-index: 2;
  }

  .about-grid > .card:nth-child(3) {
    --deck-index: 2;
    z-index: 3;
  }

  .about-grid > .about-main {
    min-height: 430px !important;
  }

  .about-grid > .freedom-card {
    min-height: 330px !important;
  }

  .about-grid > .trust-card {
    min-height: 390px !important;
  }

  .about-grid > .card.is-active {
    transform: translateZ(0) scale(1);
    box-shadow: 0 24px 52px rgba(35, 24, 20, .16);
    filter: none;
    opacity: 1;
  }

  .about-grid > .card.is-past {
    transform: translateY(-4px) scale(.965);
    box-shadow: 0 9px 24px rgba(35, 24, 20, .09);
    filter: saturate(.9) brightness(.96);
  }

  .about-grid > .card.is-next {
    transform: translateZ(0) scale(.985);
  }

  /* No click affordance on mobile: cards change as the page is scrolled. */
  .about-grid > .card::before {
    content: none !important;
  }

  .freedom-card .card-icon {
    display: none;
  }

  .freedom-card .eyebrow-small {
    margin: auto 0 10px;
  }

  .about-grid > .card .plain-list,
  .about-grid > .card > p,
  .about-grid > .card .text-link {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 420px) {
  .about-grid > .card {
    top: calc(var(--header-height) + 10px + (var(--deck-index) * 12px));
    padding: 24px 20px 26px;
  }

  .about-grid > .about-main {
    min-height: 410px !important;
  }

  .about-grid > .freedom-card {
    min-height: 310px !important;
  }

  .about-grid > .trust-card {
    min-height: 370px !important;
  }
}


/* Mobile about deck typography: align cards 2–3 with the first card */
@media (max-width: 700px) {
  .about-grid > .freedom-card h3 {
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -0.04em;
  }

  .about-grid > .freedom-card > p:last-child {
    font-size: 16px;
    line-height: 1.55;
  }

  .about-grid > .trust-card .plain-list {
    margin-top: 30px;
  }

  .about-grid > .trust-card .plain-list li {
    padding: 16px 0;
  }

  .about-grid > .trust-card .plain-list li strong {
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  .about-grid > .trust-card .plain-list li span {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .about-grid > .freedom-card h3 {
    font-size: 24px;
  }

  .about-grid > .freedom-card > p:last-child {
    font-size: 15px;
  }

  .about-grid > .trust-card .plain-list li strong {
    font-size: 17px;
  }

  .about-grid > .trust-card .plain-list li span {
    font-size: 14px;
  }
}


/* Mobile about deck refinement: hide read-through between stacked cards and tighten card 2 top spacing */
@media (max-width: 700px) {
  .about-grid {
    overflow: hidden;
    padding-bottom: 22px;
  }

  .about-grid > .card {
    margin-bottom: 12px;
  }

  .about-grid > .card.is-past .about-lead,
  .about-grid > .card.is-past > p:not(.eyebrow-small),
  .about-grid > .card.is-past .text-link,
  .about-grid > .card.is-past .plain-list,
  .about-grid > .card.is-past h3 {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
  }

  .about-grid > .card .about-lead,
  .about-grid > .card > p,
  .about-grid > .card .text-link,
  .about-grid > .card .plain-list,
  .about-grid > .card h3 {
    transition: opacity .28s ease, transform .28s ease;
  }

  .about-grid > .freedom-card {
    min-height: 286px !important;
    padding-top: 18px;
  }

  .freedom-card .eyebrow-small {
    margin: 0 0 10px;
  }
}

@media (max-width: 420px) {
  .about-grid {
    padding-bottom: 18px;
  }

  .about-grid > .freedom-card {
    min-height: 274px !important;
    padding-top: 16px;
  }
}


/* Mobile about deck hotfix: restore sticky stacking and remove visual gaps */
@media (max-width: 700px) {
  .about-grid {
    overflow: visible !important;
    padding-bottom: 42px;
  }

  .about-grid > .card {
    margin: 0 0 -18px;
  }

  .about-grid > .card:last-child {
    margin-bottom: 0;
  }

  /* Keep card contents visible; the previous opacity mask broke the sticky deck. */
  .about-grid > .card.is-past .about-lead,
  .about-grid > .card.is-past > p:not(.eyebrow-small),
  .about-grid > .card.is-past .text-link,
  .about-grid > .card.is-past .plain-list,
  .about-grid > .card.is-past h3 {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .about-grid > .freedom-card {
    min-height: 286px !important;
    padding-top: 20px;
  }

  .freedom-card .eyebrow-small {
    margin: 0 0 10px;
  }
}

@media (max-width: 420px) {
  .about-grid {
    padding-bottom: 36px;
  }

  .about-grid > .card {
    margin-bottom: -16px;
  }

  .about-grid > .freedom-card {
    min-height: 274px !important;
    padding-top: 18px;
  }
}


/* Mobile stability and interaction fixes */
@media (max-width: 700px) {
  /* Keep the first screen at a stable viewport height while browser chrome collapses/expands. */
  .hero.hero-stage {
    height: calc(100svh - var(--header-height) - 6px);
    min-height: 0;
    margin-top: 6px;
  }

  /* Keep CTA visually between the VANTA wordmark and the portraits. */
  .hero-copy {
    top: 23.5%;
    width: 92%;
  }

  .hero-cta {
    margin-top: clamp(34px, 5.5svh, 50px);
  }

  /* Native horizontal swipe should work even when the gesture starts on the screenshot itself. */
  .slides,
  .review-slide,
  .review-slide img {
    touch-action: pan-x;
  }

  /* Application modal must never be wider than the mobile viewport. */
  .application-modal {
    width: 100vw;
    max-width: 100vw;
    padding: 8px;
    overflow-x: hidden;
  }

  .application-panel {
    width: 100%;
    max-width: calc(100vw - 16px);
    min-width: 0;
    max-height: calc(100svh - 16px);
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 24px 14px 16px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .application-heading,
  .application-form,
  .application-journey,
  .application-journey li,
  .application-heading > *,
  .application-form > * {
    min-width: 0;
    max-width: 100%;
  }

  .application-heading {
    min-height: auto;
    padding: 8px 4px 0;
  }

  .application-heading h2 {
    font-size: clamp(40px, 12vw, 52px);
    overflow-wrap: anywhere;
  }

  .application-form {
    width: 100%;
    padding: 18px 14px;
  }

  .application-form input,
  .application-form button {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .hero-copy {
    top: 22.5%;
  }

  .hero-cta {
    margin-top: clamp(30px, 5svh, 42px);
  }
}


/* Precise mobile hero CTA placement + reliable review swipe */
@media (max-width: 700px) {
  .hero-copy {
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    transform: none;
    pointer-events: none;
  }

  .hero-eyebrow {
    position: absolute;
    top: 18%;
    left: 50%;
    width: 100%;
    margin: 0;
    transform: translateX(-50%);
  }

  .hero h1 {
    position: absolute;
    top: 24.5%;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-cta {
    position: absolute;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
    pointer-events: auto;
  }

  .hero-cta:hover {
    transform: translate(-50%, calc(-50% - 2px));
  }

  .slides,
  .review-slide,
  .review-slide img {
    touch-action: pan-y;
  }

  .slides.is-touching {
    scroll-behavior: auto;
    scroll-snap-type: none;
    cursor: grabbing;
  }
}


/* Uniform mobile section rhythm */
@media (max-width: 700px) {
  :root {
    --mobile-section-space: clamp(50px, 11vw, 60px);
  }

  /* Use one spacing source between major blocks instead of adding
     the bottom padding of one section to the top padding of the next. */
  main > .content-section {
    padding-top: var(--mobile-section-space) !important;
    padding-bottom: 0 !important;
  }

  main > .about-section .about-grid {
    padding-bottom: 0 !important;
  }

  main > .income-section,
  main > .training-section,
  main > .reviews-section {
    margin-top: 0;
  }

  /* A consistent visual pause before the final conversion card. */
  main > .final-cta {
    margin-top: var(--mobile-section-space);
    margin-bottom: 12px;
  }

  /* Keep heading-to-content spacing consistent across sections. */
  .section-heading,
  .reviews-heading {
    margin-bottom: 30px;
  }

  /* Internal card spacing stays compact and predictable. */
  .income-grid,
  .about-grid {
    gap: 10px;
  }

  .requirements-panel {
    margin-top: 10px;
  }
}

@media (max-width: 420px) {
  :root {
    --mobile-section-space: 48px;
  }

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


/* Mobile spacing refinement: larger and more even separation between major sections */
@media (max-width: 700px) {
  :root {
    --mobile-section-space: clamp(60px, 13vw, 74px);
  }

  main > .content-section {
    padding-top: var(--mobile-section-space) !important;
  }

  .section-heading,
  .reviews-heading {
    margin-bottom: 34px;
  }

  .income-grid,
  .about-grid {
    gap: 12px;
  }

  /* Requirements reads like a separate block on mobile, so give it the same rhythm. */
  .requirements-panel {
    margin-top: var(--mobile-section-space) !important;
  }

  .training-grid,
  .carousel,
  .final-cta-card {
    margin-top: 0;
  }

  main > .final-cta {
    margin-top: var(--mobile-section-space);
    margin-bottom: 18px;
  }
}

@media (max-width: 420px) {
  :root {
    --mobile-section-space: 58px;
  }

  .section-heading,
  .reviews-heading {
    margin-bottom: 32px;
  }

  .requirements-panel {
    margin-top: 58px !important;
  }
}


/* Desktop about-card typography: keep cards 2–3 at the same visual scale as card 1 */
@media (min-width: 701px) {
  .about-grid > .freedom-card h3 {
    font-size: clamp(25px, 2.3vw, 36px);
    line-height: 1.12;
  }

  .about-grid > .freedom-card > p:last-child {
    font-size: 16px;
    line-height: 1.55;
  }

  .about-grid > .trust-card .plain-list {
    margin-top: 34px;
  }

  .about-grid > .trust-card .plain-list li {
    padding: 16px 0;
  }

  .about-grid > .trust-card .plain-list li strong {
    font-size: 18px;
    line-height: 1.28;
    letter-spacing: -0.02em;
  }

  .about-grid > .trust-card .plain-list li span {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Review lightbox: horizontal swipe without zoom/navigation chrome */
.lightbox-stage {
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.lightbox-image {
  will-change: transform, opacity;
  transition: transform .22s cubic-bezier(.22, 1, .36, 1), opacity .18s ease;
}

.lightbox-image.is-dragging {
  transition: none;
}
