:root {
  --bg: #07110f;
  --bg-soft: #0d1715;
  --bg-panel: rgba(10, 22, 19, 0.78);
  --bg-card: rgba(12, 24, 21, 0.88);
  --bg-card-strong: rgba(14, 31, 27, 0.96);
  --line: rgba(228, 198, 138, 0.14);
  --line-strong: rgba(228, 198, 138, 0.24);
  --text: #f5efe0;
  --muted: rgba(245, 239, 224, 0.74);
  --soft: rgba(245, 239, 224, 0.5);
  --white: #fff5df;
  --silver: #e4c68a;
  --blue: #83b8a4;
  --blue-soft: rgba(131, 184, 164, 0.2);
  --blue-bright: #f1d59a;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --content-width: min(1220px, calc(100vw - 40px));
  --logo-size: 220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(131, 184, 164, 0.16), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(228, 198, 138, 0.08), transparent 18%),
    radial-gradient(circle at bottom center, rgba(131, 184, 164, 0.12), transparent 26%),
    linear-gradient(180deg, #040908 0%, #07110f 38%, #081412 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.page-shell {
  position: relative;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -2;
  width: 34rem;
  height: 34rem;
  opacity: 0.08;
  background: center / contain no-repeat url("assets/logo.png");
  filter: blur(0.5px);
  mix-blend-mode: screen;
}

.page-shell::before {
  left: -9rem;
  top: 18rem;
  transform: rotate(-18deg);
}

.page-shell::after {
  display: none;
  right: -10rem;
  bottom: 8rem;
  transform: rotate(18deg);
}

.ambient,
.noise {
  position: fixed;
  pointer-events: none;
  z-index: -3;
}

.ambient {
  border-radius: 50%;
  filter: blur(40px);
}

.ambient-left {
  top: -10rem;
  left: -10rem;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(131, 184, 164, 0.24), transparent 68%);
  animation: drift 14s ease-in-out infinite alternate;
}

.ambient-right {
  top: 16rem;
  right: -12rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(228, 198, 138, 0.1), transparent 70%);
  animation: drift 16s ease-in-out infinite alternate-reverse;
}

.ambient-center {
  top: 44rem;
  left: 40%;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(131, 184, 164, 0.14), transparent 72%);
  animation: drift 18s ease-in-out infinite alternate;
}

.noise {
  inset: 0;
  opacity: 0.1;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, black 52%, transparent 100%);
}

.topbar,
main,
.section {
  width: var(--content-width);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 30;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 245, 223, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015) 42%),
    linear-gradient(180deg, rgba(12, 27, 23, 0.64), rgba(5, 13, 11, 0.34));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(228, 198, 138, 0.08),
    0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(26px) saturate(155%);
  -webkit-backdrop-filter: blur(26px) saturate(155%);
  isolation: isolate;
}

.topbar::before,
.topbar::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.topbar::before {
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 0%, rgba(241, 213, 154, 0.18), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(131, 184, 164, 0.18), transparent 30%);
  opacity: 0.72;
}

.topbar::after {
  left: 6%;
  right: 6%;
  bottom: -24px;
  height: 30px;
  z-index: -2;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(8, 20, 17, 0.48), transparent);
  filter: blur(14px);
}

.topbar > * {
  position: relative;
  z-index: 1;
}

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

.brand-mark {
  display: block;
}

.brand-mark img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.brand-copy {
  display: block;
}

.brand-copy strong,
.topnav a,
.button,
.section-kicker,
.program-label,
.mini-label,
.status-pill,
.benefit-item span {
  letter-spacing: 0.05em;
}

.brand-copy strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 0.95;
}

.brand-copy small {
  color: var(--soft);
  font-size: 0.78rem;
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(7, 17, 15, 0.28);
  border: 1px solid rgba(255, 245, 223, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topnav a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease, transform 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--white);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

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

.button-primary {
  color: #05100e;
  background: linear-gradient(135deg, var(--blue-bright), var(--silver) 52%, #d5b678);
  box-shadow: 0 18px 44px rgba(228, 198, 138, 0.22);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(228, 198, 138, 0.16);
}

.button-top-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(241, 213, 154, 0.18), rgba(131, 184, 164, 0.14)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(241, 213, 154, 0.42);
  box-shadow:
    0 0 0 1px rgba(241, 213, 154, 0.12),
    0 12px 34px rgba(228, 198, 138, 0.14);
  animation: ctaPulse 2.6s ease-in-out infinite;
}

.button-top-cta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  animation: shimmer 3.8s ease-in-out infinite;
}

.hero {
  min-height: calc(100vh - 98px);
  padding: 34px 0 14px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-bottom: clamp(36px, 7vh, 86px);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
}

h1 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 2.7vw, 2.85rem);
  max-width: 12ch;
}

.hero-text {
  margin: 18px 0 0;
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.18rem;
  font-weight: 700;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.belt-track img,
.join-step img,
.founder-plaque img,
.benefits-highlight .highlight-logo,
.card-emblem {
  width: 18px;
  height: 18px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.hero-visual {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 4% 0 14%;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.45), transparent 70%);
  filter: blur(18px);
}

.logo-aura {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.aura-ring,
.aura-logo {
  position: absolute;
  border-radius: 50%;
}

.aura-ring-large {
  width: 640px;
  height: 640px;
  border: 1px solid rgba(228, 198, 138, 0.08);
  box-shadow: inset 0 0 90px rgba(131, 184, 164, 0.12);
  animation: pulseRing 9s ease-in-out infinite;
}

.aura-ring-small {
  width: 500px;
  height: 500px;
  border: 1px dashed rgba(228, 198, 138, 0.12);
  animation: spin 22s linear infinite;
}

.aura-logo-main {
  width: 280px;
  height: 280px;
  opacity: 0.05;
  filter: drop-shadow(0 0 50px rgba(228, 198, 138, 0.18));
  mix-blend-mode: screen;
}

.aura-logo-ghost {
  width: 700px;
  height: 700px;
  opacity: 0.03;
  transform: rotate(-14deg);
  mix-blend-mode: screen;
}

.founder-silhouette {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  min-height: 780px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 10px;
  background: none;
  border: 0;
  box-shadow: none;
  transform-style: preserve-3d;
}

.founder-backdrop {
  position: absolute;
  inset: 14% 8% 9%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 44%, rgba(131, 184, 164, 0.28), transparent 46%),
    radial-gradient(circle at 58% 24%, rgba(228, 198, 138, 0.18), transparent 28%);
  filter: blur(12px);
}

.founder-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}

.founder-photo-free {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(100%, 700px);
  max-height: 800px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 44px 90px rgba(0, 0, 0, 0.56));
}

.founder-plaque {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(228, 198, 138, 0.14), rgba(131, 184, 164, 0.12)),
    rgba(9, 17, 15, 0.78);
  border: 1px solid rgba(228, 198, 138, 0.16);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.founder-plaque::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -32%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  animation: shimmer 4.8s ease-in-out infinite;
}

.founder-plaque span {
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.founder-plaque-floating {
  left: 4%;
  right: auto;
  bottom: 214px;
  width: min(380px, calc(100% - 24px));
}

.mini-label,
.program-label,
.section-kicker {
  color: var(--silver);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.founder-copy h2 {
  margin-top: 12px;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.founder-copy p,
.program-card p,
.program-card li,
.mission-card p,
.benefit-item p,
.benefits-highlight p,
.join-step p,
.section-side-note,
.form-note {
  color: var(--muted);
  line-height: 1.8;
}

.card-index,
.benefit-item span {
  font-family: "Unbounded", sans-serif;
}

.section {
  padding: 104px 0 14px;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.section-heading-split {
  max-width: none;
  grid-template-columns: 1fr minmax(280px, 360px);
  align-items: end;
  gap: 30px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.section-side-note {
  margin: 0;
}

.mission-grid,
.program-showcase,
.benefits-layout,
.cta-panel {
  margin-top: 36px;
  display: grid;
  gap: 22px;
}

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

.glass-card,
.program-card,
.join-step,
.apply-form {
  position: relative;
  border: 1px solid rgba(228, 198, 138, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 28, 25, 0.84), rgba(10, 18, 16, 0.92)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mission-card,
.program-card,
.join-step {
  padding: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card-emblem {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 30px;
  opacity: 0.14;
}

.mission-card {
  padding-top: 22px;
}

.mission-visual {
  width: 100%;
  max-width: 152px;
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.22));
}

.card-index {
  color: var(--silver);
  font-size: 0.88rem;
}

.mission-card h3,
.program-card h3,
.benefit-item h3,
.benefits-highlight h3,
.join-step h3 {
  margin-top: 16px;
  font-size: 1.32rem;
}

.program-card {
  min-height: 220px;
}

.program-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.program-showcase {
  grid-template-columns: 1fr minmax(300px, 430px) 1fr;
  align-items: center;
  gap: 26px;
}

.program-column {
  display: grid;
  gap: 18px;
}

.program-column-left {
  justify-items: end;
}

.program-column-right {
  justify-items: start;
}

.program-column .program-card {
  width: 100%;
  max-width: 340px;
}

.program-phone-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 760px;
}

.phone-glow {
  position: absolute;
  inset: auto 8% 10% 8%;
  height: 70%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(131, 184, 164, 0.24), transparent 58%),
    radial-gradient(circle at top, rgba(228, 198, 138, 0.16), transparent 34%);
  filter: blur(18px);
}

.program-phone {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  height: auto;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.42));
}

.feature-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(228, 198, 138, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 28, 25, 0.84), rgba(10, 18, 16, 0.92)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131, 184, 164, 0.14), transparent 70%);
}

.feature-visual {
  width: 100%;
  max-width: 108px;
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.24));
}

.feature-card h3 {
  margin-top: 10px;
  font-size: 1.08rem;
}

.feature-card p:last-child {
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.95rem;
}

.cta-section {
  padding-bottom: 72px;
}

.join-offer-panel {
  margin-top: 36px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 30px 30px 38px;
  border-radius: 38px;
  border: 1px solid rgba(228, 198, 138, 0.16);
  background:
    linear-gradient(180deg, rgba(18, 31, 27, 0.9), rgba(10, 18, 16, 0.96)),
    radial-gradient(circle at top right, rgba(228, 198, 138, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.join-offer-panel::before {
  content: "";
  position: absolute;
  inset: 20px auto 20px 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 227, 173, 0.9), rgba(131, 184, 164, 0.42));
}

.join-offer-panel::after {
  content: "";
  position: absolute;
  inset: auto -110px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 198, 138, 0.16), transparent 70%);
}

.join-offer-copy {
  position: relative;
  z-index: 1;
}

.join-offer-copy h3 {
  margin-top: 12px;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
}

.join-offer-copy p:last-child {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.85;
}

.join-offer-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  align-content: start;
}

.join-offer-pill {
  --pill-accent: rgba(241, 213, 154, 0.86);
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 14px;
  padding: 15px 18px 15px 16px;
  border-radius: 20px;
  border: 1px solid rgba(228, 198, 138, 0.12);
  background:
    linear-gradient(135deg, rgba(228, 198, 138, 0.1), rgba(131, 184, 164, 0.055)),
    rgba(255, 255, 255, 0.03);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.join-offer-pill::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pill-accent), rgba(131, 184, 164, 0.4));
  box-shadow: 0 0 18px var(--pill-accent);
}

.join-offer-pill:nth-child(3n + 2) {
  --pill-accent: rgba(131, 184, 164, 0.86);
}

.join-offer-pill:nth-child(3n) {
  --pill-accent: rgba(255, 245, 223, 0.78);
}

.join-offer-pill img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.join-offer-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #07110f;
  font-family: "Unbounded", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  background:
    linear-gradient(145deg, rgba(255, 245, 223, 0.92), var(--pill-accent)),
    var(--silver);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.22),
    0 0 20px rgba(228, 198, 138, 0.16);
}

.join-offer-pill span {
  display: grid;
  gap: 5px;
  line-height: 1.55;
}

.join-offer-pill strong {
  font-size: 1rem;
  font-weight: 800;
}

.join-offer-pill small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.join-button-wrap {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.join-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 20px 34px;
  border-radius: 999px;
  color: #05100e;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  background: linear-gradient(135deg, #ffe3ad 0%, #f1d59a 42%, #dcb76d 100%);
  box-shadow:
    0 18px 44px rgba(228, 198, 138, 0.26),
    0 0 0 1px rgba(255, 227, 173, 0.26);
  overflow: hidden;
  animation: goldPulse 2.8s ease-in-out infinite;
}

.join-button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.6s ease-in-out infinite;
}

.site-footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0 0 40px;
}

.footer-inner {
  border-top: 1px solid rgba(228, 198, 138, 0.1);
  padding-top: 24px;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.footer-brand {
  margin: 0;
  color: var(--soft);
  letter-spacing: 0.12em;
  font-family: "Unbounded", sans-serif;
  font-size: 0.92rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(228, 198, 138, 0.14);
  background:
    linear-gradient(145deg, rgba(228, 198, 138, 0.08), rgba(131, 184, 164, 0.08)),
    rgba(255, 255, 255, 0.02);
  color: var(--text);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(228, 198, 138, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.social-link img {
  width: 24px;
  height: 24px;
}

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

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(28px, 18px, 0);
  }
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-10%) skewX(-18deg);
    opacity: 0;
  }
  18%,
  46% {
    opacity: 1;
  }
  60% {
    transform: translateX(340%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.62;
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 0 0 1px rgba(241, 213, 154, 0.12),
      0 12px 34px rgba(228, 198, 138, 0.14);
  }
  50% {
    transform: translateY(-1px);
    box-shadow:
      0 0 0 1px rgba(241, 213, 154, 0.2),
      0 18px 40px rgba(228, 198, 138, 0.22);
  }
}

@keyframes goldPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 18px 44px rgba(228, 198, 138, 0.26),
      0 0 0 1px rgba(255, 227, 173, 0.26);
  }
  50% {
    transform: translateY(-2px);
    box-shadow:
      0 24px 54px rgba(228, 198, 138, 0.34),
      0 0 0 1px rgba(255, 227, 173, 0.34);
  }
}

@media (max-width: 1160px) {
  .topbar,
  main,
  .section {
    width: min(1220px, calc(100vw - 28px));
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  .hero-visual {
    order: -1;
    min-height: 620px;
  }

  .mission-grid,
  .program-showcase,
  .feature-grid,
  .join-offer-panel,
  .section-heading-split {
    grid-template-columns: 1fr;
  }

  .program-column-left,
  .program-column-right {
    justify-items: stretch;
  }

  .program-column .program-card {
    max-width: none;
  }

  .program-phone-stage {
    min-height: auto;
    padding: 8px 0 18px;
  }

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

@media (max-width: 860px) {
  .topbar {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
  }

  .topnav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 28px;
  }

  h1 {
    max-width: none;
    font-size: clamp(1.9rem, 6vw, 2.45rem);
  }

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

  .aura-ring-large {
    width: 430px;
    height: 430px;
  }

  .aura-ring-small {
    width: 320px;
    height: 320px;
  }

  .aura-logo-main {
    width: 180px;
    height: 180px;
  }

  .founder-plaque-floating {
    bottom: 150px;
  }
}

@media (max-width: 640px) {
  .hero,
  .section {
    padding-top: 78px;
  }

  .button,
  .button-primary,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .hero-visual {
    min-height: auto;
    display: block;
  }

  .apply-form,
  .mission-card,
  .program-card,
  .feature-card {
    padding: 24px;
  }

  .founder-silhouette {
    width: 100%;
    padding-top: 12px;
    min-height: auto;
  }

  .founder-photo-free {
    max-width: min(100%, 420px);
    max-height: 520px;
  }

  .founder-plaque-floating {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -32px;
  }

  .logo-aura {
    position: absolute;
    inset: 0;
  }

  .aura-ring-large {
    width: 300px;
    height: 300px;
  }

  .aura-ring-small {
    width: 230px;
    height: 230px;
  }

  .aura-logo-main {
    width: 130px;
    height: 130px;
  }

  .aura-logo-ghost {
    width: 260px;
    height: 260px;
  }

  .program-phone {
    width: min(100%, 320px);
  }

  .join-offer-panel {
    padding: 24px;
  }

  .join-button {
    min-width: 100%;
  }

}

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

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