:root {
  --orange: #e84f1b;
  --salmon: #f8a690;
  --black: #0f0f0f;
  --dark: #1a1a1a;
}

:root {
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #0f0f0f;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.65;
  color: #ffffff;
}


h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero h1,
.hero-sheet h1 {
  font-weight: 700;
  letter-spacing: -0.04em;
}









.hero-sheet {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(120deg, #0f0f0f 0%, #2a2a2a 60%, #3a3a3a 100%);
  color: white;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
}

.hero-bg-word {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%) rotate(-8deg);
  font-size: clamp(6rem, 18vw, 20rem);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  letter-spacing: .1em;
  pointer-events: none;
}

.hero-left {
  padding: 120px 80px;
  z-index: 2;
}

.hero-label {
  background: var(--orange);
  color: #111;
  padding: 8px 14px;
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-title {
  opacity: 0;
  transform: translateY(40px);
  animation: titleUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes titleUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left h1 {
  font-size: clamp(3.4rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 24px;
}

.hero-left h1 span {
  color: var(--orange);
}

.hero-left h1 em {
  font-style: normal;
  opacity: .6;
  font-weight: 400;
}

.hero-sub {
  font-size: 1.2rem;
  max-width: 420px;
  margin-bottom: 40px;
  opacity: .9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.btn-primary {
  background: var(--orange);
  color: #111;
  padding: 18px 42px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 20px 60px rgba(232,79,27,.4);
  transition: all .25s ease;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
}

.hero-scroll {
  opacity: .6;
}



.hero-stats {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 3;
}

.stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  padding: 22px 26px;
  border-radius: 18px;
  min-width: 150px;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
  text-align: center;
  transition: transform .8s ease;
}

.stat strong {
  font-size: 2.2rem;
  display: block;
}

.tilt-1 { transform: rotate(-4deg); }
.tilt-2 { transform: rotate(3deg); }
.tilt-3 { transform: rotate(-2deg); }





























.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 80px;
  z-index: 3;
  margin-bottom: 80px;
}

.mentor-card {
  width: 380px;
  padding: 32px;
  border-radius: 28px;

  background: linear-gradient(
    135deg,
    rgba(232,79,27,0.35),
    rgba(232,79,27,0.12)
  );

  backdrop-filter: blur(22px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.15);

  animation: mentorFloat 7s ease-in-out infinite;
}

@keyframes mentorFloat {
  0%   { transform: translateY(0) rotate(-1deg); }
  50%  { transform: translateY(-18px) rotate(1deg); }
  100% { transform: translateY(0) rotate(-1deg); }
}

.mentor-header {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  opacity: .6;
}

.pill.active {
  background: #e84f1b;
  color: #111;
  border: none;
  opacity: 1;
}

.mentor-quote {
  font-size: 1.15rem;
  line-height: 1.5;
  padding: 22px;
  border-radius: 18px;
  background: rgba(0,0,0,0.45);
  margin-bottom: 26px;
}

.mentor-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topic {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 999px;
  font-size: .85rem;

  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
}

.topic::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #f8a690;
  border-radius: 50%;
}


/* ============================================================
   HERO V2 – FOTO + STICKER-STIJL
   ============================================================ */

.hero-sheet {
  background:
    radial-gradient(circle at 80% 12%, rgba(232,79,27,.18), transparent 42%),
    radial-gradient(circle at 8% 90%, rgba(232,79,27,.10), transparent 38%),
    linear-gradient(120deg, #0f0f0f 0%, #262220 60%, #38322b 100%);
}

.hl-marker {
  display: inline-block;
  background: var(--orange);
  color: #111 !important;
  padding: 2px 16px 6px;
  border-radius: 12px;
  transform: rotate(-1.6deg);
  box-shadow: 0 14px 40px rgba(232,79,27,.45);
}

.hero-photo-stack {
  position: relative;
  z-index: 2;
}

.spray-ring {
  position: absolute;
  inset: -70px;
  background: radial-gradient(circle, rgba(232,79,27,.45), transparent 62%);
  filter: blur(36px);
  z-index: 0;
  pointer-events: none;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: min(380px, 32vw);
  margin: 0;
  border: 10px solid #fff;
  border-radius: 26px;
  overflow: hidden;
  transform: rotate(3deg);
  box-shadow:
    0 40px 100px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.08);
  animation: photoFloat 9s ease-in-out infinite;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes photoFloat {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}

.tape {
  position: absolute;
  width: 110px;
  height: 32px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  backdrop-filter: blur(2px);
}

.tape-1 { top: -14px; left: -34px; transform: rotate(-38deg); }
.tape-2 { bottom: -12px; right: -30px; transform: rotate(-35deg); }

.sticker {
  position: absolute;
  font-weight: 900;
  z-index: 3;
  pointer-events: none;
  text-shadow: 0 8px 30px rgba(0,0,0,.5);
}

.sticker-star {
  top: -34px;
  right: -18px;
  font-size: 3rem;
  color: var(--orange);
  transform: rotate(14deg);
  animation: stickerPulse 3.5s ease-in-out infinite;
}

.sticker-spark {
  bottom: 90px;
  right: -44px;
  font-size: 2.2rem;
  color: #fff;
  transform: rotate(-10deg);
  animation: stickerPulse 3.5s ease-in-out infinite;
  animation-delay: -1.6s;
}

@keyframes stickerPulse {
  0%, 100% { transform: scale(1) rotate(14deg); opacity: 1; }
  50%      { transform: scale(1.18) rotate(8deg); opacity: .85; }
}

.hero-photo-stack .mentor-card {
  position: absolute;
  bottom: -48px;
  left: -110px;
  width: 320px;
  padding: 26px;
  z-index: 4;
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo,
  .sticker-star,
  .sticker-spark,
  .mentor-card,
  .stat { animation: none; }
}

@media (max-width: 1100px) {
  .hero-photo-stack .mentor-card { left: -60px; }
}

@media (max-width: 980px) {
  .hero-sheet {
    grid-template-columns: 1fr;
    padding-bottom: 200px;
  }

  .hero-left { padding: 90px 28px 30px; }

  .hero-right {
    padding: 0 28px 40px;
    margin-bottom: 40px;
    justify-content: center;
  }

  .hero-photo { width: min(420px, 78vw); }

  .hero-photo-stack .mentor-card {
    position: static;
    width: min(420px, 100%);
    margin: -30px auto 0;
    transform: rotate(-1deg);
  }

  .hero-stats {
    position: static;
    transform: none;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px 60px;
  }
}


.hero-stats {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  display: flex;
  gap: 14px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: flex-start;
  z-index: 2;
}

.stat {
  min-width: 0;
  padding: 14px 22px;
  text-align: left;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease;
}

.stat strong {
  font-size: 1.9rem;
  color: var(--orange);
  line-height: 1.1;
}

.stat span {
  display: block;
  font-size: .85rem;
  opacity: .85;
  margin-top: 2px;
  white-space: nowrap;
}

.tilt-1 { transform: rotate(-1.5deg); }
.tilt-2 { transform: rotate(1.5deg); }
.tilt-3 { transform: rotate(-1deg); }

.stat:hover {
  transform: translateY(-4px) rotate(0deg);
  border-color: rgba(232,79,27,.6);
}

.hero-bg-word { color: rgba(255,255,255,0.045); }

.hero-sheet::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-left, .hero-right { position: relative; z-index: 2; }

.hero-label, .hero-sub, .hero-actions, .hero-stats {
  opacity: 0;
  transform: translateY(24px);
  animation: titleUp .7s ease-out forwards;
}

.hero-label   { animation-delay: .15s; }
.hero-sub     { animation-delay: .45s; }
.hero-actions { animation-delay: .6s; }
.hero-stats   { animation-delay: .75s; }

@media (prefers-reduced-motion: reduce) {
  .hero-label, .hero-title, .hero-sub, .hero-actions, .hero-stats {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-sheet {
    min-height: auto;
    padding-bottom: 90px;
  }

  .hero-left {
    padding: 70px 24px 10px;
  }

  .hero-left h1 {
    font-size: clamp(2.9rem, 12vw, 4rem);
  }

  .hl-marker { padding: 2px 12px 5px; }

  .hero-sub {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero-actions { gap: 18px; }

  .btn-primary { padding: 16px 34px; }

  .hero-stats {
    margin-top: 36px;
    gap: 10px;
  }

  .stat {
    flex: 1 1 0;
    padding: 12px 12px;
    text-align: center;
  }

  .stat strong { font-size: 1.6rem; }
  .stat span { font-size: .72rem; white-space: normal; }

  .hero-right {
    padding: 26px 24px 0;
    margin-bottom: 0;
  }

  .hero-photo {
    width: min(400px, 84vw);
    border-width: 8px;
  }

  .sticker-star  { top: -22px; right: 6px; font-size: 2.4rem; }
  .sticker-spark { bottom: auto; top: 40%; right: -8px; font-size: 1.8rem; }

  .spray-ring { inset: -40px; filter: blur(28px); }

  .hero-photo-stack .mentor-card {
    width: min(400px, 92vw);
    margin: -34px auto 0;
    padding: 22px;
  }

  .hero-bg-word {
    font-size: clamp(5rem, 26vw, 9rem);
    left: -16%;
  }
}



.logo img {
  height: 58px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(232,79,27,.25);
}

.header-accent {
  background: repeating-linear-gradient(
    45deg,
    #e84f1b 0 20px,
    #0b0b0b 20px 40px
  );
}

.hero-sheet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    #e84f1b 0 26px,
    rgba(248,166,144,.9) 26px 52px
  );
  z-index: 3;
}

.sticker-spark { color: var(--salmon); }

.hero-left h1 em {
  color: var(--salmon);
  opacity: .9;
}

.stat strong { color: #ff6a35; }
