:root {
  --bg: #06151f;
  --bg-deep: #030c13;
  --bg-soft: #092638;
  --panel: rgba(255, 255, 255, 0.078);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #f6f1e8;
  --muted: rgba(246, 241, 232, 0.74);
  --soft: rgba(246, 241, 232, 0.57);
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d8b86a;
  --gold-2: #f5db94;
  --emerald: #2fc6a3;
  --cyan: #3dd5e8;
  --danger: #ff8b8b;
  --success: #8ef0cd;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.24);
  --radius-xl: 34px;
  --radius-lg: 25px;
  --radius-md: 17px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 6%, rgba(47, 198, 163, 0.18), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(216, 184, 106, 0.17), transparent 26%),
    radial-gradient(circle at 48% 88%, rgba(61, 213, 232, 0.10), transparent 32%),
    linear-gradient(145deg, var(--bg) 0%, #041019 54%, #071d2b 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.034) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.76), transparent 84%);
  z-index: -3;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(245, 219, 148, .28); }

.container { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }
.page-shell { position: relative; overflow: hidden; }

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.58;
  animation: float 10s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.orb.one { width: 210px; height: 210px; left: -90px; top: 220px; background: rgba(47,198,163,.16); }
.orb.two { width: 260px; height: 260px; right: -120px; top: 760px; background: rgba(216,184,106,.14); animation-delay: -3s; }
.orb.three { width: 190px; height: 190px; left: 62%; top: 1450px; background: rgba(61,213,232,.11); animation-delay: -6s; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--gold-2);
  color: #06151f;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 100;
  transition: top .2s ease;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(4, 16, 25, .78);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.header.scrolled { box-shadow: 0 14px 40px rgba(0,0,0,.18); }
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: max-content; }
.logo-mark {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(216,184,106,.18), rgba(47,198,163,.16));
  border: 1px solid rgba(245,219,148,.34);
  box-shadow: 0 16px 36px rgba(0,0,0,.28), inset 0 0 18px rgba(245,219,148,.08);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: "";
  position: absolute;
  width: 62px;
  height: 62px;
  background: conic-gradient(from 180deg, transparent, rgba(245,219,148,.33), transparent 45%);
  animation: spin 5.5s linear infinite;
}
.logo-mark img { width: 38px; height: 38px; position: relative; z-index: 1; }
.brand-text strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.43rem;
  letter-spacing: .13em;
  line-height: 1;
}
.brand-text span {
  display: block;
  color: var(--gold-2);
  font-size: .77rem;
  margin-top: 4px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 20px; color: var(--muted); font-size: .92rem; }
.nav-links a { transition: color .25s ease, transform .25s ease; position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  transition: width .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover { transform: translateY(-1px); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: var(--text);
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary { color: #07151f; background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, #b9923f); box-shadow: 0 14px 32px rgba(216,184,106,.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(216,184,106,.34); }
.btn-ghost { color: var(--text); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); }
.btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); }
.btn-small { padding: 11px 16px; font-size: .9rem; }
.btn-wide { width: 100%; }

.hero, .page-hero { padding: 82px 0 58px; position: relative; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(340px, .97fr); align-items: center; gap: 48px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-2); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, var(--emerald), var(--gold)); }
h1, h2, h3 { margin: 0; }
h1, .h1 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(3rem, 7vw, 6.8rem); line-height: .92; letter-spacing: -.055em; margin-top: 18px; }
.page-hero h1 { max-width: 940px; }
h2 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.25rem, 4.6vw, 4.7rem); line-height: .96; letter-spacing: -.043em; }
h3 { font-size: 1.18rem; letter-spacing: -.02em; }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(1.04rem, 2vw, 1.22rem); line-height: 1.72; margin-top: 25px; max-width: 720px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
}
.pill b { color: var(--text); }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 5px rgba(47,198,163,.13); }

.lux-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.lux-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 20% 0, rgba(245,219,148,.22), transparent 28%), radial-gradient(circle at 86% 20%, rgba(47,198,163,.18), transparent 28%);
  pointer-events: none;
}
.hero-panel { padding: 28px; min-height: 560px; display: grid; align-content: space-between; }
.panel-top { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; }
.panel-label { color: var(--soft); font-size: .9rem; line-height: 1.45; }
.panel-label strong { display: block; color: var(--text); font-size: 1.15rem; margin-bottom: 4px; }
.signal-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(245,219,148,.34);
  display: grid;
  place-items: center;
  position: relative;
  background: rgba(6,21,31,.35);
}
.signal-ring::before, .signal-ring::after { content: ""; position: absolute; inset: 16px; border-radius: inherit; border: 1px solid rgba(47,198,163,.24); animation: pulse 3.2s ease-in-out infinite; }
.signal-ring::after { inset: 31px; border-color: rgba(245,219,148,.24); animation-delay: -1.4s; }
.signal-ring span { position: relative; z-index: 1; font-family: "Playfair Display", Georgia, serif; font-size: 3rem; color: var(--gold-2); }
.panel-quote { position: relative; z-index: 1; padding: 24px; border-radius: 26px; background: rgba(3,12,19,.38); border: 1px solid rgba(255,255,255,.12); }
.panel-quote p { font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.7rem); line-height: 1.05; letter-spacing: -.035em; }
.panel-quote span { display: block; color: var(--muted); margin-top: 18px; line-height: 1.65; }
.metric-strip { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.metric { padding: 17px; border-radius: 20px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); }
.metric strong { display: block; color: var(--gold-2); font-size: 1.35rem; }
.metric span { display: block; color: var(--soft); margin-top: 5px; font-size: .84rem; line-height: 1.4; }

.section { padding: 78px 0; }
.section-tight { padding: 46px 0; }
.section-head { display: flex; justify-content: space-between; gap: 34px; align-items: flex-end; margin-bottom: 34px; }
.section-head p { color: var(--muted); line-height: 1.7; max-width: 510px; }
.centered { text-align: center; max-width: 830px; margin: 0 auto 38px; }
.centered .lead { margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.072);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(245,219,148,.27); background: rgba(255,255,255,.095); }
.card .num { color: var(--gold-2); font-weight: 850; margin-bottom: 18px; display: inline-flex; }
.card p, .muted { color: var(--muted); line-height: 1.68; }
.card h3 + p { margin-top: 12px; }
.icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #06151f;
  background: linear-gradient(135deg, var(--gold-2), var(--emerald));
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(47,198,163,.16);
}

.statement {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(245,219,148,.18);
  background:
    radial-gradient(circle at 8% 0, rgba(245,219,148,.18), transparent 32%),
    radial-gradient(circle at 92% 10%, rgba(47,198,163,.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.052));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.statement::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  right: -90px;
  bottom: -120px;
  border: 1px solid rgba(245,219,148,.18);
  background: rgba(245,219,148,.05);
}
.statement-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; position: relative; z-index: 1; }
.statement .lead { max-width: 720px; }
.check-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.55;
}
.check-list li::before {
  content: "✓";
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #06151f;
  background: var(--emerald);
  font-weight: 950;
  font-size: .8rem;
  margin-top: 1px;
}

.timeline { display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: 78px 1fr; gap: 18px; align-items: start; }
.step-number { height: 78px; border-radius: 24px; display: grid; place-items: center; color: var(--gold-2); border: 1px solid rgba(245,219,148,.24); background: rgba(255,255,255,.075); font-weight: 900; font-size: 1.25rem; }
.step-body { padding: 24px; border-radius: 24px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.step-body p { margin-top: 10px; color: var(--muted); line-height: 1.65; }

.banner-stack { display: grid; gap: 18px; }
.banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
}
.banner strong { font-size: 1.1rem; }
.banner p { color: var(--muted); margin-top: 8px; line-height: 1.6; }
.banner .badge { color: #06151f; background: linear-gradient(135deg, var(--gold-2), var(--emerald)); border-radius: 999px; padding: 10px 14px; font-weight: 900; white-space: nowrap; }

.program-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: stretch; }
.program-aside { padding: 30px; border-radius: var(--radius-xl); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); box-shadow: var(--shadow-soft); }
.program-aside .price { font-family: "Playfair Display", Georgia, serif; font-size: 3rem; margin: 18px 0 8px; color: var(--gold-2); }
.module-list { display: grid; gap: 14px; }
.module { padding: 20px; border-radius: 22px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: grid; grid-template-columns: auto 1fr; gap: 14px; }
.module span { color: var(--gold-2); font-weight: 900; }
.module p { color: var(--muted); margin-top: 5px; line-height: 1.55; }

.form-card { padding: 28px; border-radius: var(--radius-xl); background: rgba(255,255,255,.085); border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { color: rgba(246,241,232,.82); font-size: .88rem; font-weight: 750; }
input, textarea, select {
  width: 100%;
  color: var(--text);
  background: rgba(3,12,19,.46);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
textarea { min-height: 126px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: rgba(245,219,148,.46); box-shadow: 0 0 0 4px rgba(245,219,148,.10); background: rgba(3,12,19,.62); }
.form-note { color: var(--soft); font-size: .88rem; line-height: 1.55; margin-top: 14px; }
.form-status { margin-top: 14px; min-height: 24px; color: var(--success); font-weight: 750; }
.form-status.error { color: var(--danger); }
.webinar-date {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(47,198,163,.12);
  border: 1px solid rgba(47,198,163,.24);
  color: var(--success);
  font-weight: 850;
  margin: 18px 0 0;
}

.faq { display: grid; gap: 13px; }
details { border-radius: 22px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); padding: 19px 21px; }
summary { cursor: pointer; font-weight: 850; list-style: none; }
summary::-webkit-details-marker { display: none; }
details p { color: var(--muted); line-height: 1.68; margin-top: 12px; }

.quote-card { min-height: 100%; }
.quote-card blockquote { margin: 0; color: var(--muted); line-height: 1.7; }
.quote-author { margin-top: 18px; display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 850; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #06151f; background: linear-gradient(135deg, var(--gold-2), var(--emerald)); font-weight: 950; }

.contact-card { display: grid; gap: 14px; }
.contact-line { padding: 18px; border-radius: 20px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.contact-line span { color: var(--soft); display: block; font-size: .86rem; margin-bottom: 5px; }
.contact-line strong { display: block; overflow-wrap: anywhere; }

.breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; color: var(--soft); font-size: .9rem; margin-bottom: 22px; }
.breadcrumbs a { color: var(--gold-2); }
.content-page { color: var(--muted); line-height: 1.75; }
.content-page h2 { color: var(--text); margin-top: 36px; margin-bottom: 14px; font-size: clamp(1.9rem, 3vw, 3rem); }
.content-page p + p { margin-top: 14px; }
.content-page ul { margin: 14px 0 0; padding-left: 22px; }
.content-page li { margin: 8px 0; }

.footer { padding: 54px 0 34px; border-top: 1px solid rgba(255,255,255,.1); background: rgba(3,12,19,.36); }
.footer-grid { display: grid; grid-template-columns: 1.1fr repeat(3, .7fr); gap: 32px; align-items: start; }
.footer p { color: var(--muted); line-height: 1.65; margin-top: 16px; max-width: 420px; }
.footer h3 { font-size: .96rem; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: var(--soft); font-size: .88rem; margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-24px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: .75; } 50% { transform: scale(1.12); opacity: .32; } }

@media (max-width: 1080px) {
  .nav-links { gap: 14px; font-size: .86rem; }
  .hero-grid, .statement-grid, .program-card { grid-template-columns: 1fr; }
  .hero-panel { min-height: 480px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .menu-btn { display: block; }
  .nav-actions .btn { display: none; }
  .nav-links {
    position: fixed;
    top: 82px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(4,16,25,.96);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { padding: 14px; border-radius: 16px; }
  .nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.07); }
  .nav-links a::after { display: none; }
  .hero, .page-hero { padding: 56px 0 42px; }
  .section { padding: 58px 0; }
  .section-head { display: grid; align-items: start; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .metric-strip { grid-template-columns: 1fr; }
  .banner { grid-template-columns: 1fr; }
  .banner .badge { justify-self: start; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 26px), var(--max)); }
  .brand-text span { display: none; }
  .logo-mark { width: 46px; height: 46px; }
  h1, .h1 { font-size: clamp(2.6rem, 15vw, 4.3rem); }
  .lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-panel, .form-card, .statement { border-radius: 26px; }
  .panel-top { display: grid; }
  .signal-ring { width: 128px; height: 128px; }
  .grid-4 { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .step-number { width: 72px; height: 72px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Photo-enhanced homepage */
.hero-photo-card {
  min-height: 620px;
  padding: 0;
  isolation: isolate;
}
.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3,12,19,.04) 0%, rgba(3,12,19,.30) 45%, rgba(3,12,19,.88) 100%),
    radial-gradient(circle at 20% 10%, rgba(245,219,148,.16), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(47,198,163,.12), transparent 28%);
  pointer-events: none;
}
.hero-photo-card > img {
  width: 100%;
  min-height: 620px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.95) contrast(1.02);
}
.hero-photo-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 24px;
  border-radius: 26px;
  background: rgba(3,12,19,.62);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 55px rgba(0,0,0,.24);
}
.photo-kicker,
.media-caption span,
.course-preview strong {
  display: inline-flex;
  color: var(--gold-2);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-photo-caption h2 {
  margin-top: 10px;
  max-width: 560px;
  font-size: clamp(1.85rem, 3.2vw, 3.25rem);
}
.hero-photo-caption p {
  color: var(--muted);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 600px;
}
.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.mini-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
}
.mini-metrics b { color: var(--gold-2); }

.visual-proof { position: relative; }
.media-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 18px;
}
.media-card {
  position: relative;
  grid-column: span 3;
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition: transform .25s ease, border-color .25s ease;
}
.media-card:hover { transform: translateY(-5px); border-color: rgba(245,219,148,.28); }
.media-card.media-large { grid-column: span 6; grid-row: span 2; }
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
  transition: transform .55s ease;
}
.media-card:hover img { transform: scale(1.035); }
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 28%, rgba(3,12,19,.38) 58%, rgba(3,12,19,.92) 100%);
  pointer-events: none;
}
.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}
.media-caption strong {
  display: block;
  margin-top: 8px;
  line-height: 1.28;
  font-size: 1.02rem;
  text-wrap: balance;
}
.media-large .media-caption strong { font-size: clamp(1.25rem, 2.3vw, 2rem); max-width: 620px; }

.course-preview {
  margin: 24px 0 4px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: 12px;
  border-radius: 24px;
  background: rgba(3,12,19,.30);
  border: 1px solid rgba(255,255,255,.12);
}
.course-preview img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
}
.course-preview div {
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 6px 6px 6px 0;
}
.course-preview span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
  font-size: .94rem;
}

@media (max-width: 1080px) {
  .media-card { grid-column: span 6; }
  .media-card.media-large { grid-column: span 12; }
}

@media (max-width: 860px) {
  .hero-photo-card,
  .hero-photo-card > img { min-height: 560px; }
  .media-grid { grid-auto-rows: 260px; }
  .media-card,
  .media-card.media-large { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 620px) {
  .hero-photo-card,
  .hero-photo-card > img { min-height: 600px; }
  .hero-photo-caption { left: 14px; right: 14px; bottom: 14px; padding: 18px; border-radius: 22px; }
  .mini-metrics { display: grid; grid-template-columns: 1fr; }
  .media-grid { grid-auto-rows: 280px; gap: 14px; }
  .course-preview { grid-template-columns: 1fr; }
  .course-preview div { padding: 0 4px 4px; }
}

/* Compact homepage refresh + expanded photo system */
body { font-size: 15px; }
:root { --max: 1220px; --radius-xl: 28px; --radius-lg: 22px; --radius-md: 15px; }
.container { width: min(calc(100% - 32px), var(--max)); }
.nav { min-height: 70px; gap: 16px; }
.logo-mark { width: 44px; height: 44px; border-radius: 15px; }
.logo-mark img { width: 34px; height: 34px; }
.brand-text strong { font-size: 1.28rem; }
.brand-text span { font-size: .68rem; margin-top: 3px; }
.nav-links { gap: 15px; font-size: .86rem; }
.btn { padding: 12px 18px; font-size: .93rem; }
.btn-small { padding: 9px 13px; font-size: .84rem; }
.hero, .page-hero { padding: 54px 0 34px; }
.hero-grid { gap: 32px; grid-template-columns: minmax(0, 1fr) minmax(340px, .86fr); }
h1, .h1 { font-size: clamp(2.75rem, 5.8vw, 5.8rem); line-height: .92; margin-top: 13px; }
h2 { font-size: clamp(1.95rem, 3.8vw, 3.7rem); }
h3 { font-size: 1.07rem; }
.lead { font-size: clamp(.98rem, 1.45vw, 1.1rem); line-height: 1.56; margin-top: 16px; }
.hero-actions { margin-top: 22px; gap: 11px; }
.trust-row { margin-top: 20px; gap: 9px; }
.pill { padding: 8px 11px; font-size: .82rem; }
.section { padding: 52px 0; }
.section-tight { padding: 34px 0; }
.section-head { margin-bottom: 24px; gap: 24px; }
.section-head p { line-height: 1.55; font-size: .95rem; max-width: 450px; }
.card, .form-card { padding: 21px; }
.grid-2 { gap: 18px; }
.grid-3 { gap: 18px; }
.grid-4 { gap: 14px; }
.card p, .muted { line-height: 1.52; font-size: .94rem; }
.card h3 + p { margin-top: 8px; }
.icon { width: 40px; height: 40px; border-radius: 14px; margin-bottom: 13px; }
.statement { padding: clamp(24px, 3.5vw, 38px); }
.statement-grid { gap: 26px; }
.check-list { gap: 9px; }
.check-list li { gap: 10px; line-height: 1.43; font-size: .94rem; }
.check-list li::before { flex-basis: 20px; height: 20px; font-size: .68rem; }
.banner-stack { gap: 12px; }
.banner { padding: 18px 20px; gap: 14px; }
.banner strong { font-size: 1rem; }
.banner p { margin-top: 5px; line-height: 1.42; font-size: .94rem; }
.form-grid { gap: 11px; }
.field { gap: 6px; }
input, textarea, select { padding: 12px 14px; border-radius: 15px; }
.form-note { margin-top: 8px; font-size: .82rem; }
.footer { padding: 42px 0 28px; }
.footer-grid { gap: 24px; }
.footer p { line-height: 1.5; margin-top: 12px; font-size: .92rem; }
.footer-bottom { margin-top: 28px; padding-top: 18px; }

.hero-photo-card { min-height: 555px; }
.hero-photo-card > img { min-height: 555px; }
.hero-photo-caption { left: 18px; right: 18px; bottom: 18px; padding: 18px; border-radius: 22px; }
.hero-photo-caption h2 { font-size: clamp(1.48rem, 2.45vw, 2.45rem); margin-top: 7px; }
.hero-photo-caption p { margin-top: 9px; line-height: 1.48; font-size: .94rem; }
.mini-metrics { margin-top: 13px; gap: 7px; }
.mini-metrics span { padding: 7px 9px; font-size: .76rem; }
.photo-kicker, .media-caption span, .course-preview strong { font-size: .68rem; letter-spacing: .10em; }

.photo-banner,
.closing-photo {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.06);
  isolation: isolate;
}
.photo-banner img,
.closing-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02);
}
.photo-banner::after,
.closing-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3,12,19,.82) 0%, rgba(3,12,19,.58) 44%, rgba(3,12,19,.10) 100%),
    radial-gradient(circle at 18% 10%, rgba(245,219,148,.18), transparent 30%);
}
.photo-banner-content,
.closing-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: clamp(24px, 4vw, 42px);
}
.photo-banner-content h2,
.closing-content h2 { margin-top: 9px; font-size: clamp(2rem, 4vw, 4.1rem); }
.photo-banner-content p,
.closing-content p { color: var(--muted); line-height: 1.52; margin-top: 12px; font-size: 1rem; }
.closing-content .btn { margin-top: 20px; }

.media-grid-packed { grid-auto-rows: 170px; gap: 14px; }
.media-card { border-radius: 20px; }
.media-card.media-wide { grid-column: span 6; }
.media-card.media-tall { grid-column: span 3; grid-row: span 2; }
.media-caption { left: 14px; right: 14px; bottom: 14px; }
.media-caption strong { margin-top: 6px; font-size: .93rem; line-height: 1.18; }
.media-large .media-caption strong { font-size: clamp(1.08rem, 1.9vw, 1.65rem); }

.compact-cards .card { min-height: 100%; }
.compact-forms .lead { margin-bottom: 16px; }
.form-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 18px;
  filter: saturate(.92) contrast(1.02);
}
.course-card-compact .hero-actions { margin-top: 18px; }
.course-preview { margin: 18px 0 2px; gap: 12px; border-radius: 20px; }
.course-preview img { height: 138px; border-radius: 15px; }
.course-preview span { line-height: 1.42; font-size: .88rem; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .media-card.media-tall { grid-column: span 6; grid-row: span 2; }
  .media-card.media-wide { grid-column: span 12; }
}

@media (max-width: 860px) {
  .nav-links { top: 70px; }
  .hero, .page-hero { padding: 42px 0 28px; }
  .section { padding: 42px 0; }
  .section-tight { padding: 28px 0; }
  .photo-banner, .closing-photo { min-height: 430px; }
  .photo-banner::after, .closing-photo::after { background: linear-gradient(180deg, rgba(3,12,19,.18) 0%, rgba(3,12,19,.52) 42%, rgba(3,12,19,.88) 100%); }
  .photo-banner-content, .closing-content { padding: 24px; position: absolute; left: 0; right: 0; bottom: 0; }
  .media-grid-packed { grid-auto-rows: 240px; gap: 12px; }
  .media-card, .media-card.media-large, .media-card.media-wide, .media-card.media-tall { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 620px) {
  body { font-size: 14.5px; }
  .container { width: min(calc(100% - 24px), var(--max)); }
  .nav { min-height: 64px; }
  .logo-mark { width: 40px; height: 40px; }
  h1, .h1 { font-size: clamp(2.35rem, 13vw, 3.9rem); }
  h2 { font-size: clamp(1.75rem, 9vw, 3rem); }
  .lead { font-size: .96rem; }
  .hero-photo-card, .hero-photo-card > img { min-height: 540px; }
  .hero-photo-caption { left: 12px; right: 12px; bottom: 12px; padding: 15px; }
  .photo-banner, .closing-photo { min-height: 400px; }
  .photo-banner-content, .closing-content { padding: 18px; }
  .form-photo { height: 160px; }
}

/* Rebuilt homepage proof section: editorial layout instead of photo dump */
.proof-studio { position: relative; }
.proof-head { align-items: flex-start; margin-bottom: 18px; }
.proof-head h2 { max-width: 780px; }
.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  gap: 16px;
  align-items: stretch;
}
.proof-feature,
.proof-card,
.proof-note {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.065);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.proof-feature,
.proof-card { position: relative; isolation: isolate; }
.proof-feature {
  min-height: 420px;
  border-radius: 26px;
}
.proof-feature img,
.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
  transition: transform .55s ease;
}
.proof-feature:hover img,
.proof-card:hover img { transform: scale(1.025); }
.proof-feature::after,
.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3,12,19,.02) 22%, rgba(3,12,19,.42) 64%, rgba(3,12,19,.90) 100%);
}
.proof-feature-caption,
.proof-card div {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
}
.proof-feature-caption {
  max-width: 620px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(3,12,19,.48);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(12px);
}
.proof-feature-caption span,
.proof-card span,
.proof-note span {
  color: var(--gold-2);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.proof-feature-caption h3 {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.6vw, 2.65rem);
  line-height: 1;
  letter-spacing: -.035em;
}
.proof-feature-caption p,
.proof-note p {
  color: var(--muted);
  line-height: 1.47;
  margin-top: 10px;
  font-size: .95rem;
}
.proof-side {
  display: grid;
  grid-template-rows: minmax(240px, 1fr) auto;
  gap: 16px;
}
.proof-card {
  min-height: 230px;
  border-radius: 22px;
  transition: transform .25s ease, border-color .25s ease;
}
.proof-card:hover { transform: translateY(-4px); border-color: rgba(245,219,148,.28); }
.proof-card strong {
  display: block;
  margin-top: 6px;
  line-height: 1.16;
  font-size: .98rem;
  text-wrap: balance;
}
.proof-card.proof-vertical { min-height: 286px; }
.proof-note {
  border-radius: 22px;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(245,219,148,.12), transparent 42%),
    rgba(255,255,255,.075);
}
.proof-note h3 {
  margin-top: 9px;
  font-size: 1.14rem;
  line-height: 1.18;
}
.proof-mosaic {
  display: grid;
  grid-template-columns: 1.25fr .78fr .78fr 1fr;
  grid-auto-rows: 190px;
  gap: 16px;
  margin-top: 16px;
}
.proof-wide { grid-column: span 2; }
.proof-tall { grid-row: span 2; min-height: 100%; }
.proof-workbook { grid-column: span 2; }
.proof-compact { min-height: 190px; }
.proof-mosaic .proof-card:nth-child(1)::after { background: linear-gradient(90deg, rgba(3,12,19,.82), rgba(3,12,19,.38) 56%, rgba(3,12,19,.12)); }
.proof-mosaic .proof-card:nth-child(4)::after { background: linear-gradient(180deg, rgba(3,12,19,.02), rgba(3,12,19,.30) 48%, rgba(3,12,19,.90)); }
.proof-mosaic .proof-card:nth-child(5)::after { background: linear-gradient(90deg, rgba(3,12,19,.78), rgba(3,12,19,.44) 58%, rgba(3,12,19,.12)); }

@media (max-width: 1080px) {
  .proof-layout { grid-template-columns: 1fr; }
  .proof-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .proof-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-wide, .proof-workbook { grid-column: span 1; }
  .proof-tall { grid-row: span 1; }
}

@media (max-width: 760px) {
  .proof-feature { min-height: 430px; }
  .proof-side,
  .proof-mosaic { grid-template-columns: 1fr; }
  .proof-mosaic { grid-auto-rows: 245px; gap: 12px; }
  .proof-card.proof-vertical, .proof-card { min-height: 245px; }
  .proof-feature-caption { left: 12px; right: 12px; bottom: 12px; padding: 15px; }
  .proof-card div { left: 14px; right: 14px; bottom: 14px; }
  .proof-note { padding: 18px; }
}

/* Interface refinements: sticky header, scroll progress, cookie banner, project section */
.page-shell { overflow: visible; }
.header { position: sticky; top: 0; z-index: 90; }
.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  z-index: 120;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, var(--emerald), var(--gold-2));
  box-shadow: 0 0 18px rgba(245,219,148,.38);
  transition: width .08s linear;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 110;
  width: min(calc(100% - 28px), 760px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(4,16,25,.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transform: translate(-50%, 18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.cookie-banner.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.cookie-banner strong { display: block; font-size: .98rem; }
.cookie-banner p { margin-top: 4px; color: var(--muted); line-height: 1.42; font-size: .88rem; }

.project-proof .section-head p { max-width: 420px; }
.project-composition {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, .72fr);
  gap: 16px;
  align-items: stretch;
}
.project-feature,
.project-mini,
.project-note,
.inline-photo-card,
.impact-photo-row article {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.065);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.project-feature,
.project-mini,
.inline-photo-card,
.impact-photo-row article { position: relative; isolation: isolate; }
.project-feature { min-height: 470px; border-radius: 28px; }
.project-feature img,
.project-mini img,
.inline-photo-card img,
.impact-photo-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
  transition: transform .55s ease;
}
.project-feature:hover img,
.project-mini:hover img,
.inline-photo-card:hover img,
.impact-photo-row article:hover img { transform: scale(1.025); }
.project-feature::after,
.project-mini::after,
.inline-photo-card::after,
.impact-photo-row article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3,12,19,.02) 22%, rgba(3,12,19,.40) 62%, rgba(3,12,19,.90) 100%);
}
.project-feature-caption,
.project-mini div,
.inline-photo-card figcaption,
.impact-photo-row div {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
}
.project-feature-caption {
  max-width: 590px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(3,12,19,.50);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(12px);
}
.project-feature-caption span,
.project-mini span,
.project-note span,
.inline-photo-card span,
.impact-photo-row span {
  color: var(--gold-2);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.project-feature-caption h3 {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.42rem, 2.45vw, 2.55rem);
  line-height: 1;
  letter-spacing: -.035em;
}
.project-feature-caption p,
.project-note p {
  color: var(--muted);
  line-height: 1.47;
  margin-top: 10px;
  font-size: .94rem;
}
.project-column { display: grid; grid-template-rows: auto 1fr 1fr; gap: 16px; min-width: 0; }
.project-note {
  border-radius: 22px;
  padding: 21px;
  background:
    radial-gradient(circle at 100% 0, rgba(245,219,148,.12), transparent 42%),
    rgba(255,255,255,.075);
}
.project-note h3 { margin-top: 8px; font-size: 1.1rem; line-height: 1.16; }
.project-mini { min-height: 205px; border-radius: 22px; }
.project-mini strong,
.inline-photo-card strong,
.impact-photo-row strong {
  display: block;
  margin-top: 6px;
  line-height: 1.16;
  font-size: .96rem;
  text-wrap: balance;
}

.statement-grid-photo { grid-template-columns: minmax(0, .96fr) minmax(340px, .86fr); align-items: stretch; }
.statement-side { display: grid; gap: 14px; align-content: start; }
.inline-photo-card { min-height: 220px; border-radius: 22px; margin: 0; }
.inline-photo-card::after { background: linear-gradient(90deg, rgba(3,12,19,.78), rgba(3,12,19,.34) 58%, rgba(3,12,19,.08)); }

.impact-photo-row {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 14px;
  margin-top: 14px;
}
.impact-photo-row article { min-height: 250px; border-radius: 22px; }
.impact-photo-row article:first-child::after { background: linear-gradient(180deg, rgba(3,12,19,.02), rgba(3,12,19,.36) 55%, rgba(3,12,19,.90)); }
.impact-photo-row article:nth-child(2)::after { background: linear-gradient(90deg, rgba(3,12,19,.76), rgba(3,12,19,.34) 58%, rgba(3,12,19,.08)); }

@media (max-width: 1080px) {
  .project-composition,
  .statement-grid-photo { grid-template-columns: 1fr; }
  .project-column { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .project-note { grid-column: 1 / -1; }
  .impact-photo-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .project-feature { min-height: 420px; }
  .project-column,
  .impact-photo-row { grid-template-columns: 1fr; }
  .project-mini,
  .inline-photo-card,
  .impact-photo-row article { min-height: 245px; }
  .project-feature-caption,
  .project-mini div,
  .inline-photo-card figcaption,
  .impact-photo-row div { left: 14px; right: 14px; bottom: 14px; }
  .project-feature-caption { padding: 15px; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .cookie-banner .btn { width: 100%; }
}

/* Emergency mobile/header overflow fix */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

.header,
.footer,
main,
.container {
  max-width: 100%;
}

.nav,
.nav > *,
.brand,
.brand-text,
.nav-actions,
.hero-grid,
.grid-2,
.grid-3,
.grid-4,
.statement-grid,
.statement-grid-photo,
.project-composition,
.project-column,
.impact-photo-row,
.footer-grid,
.card,
.form-card {
  min-width: 0;
}

/* Раньше включаем бургер-меню, чтобы шапка не вылезала за экран */
@media (max-width: 1180px) {
  .nav {
    min-height: 66px;
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 10px;
    min-width: 0;
  }

  .brand-text {
    min-width: 0;
    overflow: hidden;
  }

  .brand-text strong {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-btn {
    display: block;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 66px;
    left: 16px;
    right: 16px;
    z-index: 95;
    display: grid;
    gap: 0;
    width: auto;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    padding: 12px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(4,16,25,.97);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 14px;
    border-radius: 15px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255,255,255,.07);
  }

  .nav-links a::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 20px), var(--max));
  }

  .nav {
    min-height: 62px;
    gap: 8px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .logo-mark img {
    width: 30px;
    height: 30px;
  }

  .brand-text strong {
    max-width: 118px;
    font-size: 1.04rem;
    letter-spacing: .10em;
  }

  .brand-text span {
    display: none;
  }

  .menu-btn {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .nav-links {
    top: 62px;
    left: 10px;
    right: 10px;
    max-width: calc(100vw - 20px);
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .pill,
  .mini-metrics span,
  .banner .badge {
    max-width: 100%;
    white-space: normal;
  }
}

/* Psychological support popup */
.psych-popup {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 108;
  width: min(420px, calc(100vw - 28px));
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 8% 0%, rgba(47,198,163,.18), transparent 34%),
    linear-gradient(145deg, rgba(7,29,43,.96), rgba(4,16,25,.96));
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
  backdrop-filter: blur(22px);
  transform: translateY(22px) scale(.97);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
}

.psych-popup.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.psych-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  line-height: 1;
}

.psych-popup-close:hover {
  background: rgba(255,255,255,.12);
}

.psych-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #06151f;
  background: linear-gradient(135deg, var(--emerald), var(--gold-2));
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.psych-popup h2 {
  margin: 0;
  max-width: 330px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.32rem, 2.6vw, 1.78rem);
  line-height: 1.04;
}

.psych-popup p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}

.psych-popup ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.psych-popup li {
  position: relative;
  padding-left: 20px;
  color: rgba(246,241,232,.82);
  font-size: .9rem;
  line-height: 1.42;
}

.psych-popup li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--emerald);
  box-shadow: 0 0 16px rgba(47,198,163,.45);
}

.psych-popup-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.psych-popup-actions .btn {
  flex: 1 1 150px;
  justify-content: center;
}

.psych-note {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem !important;
  color: rgba(246,241,232,.58) !important;
}

@media (max-width: 760px) {
  .psych-popup {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .psych-popup h2 {
    max-width: calc(100% - 38px);
  }

  .psych-popup p {
    font-size: .88rem;
    line-height: 1.42;
  }

  .psych-popup ul {
    gap: 7px;
  }

  .psych-popup li {
    font-size: .86rem;
  }

  .psych-popup-actions {
    gap: 8px;
  }

  .psych-popup-actions .btn {
    flex-basis: 100%;
    width: 100%;
  }

  .psych-note {
    font-size: .74rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .psych-popup {
    transition: none;
  }
}

/* Webinar ticker */
.webinar-ticker {
  position: relative;
  z-index: 42;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(90deg, rgba(47,198,163,.18), rgba(216,184,106,.16), rgba(61,213,232,.12)),
    rgba(4,16,25,.82);
  backdrop-filter: blur(18px);
}

.webinar-ticker::before,
.webinar-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.webinar-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(4,16,25,.96), transparent);
}

.webinar-ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(4,16,25,.96), transparent);
}

.webinar-ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  min-height: 42px;
  padding: 0 28px;
  color: rgba(246,241,232,.86);
  font-size: .86rem;
  font-weight: 750;
  letter-spacing: .02em;
  white-space: nowrap;
  animation: webinarTickerMove 28s linear infinite;
}

.webinar-ticker:hover .webinar-ticker-track {
  animation-play-state: paused;
}

.webinar-ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.webinar-ticker-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex: 0 0 7px;
  background: var(--gold-2);
  box-shadow: 0 0 16px rgba(245,219,148,.58);
}

.webinar-ticker-track b {
  color: var(--gold-2);
}

@keyframes webinarTickerMove {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 760px) {
  .webinar-ticker-track {
    min-height: 38px;
    gap: 22px;
    padding: 0 18px;
    font-size: .78rem;
    animation-duration: 22s;
  }

  .webinar-ticker::before,
  .webinar-ticker::after {
    width: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .webinar-ticker-track {
    width: auto;
    overflow-x: auto;
    animation: none;
  }
}

/* Home completion blocks */
.participant-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.participant-path article {
  position: relative;
  min-height: 172px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  box-shadow: 0 18px 48px rgba(0,0,0,.20);
  overflow: hidden;
}

.participant-path article::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -20px;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
  opacity: .7;
}

.participant-path article:last-child::after { display: none; }

.participant-path span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #06151f;
  background: linear-gradient(135deg, var(--gold-2), var(--emerald));
  font-weight: 900;
  font-size: .82rem;
}

.participant-path h3 { margin: 0; font-size: 1.04rem; }
.participant-path p { margin: 9px 0 0; color: var(--muted); font-size: .91rem; line-height: 1.48; }
.participant-path b { color: var(--gold-2); }

.gains-panel,
.safe-panel,
.final-cta-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 4% 0%, rgba(47,198,163,.18), transparent 36%),
    radial-gradient(circle at 96% 12%, rgba(216,184,106,.16), transparent 36%),
    rgba(255,255,255,.07);
  box-shadow: var(--shadow);
}

.gains-panel {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 18px;
  padding: 22px;
  align-items: stretch;
}

.gains-intro {
  padding: 14px;
  display: grid;
  align-content: center;
}

.gains-intro h2,
.safe-copy h2,
.final-cta-card h2,
.micro-stories-head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.05;
}

.gains-intro p,
.safe-copy p,
.final-cta-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 12px 0 0;
}

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

.gains-cards article {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(4,16,25,.32);
}

.gains-cards .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  border: 1px solid rgba(245,219,148,.28);
  background: rgba(245,219,148,.08);
  font-weight: 900;
  font-size: .78rem;
}

.gains-cards h3 { margin: 0; font-size: 1rem; }
.gains-cards p { margin: 9px 0 0; color: var(--muted); font-size: .89rem; line-height: 1.44; }

.safe-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 18px;
  padding: 24px;
  align-items: center;
}

.safe-copy { padding: 10px; }

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

.safe-list article {
  min-height: 118px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
}

.safe-list span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-weight: 850;
}

.safe-list p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.micro-stories {
  display: grid;
  gap: 16px;
  padding: 22px 0;
  overflow: hidden;
}

.micro-stories-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.micro-stories-head h2 { max-width: 560px; }

.micro-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
}

.micro-slider::before,
.micro-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 2;
  pointer-events: none;
}

.micro-slider::before { left: 0; background: linear-gradient(90deg, rgba(7,29,43,.98), transparent); }
.micro-slider::after { right: 0; background: linear-gradient(270deg, rgba(7,29,43,.98), transparent); }

.micro-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 12px;
  animation: microStoriesMove 30s linear infinite;
}

.micro-slider:hover .micro-track { animation-play-state: paused; }

.micro-track article {
  min-width: 360px;
  max-width: 420px;
  padding: 15px 18px;
  border-radius: 18px;
  color: rgba(246,241,232,.88);
  background: rgba(4,16,25,.42);
  border: 1px solid rgba(255,255,255,.10);
  font-size: .94rem;
  line-height: 1.42;
}

.micro-track b {
  color: var(--gold-2);
  margin-left: 8px;
  white-space: nowrap;
}

@keyframes microStoriesMove {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

.final-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.final-cta-card p { max-width: 720px; }
.final-cta-card b { color: var(--gold-2); }

.final-cta-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 1080px) {
  .participant-path { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .participant-path article::after { display: none; }
  .gains-panel,
  .safe-panel { grid-template-columns: 1fr; }
  .final-cta-card { align-items: flex-start; flex-direction: column; }
  .final-cta-actions { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .participant-path,
  .gains-cards,
  .safe-list { grid-template-columns: 1fr; }

  .participant-path article {
    min-height: auto;
    padding: 18px;
  }

  .gains-panel,
  .safe-panel,
  .final-cta-card {
    padding: 18px;
    border-radius: 24px;
  }

  .gains-intro,
  .safe-copy { padding: 0; }

  .micro-stories-head {
    display: grid;
    align-items: start;
  }

  .micro-track { animation-duration: 24s; }

  .micro-track article {
    min-width: min(310px, calc(100vw - 58px));
    font-size: .88rem;
  }

  .micro-slider::before,
  .micro-slider::after { width: 34px; }

  .final-cta-actions,
  .final-cta-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .micro-track {
    animation: none;
    width: auto;
    overflow-x: auto;
  }
}
