:root {
  --ink: #474749;
  --ink-deep: #26272a;
  --wine: #3c122c;
  --lavender: #b4a9d3;
  --mint: #a1e8c3;
  --mist: #e5f2ed;
  --steel: #6b7682;
  --line: rgba(71, 71, 73, .14);
  --white: #fff;
  --paper: #fbfbfc;
  --shadow: 0 18px 50px rgba(38, 39, 42, .10);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --container: 1180px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "The Woods Etched", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Suarez", "Segoe Script", cursive;
}

@font-face {
  font-family: "The Woods Etched";
  src: local("The Woods Etched");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute !important;
  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; left: 12px; top: 12px; z-index: 2000;
  transform: translateY(-150%);
  padding: .7rem 1rem; border-radius: 10px;
  color: #fff; background: var(--wine);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: 72px 0; }
.eyebrow {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: .76rem;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wine);
}
.eyebrow-light { color: var(--mint); }
h1, h2, h3, h4, h5, h6,
.eyebrow {
  font-family: var(--font-display);
}
h1, h2, h3, p { margin-top: 0; }
h2 {
  margin-bottom: 18px;
  color: var(--ink-deep);
  font-size: clamp(2rem, 8vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.045em;
}
h3 { margin-bottom: 10px; color: var(--ink-deep); font-size: 1.35rem; line-height: 1.15; }
p { margin-bottom: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 34px rgba(38,39,42,.06); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { width: 162px; flex: 0 0 auto; }
.menu-toggle {
  width: 46px; height: 46px;
  display: grid; place-content: center; gap: 5px;
  border: 0; border-radius: 999px;
  color: var(--ink); background: var(--paper); cursor: pointer;
}
.menu-toggle span:not(.sr-only) { width: 20px; height: 2px; border-radius: 999px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
.main-nav {
  position: absolute; inset: 76px 0 auto 0;
  display: none;
  padding: 16px 16px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.985);
}
.main-nav.is-open { display: grid; }
.main-nav a {
  padding: 13px 16px;
  border-radius: 12px;
  font-weight: 750;
  text-decoration: none;
}
.main-nav a:hover, .main-nav a:focus-visible { background: var(--mist); outline: none; }

.hero {
  position: relative; isolation: isolate;
  min-height: 0;
  display: block;
  overflow: hidden;
  color: #fff;
  background: var(--ink-deep);
}
.hero-photo {
  position: absolute; inset: 0; z-index: -3;
  background: url('../img/hero.jpg') 62% center / cover no-repeat;
}
@supports (background-image: url('../img/hero.webp')) {
  .hero-photo { background-image: url('../img/hero.webp'); }
}
.hero-shade {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(20,20,23,.12) 0%, rgba(20,20,23,.50) 58%, rgba(20,20,23,.88) 100%),
    linear-gradient(90deg, rgba(38,39,42,.82) 0%, rgba(38,39,42,.35) 60%, rgba(38,39,42,.05) 100%);
}
.hero::after {
  content: ""; position: absolute; right: -120px; bottom: -150px; z-index: -1;
  width: 340px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(161,232,195,.75), rgba(180,169,211,.48) 52%, rgba(180,169,211,0) 73%);
  filter: blur(12px);
}
.hero-inner { padding-top: 72px; padding-bottom: 48px; }
.hero-copy { max-width: 680px; }
.hero .eyebrow { color: var(--mint); }
.hero-unicorn { width: 128px; height: auto; margin: 0 0 12px; }
.hero-wordmark { width: min(84vw, 560px); margin: 0 0 18px; filter: brightness(0) invert(1); }
.hero-claim { width: min(76vw, 490px); margin: 0 0 26px; }
.hero-text { max-width: 560px; margin-bottom: 28px; font-size: 1.05rem; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 22px;
  border: 1px solid transparent; border-radius: 999px;
  font-weight: 800; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .contact-card:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }
.button-primary { color: var(--ink-deep); background: var(--mint); box-shadow: 0 14px 34px rgba(161,232,195,.18); }
.button-primary:hover { background: #b9f2d4; }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.05); }
.button-ghost:hover { background: #fff; color: var(--ink-deep); }
.button-mint { color: var(--ink-deep); background: var(--mint); }

.intro-section { background: linear-gradient(135deg, rgba(180,169,211,.10), rgba(161,232,195,.12)); }
.split { display: grid; gap: 28px; }
.prose { max-width: 700px; font-size: 1.06rem; }
.note { padding-left: 16px; border-left: 3px solid var(--mint); color: var(--steel); }

.team-section { background: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 32px; }
.section-heading > p:last-child { font-size: 1.05rem; color: var(--steel); }
.feature-grid { display: grid; gap: 18px; }
.feature-card {
  overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; box-shadow: 0 1px 0 rgba(38,39,42,.02);
}
.feature-card picture { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--mist); }
.feature-card picture img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.feature-card:hover picture img { transform: scale(1.025); }
.feature-card-body { padding: 24px; }
.feature-number { display: inline-block; margin-bottom: 18px; color: var(--lavender); font-size: .75rem; font-weight: 900; letter-spacing: .14em; }
.feature-card-body p { margin-bottom: 0; color: var(--steel); }

.training-section { background: var(--paper); }
.training-grid { display: grid; gap: 34px; align-items: center; }
.training-copy { max-width: 600px; }
.training-copy > p:not(.eyebrow) { color: var(--steel); font-size: 1.05rem; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--wine); font-weight: 850; text-decoration: none; }
.training-media { display: block; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.training-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.join-section {
  position: relative; overflow: hidden;
  color: #fff;
  background: linear-gradient(110deg, #5b477e 0%, #7665a2 40%, #567c83 100%);
}
.join-section::before { content: ""; position: absolute; inset: 0; opacity: .28; background: radial-gradient(circle at 85% 20%, var(--mint), transparent 30%); }
.join-grid { position: relative; display: grid; gap: 26px; align-items: center; }
.join-mark { width: 94px; height: 94px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.join-mark img { width: 72px; }
.join-copy h2 { margin-bottom: 12px; color: #fff; }
.join-copy p { margin-bottom: 0; color: rgba(255,255,255,.82); }
.join-action { align-self: end; }

.contact-section { background: #fff; }
.contact-grid { display: grid; gap: 28px; }
.contact-grid > div p:last-child { max-width: 650px; color: var(--steel); }
.contact-card {
  display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; align-items: center;
  padding: 24px; border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; background: var(--paper); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-3px); border-color: var(--lavender); box-shadow: var(--shadow); }
.contact-label { grid-column: 1; color: var(--steel); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { grid-column: 1; overflow-wrap: anywhere; font-size: clamp(1.05rem, 5vw, 1.5rem); }
.contact-card > span:last-child { grid-column: 2; grid-row: 1 / span 2; font-size: 1.8rem; color: var(--lavender); }

.site-footer { padding: 52px 0 22px; color: rgba(255,255,255,.78); background: #23262a; }
.footer-grid { display: grid; gap: 32px; }
.footer-brand img { width: 210px; }
.footer-links { display: grid; gap: 8px; align-content: start; }
.footer-links a, .footer-contact a { text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: var(--mint); }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 20px; font-size: .82rem; }

@media (min-width: 680px) {
  .container { width: min(100% - 56px, var(--container)); }
  .section { padding: 92px 0; }
  .hero-photo { inset: 0 0 0 38%; background-position: center; }
  .hero-shade { background: linear-gradient(90deg, #25272b 0%, rgba(37,39,43,.97) 38%, rgba(37,39,43,.55) 67%, rgba(37,39,43,.13) 100%); }
  .hero-inner { padding-block: 90px; }
  .hero-wordmark { width: min(46vw, 560px); }
  .hero-claim { width: min(42vw, 500px); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .join-grid { grid-template-columns: auto minmax(0,1fr); }
  .join-action { grid-column: 2; }
  .footer-grid { grid-template-columns: 1.2fr .8fr 1fr; }
}

@media (min-width: 900px) {
  .header-inner { min-height: 88px; }
  .brand { width: 188px; }
  .menu-toggle { display: none; }
  .main-nav {
    position: static; display: flex !important; padding: 0; border: 0; background: transparent;
    align-items: center; justify-content: flex-end; gap: 2px;
  }
  .main-nav a { padding: 10px 12px; font-size: .92rem; }
  .split { grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
  .training-grid { grid-template-columns: .9fr 1.1fr; gap: 80px; }
  .training-media img { aspect-ratio: 16 / 10; }
  .join-grid { grid-template-columns: auto 1fr auto; gap: 34px; }
  .join-action { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr minmax(420px, .9fr); gap: 80px; align-items: end; }
}

@media (min-width: 1180px) {
  .section { padding: 112px 0; }
  .hero-copy { padding-left: 10px; }
  .feature-grid { gap: 26px; }
  .feature-card-body { padding: 30px; }
  .main-nav a { padding-inline: 15px; }
}

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

/* === Header + Hero reference rebuild 2026-08-26 === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 62px;
  background: #fff;
  border: 0;
}
.site-header.is-scrolled { box-shadow: 0 5px 18px rgba(15,21,32,.08); }
.header-shell {
  width: min(calc(100% - 72px), 1460px);
  height: 62px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 205px 1fr 38px;
  align-items: center;
  gap: 28px;
}
.brand { display:block; width: 190px; max-width:100%; }
.brand img { width:100%; height:auto; }
.main-nav {
  position: static;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap: clamp(20px,2.5vw,48px);
  padding:0;
  border:0;
  background:transparent;
}
.main-nav a {
  position:relative;
  padding: 11px 0 12px;
  color:#151822;
  background:transparent;
  border-radius:0;
  text-decoration:none;
  font-size:clamp(.78rem,.9vw,.95rem);
  font-weight:750;
  line-height:1;
  white-space:nowrap;
}
.main-nav a:hover,.main-nav a:focus-visible,.main-nav a.is-active { color:#7655bf; background:transparent; outline:none; }
.main-nav a.is-active::after { content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background:#7655bf; }
.header-menu-mark { width:34px; display:grid; gap:7px; }
.header-menu-mark i { height:2px; width:34px; display:block; background:#111827; border-radius:10px; }
.menu-toggle { display:none; }
html { scroll-padding-top: 62px; }
.anchor-target { top:-62px; }

.hero { position:relative; color:#fff; background:#fff; }
.hero-stage {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  width:100%;
  aspect-ratio:1536 / 633;
  min-height:540px;
  background:#fff;
}
.hero-header-strip {
  position:absolute;
  z-index:0;
  left:0; right:0; top:0;
  height:8.5308%;
  background:#fff;
}
.hero-scene {
  position:absolute;
  z-index:1;
  left:0; right:0; bottom:0;
  height:91.4692%;
  display:block;
  overflow:hidden;
  background:#15243a;
}
.hero-scene img { width:100%; height:100%; object-fit:cover; object-position:center center; }
.hero-shade {
  position:absolute;
  z-index:2;
  left:0; right:0; top:auto; bottom:0;
  height:91.4692%;
  pointer-events:none;
  background:linear-gradient(90deg,
    rgba(8,17,31,.67) 0%,
    rgba(8,17,31,.56) 18%,
    rgba(8,17,31,.38) 31%,
    rgba(8,17,31,.18) 43%,
    rgba(8,17,31,.04) 56%,
    rgba(8,17,31,0) 67%);
}
.hero-player-brush {
  position:absolute;
  z-index:3;
  top:0;
  right:0;
  width:46.6146%;
  height:100%;
  display:block;
  pointer-events:none;
}
.hero-player-brush img { width:100%; height:100%; object-fit:fill; }
.hero-copy {
  position:absolute;
  z-index:4;
  left:6.05%;
  top:17.2%;
  width:30.6%;
  max-width:470px;
}
.hero-brand-lockup { width:100%; }
.hero-unicorn {
  width:18.5%;
  max-width:92px;
  height:auto;
  margin:0 0 8px 0;
}
.hero-wordmark {
  width:100%;
  height:auto;
  margin:0;
  filter:brightness(0) invert(1);
}
.hero-claim {
  width:95%;
  height:auto;
  margin:13px 0 22px;
}
.hero-text {
  margin:0 0 27px;
  color:#fff;
  font-size:clamp(1rem,1.22vw,1.22rem);
  font-weight:700;
  line-height:1.35;
}
.hero-actions { display:flex; gap:22px; flex-wrap:nowrap; }
.hero .button {
  min-width:0;
  width:auto;
  min-height:50px;
  padding:0 28px 0 31px;
  gap:30px;
  border-radius:999px;
  font-size:clamp(.78rem,.92vw,.95rem);
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.01em;
}
.hero .button span { font-size:1.75rem; font-weight:300; }
.hero .button-primary { color:#10202c; background:#91e6ca; border-color:#91e6ca; }
.hero .button-ghost { color:#fff; background:rgba(4,11,20,.13); border-color:rgba(255,255,255,.9); }

@media (max-width: 1100px) {
  .header-shell { width:min(calc(100% - 36px), 1100px); grid-template-columns:185px 1fr 34px; gap:18px; }
  .brand { width:175px; }
  .main-nav { gap:18px; }
  .main-nav a { font-size:.76rem; }
  .hero-copy { left:5%; width:34%; top:16.5%; }
  .hero-actions { gap:12px; }
  .hero .button { padding:0 20px; gap:16px; }
}

@media (max-width: 820px) {
  .site-header,.header-shell { height:60px; }
  html { scroll-padding-top:60px; }
  .header-shell { grid-template-columns:160px 1fr 44px; }
  .brand { width:155px; }
  .header-menu-mark { display:none; }
  .menu-toggle { display:grid; justify-self:end; }
  .main-nav {
    position:absolute;
    top:60px; left:0; right:0;
    display:none;
    padding:12px 18px 20px;
    background:#fff;
    box-shadow:0 12px 24px rgba(15,21,32,.12);
  }
  .main-nav.is-open { display:grid; }
  .main-nav a { padding:12px 4px; font-size:.95rem; }
  .main-nav a.is-active::after { display:none; }
  .hero-stage { aspect-ratio:auto; min-height:720px; }
  .hero-header-strip { height:42px; }
  .hero-scene { top:42px; height:auto; }
  .hero-shade { top:42px; height:auto; background:linear-gradient(90deg,rgba(8,17,31,.72),rgba(8,17,31,.42) 58%,rgba(8,17,31,.12)); }
  .hero-player-brush { top:0; width:auto; height:100%; right:-28%; }
  .hero-copy { left:6%; top:16%; width:55%; max-width:430px; }
}

@media (max-width: 620px) {
  .header-shell { width:calc(100% - 24px); grid-template-columns:145px 1fr 44px; }
  .brand { width:140px; }
  .hero-stage { min-height:690px; }
  .hero-player-brush { right:-68%; opacity:.72; }
  .hero-copy { left:7%; top:14%; width:78%; }
  .hero-unicorn { width:16%; }
  .hero-claim { width:100%; }
  .hero-actions { flex-wrap:wrap; }
}
/* final reference tuning */
.hero-shade {
  background: linear-gradient(90deg,
    rgba(8,17,31,.58) 0%,
    rgba(8,17,31,.45) 17%,
    rgba(8,17,31,.27) 30%,
    rgba(8,17,31,.11) 40%,
    rgba(8,17,31,.025) 47%,
    rgba(8,17,31,0) 52%);
}
.hero-player-brush { width:50.520833%; }


/* === HERO TARGET: screenshot 1 left + screenshot 2 right === */
.hero-scene img {
  object-position: left center;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(9,17,29,.05) 0%, rgba(9,17,29,.22) 52%, rgba(9,17,29,.72) 100%),
    linear-gradient(90deg, rgba(8,18,32,.90) 0%, rgba(8,18,32,.86) 25%, rgba(8,18,32,.73) 42%, rgba(8,18,32,.42) 58%, rgba(8,18,32,.12) 72%, rgba(8,18,32,0) 82%);
}

.hero-brand-lockup {
  width: 100%;
}

.hero-claim {
  display: block;
  width: 95%;
  height: auto;
  margin: 13px 0 22px;
}


/* Buttons übernommen aus dem aktuellen Stand – sonst keine Änderungen. */
.hero-actions { gap:18px; }
.hero .button { padding-left:30px; padding-right:30px; gap:0; }

/* === HERO correction from approved reference ===
   Only: left background, smooth reference-style shade, exact handwritten claim.
   Right player/brush layer and current buttons remain untouched. */
.hero-shade {
  background:
    linear-gradient(180deg,
      rgba(7,16,29,.02) 0%,
      rgba(7,16,29,.06) 48%,
      rgba(7,16,29,.30) 100%),
    linear-gradient(90deg,
      rgba(7,16,29,.86) 0%,
      rgba(7,16,29,.82) 18%,
      rgba(7,16,29,.72) 32%,
      rgba(7,16,29,.56) 45%,
      rgba(7,16,29,.36) 56%,
      rgba(7,16,29,.18) 66%,
      rgba(7,16,29,.06) 73%,
      rgba(7,16,29,0) 79%);
}
.hero-claim {
  display:block;
  width:82%;
  max-width:386px;
  height:auto;
  margin:13px 0 22px;
  object-fit:contain;
  object-position:left top;
  overflow:visible;
}

/* === HERO background + gradient correction from reference ===
   Keep all current hero content/right-side/buttons untouched. */
.hero-scene img {
  object-position: center center;
}
.hero-shade {
  background: linear-gradient(90deg,
    rgba(7,16,29,.88) 0%,
    rgba(7,16,29,.82) 20%,
    rgba(7,16,29,.72) 28%,
    rgba(7,16,29,.58) 32.5%,
    rgba(7,16,29,.45) 35.8%,
    rgba(7,16,29,.18) 39.1%,
    rgba(7,16,29,0) 42.3%);
}

/* === FINAL HERO BACKGROUND / GRADIENT REFERENCE MATCH ===
   Background is reconstructed directly from the approved reference crop.
   The reference gradient is baked into hero-scene-clean; no second CSS shade. */
.hero-scene img {
  object-position: center center;
}
.hero-shade {
  background: none !important;
}

/* === MARKED OFFSET FIX ===
   Use one unified 1536x633 hero canvas so background, player/brush and overhang
   always scale together. This removes the marked seams/offsets at every breakpoint. */
.hero-header-strip { display:none !important; }
.hero-scene {
  inset:0 !important;
  width:100% !important;
  height:100% !important;
}
.hero-scene img {
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
}
.hero-player-brush { display:none !important; }
.hero-shade { display:none !important; }

/* === About reference block 2026-08-27 === */
.about-reference {
  background: #fbfaff;
  color: #171924;
  padding: clamp(48px, 5.2vw, 78px) 0 clamp(42px, 4.8vw, 70px);
}
.about-reference__inner {
  width: min(calc(100% - 64px), 1400px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(520px, 1.05fr) minmax(620px, 1.30fr);
  gap: clamp(36px, 4.6vw, 72px);
  align-items: center;
}
.about-reference__copy h2 {
  margin: 0;
  color: #7655a8;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(2.2rem, 3.15vw, 3.55rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.about-reference__accent {
  display: block;
  width: 58px;
  height: 3px;
  margin: 12px 0 23px;
  border-radius: 999px;
  background: #89dfc4;
}
.about-reference__copy p {
  max-width: 650px;
  margin: 0 0 24px;
  color: #1d202b;
  font-size: clamp(.96rem, 1.02vw, 1.075rem);
  font-weight: 500;
  line-height: 1.55;
}
.about-reference__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  height: 42px;
  padding: 0 22px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(100deg, #7457a7, #8e63b6);
  box-shadow: 0 5px 12px rgba(109, 78, 153, .16);
  font-size: .82rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}
.about-reference__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.about-reference__stat {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3px 22px 0;
  text-align: center;
}
.about-reference__stat + .about-reference__stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  bottom: 10px;
  width: 1px;
  background: #e5e0eb;
}
.about-reference__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 9px;
  color: #8c61b2;
}
.about-reference__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-reference__icon svg path:nth-last-child(1) {
  vector-effect: non-scaling-stroke;
}
.about-reference__stat strong {
  display: block;
  margin: 0 0 4px;
  color: #181a24;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(2.05rem, 2.55vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.025em;
}
.about-reference__stat span {
  display: block;
  color: #373947;
  font-size: clamp(.68rem, .77vw, .78rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .about-reference__inner {
    width: min(calc(100% - 56px), 920px);
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-reference__copy { max-width: 680px; }
  .about-reference__stats { max-width: 820px; width: 100%; }
}

@media (max-width: 680px) {
  .about-reference { padding: 48px 0; }
  .about-reference__inner { width: min(calc(100% - 32px), 620px); gap: 34px; }
  .about-reference__copy h2 { font-size: 2.35rem; }
  .about-reference__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 24px; }
  .about-reference__stat { min-height: 126px; padding-inline: 14px; }
  .about-reference__stat:nth-child(3)::before { display: none; }
  .about-reference__icon { width: 50px; height: 50px; }
}

/* === HERO UNICORN SIZE ONLY — 2026-08-27 === */
.hero-unicorn {
  width: 37% !important;
  max-width: 184px !important;
}
@media (max-width: 620px) {
  .hero-unicorn {
    width: 32% !important;
    max-width: 184px !important;
  }
}


/* === Teams block matched to the approved sujet === */
.teams-reference {
  padding: 82px 0 90px;
  background: #fff;
}
.teams-reference__inner {
  width: min(calc(100% - 52px), 1450px);
}
.teams-reference__heading {
  text-align: center;
  margin-bottom: 34px;
}
.teams-reference__heading h2 {
  margin: 0;
  color: #202634;
  font-size: clamp(2rem, 3.15vw, 3.15rem);
  line-height: 1;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.teams-reference__accent {
  display: block;
  width: 68px;
  height: 3px;
  margin: 13px auto 0;
  border-radius: 999px;
  background: #88dfbe;
}
.teams-reference__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.teams-reference__card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(36,42,54,.15);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(22,31,45,.025);
}
.teams-reference__media {
  height: 190px;
  overflow: hidden;
  background: #eef1f3;
}
.teams-reference__media picture,
.teams-reference__media img {
  display: block;
  width: 100%;
  height: 100%;
}
.teams-reference__media img { object-fit: cover; }
.teams-reference__card--women .teams-reference__media img { object-position: center 52%; }
.teams-reference__card--youth .teams-reference__media img { object-position: center 58%; }
.teams-reference__card--fun .teams-reference__media img { object-position: center 64%; }
.teams-reference__icon {
  position: absolute;
  z-index: 2;
  top: 155px;
  left: 50%;
  width: 66px;
  height: 66px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 13px rgba(27,35,48,.13);
}
.teams-reference__icon svg { width: 37px; height: 37px; }
.teams-reference__card--women .teams-reference__icon { background: #8766c2; }
.teams-reference__card--youth .teams-reference__icon { background: #78d9b9; }
.teams-reference__card--fun .teams-reference__icon { background: #4f89c3; }
.teams-reference__body {
  min-height: 270px;
  padding: 48px 34px 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.teams-reference__body h3 {
  margin: 0 0 10px;
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.teams-reference__card--women h3 { color: #7651b4; }
.teams-reference__card--youth h3 { color: #68cdaa; }
.teams-reference__card--fun h3 { color: #3d80be; }
.teams-reference__body p {
  max-width: 360px;
  margin: 0 auto 20px;
  color: #303642;
  font-size: .98rem;
  line-height: 1.48;
}
.teams-reference__body a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .79rem;
  font-weight: 850;
  letter-spacing: .015em;
}
.teams-reference__card--women a { color: #7651b4; }
.teams-reference__card--youth a { color: #67cbaa; }
.teams-reference__card--fun a { color: #3d80be; }
.teams-reference__body a span { font-size: 1.15rem; transform: translateY(-1px); }
@media (max-width: 920px) {
  .teams-reference__grid { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; }
  .teams-reference__media { height: 250px; }
  .teams-reference__icon { top: 215px; }
  .teams-reference__body { min-height: 250px; }
}
@media (max-width: 560px) {
  .teams-reference { padding: 62px 0 70px; }
  .teams-reference__inner { width: min(calc(100% - 30px), 1450px); }
  .teams-reference__media { height: 205px; }
  .teams-reference__icon { top: 171px; width: 64px; height: 64px; }
  .teams-reference__body { padding: 47px 22px 25px; }
}

/* Subtle team-card hover, matching the earlier interaction style. */
.teams-reference__card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.teams-reference__media img {
  transition: transform .32s ease;
}
@media (hover: hover) and (pointer: fine) {
  .teams-reference__card:hover {
    transform: translateY(-4px);
    border-color: rgba(36,42,54,.22);
    box-shadow: 0 10px 26px rgba(22,31,45,.10);
  }
  .teams-reference__card:hover .teams-reference__media img {
    transform: scale(1.025);
  }
}

/* === Training block matched to the approved sujet === */
.training-reference {
  padding: 58px 0 38px;
  background: linear-gradient(90deg, #edf9f5 0%, #f0fbf7 50%, #edf9f5 100%);
}
.training-reference__inner,
.news-reference__inner {
  width: min(calc(100% - 52px), 1450px);
}
.training-reference__heading,
.news-reference__heading {
  text-align: center;
  margin-bottom: 28px;
}
.training-reference__heading h2,
.news-reference__heading h2 {
  margin: 0;
  color: #202634;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -.012em;
  text-transform: uppercase;
}
.training-reference__accent,
.news-reference__accent {
  display: block;
  width: 68px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: #88dfbe;
}
.training-reference__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.training-reference__card {
  min-width: 0;
  padding: 25px 28px 24px;
  border: 1px solid rgba(36,42,54,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 2px 8px rgba(22,31,45,.025);
}
.training-reference__day {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 19px;
  color: #222735;
  text-transform: uppercase;
}
.training-reference__day svg,
.training-reference__place svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: #4f89c3;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.training-reference__day strong {
  font-size: .95rem;
  line-height: 1;
  letter-spacing: .01em;
}
.training-reference__time {
  margin-bottom: 3px;
  color: #252936;
  font-size: 1.05rem;
  font-weight: 800;
}
.training-reference__card > p {
  margin: 0 0 15px;
  color: #333844;
  font-size: .9rem;
  line-height: 1.3;
}
.training-reference__place {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: #404653;
  font-size: .86rem;
}
.training-reference__place svg { width: 18px; height: 18px; }
.training-reference__card--mint .training-reference__place svg { stroke: #5ec7a5; }
.training-reference__tag {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 17px;
  border-radius: 4px;
  color: #28303d;
  font-size: .76rem;
  line-height: 1;
  background: #ddd3f1;
}
.training-reference__card--mint .training-reference__tag { background: #bcebdc; }
.training-reference__card--blue .training-reference__tag { background: #bed6ee; }
.training-reference__action,
.news-reference__action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.training-reference__action a,
.news-reference__action a {
  min-width: 330px;
  padding: 10px 24px 9px;
  border: 1px solid #69717e;
  border-radius: 5px;
  color: #252936;
  background: transparent;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .81rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .015em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
@media (hover:hover) and (pointer:fine) {
  .training-reference__action a:hover,
  .news-reference__action a:hover {
    transform: translateY(-2px);
    background: #fff;
    border-color: #454c59;
  }
}

/* === News block matched to the approved sujet === */
.news-reference {
  padding: 46px 0 54px;
  background: #fff;
}
.news-reference__heading { margin-bottom: 27px; }
.news-reference__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.news-reference__card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(36,42,54,.16);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(22,31,45,.025);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.news-reference__media {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #e8edf0;
}
.news-reference__media picture,
.news-reference__media img {
  display: block;
  width: 100%;
  height: 100%;
}
.news-reference__media img {
  object-fit: cover;
  transition: transform .32s ease;
}
.news-reference__card:nth-child(1) .news-reference__media img { object-position: center 58%; }
.news-reference__card:nth-child(2) .news-reference__media img { object-position: center 54%; }
.news-reference__card:nth-child(3) .news-reference__media img { object-position: center 50%; }
.news-reference__date {
  position: absolute;
  top: 15px;
  left: 16px;
  width: 58px;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px;
  border-radius: 6px;
  color: #1f2531;
  background: rgba(255,255,255,.96);
  box-shadow: 0 3px 11px rgba(23,30,41,.15);
  text-transform: uppercase;
  line-height: 1;
}
.news-reference__date strong {
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -.02em;
}
.news-reference__date span {
  margin-top: 6px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.news-reference__body {
  min-height: 194px;
  padding: 19px 24px 20px;
  display: flex;
  flex-direction: column;
}
.news-reference__body h3 {
  margin: 0 0 9px;
  color: #252a36;
  font-size: 1.02rem;
  line-height: 1.2;
}
.news-reference__body p {
  margin: 0 0 15px;
  color: #373d49;
  font-size: .88rem;
  line-height: 1.5;
}
.news-reference__body a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #7651b4;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .77rem;
  font-weight: 850;
}
.news-reference__card--blue .news-reference__body a { color: #3f7fba; }
.news-reference__body a span { font-size: 1.1rem; transform: translateY(-1px); }
@media (hover:hover) and (pointer:fine) {
  .news-reference__card:hover {
    transform: translateY(-4px);
    border-color: rgba(36,42,54,.23);
    box-shadow: 0 10px 26px rgba(22,31,45,.10);
  }
  .news-reference__card:hover .news-reference__media img { transform: scale(1.025); }
}

@media (max-width: 1050px) {
  .training-reference__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .news-reference__grid { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; }
  .news-reference__media { height: 230px; }
}
@media (max-width: 600px) {
  .training-reference { padding: 48px 0 38px; }
  .training-reference__inner,
  .news-reference__inner { width: min(calc(100% - 30px), 1450px); }
  .training-reference__grid { grid-template-columns: 1fr; gap: 16px; }
  .training-reference__action a,
  .news-reference__action a { min-width: min(100%, 330px); }
  .news-reference { padding: 46px 0 52px; }
  .news-reference__media { height: 205px; }
}

/* === Membership + Contact matched to the approved sujet === */
.join-reference {
  position: relative;
  overflow: hidden;
  padding: 27px 0 28px;
  color: #fff;
  background: linear-gradient(102deg, #7762b2 0%, #8a79c7 54%, #a9b0e7 100%);
}
.join-reference__inner {
  position: relative;
  isolation: isolate;
  width: min(calc(100% - 72px), 1450px);
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}
.join-reference__icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.82);
  border-radius: 50%;
  color: #fff;
}
.join-reference__icon svg { width: 52px; height: 52px; }
.join-reference__copy h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.join-reference__copy p {
  margin: 0;
  color: rgba(255,255,255,.94);
  font-size: .9rem;
  line-height: 1.42;
}
.join-reference__actions {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}
.join-reference__button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: .72rem;
  font-weight: 850;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.join-reference__button--mint {
  border-color: #9fe6c8;
  color: #26313a;
  background: #a8ebcf;
}
.join-reference__button--ghost { background: rgba(255,255,255,.04); }
.join-reference__watermark {
  position: absolute;
  z-index: -1;
  right: -10px;
  top: 50%;
  width: 150px;
  height: auto;
  transform: translateY(-50%);
  opacity: .16;
  filter: brightness(0) invert(1);
}
@media (hover:hover) and (pointer:fine) {
  .join-reference__button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(39,30,70,.14); }
  .join-reference__button--ghost:hover { background: rgba(255,255,255,.12); }
}

.contact-reference {
  padding: 34px 0 31px;
  color: rgba(255,255,255,.9);
  background: #28313a;
}
.contact-reference__grid {
  width: min(calc(100% - 72px), 1450px);
  display: grid;
  grid-template-columns: minmax(190px,1.4fr) repeat(4,minmax(130px,.9fr));
  gap: clamp(26px, 4vw, 72px);
  align-items: start;
}
.contact-reference__brand img {
  width: min(230px, 100%);
  height: auto;
}
.contact-reference__column {
  display: grid;
  align-content: start;
  gap: 4px;
}
.contact-reference__column h3 {
  margin: 0 0 5px;
  color: #fff;
  font-family: var(--font-body);
  font-size: .78rem;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-reference__column a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: .82rem;
  line-height: 1.45;
}
.contact-reference__column a:hover { color: #a1e8c3; }
.contact-reference__mail,
.contact-reference__web {
  display: grid !important;
  grid-template-columns: 18px minmax(0,1fr);
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.contact-reference__mail svg,
.contact-reference__web svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #a1e8c3;
}
.contact-reference__mail span { overflow-wrap: anywhere; }
.site-footer--reference {
  padding: 0;
  color: rgba(255,255,255,.72);
  background: #28313a;
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer-reference__bottom {
  min-height: 54px;
  width: min(calc(100% - 72px), 1450px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .72rem;
}
.footer-reference__legal { display: flex; gap: 30px; }

/* News cards 1 + 3 use the larger existing source images. */
.news-reference__card:nth-child(1) .news-reference__media img { object-position: center 58%; }
.news-reference__card:nth-child(3) .news-reference__media img { object-position: center 48%; }

@media (max-width: 1080px) {
  .join-reference__inner { grid-template-columns: 86px 1fr; }
  .join-reference__actions { grid-column: 2; }
  .contact-reference__grid { grid-template-columns: 1.2fr repeat(2,1fr); }
  .contact-reference__column--contact { grid-column: auto; }
}
@media (max-width: 720px) {
  .join-reference { padding: 34px 0; }
  .join-reference__inner,
  .contact-reference__grid,
  .footer-reference__bottom { width: min(calc(100% - 30px), 1450px); }
  .join-reference__inner { grid-template-columns: 72px 1fr; gap: 18px; }
  .join-reference__icon { width: 68px; height: 68px; }
  .join-reference__icon svg { width: 42px; height: 42px; }
  .join-reference__copy h2 { font-size: 1.5rem; }
  .join-reference__copy p br { display: none; }
  .join-reference__actions { grid-column: 1 / -1; flex-wrap: wrap; }
  .join-reference__button { flex: 1 1 210px; }
  .join-reference__watermark { right: -32px; width: 120px; }
  .contact-reference__grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .contact-reference__brand { grid-column: 1 / -1; }
  .contact-reference__brand img { width: 220px; }
}
@media (max-width: 480px) {
  .contact-reference__grid { grid-template-columns: 1fr; }
  .footer-reference__bottom { padding: 13px 0; flex-direction: column; align-items: flex-start; }
}

/* Contact/footer refinements */
.contact-reference__phone,
.contact-reference__address {
  display: grid !important;
  grid-template-columns: 18px minmax(0,1fr);
  align-items: start;
  gap: 8px;
  margin-top: 2px;
}
.contact-reference__phone svg,
.contact-reference__address svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #a1e8c3;
}
.contact-reference__social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 10px;
}
.contact-reference__social a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: rgba(255,255,255,.94);
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}
.contact-reference__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}
.contact-reference__social svg rect,
.contact-reference__social svg circle:not(.fill-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.contact-reference__social .fill-dot { fill: currentColor; stroke: none; }
@media (hover:hover) and (pointer:fine) {
  .contact-reference__social a:hover {
    transform: translateY(-2px);
    border-color: #a1e8c3;
    color: #a1e8c3;
    background: rgba(161,232,195,.08);
  }
}
.footer-reference__bottom {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  align-items: center;
}
.footer-reference__credit {
  justify-self: center;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  white-space: nowrap;
}
.footer-reference__credit:hover { color: #a1e8c3; }
.footer-reference__legal { justify-self: end; }

/* Slightly transparent mobile burger menu */
@media (max-width: 820px) {
  .menu-toggle {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(15,21,32,.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .main-nav {
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    border-bottom: 1px solid rgba(15,21,32,.08);
  }
}
@media (max-width: 720px) {
  .footer-reference__bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 8px;
    padding: 13px 0;
  }
  .footer-reference__credit,
  .footer-reference__legal { justify-self: start; }
}


/* Contact order + social placement */
.contact-reference__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-reference__brand .contact-reference__social {
  margin-top: 16px;
}
.contact-reference__spacer {
  height: 12px;
}
