/* ==============================
   The Awesome Marketers — Styles
   Colors: Orange #FFB452, Purple #A615FF, Black, White
   ============================== */

:root {
  --orange: #FFB452;
  --purple: #A615FF;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  --gradient: linear-gradient(135deg, var(--orange), var(--purple));
  --gradient-hover: linear-gradient(135deg, #FFC06A, #B83DFF);
  --gradient-subtle: linear-gradient(135deg, rgba(255, 180, 82, 0.1), rgba(166, 21, 255, 0.1));
  --gradient-bg: linear-gradient(135deg, rgba(255, 180, 82, 0.05), rgba(166, 21, 255, 0.05));

  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 40px rgba(166, 21, 255, 0.15);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(166, 21, 255, 0.3);
}
.btn--primary:hover {
  background: var(--gradient-hover);
  box-shadow: 0 6px 28px rgba(166, 21, 255, 0.4);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--gray-900);
  border: 2px solid var(--gray-200);
}
.btn--outline:hover {
  border-color: var(--purple);
  color: var(--purple);
}
.section--dark .btn--outline {
  color: var(--white);
  border-color: var(--gray-600);
}
.section--dark .btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn__icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline-light:hover {
  border-color: var(--white);
  color: var(--white);
}
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; }
.btn--nav {
  padding: 10px 24px;
  font-size: 0.85rem;
  background: var(--gradient);
  color: var(--white) !important;
  border-radius: 100px;
  -webkit-text-fill-color: var(--white);
}
.btn--nav:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white);
}
/* Firework sparkle particles */
.sparkle-particle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: sparkle-burst 0.5s ease-out forwards;
}
@keyframes sparkle-burst {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0); }
}

/* Spinner */
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(0px);
}
.nav__banner {
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nav__banner-text { font-weight: 500; }
.nav__banner-emoji { font-size: 1.05rem; }
.nav__banner-btn {
  display: inline-block;
  background: var(--white);
  color: var(--purple);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: banner-pulse 2s ease-in-out infinite;
}
.nav__banner-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 12px rgba(166, 21, 255, 0.3);
}
.nav--scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}
.nav__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}
.footer__brand .nav__logo-img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 4px;
}
.nav__logo-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--purple); }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ===== NAV DROPDOWN ===== */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-toggle {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  padding: 0;
}
.nav__dropdown-toggle:hover,
.nav__dropdown-toggle.active {
  color: var(--purple);
}
.nav__dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.2s;
}
.nav__dropdown:hover .nav__dropdown-arrow {
  transform: rotate(180deg);
}
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  right: -40px;
  width: 320px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  z-index: 100;
}
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav__dropdown:hover .nav__dropdown-menu {
  display: block;
}
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
}
.nav__dropdown-item:hover {
  background: var(--gradient-bg);
}
.nav__dropdown-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}
.nav__dropdown-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-900);
}
.nav__dropdown-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 24px 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(255, 180, 82, 0.15), transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(166, 21, 255, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(166, 21, 255, 0.05), transparent);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}
.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-subtle);
  border: 1px solid rgba(166, 21, 255, 0.15);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__stats {
  display: flex;
  gap: 48px;
  justify-content: center;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__stats--single {
  gap: 0;
  margin-top: 20px;
}
.hero__stats--single .hero__stat-number {
  font-size: 4.5rem;
}
.hero__stat-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}
.hero__stat-label--rotate {
  transition: opacity 0.3s ease;
  min-height: 1.4em;
  font-size: 1.15rem;
  max-width: 400px;
  text-align: center;
}
.hero__stat-label--rotate.fade-out {
  opacity: 0;
}

/* ===== SOCIAL PROOF STRIP ===== */
.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.social-proof__avatars {
  display: flex;
  align-items: center;
}
.social-proof__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--white);
  object-fit: cover;
  margin-left: -12px;
  transition: transform 0.2s ease;
}
.social-proof__avatar:first-child {
  margin-left: 0;
}
.social-proof__avatar:hover {
  transform: scale(1.15) translateY(-2px);
  z-index: 2;
}
.social-proof__count {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 100px;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: -8px;
  border: 3px solid var(--white);
  white-space: nowrap;
}
.social-proof__label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-400);
  font-weight: 400;
  line-height: 1.6;
  transition: opacity 0.5s ease;
  min-height: 1.4em;
  text-align: center;
}
.social-proof__label.fade-out {
  opacity: 0;
}
@media (max-width: 768px) {
  .social-proof__avatar {
    width: 34px;
    height: 34px;
    margin-left: -10px;
  }
  .social-proof__avatar:first-child { margin-left: 0; }
  .social-proof__avatar:nth-child(n+10) { display: none; }
  .social-proof__count {
    height: 34px;
    padding: 0 12px;
    font-size: 0.7rem;
    margin-left: -6px;
    display: flex;
  }
  .social-proof__label {
    font-size: 0.85rem;
    max-width: 280px;
  }
}

/* ===== FLOATING SLACK BUBBLES ===== */
.slack-bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.slack-bubble {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--gray-700);
  font-family: var(--font-body);
  line-height: 1.4;
  max-width: 260px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  opacity: 0;
  animation: bubbleFloat 24s ease-in-out infinite;
  white-space: normal;
}
.slack-bubble__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Positions & timing — staggered so 3-4 visible at once */
.slack-bubble--1  { top: 12%; left: 2%;  animation-delay: 0s; }
.slack-bubble--2  { top: 28%; right: 1%; animation-delay: 1.5s; }
.slack-bubble--3  { top: 52%; left: 1%;  animation-delay: 3s; }
.slack-bubble--4  { top: 6%;  right: 3%; animation-delay: 4.5s; }
.slack-bubble--5  { top: 65%; right: 2%; animation-delay: 6s; }
.slack-bubble--6  { top: 40%; left: 3%;  animation-delay: 7.5s; }
.slack-bubble--7  { top: 78%; left: 1%;  animation-delay: 9s; }
.slack-bubble--8  { top: 20%; left: 4%;  animation-delay: 10.5s; max-width: 200px; }
.slack-bubble--9  { top: 55%; right: 1%; animation-delay: 12s; }
.slack-bubble--10 { top: 34%; right: 3%; animation-delay: 13.5s; }
.slack-bubble--11 { top: 82%; right: 4%; animation-delay: 15s; max-width: 220px; }
.slack-bubble--12 { top: 45%; right: 2%; animation-delay: 16.5s; }
.slack-bubble--13 { top: 15%; right: 5%; animation-delay: 18s; max-width: 220px; }
.slack-bubble--14 { top: 70%; left: 2%;  animation-delay: 19.5s; max-width: 240px; }
.slack-bubble--15 { top: 25%; left: 3%;  animation-delay: 21s; max-width: 220px; }
.slack-bubble--16 { top: 60%; right: 3%; animation-delay: 22.5s; }

@keyframes bubbleFloat {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  3% {
    opacity: 0.7;
    transform: translateY(0) scale(1);
  }
  16% {
    opacity: 0.7;
    transform: translateY(-6px) scale(1);
  }
  20% {
    opacity: 0;
    transform: translateY(-14px) scale(0.97);
  }
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(0.97);
  }
}

/* Hide bubbles on small screens — not enough room */
@media (max-width: 1100px) {
  .slack-bubbles { display: none; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}
.page-hero + .section {
  padding-top: 20px;
}
.section--dark {
  background: var(--gray-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  top: -80px;
  left: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 82, 0.12), transparent 70%);
  animation: cta-orb-1 8s ease-in-out infinite;
  filter: blur(60px);
  pointer-events: none;
}
.section--dark::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: -60px;
  right: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 21, 255, 0.12), transparent 70%);
  animation: cta-orb-2 10s ease-in-out infinite;
  filter: blur(60px);
  pointer-events: none;
}
.section--dark > * {
  position: relative;
  z-index: 1;
}
.section--cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 82, 0.2), transparent 70%);
  animation: cta-orb-1 8s ease-in-out infinite;
  filter: blur(60px);
}
.section--cta::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  bottom: -80px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 21, 255, 0.2), transparent 70%);
  animation: cta-orb-2 10s ease-in-out infinite;
  filter: blur(60px);
}
@keyframes cta-orb-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(120px, 60px) scale(1.1); }
  66% { transform: translate(40px, -40px) scale(0.95); }
}
@keyframes cta-orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-100px, -50px) scale(1.15); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}
.section__header {
  text-align: center;
  margin-bottom: 60px;
}
.section__tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.section--dark .section__tag {
  background: rgba(166, 21, 255, 0.15);
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}
.section__desc {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.section--dark .section__desc {
  color: var(--gray-400);
}

/* ===== ABOUT ===== */
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about__card {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}
.about__card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.about__icon { font-size: 2rem; margin-bottom: 16px; }
.about__card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.about__card p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== EVENTS ===== */
.events__photo-section {
  padding-top: 0;
}
.events__hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 500px;
}
.events__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.events__cta-centered {
  text-align: center;
  margin-top: 8px;
}
.events__posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.events__post {
  min-height: 400px;
}
.events__post iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-md);
}

/* ===== VIDEOS ===== */
.videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.videos__loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--gray-400);
}
.videos__loading .spinner { margin: 0 auto 16px; }
.video__card {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}
.video__card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.video__embed {
  position: relative;
  padding-top: 56.25%;
  background: var(--black);
}
.video__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video__info {
  padding: 20px;
}
.video__title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video__date {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 8px;
}
.videos__cta { text-align: center; }

/* ===== MENTORSHIP ===== */
.mentorship__intro {
  margin-bottom: 48px;
}
.mentorship__info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.mentorship__info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.mentorship__info-icon { font-size: 2rem; margin-bottom: 12px; }
.mentorship__info-card h3 { margin-bottom: 16px; font-size: 1.1rem; }
.mentorship__info-card ol,
.mentorship__info-card ul {
  padding-left: 20px;
  list-style: decimal;
}
.mentorship__info-card ul { list-style: disc; }
.mentorship__info-card li {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Form wrapper */
.mentorship__form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.mentorship__form-header {
  text-align: center;
  margin-bottom: 36px;
}
.mentorship__form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.mentorship__form-header p {
  color: var(--gray-500);
}

/* Form elements */
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__group {
  margin-bottom: 24px;
}
.form__group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--gray-700);
}
.form__hint {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin: -4px 0 12px;
  line-height: 1.5;
}
.form__group input[type="text"],
.form__group input[type="email"],
.form__group input[type="url"],
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--gray-900);
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(166, 21, 255, 0.1);
}
.form__group textarea { resize: vertical; }

/* Radio buttons */
.form__radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form__radio {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.form__radio:hover { border-color: var(--gray-300); }
.form__radio input { position: absolute; opacity: 0; }
.form__radio input:checked + .form__radio-custom + .form__radio-label {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.form__radio input:checked ~ .form__radio-desc { color: var(--gray-700); }
.form__radio:has(input:checked) {
  border-color: var(--purple);
  background: var(--gradient-subtle);
}
.form__radio-custom { display: none; }
.form__radio-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.form__radio-desc {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* Checkboxes */
.form__checkbox-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  min-width: 160px;
}
.form__checkbox:hover { border-color: var(--gray-300); }
.form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--purple);
  cursor: pointer;
}
.form__checkbox-custom { display: none; }
.form__checkbox-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.form__checkbox:has(input:checked) {
  border-color: var(--purple);
  background: var(--gradient-subtle);
}

/* Tags */
.form__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form__tag {
  padding: 8px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--gray-600);
}
.form__tag:hover {
  border-color: var(--gray-300);
  color: var(--gray-900);
}
.form__tag.active {
  border-color: var(--purple);
  background: var(--gradient-subtle);
  color: var(--purple);
}

/* Checkboxes */
.form__checkbox-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.form__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.form__checkbox input { display: none; }
.form__checkbox-custom {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.form__checkbox input:checked + .form__checkbox-custom {
  background: var(--gradient);
  border-color: transparent;
}
.form__checkbox input:checked + .form__checkbox-custom::after {
  content: '✓';
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}
.form__checkbox--commitment {
  margin-top: 8px;
  padding: 16px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-md);
  line-height: 1.5;
}

/* Success state */
.mentorship__success {
  max-width: 600px;
  margin: 0 auto;
}
.mentorship__success-inner {
  text-align: center;
  padding: 60px 32px;
  background: var(--gradient-subtle);
  border: 2px solid rgba(166, 21, 255, 0.2);
  border-radius: var(--radius-lg);
}
.mentorship__success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.mentorship__success-inner h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.mentorship__success-inner p {
  color: var(--gray-500);
  margin-bottom: 24px;
}

/* ===== MANIFESTO ===== */
.manifesto__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.manifesto__item {
  padding: 32px;
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}
.manifesto__item:hover {
  border-color: var(--orange);
  background: rgba(255, 180, 82, 0.03);
}
.manifesto__number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 12px;
}
.manifesto__item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.manifesto__item p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== CTA ===== */
.cta__content {
  position: relative;
  z-index: 1;
}
.cta__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta__text {
  color: var(--gray-400);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 36px;
}
.cta__actions { margin-bottom: 32px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta__links {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.cta__links a {
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.cta__links a:hover { color: var(--orange); }

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--gray-100);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--gray-500);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--purple); }
.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }
  .nav__links.active { display: flex; }
  .nav__toggle { display: block; }
  .nav__dropdown-menu {
    position: static;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 4px 0 0;
    display: none;
  }
  .nav__dropdown-menu::before { display: none; }
  .nav__dropdown.open .nav__dropdown-menu { display: block; }
  .nav__dropdown-icon { width: 28px; height: 28px; font-size: 1.1rem; }

  .hero__stats { gap: 24px; }
  .hero__stat-number { font-size: 1.8rem; }

  .about__grid,
  .manifesto__grid {
    grid-template-columns: 1fr;
  }

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

  .mentorship__info-cards {
    grid-template-columns: 1fr;
  }
  .mentorship__form-wrapper {
    padding: 24px;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
  .form__radio-group {
    flex-direction: column;
  }
  .form__radio {
    flex-direction: row;
    text-align: left;
    gap: 12px;
    padding: 16px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about__grid,
  .manifesto__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .videos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.2s; }
.animate-in:nth-child(4) { animation-delay: 0.3s; }
.animate-in:nth-child(5) { animation-delay: 0.4s; }
.animate-in:nth-child(6) { animation-delay: 0.5s; }

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(255, 180, 82, 0.08), transparent),
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(166, 21, 255, 0.06), transparent);
}
.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.page-hero__desc {
  color: var(--gray-500);
  font-size: 1.1rem;
  margin-top: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ACTIVE NAV LINK ===== */
.nav__links a.active {
  color: var(--purple);
}

/* ===== LINK SUBTLE ===== */
.link--subtle {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: rgba(255, 180, 82, 0.3);
  transition: text-decoration-color 0.2s;
}
.link--subtle:hover {
  text-decoration-color: var(--orange);
}

/* ===== ABOUT GRID VARIANTS ===== */
.about__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== MANIFESTO FULL PAGE ===== */
.manifesto__full {
  max-width: 700px;
  margin: 0 auto;
}
.manifesto__block {
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
}
.manifesto__block:last-child {
  border-bottom: none;
}
.manifesto__block .manifesto__number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
}
.manifesto__block h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.manifesto__block p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== TEAM GRID ===== */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.team__member {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
.team__member:hover {
  border-color: var(--purple);
  background: rgba(166, 21, 255, 0.05);
}
.team__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}
.team__role {
  font-size: 0.8rem;
  color: var(--orange);
  margin-top: 4px;
}

/* ===== RESOURCES ===== */
.section__header--left {
  text-align: left;
}
.section__header--left .section__desc {
  margin-left: 0;
}
.resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.resources__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.resource__card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  background: var(--white);
}
.section--dark .resource__card {
  background: var(--gray-800);
  border-color: var(--gray-700);
}
.resource__card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.resource__card--featured {
  background: var(--gradient-subtle);
  border-color: rgba(166, 21, 255, 0.15);
}
.resource__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.resource__card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.resource__card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}
.section--dark .resource__card p {
  color: var(--gray-400);
}
.resource__link {
  display: inline-block;
  margin-top: 16px;
  color: var(--purple);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== PARTNERS ===== */
.partner__featured {
  background: var(--gradient-subtle);
  border: 1px solid rgba(166, 21, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 24px;
}
.partner__featured--alt {
  background: rgba(255, 180, 82, 0.06);
  border-color: rgba(255, 180, 82, 0.2);
}
.partner__featured-content {
  max-width: 640px;
}
.partner__featured h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.partner__featured p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.partner__featured .btn {
  margin-top: 8px;
}
.partners__section-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-top: 48px;
  margin-bottom: 20px;
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.partner__card {
  padding: 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
.partner__card:hover {
  border-color: var(--orange);
  background: rgba(255, 180, 82, 0.03);
}
.partner__card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.partner__card p {
  font-size: 0.8rem;
  color: var(--gray-400);
}
@media (max-width: 768px) {
  .partner__featured { padding: 28px; }
}

/* ===== CALCULATOR ===== */
.calc__wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.calc__input-section {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 32px;
}
.calc__results {
  margin-top: 32px;
}
.calc__rate-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.calc__rate-card {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  color: var(--white);
}
.calc__rate-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.calc__rate-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
}
.calc__breakdown {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.calc__breakdown h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--gray-600);
}
.calc__breakdown-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc__breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.calc__breakdown-item:last-child { border-bottom: none; }
.calc__breakdown-item--highlight {
  background: var(--gradient-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  border-bottom: none;
  margin: 4px 0;
}
.calc__breakdown-item--highlight .calc__breakdown-label {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}
.calc__breakdown-item--highlight .calc__breakdown-value {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.calc__breakdown-label {
  font-size: 0.9rem;
  color: var(--gray-500);
}
.calc__breakdown-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}
.calc__disclaimer {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
  font-style: italic;
}
.calc__notes {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 24px;
}
.calc__notes h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--gray-700);
}
.calc__notes p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== ABOUT STORY (editorial layout) ===== */
.about__story {
  max-width: 960px;
  margin: 0 auto;
}
.about__headline {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  color: var(--white);
}
.about__prose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.about__col p {
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about__col p:last-child { margin-bottom: 0; }
.about__col a.link--subtle {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 768px) {
  .about__headline { font-size: 1.6rem; }
  .about__prose { grid-template-columns: 1fr; gap: 0; }
}

/* ===== BENTO GRID ===== */
.bento__headline {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  color: var(--white);
  text-align: center;
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.bento__card {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.bento__card:hover {
  transform: translateY(-2px);
  border-color: var(--gray-600);
}
.bento__card--wide {
  grid-column: span 2;
}
.bento__card--link {
  cursor: pointer;
}
.bento__card--link:hover {
  border-color: var(--orange);
}
.bento__card--link .bento__title::after {
  content: ' →';
  opacity: 0;
  transition: opacity 0.2s ease;
}
.bento__card--link:hover .bento__title::after {
  opacity: 1;
}
.bento__emoji {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}
.bento__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.bento__desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .bento__headline { font-size: 1.6rem; }
  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: span 1; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}

/* ===== TIMELINE ===== */
.timeline {
  margin-top: 56px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.timeline::-webkit-scrollbar { display: none; }
.timeline__track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  min-width: max-content;
  padding: 0 20px;
}
.timeline__track::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--gray-700);
}
.timeline__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 130px;
  flex: 1;
  position: relative;
  text-align: center;
}
.timeline__year {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}
.timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-600);
  border: 2px solid var(--gray-800);
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.timeline__item--you .timeline__dot {
  background: var(--gradient);
  width: 16px;
  height: 16px;
  box-shadow: 0 0 12px rgba(255, 180, 82, 0.4);
}
.timeline__item--you .timeline__year {
  font-size: 1.1rem;
}
.timeline__text {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.5;
  max-width: 150px;
}
.timeline__item--you .timeline__text {
  color: var(--white);
  font-weight: 600;
}
@media (max-width: 768px) {
  .timeline { overflow-x: visible; }
  .timeline__track {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-width: unset;
    padding: 0 0 0 24px;
  }
  .timeline__track::before {
    top: 0;
    bottom: 0;
    left: 29px;
    right: unset;
    width: 2px;
    height: auto;
  }
  .timeline__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    min-width: unset;
    text-align: left;
    padding-bottom: 28px;
  }
  .timeline__item:last-child { padding-bottom: 0; }
  .timeline__year {
    min-width: 60px;
    margin-bottom: 0;
    padding-top: 2px;
  }
  .timeline__dot {
    margin-bottom: 0;
    margin-top: 5px;
    flex-shrink: 0;
  }
  .timeline__text {
    font-size: 0.85rem;
    max-width: none;
  }
}

/* ===== ABOUT TEXT (LLM-friendly) ===== */
.about-text {
  max-width: 720px;
  margin: 0 auto;
}
.about-text__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.about-text p:last-child {
  margin-bottom: 0;
}

/* ===== FORM HELPERS ===== */
.form__helper {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-top: 4px;
  margin-bottom: 12px;
}
.form__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.form__input-wrap input[type="number"] {
  width: 100%;
  padding: 16px 48px 16px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--gray-900);
  -moz-appearance: textfield;
}
.form__input-wrap input[type="number"]::-webkit-inner-spin-button,
.form__input-wrap input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form__input-wrap input[type="number"]:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(166, 21, 255, 0.1);
}
.form__input-suffix {
  position: absolute;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-400);
  pointer-events: none;
}

/* ===== CALC EXTRAS ===== */
.calc__recommend {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: var(--gray-600);
}
.calc__rate-unit {
  display: block;
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 4px;
}

/* ===== NUMBER INPUT (legacy) ===== */
.form__group input[type="number"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--gray-900);
}
.form__group input[type="number"]:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(166, 21, 255, 0.1);
}

/* ===== FIRST JOB GUIDE ===== */
.guide__content {
  max-width: 800px;
  margin: 0 auto;
}
.page-hero--guide .page-hero__desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero--guide .guide__nav {
  margin-top: 28px;
  margin-bottom: 0;
}
.page-hero--guide .guide__update {
  margin-top: 20px;
}
.guide__nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.guide__update {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-top: 12px;
}
.guide__block {
  margin-bottom: 40px;
}
.guide__block h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.guide__block h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-top: 20px;
  margin-bottom: 10px;
}
.guide__block p {
  margin-bottom: 12px;
  line-height: 1.7;
}
.guide__block ul {
  margin: 12px 0;
  padding-left: 24px;
}
.guide__block ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.guide__links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.guide__links-grid--2 {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.guide__link-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
.guide__link-card:hover {
  border-color: var(--orange);
  background: rgba(255, 180, 82, 0.03);
  transform: translateY(-2px);
}
.section--dark .guide__link-card {
  border-color: var(--gray-700);
  background: rgba(255, 255, 255, 0.03);
}
.section--dark .guide__link-card:hover {
  border-color: var(--orange);
  background: rgba(255, 180, 82, 0.05);
}
.guide__link-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
}
.guide__link-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.5;
}
.section--dark .guide__link-card p {
  color: var(--gray-400);
}
.guide__block--highlight {
  background: var(--gradient-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}
.guide__block--highlight h3 {
  font-size: 1.5rem;
}
.guide__cta {
  margin-top: 24px;
}
.guide__credits {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ===== RESOURCES HUB ===== */
.resources-hub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.resource-hub__card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
}
.resource-hub__card:hover {
  border-color: var(--orange);
  background: rgba(255, 180, 82, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.resource-hub__card--large {
  padding: 40px;
  background: var(--gradient-subtle);
  border: none;
}
.resource-hub__card--large:hover {
  background: var(--gradient-subtle);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(166, 21, 255, 0.08);
}
.resource-hub__emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.resource-hub__card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.resource-hub__card--large h3 {
  font-size: 1.5rem;
}
.resource-hub__card p {
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.resource-hub__link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--orange);
  transition: color 0.2s;
}
.resource-hub__card:hover .resource-hub__link {
  color: var(--purple);
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
  .about__grid--3,
  .resources__grid,
  .resources__grid--2,
  .resources-hub,
  .events__posts-grid,
  .guide__links-grid,
  .guide__links-grid--2 {
    grid-template-columns: 1fr;
  }
  .guide__nav {
    flex-direction: column;
  }
  .guide__block--highlight {
    padding: 24px;
  }
  .calc__rate-cards {
    grid-template-columns: 1fr;
  }
  .calc__input-section {
    padding: 24px;
  }
  .page-hero {
    padding: 180px 0 40px;
  }
  .hero {
    padding-top: 200px;
  }
  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .btn--lg {
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero__actions,
  .cta__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero__actions .btn,
  .cta__actions .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  .events__cta-centered .btn {
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
  }
}

@media (max-width: 768px) {
  .nav__banner {
    font-size: 0.8rem;
    padding: 6px 12px;
    gap: 6px;
  }
  .nav__banner-btn {
    font-size: 0.75rem;
    padding: 3px 12px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about__grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .resources__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
