@font-face {
  font-family: "Lobster Two";
  src: url("fonts/lobster-two-bold-de.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --orange: #f36b0b;
  --orange-bright: #ff7a0b;
  --orange-deep: #d95505;
  --orange-soft: #fff0df;
  --gold: #f2a53b;
  --navy: #0b2f64;
  --navy-deep: #061f46;
  --navy-bright: #174a86;
  --ink: #172638;
  --muted: #5d6874;
  --cream: #fff8ed;
  --cream-2: #fff1dc;
  --paper: #fffcf7;
  --white: #ffffff;
  --line: rgba(11, 47, 100, .12);
  --line-light: rgba(255, 255, 255, .18);
  --shadow: 0 28px 80px rgba(36, 45, 65, .14);
  --shadow-soft: 0 16px 46px rgba(36, 45, 65, .09);
  --glow-orange: 0 0 28px rgba(243, 107, 11, .32);
  --radius-xl: 38px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 15px;
  --shell: min(1240px, calc(100% - 44px));
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brush: "Lobster Two", "Segoe Print", "Segoe Script", "Brush Script MT", "Comic Neue", cursive;
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  line-height: 1.62;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .52;
  background: url("assets/paper-noise.png") repeat;
  mix-blend-mode: multiply;
}
img { display: block; max-width: 100%; height: auto; }
.asset-picture { display: contents; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }
::selection { color: var(--white); background: var(--orange); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10001;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy);
  text-decoration: none;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10002;
  height: 3px;
  pointer-events: none;
  background: transparent;
}
.scroll-progress progress {
  appearance: none;
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}
.scroll-progress progress::-webkit-progress-bar { background: transparent; }
.scroll-progress progress::-webkit-progress-value {
  background: linear-gradient(90deg, var(--orange), #ffb03f 55%, var(--navy-bright));
  box-shadow: 0 0 16px rgba(243, 107, 11, .55);
}
.scroll-progress progress::-moz-progress-bar {
  background: linear-gradient(90deg, var(--orange), #ffb03f 55%, var(--navy-bright));
  box-shadow: 0 0 16px rgba(243, 107, 11, .55);
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 320px;
  height: 320px;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(243, 107, 11, .11), rgba(243, 107, 11, .035) 42%, transparent 70%);
  filter: blur(4px);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .3s ease;
}
body.has-pointer .cursor-glow { opacity: 1; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 17px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { padding: 8px 0; }
.nav-shell {
  width: var(--shell);
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 252, 247, .78);
  box-shadow: 0 14px 44px rgba(30, 46, 65, .09), inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(18px) saturate(1.14);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled .nav-shell {
  border-color: rgba(255,255,255,.9);
  background: rgba(255, 252, 247, .94);
  box-shadow: 0 12px 36px rgba(17, 36, 61, .12);
}
.brand {
  flex: 0 0 auto;
  display: block;
  position: relative;
}
.brand::after {
  content: "";
  position: absolute;
  inset: 15% -8%;
  z-index: -1;
  border-radius: 50%;
  opacity: 0;
  background: rgba(243,107,11,.18);
  filter: blur(14px);
  transition: opacity .25s ease;
}
.brand:hover::after { opacity: 1; }
.brand img {
  width: 220px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav a {
  position: relative;
  color: var(--navy);
  font-size: .91rem;
  font-weight: 760;
  text-decoration: none;
  transition: color .2s ease;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -7px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), #ffb447);
  box-shadow: 0 0 12px rgba(243,107,11,.35);
  transition: left .22s ease, right .22s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after { left: 0; right: 0; }
.main-nav a.active { color: var(--orange-deep); }
.nav-cta {
  overflow: hidden;
  padding: 12px 21px;
  color: var(--white) !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep));
  box-shadow: 0 10px 24px rgba(243, 107, 11, .27);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta::before {
  content: "";
  position: absolute;
  top: -70%;
  left: -40%;
  width: 36%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent);
  transform: rotate(18deg);
  transition: left .5s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(243,107,11,.35); }
.nav-cta:hover::before { left: 118%; }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 126px 0 84px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 26%, rgba(255, 179, 77, .22), transparent 28%),
    radial-gradient(circle at 89% 16%, rgba(255, 210, 143, .32), transparent 27%),
    linear-gradient(180deg, #fffaf1 0%, #fffdf9 46%, #fff4e5 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -18% -12% auto;
  height: 620px;
  z-index: -4;
  opacity: .9;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(255,255,255,.8), transparent 60%),
    linear-gradient(115deg, transparent 15%, rgba(255,255,255,.58) 42%, transparent 68%);
  transform: rotate(-4deg);
}
.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -92px;
  height: 175px;
  z-index: -1;
  background: var(--paper);
  clip-path: polygon(0 35%, 8% 28%, 20% 38%, 31% 25%, 44% 36%, 58% 24%, 70% 34%, 82% 22%, 92% 31%, 100% 20%, 100% 100%, 0 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .32;
  background-image:
    linear-gradient(rgba(11, 47, 100, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 47, 100, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 50% 42%, black 0, transparent 72%);
}
.hero-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
  animation: orbFloat 9s ease-in-out infinite;
}
.hero-orb-one {
  width: 360px;
  height: 360px;
  left: -170px;
  top: 280px;
  background: rgba(243, 107, 11, .12);
}
.hero-orb-two {
  width: 300px;
  height: 300px;
  right: -105px;
  top: 170px;
  background: rgba(11, 47, 100, .09);
  animation-delay: -3s;
}
.hero-orb-three {
  width: 190px;
  height: 190px;
  right: 22%;
  bottom: 160px;
  background: rgba(255, 176, 63, .12);
  filter: blur(18px);
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%, 100% { translate: 0 0; scale: 1; }
  50% { translate: 0 -22px; scale: 1.05; }
}
.hero-shell { width: min(1380px, calc(100% - 40px)); margin: 0 auto; }
.hero-brand-lockup {
  width: min(520px, 72vw);
  margin: 0 auto -10px;
  text-align: center;
}
.hero-brand-lockup img {
  width: 100%;
  height: 112px;
  object-fit: contain;
}
.brand-tagline {
  margin-top: -24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}
.brand-tagline span {
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--orange));
}
.brand-tagline span:last-child { background: linear-gradient(90deg, var(--orange), transparent); }
.brand-tagline p {
  margin: 0;
  color: var(--navy);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-layout {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(390px, .92fr) minmax(570px, 1.08fr);
  align-items: center;
  gap: 10px;
}
.hero-copy {
  position: relative;
  z-index: 8;
  padding: 42px 0 72px 2vw;
}
.eyebrow, .section-kicker {
  margin: 0 0 15px;
  color: var(--orange-deep);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow span {
  width: 37px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), #ffb240);
}
.hero h1 {
  margin: 0 0 24px;
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.045em;
}
.script-line {
  display: block;
  color: var(--navy);
  font-family: var(--font-brush);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.075em;
  text-wrap: balance;
  transform: rotate(-1.4deg);
  text-shadow: 0 7px 18px rgba(11,47,100,.08);
}
.brush-line {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-top: 5px;
  padding: 9px 28px 16px 24px;
  display: block;
  color: var(--orange-bright);
  font-family: var(--font-brush);
  font-size: clamp(2.45rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.065em;
  isolation: isolate;
  transform: rotate(-1.1deg);
}
.brush-line::before {
  content: "";
  position: absolute;
  inset: -8px -18px -6px -20px;
  z-index: -1;
  background: url("assets/brush-navy.svg") center / 100% 100% no-repeat;
  filter: drop-shadow(0 14px 22px rgba(6,31,70,.18));
}
.brush-line span { position: relative; z-index: 1; }
.hero-intro {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
}
.hero-intro strong { color: var(--orange-deep); }
.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.button {
  position: relative;
  min-height: 52px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  font-weight: 850;
  text-decoration: none;
  isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255,255,255,.45) 48%, transparent 74%);
  translate: -115% 0;
  transition: translate .6s ease, opacity .2s ease;
}
.button:hover::before { translate: 115% 0; opacity: 1; }
.button:hover { transform: translateY(-3px); }
.button svg { width: 18px; fill: currentColor; }
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep));
  box-shadow: 0 14px 30px rgba(243,107,11,.28), inset 0 1px 0 rgba(255,255,255,.26);
}
.button-primary:hover { box-shadow: 0 18px 38px rgba(243,107,11,.37), 0 0 24px rgba(243,107,11,.16); }
.button-secondary {
  color: var(--navy);
  border: 1px solid rgba(11,47,100,.16);
  background: rgba(255,255,255,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
}
.button-secondary:hover { border-color: rgba(243,107,11,.36); background: var(--white); box-shadow: var(--shadow-soft); }
.hero-trust-row {
  width: fit-content;
  margin-top: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.64);
  box-shadow: 0 14px 38px rgba(33,44,60,.07), inset 0 1px 0 rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
}
.trust-item { display: grid; grid-template-columns: auto auto; align-items: baseline; column-gap: 2px; }
.trust-item strong { color: var(--orange); font-size: 1.55rem; line-height: 1; }
.trust-item > span { color: var(--orange); font-size: 1.05rem; font-weight: 900; }
.trust-item p { grid-column: 1 / -1; margin: 5px 0 0; color: var(--muted); font-size: .72rem; font-weight: 760; }
.trust-item-text { display: block; }
.trust-item-text strong { color: var(--navy); font-size: .91rem; }
.trust-divider { width: 1px; height: 35px; background: var(--line); }

.hero-visual {
  position: relative;
  z-index: 4;
  min-height: 680px;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.scene-core {
  position: absolute;
  inset: 2% 0 0;
  transform-style: preserve-3d;
  transform: rotateX(var(--scene-rx, 0deg)) rotateY(var(--scene-ry, 0deg));
  transition: transform .18s ease-out;
}
.scene-aura {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  left: 50%;
  top: 11%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.92) 0 30%, rgba(255,183,77,.28) 48%, rgba(243,107,11,.11) 62%, transparent 72%);
  filter: blur(2px);
  transform: translateX(-50%) translateZ(-120px);
}
.scene-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
  transform-style: preserve-3d;
}
.scene-ring-one {
  width: 67%;
  aspect-ratio: 1;
  border: 1px solid rgba(243,107,11,.23);
  box-shadow: 0 0 38px rgba(243,107,11,.08), inset 0 0 38px rgba(243,107,11,.05);
  transform: translate(-50%, -52%) translateZ(-90px);
  animation: ringPulse 4.8s ease-in-out infinite;
}
.scene-ring-two {
  width: 54%;
  aspect-ratio: 1;
  border: 1px dashed rgba(11,47,100,.18);
  transform: translate(-50%, -50%) translateZ(-45px) rotate(0deg);
  animation: ringSpin 26s linear infinite;
}
@keyframes ringPulse {
  0%, 100% { scale: 1; opacity: .72; }
  50% { scale: 1.045; opacity: 1; }
}
@keyframes ringSpin { to { transform: translate(-50%, -50%) translateZ(-45px) rotate(360deg); } }
.scene-community {
  position: absolute;
  width: 91%;
  left: 50%;
  bottom: 3%;
  opacity: .92;
  transform: translateX(-50%) translateZ(-75px) scale(.98);
  filter: drop-shadow(0 22px 30px rgba(109,65,20,.1));
}
.lion-shadow {
  position: absolute;
  width: 48%;
  height: 64px;
  left: 51%;
  bottom: 5.5%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(23,38,56,.33), rgba(23,38,56,.11) 45%, transparent 72%);
  filter: blur(10px);
  transform: translateX(-50%) translateZ(-16px) rotateX(72deg);
}
.lion-rim {
  position: absolute;
  width: 45%;
  height: 70%;
  left: 50%;
  top: 8%;
  border-radius: 48% 52% 46% 54%;
  opacity: .32;
  filter: blur(32px);
  pointer-events: none;
}
.lion-rim-orange {
  background: rgba(255,111,0,.44);
  transform: translateX(-58%) translateZ(50px);
}
.lion-rim-blue {
  background: rgba(11,47,100,.25);
  transform: translateX(-40%) translateY(8%) translateZ(45px);
}
.scene-lion {
  position: absolute;
  width: 64%;
  max-width: 500px;
  left: 51%;
  bottom: 3.5%;
  z-index: 5;
  transform: translateX(-50%) translateZ(135px) scale(1.03);
  filter:
    drop-shadow(0 32px 28px rgba(78,49,18,.23))
    drop-shadow(0 0 3px rgba(255,255,255,.95))
    drop-shadow(0 0 15px rgba(255,132,24,.2));
  animation: lionFloat 5s ease-in-out infinite;
  will-change: margin-top, filter;
}
@keyframes lionFloat {
  0%, 100% { margin-top: 0; filter: drop-shadow(0 32px 28px rgba(78,49,18,.23)) drop-shadow(0 0 3px rgba(255,255,255,.95)) drop-shadow(0 0 15px rgba(255,132,24,.2)); }
  50% { margin-top: -11px; filter: drop-shadow(0 38px 32px rgba(78,49,18,.18)) drop-shadow(0 0 4px rgba(255,255,255,.98)) drop-shadow(0 0 24px rgba(255,132,24,.28)); }
}
.orbit-card {
  position: absolute;
  z-index: 9;
  width: 218px;
  min-height: 86px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 45px rgba(27,43,64,.12), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(1.12);
}
.orbit-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(135deg, rgba(243,107,11,.42), transparent 45%, rgba(11,47,100,.25));
  filter: blur(10px);
  transition: opacity .25s ease;
}
.orbit-card:hover::after { opacity: 1; }
.orbit-card-one { right: 2%; top: 17%; animation: cardFloat 5.4s ease-in-out infinite; }
.orbit-card-two { left: -2%; top: 43%; animation: cardFloat 6.2s ease-in-out -2s infinite; }
.orbit-card-three { right: 0; bottom: 14%; animation: cardFloat 5.8s ease-in-out -3.2s infinite; }
@keyframes cardFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.orbit-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep));
  box-shadow: 0 10px 20px rgba(243,107,11,.22);
}
.orbit-icon.navy { background: linear-gradient(135deg, var(--navy-bright), var(--navy-deep)); box-shadow: 0 10px 20px rgba(11,47,100,.22); }
.orbit-icon.cream { color: var(--orange); background: var(--orange-soft); box-shadow: none; }
.orbit-icon svg { width: 22px; fill: currentColor; }
.orbit-card strong { display: block; color: var(--navy); font-size: .97rem; line-height: 1.15; }
.orbit-card small { display: block; margin-top: 4px; color: var(--muted); font-size: .72rem; line-height: 1.25; }
.particle {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(243,107,11,.42);
  animation: particleDrift 6s ease-in-out infinite;
}
.particle-one { width: 9px; height: 9px; left: 12%; top: 27%; }
.particle-two { width: 6px; height: 6px; right: 14%; top: 46%; animation-delay: -2s; background: var(--navy-bright); box-shadow: 0 0 16px rgba(11,47,100,.32); }
.particle-three { width: 12px; height: 12px; left: 22%; bottom: 15%; animation-delay: -4s; opacity: .6; }
@keyframes particleDrift { 0%,100% { translate: 0 0; opacity: .45; } 50% { translate: 12px -20px; opacity: 1; } }

.hero-steps {
  position: relative;
  z-index: 12;
  width: min(1120px, calc(100% - 44px));
  margin: -18px auto 0;
  padding: 22px 28px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: rgba(255,252,247,.87);
  box-shadow: 0 24px 65px rgba(35,47,62,.13), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(1.08);
}
.hero-steps::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: -17px;
  height: 28px;
  z-index: -1;
  background: url("assets/brush-orange.svg") center / 100% 100% no-repeat;
  opacity: .95;
}
.hero-step {
  position: relative;
  min-height: 74px;
  padding: 6px 16px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
}
.hero-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: linear-gradient(transparent, rgba(11,47,100,.18), transparent);
}
.hero-step-number { color: rgba(243,107,11,.48); font-size: .7rem; font-weight: 950; letter-spacing: .08em; }
.hero-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(11,47,100,.18);
}
.hero-step-icon.orange { background: var(--orange); box-shadow: 0 10px 24px rgba(243,107,11,.22); }
.hero-step-icon svg { width: 23px; fill: currentColor; }
.hero-step strong { display: block; color: var(--navy); font-size: .95rem; }
.hero-step small { display: block; color: var(--muted); font-size: .71rem; }

/* Shared sections */
.section { position: relative; padding: 118px 0; }
.section-shell { width: var(--shell); margin: 0 auto; }
.section-heading { max-width: 820px; margin-bottom: 52px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2,
.contact-section h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(2.45rem, 4.4vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.section h2 span,
.contact-section h2 span {
  color: var(--orange);
  font-family: var(--font-brush);
  font-weight: 900;
  letter-spacing: -.06em;
}
.section-heading > p:not(.section-kicker) { color: var(--muted); font-size: 1.08rem; }
.section-copy .lead { color: var(--ink); font-size: 1.2rem; font-weight: 650; }
.section-copy > p:not(.section-kicker) { color: var(--muted); }

.tilt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition: transform .25s cubic-bezier(.2,.75,.2,1), box-shadow .25s ease, border-color .25s ease;
  will-change: transform;
}
.tilt-card:hover { --lift: -7px; }

/* Project section */
.project-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(243,107,11,.08), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(11,47,100,.055), transparent 30%),
    var(--paper);
}
.project-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 180px;
  left: -120px;
  top: 36px;
  opacity: .09;
  background: url("assets/brush-orange.svg") center / 100% 100% no-repeat;
  transform: rotate(-8deg);
}
.project-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 76px;
  align-items: center;
}
.brand-emblem-card {
  position: relative;
  min-height: 620px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.94), transparent 38%),
    linear-gradient(145deg, #ffdfb8 0%, #fff9ef 48%, #ffe8ca 100%);
  box-shadow: var(--shadow);
}
.brand-emblem-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(243,107,11,.18);
  border-radius: 30px;
  pointer-events: none;
}
.brand-emblem-card::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 38%;
  left: -10%;
  bottom: -10%;
  opacity: .16;
  background: url("assets/brush-navy.svg") center / 100% 100% no-repeat;
  transform: rotate(-3deg);
}
.brand-emblem-glow {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,142,34,.18);
  filter: blur(36px);
  animation: emblemGlow 4.4s ease-in-out infinite;
}
@keyframes emblemGlow { 0%,100% { scale: .94; opacity: .55; } 50% { scale: 1.08; opacity: 1; } }
.brand-emblem-card img {
  position: relative;
  z-index: 2;
  width: 96%;
  filter: drop-shadow(0 28px 28px rgba(88,56,20,.15));
  transform: translateZ(50px);
}
.emblem-caption {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%) translateZ(70px);
}
.formula-card {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(11,47,100,.1);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr auto 1.12fr auto 1fr;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 16px 44px rgba(30,42,58,.08);
  backdrop-filter: blur(12px);
}
.formula-card > div { min-width: 0; }
.formula-card span { display: block; color: var(--navy); font-size: .9rem; font-weight: 900; }
.formula-card small { display: block; margin-top: 4px; color: var(--muted); font-size: .69rem; line-height: 1.35; }
.formula-card b { color: var(--orange); font-size: 1.5rem; }
.formula-result { padding: 12px; border-radius: 15px; background: var(--orange-soft); }
.formula-result span { color: var(--orange-deep); }

/* Impact brush */
.impact-section {
  position: relative;
  min-height: 260px;
  padding: 38px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
}
.impact-brush {
  position: absolute;
  width: min(1450px, 112%);
  height: 250px;
  left: 50%;
  top: 50%;
  background: url("assets/brush-navy.svg") center / 100% 100% no-repeat;
  filter: drop-shadow(0 20px 34px rgba(6,31,70,.21));
  transform: translate(-50%, -50%) rotate(-1.2deg);
}
.impact-brush::after {
  content: "";
  position: absolute;
  width: 46%;
  height: 70px;
  right: 2%;
  bottom: -14px;
  opacity: .55;
  background: url("assets/brush-orange.svg") center / 100% 100% no-repeat;
  transform: rotate(3deg);
}
.impact-shell {
  position: relative;
  z-index: 2;
  padding: 12px 6%;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 28px;
  color: var(--white);
}
.impact-icon {
  width: 92px;
  height: 92px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 12px 28px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
}
.impact-icon img { width: 100%; }
.impact-number { display: flex; align-items: baseline; color: var(--orange-bright); line-height: 1; }
.impact-number strong { font-size: clamp(4.5rem, 8vw, 7.5rem); letter-spacing: -.08em; }
.impact-number span { margin-left: 4px; font-size: clamp(1.9rem, 3vw, 3.2rem); font-weight: 900; }
.impact-copy { max-width: 650px; padding-left: 8px; border-left: 1px solid rgba(255,255,255,.2); }
.impact-copy p { margin: 0 0 6px; color: var(--white); font-size: clamp(1.2rem, 2.2vw, 2rem); font-weight: 800; line-height: 1.25; }
.impact-copy small { color: rgba(255,255,255,.68); font-size: .9rem; }

/* Process */
.process-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(11,47,100,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,47,100,.03) 1px, transparent 1px),
    var(--cream);
  background-size: 38px 38px;
}
.process-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 170px;
  right: -170px;
  top: 34px;
  opacity: .11;
  background: url("assets/brush-orange.svg") center / 100% 100% no-repeat;
  transform: rotate(8deg);
}
.process-line {
  position: absolute;
  width: min(1040px, 76%);
  height: 2px;
  left: 50%;
  margin-top: 110px;
  background: linear-gradient(90deg, transparent, rgba(243,107,11,.45) 15%, rgba(11,47,100,.26) 50%, rgba(243,107,11,.45) 85%, transparent);
  transform: translateX(-50%);
}
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.process-card {
  position: relative;
  min-height: 410px;
  padding: 30px;
  border: 1px solid rgba(11,47,100,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.88);
  box-shadow: 0 17px 48px rgba(30,42,58,.08), inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
}
.process-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: conic-gradient(from 180deg at 50% 50%, rgba(243,107,11,.5), transparent 28%, rgba(11,47,100,.35), transparent 70%, rgba(243,107,11,.5));
  filter: blur(12px);
  transition: opacity .3s ease;
}
.process-card:hover::before { opacity: .72; }
.process-card.featured {
  color: var(--white);
  border-color: rgba(255,255,255,.11);
  background:
    radial-gradient(circle at 85% 12%, rgba(243,107,11,.28), transparent 35%),
    linear-gradient(150deg, #123f77, var(--navy-deep));
  box-shadow: 0 24px 60px rgba(6,31,70,.22);
}
.process-card.featured::after {
  content: "";
  position: absolute;
  width: 160%;
  height: 100px;
  left: -30%;
  bottom: -40px;
  opacity: .45;
  background: url("assets/brush-orange.svg") center / 100% 100% no-repeat;
  transform: rotate(-4deg);
}
.process-number {
  position: absolute;
  right: 24px;
  top: 18px;
  color: rgba(243,107,11,.13);
  font-size: 5.7rem;
  font-weight: 950;
  line-height: 1;
}
.featured .process-number { color: rgba(255,255,255,.09); }
.process-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 54px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-bright), var(--navy-deep));
  box-shadow: 0 14px 28px rgba(11,47,100,.2);
  transform: translateZ(30px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-icon.orange { background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep)); box-shadow: 0 14px 28px rgba(243,107,11,.24); }
.process-card:hover .process-icon { transform: translateZ(46px) rotate(-5deg) scale(1.08); box-shadow: 0 18px 34px rgba(243,107,11,.27), 0 0 24px rgba(243,107,11,.14); }
.process-icon svg { width: 30px; fill: currentColor; }
.process-card h3 { margin: 0 0 14px; color: var(--navy); font-size: 1.55rem; line-height: 1.15; }
.process-card p { margin: 0; color: var(--muted); }
.featured h3 { color: var(--white); }
.featured p { color: rgba(255,255,255,.72); }
.card-link {
  position: absolute;
  left: 30px;
  bottom: 27px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-deep);
  font-size: .8rem;
  font-weight: 900;
}
.featured .card-link { color: #ffc38c; }
.card-link svg { width: 16px; fill: currentColor; transition: translate .2s ease; }
.process-card:hover .card-link svg { translate: 4px 0; }

/* Goals dark section */
.goals-section {
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(243,107,11,.16), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(23,74,134,.4), transparent 32%),
    linear-gradient(145deg, #061d40, #0a2c5c 55%, #071f46);
}
.goals-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 82%);
}
.goals-section::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 180px;
  right: -190px;
  bottom: -20px;
  opacity: .34;
  background: url("assets/brush-orange.svg") center / 100% 100% no-repeat;
  transform: rotate(-8deg);
}
.goals-section .section-heading { position: relative; z-index: 2; }
.goals-section .section-kicker { color: #ffb86f; }
.goals-section h2 { color: var(--white); }
.goals-section h2 span { color: #ff9a3f; }
.goal-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.goal-card {
  position: relative;
  min-height: 335px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.07);
  box-shadow: 0 20px 50px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.goal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1), transparent 40%, rgba(243,107,11,.12));
  transition: opacity .28s ease;
}
.goal-card:hover::before { opacity: 1; }
.goal-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(243,107,11,.28);
  filter: blur(25px);
  transition: scale .3s ease, opacity .3s ease;
}
.goal-card:hover .goal-glow { scale: 1.5; opacity: .9; }
.goal-index {
  position: absolute;
  right: 24px;
  top: 20px;
  color: rgba(255,255,255,.11);
  font-size: 5.8rem;
  font-weight: 950;
  line-height: 1;
}
.goal-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 58px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 19px;
  display: grid;
  place-items: center;
  color: #ff9b42;
  background: rgba(255,255,255,.07);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  transform: translateZ(28px);
  transition: transform .25s ease, background .25s ease;
}
.goal-card:hover .goal-icon { transform: translateZ(50px) rotate(-6deg) scale(1.08); background: rgba(243,107,11,.14); }
.goal-icon svg { width: 29px; fill: currentColor; }
.goal-card h3 { position: relative; margin: 0 0 13px; color: var(--white); font-size: 1.45rem; }
.goal-card p { position: relative; margin: 0; color: rgba(255,255,255,.67); }

/* Help */
.help-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(255,180,75,.25), transparent 44%),
    var(--paper);
}
.help-panorama {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -54px;
  width: min(1600px, 125%);
  opacity: .28;
  transform: translateX(-50%);
  pointer-events: none;
}
.help-panorama img { width: 100%; }
.support-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
}
.support-card {
  position: relative;
  min-height: 420px;
  padding: 32px;
  border: 1px solid rgba(11,47,100,.11);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.86);
  box-shadow: 0 19px 54px rgba(30,42,58,.1), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
}
.support-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -90px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(243,107,11,.08);
  filter: blur(6px);
}
.support-featured {
  background:
    radial-gradient(circle at 90% 10%, rgba(255,179,78,.25), transparent 35%),
    linear-gradient(145deg, #fff3e3, rgba(255,255,255,.91));
}
.support-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.support-label {
  color: var(--orange-deep);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.support-status {
  padding: 7px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8a410c;
  background: var(--orange-soft);
  font-size: .68rem;
  font-weight: 850;
  white-space: nowrap;
}
.support-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px rgba(243,107,11,.4); }
.support-status.past { color: var(--navy); background: #eaf1f8; }
.support-status.past i { background: var(--navy-bright); box-shadow: none; }
.support-icon {
  width: 70px;
  height: 70px;
  margin: 48px 0 28px;
  border-radius: 23px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep));
  box-shadow: 0 16px 34px rgba(243,107,11,.25);
  transform: translateZ(35px);
  transition: transform .25s ease;
}
.support-icon.navy { background: linear-gradient(135deg, var(--navy-bright), var(--navy-deep)); box-shadow: 0 16px 34px rgba(11,47,100,.22); }
.support-card:hover .support-icon { transform: translateZ(54px) rotate(-6deg) scale(1.07); }
.support-icon svg { width: 34px; fill: currentColor; }
.support-card h3 { margin: 0 0 14px; color: var(--navy); font-size: clamp(1.75rem, 3vw, 2.45rem); }
.support-card p { max-width: 680px; margin: 0; color: var(--muted); }
.support-footer {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  z-index: 2;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: .75rem;
}
.support-footer strong { color: var(--navy); }

/* Participation */
.participation-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 25%, rgba(243,107,11,.11), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(11,47,100,.075), transparent 30%),
    var(--cream);
}
.participation-brush {
  position: absolute;
  pointer-events: none;
  opacity: .12;
}
.participation-brush-one {
  width: 690px;
  height: 170px;
  left: -180px;
  top: 30px;
  background: url("assets/brush-orange.svg") center / 100% 100% no-repeat;
  transform: rotate(-8deg);
}
.participation-brush-two {
  width: 620px;
  height: 150px;
  right: -170px;
  bottom: 35px;
  background: url("assets/brush-navy.svg") center / 100% 100% no-repeat;
  transform: rotate(7deg);
}
.participation-heading {
  position: relative;
  max-width: 850px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-kicker.light { color: var(--orange-deep); }
.participation-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.participation-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(11,47,100,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 48px rgba(30,42,58,.08), inset 0 1px 0 rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
}
.participation-card::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 70px;
  left: -30%;
  bottom: -35px;
  opacity: .11;
  background: url("assets/brush-orange.svg") center / 100% 100% no-repeat;
  transition: bottom .3s ease, opacity .3s ease;
}
.participation-card:hover::before { bottom: -20px; opacity: .25; }
.role-pill {
  display: inline-block;
  margin-bottom: 35px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--orange-deep);
  background: var(--orange-soft);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.role-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 30px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-bright), var(--navy-deep));
  box-shadow: 0 14px 30px rgba(11,47,100,.2);
  transform: translateZ(35px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.participation-card:nth-child(2) .role-icon { background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep)); box-shadow: 0 14px 30px rgba(243,107,11,.23); }
.participation-card:hover .role-icon { transform: translateZ(56px) rotate(-7deg) scale(1.08); box-shadow: 0 18px 38px rgba(243,107,11,.24), 0 0 22px rgba(243,107,11,.1); }
.role-icon svg { width: 30px; fill: currentColor; }
.participation-card h3 { margin: 0 0 14px; color: var(--navy); font-size: 1.45rem; line-height: 1.18; }
.participation-card p { margin: 0; color: var(--muted); }

/* Contact */
.contact-section {
  position: relative;
  min-height: 650px;
  padding: 80px 0 0;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 18%, rgba(243,107,11,.22), transparent 30%),
    radial-gradient(circle at 82% 82%, rgba(23,74,134,.42), transparent 34%),
    linear-gradient(135deg, #071f46 0%, #0b2f64 58%, #0a2856 100%);
}
.contact-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 65% 50%, black, transparent 75%);
}
.contact-section::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 180px;
  left: -130px;
  bottom: -38px;
  z-index: -1;
  opacity: .55;
  background: url("assets/brush-orange.svg") center / 100% 100% no-repeat;
  transform: rotate(-5deg);
}
.contact-arc {
  position: absolute;
  width: 700px;
  right: -175px;
  bottom: -245px;
  opacity: .28;
  pointer-events: none;
}
.contact-shell {
  position: relative;
  width: var(--shell);
  min-height: 570px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 30px;
}
.contact-copy { position: relative; z-index: 3; max-width: 720px; padding: 30px 0 110px; }
.contact-copy .section-kicker { color: #ffba78; }
.contact-copy h2 { color: var(--white); font-size: clamp(2.8rem, 5.3vw, 5.5rem); }
.contact-copy h2 span { color: #ff9a3f; }
.contact-copy > p:not(.section-kicker) { max-width: 650px; color: rgba(255,255,255,.73); font-size: 1.08rem; }
.contact-actions { margin-top: 30px; display: flex; gap: 13px; flex-wrap: wrap; }
.button-light { color: var(--navy); background: var(--white); box-shadow: 0 14px 30px rgba(0,0,0,.16); }
.button-outline-light { color: var(--white); border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.button-outline-light:hover { border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.12); }
.contact-details { margin-top: 22px; display: flex; gap: 20px; flex-wrap: wrap; color: rgba(255,255,255,.63); font-size: .84rem; }
.contact-details a { text-decoration: none; }
.contact-details a:hover { color: var(--white); }
.contact-visual {
  position: relative;
  align-self: end;
  min-height: 560px;
  perspective: 1000px;
}
.contact-lion-glow {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  left: 50%;
  bottom: 1%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,143,34,.34), rgba(243,107,11,.08) 50%, transparent 70%);
  filter: blur(14px);
  transform: translateX(-50%);
}
.contact-lion {
  position: absolute;
  width: min(470px, 94%);
  left: 50%;
  bottom: -3%;
  filter: drop-shadow(0 30px 32px rgba(0,0,0,.28)) drop-shadow(0 0 18px rgba(255,132,24,.16));
  transform: translateX(-50%) rotateY(var(--contact-ry, 0deg)) rotateX(var(--contact-rx, 0deg));
  transform-origin: center bottom;
  transition: transform .2s ease-out;
  animation: contactLionFloat 5.4s ease-in-out infinite;
}
@keyframes contactLionFloat { 0%,100% { margin-bottom: 0; } 50% { margin-bottom: 9px; } }
.contact-badge {
  position: absolute;
  right: -8px;
  top: 80px;
  z-index: 3;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  box-shadow: 0 18px 44px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  animation: badgeFloat 5s ease-in-out -1.8s infinite;
}
.contact-badge img { width: 54px; }
.contact-badge span { font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
@keyframes badgeFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }

/* Footer */
.site-footer { color: rgba(255,255,255,.72); background: #041832; }
.footer-shell {
  width: var(--shell);
  margin: 0 auto;
  padding: 38px 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  align-items: center;
  gap: 34px;
}
.footer-brand img { width: 220px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { margin: 6px 0 0; font-size: .82rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 11px 19px; }
.footer-links a,
.footer-contact a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .86rem; transition: color .2s ease; }
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; font-size: .83rem; }

/* Legal pages */
.legal-page {
  min-height: 100vh;
  padding: 130px 0 80px;
  background:
    radial-gradient(circle at 12% 18%, rgba(243,107,11,.09), transparent 28%),
    linear-gradient(180deg, #fffaf1, var(--cream));
}
.legal-shell {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.legal-shell h1 { margin: 0 0 28px; color: var(--navy); font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.04; letter-spacing: -.05em; }
.legal-shell h2 { margin-top: 34px; color: var(--navy); }
.notice { padding: 17px 19px; border-left: 4px solid var(--orange); border-radius: 12px; color: #7b3d0d; background: var(--orange-soft); }
.back-link { display: inline-flex; margin-top: 32px; color: var(--navy); font-weight: 850; }

/* Reveal */
.reveal {
  opacity: 0;
  translate: 0 26px;
  transition: opacity .72s ease, translate .72s cubic-bezier(.2,.72,.2,1);
}
.reveal.visible { opacity: 1; translate: 0 0; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

/* Responsive */
@media (max-width: 1260px) {
  .hero-shell { width: min(1220px, calc(100% - 34px)); }
  .hero-layout { grid-template-columns: .95fr 1.05fr; }
  .hero-copy { padding-left: 0; }
  .script-line { font-size: clamp(3rem, 5.3vw, 5.1rem); }
  .brush-line { font-size: clamp(2.4rem, 4.3vw, 4.2rem); }
  .orbit-card { width: 195px; }
  .orbit-card-one { right: -1%; }
  .orbit-card-two { left: -3%; }
  .scene-lion { width: 66%; }
}

@media (max-width: 1080px) {
  :root { --shell: min(100% - 34px, 980px); }
  .main-nav { gap: 17px; }
  .main-nav a { font-size: .83rem; }
  .hero { padding-top: 120px; }
  .hero-brand-lockup { width: 440px; }
  .hero-layout { grid-template-columns: 1fr 1fr; min-height: 630px; }
  .hero-copy { padding-top: 35px; }
  .script-line { font-size: clamp(2.7rem, 5.2vw, 4.5rem); }
  .brush-line { padding-inline: 18px; font-size: clamp(2.15rem, 4.2vw, 3.7rem); }
  .hero-visual { min-height: 620px; }
  .orbit-card { width: 178px; padding: 12px; }
  .orbit-card-one { right: -2%; top: 15%; }
  .orbit-card-two { left: -5%; top: 45%; }
  .orbit-card-three { right: -3%; }
  .orbit-icon { width: 38px; height: 38px; flex-basis: 38px; }
  .orbit-card strong { font-size: .84rem; }
  .orbit-card small { font-size: .65rem; }
  .project-grid { gap: 46px; }
  .brand-emblem-card { min-height: 530px; }
  .formula-card { grid-template-columns: 1fr auto 1fr; }
  .formula-card b:nth-of-type(2), .formula-result { grid-row: 2; }
  .formula-card b:nth-of-type(2) { grid-column: 2; }
  .formula-result { grid-column: 3; }
  .impact-shell { padding-inline: 3%; }
  .impact-icon { width: 78px; height: 78px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 28px, 760px); }
  .site-header { padding: 10px 0; }
  .nav-shell { min-height: 58px; padding: 6px 8px 6px 14px; }
  .brand img { width: 180px; }
  .menu-toggle {
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-content: center;
    gap: 4px;
    color: var(--navy);
    background: var(--orange-soft);
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    top: 76px;
    left: 15px;
    right: 15px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 22px;
    display: grid;
    gap: 7px;
    background: rgba(255,252,247,.97);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateY(-12px) scale(.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .main-nav.open { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
  .main-nav a { padding: 11px 12px; border-radius: 12px; font-size: .95rem; }
  .main-nav a:hover { background: var(--orange-soft); }
  .nav-cta { text-align: center; }

  .hero { padding-top: 112px; }
  .hero-brand-lockup { width: min(430px, 86vw); }
  .brand-tagline p { font-size: .59rem; letter-spacing: .08em; }
  .hero-layout { min-height: auto; grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-copy { order: 2; max-width: 720px; margin: 0 auto; padding: 20px 0 18px; text-align: center; }
  .eyebrow { justify-content: center; }
  .script-line { font-size: clamp(3.3rem, 10vw, 5.2rem); }
  .brush-line { margin-left: auto; margin-right: auto; font-size: clamp(2.65rem, 8vw, 4.3rem); }
  .hero-intro { margin-inline: auto; }
  .hero-actions, .hero-trust-row { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero-visual { min-height: 620px; width: min(720px, 100%); margin: -36px auto -38px; }
  .scene-lion { width: 58%; }
  .scene-community { width: 82%; }
  .orbit-card-one { right: 5%; }
  .orbit-card-two { left: 4%; }
  .orbit-card-three { right: 5%; }
  .hero-steps { margin-top: -18px; grid-template-columns: 1fr; gap: 0; padding: 18px 22px; }
  .hero-step { min-height: 68px; grid-template-columns: auto auto 1fr; }
  .hero-step:not(:last-child)::after { left: 16px; right: auto; top: auto; bottom: -1px; width: calc(100% - 32px); height: 1px; background: linear-gradient(90deg, transparent, rgba(11,47,100,.15), transparent); }

  .section { padding: 90px 0; }
  .project-grid { grid-template-columns: 1fr; }
  .brand-emblem-card { width: min(620px, 100%); min-height: 560px; margin: 0 auto; }
  .project-grid .section-copy { text-align: center; }
  .formula-card { text-align: left; }
  .impact-section { min-height: 330px; }
  .impact-brush { width: 125%; height: 320px; }
  .impact-shell { grid-template-columns: auto 1fr; gap: 20px; }
  .impact-copy { grid-column: 1 / -1; padding: 14px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); text-align: center; }
  .process-line { display: none; }
  .process-grid, .goal-grid, .participation-grid { grid-template-columns: 1fr; }
  .process-card, .goal-card, .participation-card { min-height: 320px; }
  .support-grid { grid-template-columns: 1fr; }
  .contact-shell { grid-template-columns: 1fr; min-height: 970px; }
  .contact-copy { max-width: 720px; margin: 0 auto; padding-bottom: 0; text-align: center; }
  .contact-actions, .contact-details { justify-content: center; }
  .contact-visual { min-height: 560px; }
  .contact-badge { right: 9%; }
  .footer-shell { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin: 0 auto; }
  .footer-links { justify-content: center; }
  .footer-contact { align-items: center; }
}

@media (max-width: 620px) {
  :root { --shell: min(100% - 22px, 560px); }
  .brand img { width: 154px; }
  .hero { padding: 103px 0 70px; }
  .hero-brand-lockup img { height: 82px; }
  .brand-tagline { margin-top: -17px; gap: 8px; }
  .brand-tagline p { max-width: 240px; white-space: normal; line-height: 1.35; }
  .hero-copy { padding-top: 22px; }
  .eyebrow { font-size: .64rem; letter-spacing: .1em; }
  .script-line { font-size: clamp(2.65rem, 14vw, 4rem); line-height: .98; }
  .brush-line { padding: 7px 16px 13px; font-size: clamp(2.15rem, 11vw, 3.3rem); }
  .hero-intro { font-size: .98rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .button { width: 100%; }
  .hero-trust-row { width: 100%; justify-content: center; }
  .hero-visual { min-height: 500px; margin: -28px auto -24px; }
  .scene-community { width: 96%; bottom: 5%; }
  .scene-lion { width: 67%; max-width: 390px; bottom: 4%; }
  .scene-ring-one { width: 79%; }
  .scene-ring-two { width: 64%; }
  .orbit-card { width: 152px; min-height: 70px; padding: 9px 10px; border-radius: 16px; }
  .orbit-card-one { right: -2%; top: 14%; }
  .orbit-card-two { left: -2%; top: 48%; }
  .orbit-card-three { right: -1%; bottom: 11%; }
  .orbit-icon { width: 33px; height: 33px; flex-basis: 33px; border-radius: 11px; }
  .orbit-icon svg { width: 17px; }
  .orbit-card strong { font-size: .74rem; }
  .orbit-card small { font-size: .57rem; }
  .particle { display: none; }
  .hero-steps { width: var(--shell); }
  .hero-step { padding-inline: 6px; }
  .hero-step-icon { width: 43px; height: 43px; }

  .section { padding: 76px 0; }
  .section h2, .contact-section h2 { font-size: clamp(2.25rem, 11vw, 3.15rem); }
  .brand-emblem-card { min-height: 430px; padding: 20px; }
  .emblem-caption { bottom: 18px; font-size: .6rem; }
  .formula-card { grid-template-columns: 1fr; gap: 10px; text-align: center; }
  .formula-card b, .formula-card b:nth-of-type(2), .formula-result { grid-column: auto; grid-row: auto; }
  .impact-section { min-height: 350px; }
  .impact-brush { width: 155%; height: 360px; }
  .impact-shell { grid-template-columns: 70px 1fr; gap: 14px; }
  .impact-icon { width: 68px; height: 68px; padding: 14px; border-radius: 20px; }
  .impact-number strong { font-size: 4.6rem; }
  .impact-copy p { font-size: 1.12rem; }
  .process-card, .goal-card, .participation-card { min-height: 330px; padding: 26px; }
  .process-number, .goal-index { font-size: 4.8rem; }
  .process-icon { margin-bottom: 45px; }
  .support-card { min-height: 460px; padding: 25px; }
  .support-topline { align-items: flex-start; flex-direction: column; }
  .support-icon { margin-top: 34px; }
  .support-footer { left: 25px; right: 25px; bottom: 24px; align-items: flex-start; flex-direction: column; gap: 2px; }
  .contact-section { min-height: 900px; padding-top: 70px; }
  .contact-shell { min-height: 830px; }
  .contact-copy { padding-top: 0; }
  .contact-actions { flex-direction: column; }
  .contact-visual { min-height: 455px; }
  .contact-lion { width: min(390px, 105%); }
  .contact-badge { width: 112px; height: 112px; right: 0; top: 54px; }
  .contact-badge img { width: 40px; }
  .contact-badge span { font-size: .58rem; }
  .legal-shell { padding: 29px 22px; }
}

@media (pointer: coarse) {
  .cursor-glow { display: none; }
  .tilt-card { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; translate: 0 0; }
  .cursor-glow { display: none; }
  .scene-core, .contact-lion, .tilt-card { transform: none !important; }
}

/* =========================================================
   VERSION 3 – performance-optimierte Bewegung und sichere Ebenen
   ========================================================= */

/* Die Papierstruktur bleibt erhalten, scrollt aber statisch mit der Seite. */
body { position: relative; }
body::before {
  position: absolute;
  opacity: .20;
  mix-blend-mode: normal;
}

/* Dauerhafte Maus- und Hintergrundanimationen entfallen. */
.cursor-glow { display: none !important; }
.hero-orb,
.scene-ring-one,
.scene-ring-two,
.orbit-card,
.particle,
.brand-emblem-glow,
.contact-lion,
.contact-badge {
  animation: none !important;
}
.particle { display: none !important; }

/* Der Hero bleibt räumlich, verwendet aber eine eindeutige 2D-Ebenenlogik.
   Dadurch können Löwe und 100-%-Karte den Text nicht mehr gegenseitig verdecken. */
.hero-visual {
  perspective: none;
  transform-style: flat;
  isolation: isolate;
}
.scene-core {
  z-index: 1;
  transform: none !important;
  transform-style: flat;
  transition: none;
}
.scene-aura {
  z-index: 0;
  transform: translateX(-50%);
}
.scene-ring { z-index: 1; }
.scene-ring-one { transform: translate(-50%, -52%); }
.scene-ring-two { transform: translate(-50%, -50%) rotate(-9deg); }
.scene-community {
  z-index: 2;
  transform: translateX(-50%) scale(.98);
}
.lion-shadow {
  z-index: 3;
  transform: translateX(-50%) rotateX(72deg);
}
.lion-rim { z-index: 4; }
.lion-rim-orange { transform: translateX(-58%); }
.lion-rim-blue { transform: translateX(-40%) translateY(8%); }
.scene-lion {
  left: 40%;
  z-index: 6;
  transform: translateX(-50%) scale(1.03);
  animation: lionFloatLite 10s ease-in-out infinite !important;
  will-change: translate;
}
@keyframes lionFloatLite {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -3px; }
}

/* Infokarten liegen immer vor dem Maskottchen und sind stärker deckend. */
.orbit-card {
  z-index: 30;
  isolation: isolate;
  overflow: hidden;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px) saturate(1.03);
  -webkit-backdrop-filter: blur(6px) saturate(1.03);
  box-shadow: 0 16px 38px rgba(27,43,64,.13), inset 0 1px 0 rgba(255,255,255,.96);
  transform: none !important;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.orbit-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(243,107,11,.28);
  box-shadow: 0 20px 44px rgba(27,43,64,.15), 0 0 18px rgba(243,107,11,.09);
}
.orbit-card-one { right: 0; top: 15%; }
.orbit-card-two { left: 0; top: 46%; }
.orbit-card-three { right: 1%; bottom: 13%; }

/* 3D-Neigung wird durch einen einfachen, performanten Hover-Lift ersetzt. */
.tilt-card {
  transform: none;
  transform-style: flat;
  will-change: auto;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.tilt-card:hover { transform: translateY(-4px); }
.brand-emblem-card img { transform: none; }
.emblem-caption { transform: translateX(-50%); }

/* Die Kontaktgrafik bleibt statisch und klar. */
.contact-visual { perspective: none; }
.contact-lion {
  transform: translateX(-50%);
  transition: none;
}

/* Eine kurze einmalige Einblendung bleibt erhalten. */
.reveal {
  translate: 0 18px;
  transition-duration: .52s;
}

/* Weniger teure Unschärfe auf den dauerhaft sichtbaren Glasflächen. */
.nav-shell { backdrop-filter: blur(12px) saturate(1.06); }
.hero-steps { backdrop-filter: blur(10px) saturate(1.04); }

@media (max-width: 1260px) {
  .scene-lion { left: 40%; width: 63%; }
  .orbit-card-one { right: 0; }
}

@media (max-width: 1080px) {
  .scene-lion { left: 41%; width: 62%; }
  .orbit-card-one { right: 0; top: 13%; }
  .orbit-card-two { left: 0; top: 47%; }
  .orbit-card-three { right: 0; }
}

@media (max-width: 900px) {
  .scene-lion { left: 44%; width: 56%; }
  .orbit-card-one { right: 4%; }
  .orbit-card-two { left: 4%; }
  .orbit-card-three { right: 4%; }
}

@media (max-width: 620px) {
  .scene-lion { left: 43%; width: 64%; }
  .orbit-card {
    background: rgba(255,255,255,.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .orbit-card-one { right: -1%; top: 12%; }
  .orbit-card-two { left: -1%; top: 50%; }
  .orbit-card-three { right: 0; bottom: 9%; }
}

@media (prefers-reduced-motion: reduce) {
  .scene-lion { animation: none !important; translate: 0 0 !important; }
}

/* V3 Feinschliff: keine dynamische Hintergrundunschärfe hinter den Infokarten. */
.performance-v3 .orbit-card { backdrop-filter: none; -webkit-backdrop-filter: none; }
