/* ==============================================================================
   Vini Cavalcanti School — Mentorship One-on-One Landing Page
   Design tokens extracted from vinicavalcanti.com root CSS.
   DO NOT change token values without authorization. See AI-STUDIO.md.
   ============================================================================== */

/* SECTION: fonts ------------------------------------------------------------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/outfit-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/outfit-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/outfit-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/outfit-700.woff2') format('woff2');
}

/* SECTION: design-tokens ----------------------------------------------------- */
:root {
  /* Colors (root: vinicavalcanti.com) */
  --color-orange: #EF7722;
  --color-orange-hover: #d9661b;
  --color-orange-soft: #FFF2E7;
  --color-orange-grad-end: #F9A335;
  --color-blue: #0CA6DF;
  --color-blue-hover: #0995c9;
  --color-blue-soft: #EFF8FD;
  --color-blue-grad-end: #7ACEEE;
  --color-bg: #FCFBF8;
  --color-bg-input: #FAFAF8;
  --color-pill: #F5F5F2;
  --color-pill-alt: #F4F4F1;
  --color-white: #ffffff;
  --color-text: #060606;
  --color-body: #2b2b2b;

  /* Typography */
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --tracking-tight: -0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;
  --leading-tight: 1.25;
  --leading-relaxed: 1.625;
  --leading-body: 1.6;

  /* Radii */
  --radius-card: 28px;
  --radius-card-lg: 32px;
  --radius-pill: 9999px;
  --radius-input: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px -1px rgba(0,0,0,.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --shadow-orange: 0 20px 25px -5px rgba(239,119,34,.2), 0 8px 10px -6px rgba(239,119,34,.2);

  /* Spacing scale base */
  --space: 0.25rem;
  --max-w: 80rem; /* 7xl */
}

/* SECTION: base --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: rgba(239,119,34,.1); color: var(--color-orange); }

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

/* SECTION: typography utilities ---------------------------------------------- */
.h-display {
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
}
.eyebrow {
  display: inline-flex;
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
}
@media (min-width: 640px) { .eyebrow { font-size: 0.875rem; } }
.eyebrow--blue { background: var(--color-blue-soft); color: var(--color-blue); box-shadow: inset 0 0 0 1px rgba(12,166,223,.1); }
.eyebrow--orange { background: var(--color-orange-soft); color: var(--color-orange); box-shadow: inset 0 0 0 1px rgba(239,119,34,.1); }

/* SECTION: badges -------------------------------------------------------------- */
.badge {
  display: inline-flex;
  border-radius: var(--radius-pill);
  padding: 0.375rem 0.75rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
}
@media (min-width: 640px) { .badge { font-size: 0.75rem; } }
.badge--limited { background: rgba(12,166,223,.1); color: var(--color-blue); text-transform: uppercase; }
.badge--oneonone { background: rgba(239,119,34,.1); color: var(--color-orange); }
.badge--neutral { background: var(--color-pill); color: rgba(0,0,0,.6); font-weight: 500; letter-spacing: 0; font-size: 0.75rem; padding: 0.25rem 0.625rem; }

/* SECTION: buttons -------------------------------------------------------------- */
.btn {
  display: inline-block;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
  transition: all .15s cubic-bezier(.4,0,.2,1);
}
.btn:active { transform: scale(.95); }
.btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover { background: var(--color-orange-hover); transform: scale(1.05); }
.btn--secondary {
  background: var(--color-white);
  color: var(--color-orange);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(239,119,34,.4), var(--shadow-sm);
}
.btn--secondary:hover { background: var(--color-orange-soft); }
.btn--blue {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.btn--blue:hover { background: var(--color-blue-hover); box-shadow: var(--shadow-lg); }
.btn--ghost {
  background: var(--color-white);
  color: rgba(0,0,0,.7);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.1), var(--shadow-sm);
  display: none;
}
.btn--ghost:hover { background: rgba(0,0,0,.05); color: var(--color-text); }
@media (min-width: 640px) { .btn--ghost { display: inline-block; } }
.btn--inverse {
  background: var(--color-white);
  color: var(--color-orange);
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-xl);
}
.btn--inverse:hover { background: var(--color-orange-soft); transform: scale(1.05); }
.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.7);
}
.btn--outline-light:hover { background: rgba(255,255,255,.15); }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.75rem; }

/* SECTION: cards --------------------------------------------------------------- */
.card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
}
.card--lg { border-radius: var(--radius-card-lg); }

/* SECTION: header ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0,0,0,.05);
  background: rgba(252,251,248,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}
@media (min-width: 768px) { .site-header__nav { padding-block: 1rem; } }
.site-header__logo img { height: 2.5rem; width: auto; }
@media (min-width: 640px) { .site-header__logo img { height: 3rem; } }
.site-header__actions { display: flex; align-items: center; gap: 0.75rem; }
.site-header .btn--primary { padding: 0.5rem 1.25rem; font-size: 0.875rem; box-shadow: var(--shadow-md); }

/* SECTION: hero -------------------------------------------------------------------- */
.hero { padding-block: 2.5rem 3.5rem; }
@media (min-width: 768px) { .hero { padding-block: 5rem; } }
.hero__grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
}
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.hero h1 {
  font-size: 2.25rem;
  max-width: 42rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
.hero__sub {
  margin-top: 1.25rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: var(--leading-relaxed);
  color: rgba(0,0,0,.65);
}
@media (min-width: 640px) { .hero__sub { font-size: 1.125rem; } }
.hero__cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}
.hero__price { display: flex; flex-direction: column; }
.hero__price-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: rgba(0,0,0,.3);
  margin-bottom: 0.25rem;
}
.hero__price-value { font-size: 1.875rem; font-weight: 700; color: var(--color-orange); line-height: 1; }
.hero__price-note { font-size: 0.75rem; color: rgba(0,0,0,.45); margin-top: 0.25rem; }
.hero__studios {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(0,0,0,.55);
}
@media (min-width: 640px) { .hero__studios { font-size: 0.875rem; } }
.hero__studios span {
  border-radius: var(--radius-pill);
  background: var(--color-pill-alt);
  padding: 0.5rem 1rem;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}
.hero__media { position: relative; }
.hero__media::before,
.hero__media::after {
  content: "";
  position: absolute;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  filter: blur(64px);
  opacity: .5;
  z-index: 0;
}
.hero__media::before { left: -1rem; top: 2.5rem; background: rgba(239,119,34,.1); }
.hero__media::after { right: -1rem; bottom: 2.5rem; background: rgba(12,166,223,.1); }
.hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
  border-radius: var(--radius-card-lg);
  border: 1px solid rgba(0,0,0,.05);
  background: var(--color-white);
  padding: 10px;
  box-shadow: var(--shadow-xl);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1);
}
@media (min-width: 768px) { .hero__media img { max-width: 100%; } }

/* SECTION: sections & layout --------------------------------------------------------- */
.section { padding-block: 4rem; }
@media (min-width: 640px) { .section { padding-block: 5.5rem; } }
.section--blue { background: var(--color-blue-soft); }
.section--orange { background: var(--color-orange-soft); }
.section--compact { padding-block: 2.5rem; }
@media (min-width: 640px) { .section--compact { padding-block: 3.5rem; } }
.section__head--tight { margin-bottom: 2rem; }
.section__head { text-align: center; margin-bottom: 3rem; }
.section__head h2 { font-size: 1.875rem; }
@media (min-width: 640px) { .section__head h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section__head h2 { font-size: 3rem; } }
.section__head .eyebrow { margin-bottom: 1rem; }
.section__lead {
  margin: 1rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  color: rgba(0,0,0,.6);
  line-height: var(--leading-relaxed);
}
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* SECTION: video ----------------------------------------------------------------------- */
/* 3D-mesh decoration: static triangle-grid pattern on bands + animated icosahedron canvas (js/mesh.js) */
.section--pattern { position: relative; overflow: hidden; }
.section--pattern > .container { position: relative; z-index: 1; }
.section--pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='83.14'%3E%3Cpath d='M0 .5h48M0 42.07h48M0 0l48 83.14M48 0L0 83.14' stroke='%23EF7722' stroke-opacity='.09' fill='none'/%3E%3C/svg%3E");
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, transparent 20%, #000 72%);
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, transparent 20%, #000 72%);
}
.final-cta--band.section--pattern::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='83.14'%3E%3Cpath d='M0 .5h48M0 42.07h48M0 0l48 83.14M48 0L0 83.14' stroke='%23FFFFFF' stroke-opacity='.12' fill='none'/%3E%3C/svg%3E");
}
.mesh-canvas {
  position: absolute;
  width: 260px;
  height: 260px;
  pointer-events: none;
  display: none;
  opacity: .9;
}
@media (min-width: 1024px) { .mesh-canvas { display: block; } }
.mesh-canvas--tl { top: 1.5rem; left: 2rem; }
.mesh-canvas--br { right: 2rem; bottom: 1.5rem; }
.video-frame {
  max-width: 52rem;
  margin-inline: auto;
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius-card-lg);
  padding: 10px;
  box-shadow: var(--shadow-xl);
}
.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-card-lg) - 8px);
  background: var(--color-text);
}

/* SECTION: not-a-course ------------------------------------------------------------------ */
.compare { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .compare { grid-template-columns: repeat(3, 1fr); } }
.compare__card { padding: 2rem; display: flex; flex-direction: column; }
.compare__card h3 { font-size: 1rem; font-weight: 600; }
.compare__card ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.compare__card li {
  font-size: 0.875rem;
  line-height: var(--leading-relaxed);
  color: rgba(0,0,0,.6);
  padding-left: 1.5rem;
  position: relative;
}
.compare__card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(0,0,0,.25);
}
.compare__card--highlight {
  background: var(--color-orange-soft);
  box-shadow: inset 0 0 0 2px rgba(239,119,34,.3), var(--shadow-lg);
}
.compare__card--highlight li::before { content: "✓"; color: var(--color-orange); font-weight: 700; }
.compare__tag {
  align-self: flex-start;
  margin-bottom: 1rem;
}

/* SECTION: how-it-works ------------------------------------------------------------------------ */
.grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.how-card { padding: 2rem; }
.how-card__icon {
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--color-blue-soft);
  color: var(--color-blue);
  margin-bottom: 1.25rem;
}
.how-card:nth-child(even) .how-card__icon { background: var(--color-orange-soft); color: var(--color-orange); }
.how-card__step {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-blue);
}
.how-card h3 { margin-top: 0.75rem; font-size: 1.0625rem; font-weight: 600; letter-spacing: var(--tracking-tight); }
.how-card p { margin-top: 0.625rem; font-size: 0.875rem; line-height: var(--leading-relaxed); color: rgba(0,0,0,.6); }

/* SECTION: software ---------------------------------------------------------------------------------- */
.software__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.software__pill {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.375rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(0,0,0,.8);
  transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s cubic-bezier(.4,0,.2,1);
}
@media (min-width: 640px) { .software__pill { font-size: 0.9375rem; } }
.software__logo {
  height: 1.625rem;
  width: auto;
  max-width: 8.5rem;
  object-fit: contain;
}
.software__logo--icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
}
.software__role {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(0,0,0,.4);
}

/* SECTION: journey ------------------------------------------------------------------------ */
.pipeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .pipeline { gap: 1.25rem; } }
.pipeline__item {
  width: 5.25rem;
  text-align: center;
}
@media (min-width: 640px) { .pipeline__item { width: 8rem; } }
@media (min-width: 1024px) { .pipeline__item { width: 9.5rem; } }
.pipeline__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 0.375rem;
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,.05);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s cubic-bezier(.4,0,.2,1);
}
@media (min-width: 640px) { .pipeline__item img { border-radius: 1.25rem; } }
.pipeline__item span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(0,0,0,.5);
}
@media (min-width: 640px) { .pipeline__item span { font-size: 0.75rem; } }
.journey-wrap { padding: 1.5rem; }
@media (min-width: 640px) { .journey-wrap { padding: 2.5rem; } }
.module { margin-bottom: 2.5rem; }
.module:last-child { margin-bottom: 0; }
.module__title {
  border-left: 4px solid var(--color-orange);
  padding-left: 0.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 1.25rem;
}
.module:nth-of-type(2) .module__title { border-left-color: var(--color-blue); }
.module:nth-of-type(2) .week-card__label { color: var(--color-blue); }
.module:nth-of-type(3) .module__title { border-left-color: var(--color-orange); }
.module__grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .module__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .module__grid { grid-template-columns: repeat(3, 1fr); } }
.week-card { padding: 1.25rem; border-radius: 1.25rem; }
.week-card__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-orange);
}
.week-card p { margin-top: 0.375rem; font-size: 0.8125rem; line-height: var(--leading-relaxed); color: rgba(0,0,0,.65); }
.week-card p strong { color: rgba(0,0,0,.85); font-weight: 600; }

/* SECTION: mentor ---------------------------------------------------------------------------- */
.mentor { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .mentor { grid-template-columns: 0.8fr 1.2fr; } }
.mentor__photo {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 40px;
  padding: 10px;
  box-shadow: var(--shadow-xl);
  width: fit-content;
  margin-inline: auto;
  max-width: 24rem;
}
@media (min-width: 640px) { .mentor__photo { padding: 15px; } }
@media (min-width: 768px) { .mentor__photo { margin-inline: 0; max-width: none; } }
.mentor__photo img { border-radius: 28px; }
.mentor__body h2 { font-size: 1.875rem; margin-top: 1rem; }
@media (min-width: 640px) { .mentor__body h2 { font-size: 2.25rem; } }
.mentor__bio {
  margin-top: 1.5rem;
  font-size: 18px;
  line-height: var(--leading-body);
  color: var(--color-body);
}
.mentor__bio + .mentor__bio { margin-top: 1rem; }
.mentor__bio strong { font-weight: 700; color: rgba(0,0,0,.95); }
.mentor__bio em { font-style: italic; color: rgba(0,0,0,.85); }
.mentor__bio .accent { color: var(--color-orange); font-weight: 800; }
.mentor__pills { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mentor__pills span {
  border-radius: var(--radius-pill);
  background: var(--color-pill-alt);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(0,0,0,.55);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}
@media (min-width: 640px) { .mentor__pills span { font-size: 0.875rem; } }

/* SECTION: fit --------------------------------------------------------------------------------- */
.fit { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .fit { grid-template-columns: repeat(2, 1fr); } }
.fit__card { padding: 2rem; }
.fit__card h3 { font-size: 1.125rem; font-weight: 600; letter-spacing: var(--tracking-tight); display: flex; align-items: center; gap: 0.625rem; }
.fit__icon {
  width: 2rem; height: 2rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.fit__icon--yes { background: var(--color-orange-soft); color: var(--color-orange); }
.fit__icon--no { background: var(--color-pill); color: rgba(0,0,0,.45); }
.fit__card ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.875rem; }
.fit__card li {
  font-size: 0.9375rem;
  line-height: var(--leading-relaxed);
  color: rgba(0,0,0,.65);
  padding-left: 1.75rem;
  position: relative;
}
.fit__card--yes li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--color-orange);
  font-weight: 700;
}
.fit__card--no li::before {
  content: "✕";
  position: absolute; left: 0;
  color: rgba(0,0,0,.3);
  font-weight: 700;
}
.fit__result {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: var(--color-orange-soft);
  font-size: 0.9375rem;
  line-height: var(--leading-relaxed);
  color: rgba(0,0,0,.75);
}
.fit__result strong { color: var(--color-orange); font-weight: 700; }

/* SECTION: career ---------------------------------------------------------------------------------- */
.career {
  padding: 1.75rem;
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin-inline: auto;
}
@media (min-width: 640px) { .career { padding: 2.5rem; } }
@media (min-width: 1024px) { .career { grid-template-columns: 1.6fr 1fr; gap: 2.5rem; } }
.career__stats { display: grid; gap: 1rem; align-content: start; }
@media (min-width: 640px) { .career__stats { grid-template-columns: repeat(3, 1fr); } }
.career__stat {
  background: var(--color-bg-input);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 1.25rem;
  padding: 1.25rem;
}
.career__stat-head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.875rem; }
.career__stat-icon {
  width: 1.75rem; height: 1.75rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.career__stat-icon--orange { background: var(--color-orange-soft); color: var(--color-orange); }
.career__stat-icon--blue { background: var(--color-blue-soft); color: var(--color-blue); }
.career__stat-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(0,0,0,.45);
}
.career__stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
  color: var(--color-text);
}
@media (min-width: 640px) { .career__stat-value { font-size: 1.875rem; } }
.career__stat-note { margin-top: 0.375rem; font-size: 0.75rem; color: rgba(0,0,0,.45); }
.career__levels { display: flex; flex-direction: column; gap: 0.625rem; }
.career__levels-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: rgba(0,0,0,.4);
  margin-bottom: 0.25rem;
}
.career__level {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  padding: 0.75rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.career__level span:last-child { font-weight: 700; white-space: nowrap; }
.career__level--blue {
  background: var(--color-blue-soft);
  box-shadow: inset 0 0 0 1px rgba(12,166,223,.12);
}
.career__level--blue span:last-child { color: var(--color-blue); }
.career__level--orange {
  background: var(--color-orange-soft);
  box-shadow: inset 0 0 0 1px rgba(239,119,34,.12);
}
.career__level--orange span:last-child { color: var(--color-orange); }
.career__note {
  margin: 1.5rem auto 0;
  max-width: 44rem;
  text-align: center;
  font-size: 0.8125rem;
  line-height: var(--leading-relaxed);
  color: rgba(0,0,0,.45);
}
/* SECTION: pricing ------------------------------------------------------------------------------------ */
.pricing { max-width: 56rem; margin-inline: auto; }
.pricing__card { padding: 2rem; position: relative; overflow: hidden; }
.pricing__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--color-orange), var(--color-orange-grad-end), var(--color-blue));
}
@media (min-width: 640px) { .pricing__card { padding: 3rem; } }
.pricing__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pricing__card h3 { margin-top: 1.5rem; font-size: 1.5rem; font-weight: 700; letter-spacing: var(--tracking-tight); }
@media (min-width: 640px) { .pricing__card h3 { font-size: 2rem; } }
.pricing__includes { margin-top: 1.75rem; display: grid; gap: 0.875rem; }
@media (min-width: 640px) { .pricing__includes { grid-template-columns: repeat(2, 1fr); } }
.pricing__includes li {
  font-size: 0.9375rem;
  line-height: var(--leading-relaxed);
  color: rgba(0,0,0,.7);
  padding-left: 1.75rem;
  position: relative;
}
.pricing__includes li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--color-orange);
  font-weight: 700;
}
.pricing__cta {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .pricing__cta { flex-direction: row; align-items: center; }
  .pricing__cta .btn { flex: 1; }
}
.pricing__price-row {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.pricing__price { font-size: 2.5rem; font-weight: 700; color: var(--color-orange); line-height: 1; }
.pricing__price-note { font-size: 0.875rem; color: rgba(0,0,0,.5); }
.pricing__scarcity {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(0,0,0,.55);
  line-height: var(--leading-relaxed);
}

/* SECTION: faq ---------------------------------------------------------------------------------------- */
.faq { max-width: 64rem; margin-inline: auto; }
.faq__list { display: flex; flex-direction: column; gap: 1rem; }
.faq__item {
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,.05);
  background: var(--color-white);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .15s;
}
.faq__item[open] { box-shadow: var(--shadow-md); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: rgba(0,0,0,.8);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,.05);
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform .15s;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,.05);
  font-size: 1rem;
  line-height: var(--leading-relaxed);
  color: rgba(0,0,0,.6);
}

/* SECTION: final-cta ----------------------------------------------------------------------------------- */
.final-cta { text-align: center; }
.final-cta__media { margin: 0 auto 2rem; max-width: 15rem; }
@media (min-width: 640px) { .final-cta__media { max-width: 17rem; } }
.final-cta__media img {
  border-radius: var(--radius-card-lg);
  border: 1px solid rgba(0,0,0,.05);
  background: var(--color-white);
  padding: 10px;
  box-shadow: var(--shadow-xl);
}
.final-cta--band {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-grad-end));
  color: var(--color-white);
}
.final-cta--band h2 { color: var(--color-white); }
.final-cta--band p { color: rgba(255,255,255,.85); }
.final-cta h2 { font-size: 1.875rem; max-width: 38rem; margin-inline: auto; }
@media (min-width: 640px) { .final-cta h2 { font-size: 2.5rem; } }
.final-cta p { margin: 1.25rem auto 0; max-width: 34rem; font-size: 1.0625rem; color: rgba(0,0,0,.6); line-height: var(--leading-relaxed); }
.final-cta__row {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .final-cta__row { flex-direction: row; justify-content: center; } }

/* SECTION: footer -------------------------------------------------------------------------------------- */
.site-footer {
  padding-top: 2rem;
  padding-bottom: 4rem;
  font-size: 0.875rem;
  color: rgba(0,0,0,.5);
}
.site-footer__inner {
  border-top: 1px solid rgba(0,0,0,.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.site-footer__logo { height: 3.5rem; width: auto; margin-bottom: 2rem; }
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 2.5rem;
  color: rgba(0,0,0,.8);
  font-weight: 500;
}
.site-footer__links a { transition: color .15s; }
.site-footer__links a:hover { color: var(--color-orange); }
.site-footer__tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,.3);
  margin-bottom: 1rem;
}
.site-footer__copy { font-size: 10px; color: rgba(0,0,0,.2); }

/* SECTION: gallery -------------------------------------------------------------------------------------- */
.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
@media (min-width: 640px) { .gallery { gap: 1.5rem; } }
.gallery__item {
  display: block;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(0,0,0,.05);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1);
}
@media (min-width: 640px) { .gallery__item { border-radius: var(--radius-card); } }
.gallery__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.gallery__caption {
  margin: 2rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 1.0625rem;
  line-height: var(--leading-relaxed);
  color: rgba(0,0,0,.65);
}
@media (min-width: 640px) { .gallery__caption { font-size: 1.125rem; } }
.gallery__caption strong { color: var(--color-orange); font-weight: 700; }

/* SECTION: hover-interactivity (pointer devices only, mobile untouched) -------------------- */
@media (hover: hover) {
  .card { transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1); }
  .how-card:hover,
  .fit__card:hover,
  .compare__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
  }
  .compare__card--highlight:hover {
    box-shadow: inset 0 0 0 2px rgba(239,119,34,.5), var(--shadow-xl);
  }
  .week-card { transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s cubic-bezier(.4,0,.2,1), border-color .2s; }
  .week-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(239,119,34,.3);
  }
  .hero__media img:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: var(--shadow-xl), var(--shadow-orange);
  }
  .gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
  }
  .gallery__item:hover img { transform: scale(1.08); }
  .mentor__photo { transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1); }
  .mentor__photo:hover { transform: rotate(1deg) scale(1.01); }
  .hero__studios span, .mentor__pills span { transition: background .2s, color .2s, box-shadow .2s; }
  .hero__studios span:hover, .mentor__pills span:hover {
    background: var(--color-orange-soft);
    color: var(--color-orange);
    box-shadow: inset 0 0 0 1px rgba(239,119,34,.2);
  }
  .faq__item:hover { box-shadow: var(--shadow-md); }
  .faq__item summary:hover .faq__icon { background: var(--color-orange-soft); color: var(--color-orange); }
  .software__pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .pipeline__item img:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: var(--shadow-lg);
  }
  .career__stat { transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s cubic-bezier(.4,0,.2,1); }
  .career__stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
}

/* Touch feedback (mobile) */
.card:active, .gallery__item:active { transform: scale(.99); }
.faq__item summary { -webkit-tap-highlight-color: transparent; min-height: 44px; align-items: center; }
.btn { min-height: 44px; }

/* SECTION: reveal-animation ----------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* mesh-canvas animation is stopped in js/mesh.js (renders a single static frame) */
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .btn:hover, .btn:active { transform: none; }
  .card, .card:hover, .week-card:hover, .gallery__item:hover, .gallery__item:hover img,
  .hero__media img:hover, .mentor__photo:hover, .software__pill:hover, .pipeline__item img:hover,
  .career__stat:hover { transform: none; transition: none; }
}

/* SECTION: focus-visible ------------------------------------------------------------------------ */
a:focus-visible, button:focus-visible, summary:focus-visible, video:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
  border-radius: 8px;
}
.final-cta--band a:focus-visible { outline-color: var(--color-white); }

/* ====================================================================================
   ADDED (home v2 parity): header nav v2, Members Area button, pattern overlays,
   contact form. Rules copied byte-exact from the homepage styles.css.
   ==================================================================================== */

/* status colors used by the contact form */
:root{--color-status-ok:#1a7f37;--color-status-error:#B3261E;}

/* SECTION: header-nav-v2 (links, lang toggle, burger, mobile menu) */
.site-header__links{display:none;align-items:center;gap:1.5rem;}
@media (min-width:768px){.site-header__links{display:flex;}}
.site-header__links > a{font-size:0.875rem;font-weight:500;color:rgba(0,0,0,.7);transition:color .15s;}
.site-header__links > a:hover{color:var(--color-text);}
.site-header__lang{border-radius:var(--radius-pill);border:1px solid rgba(0,0,0,.1);background:var(--color-white);padding:0.5rem 0.75rem;font-size:0.875rem;font-family:var(--font-sans);box-shadow:var(--shadow-sm);cursor:pointer;transition:background .15s;}
.site-header__lang:hover{background:rgba(0,0,0,.05);}
.site-header__burger{display:flex;border:0;border-radius:0.5rem;padding:0.75rem;background:transparent;color:rgba(0,0,0,.7);cursor:pointer;transition:background .15s;}
.site-header__burger:hover{background:rgba(0,0,0,.05);}
@media (min-width:768px){.site-header__burger{display:none;}}
.site-header__mobile{display:flex;flex-direction:column;gap:0.25rem;padding:0.5rem 1rem 1rem;border-top:1px solid rgba(0,0,0,.05);}
.site-header__mobile[hidden]{display:none;}
.site-header__mobile > a{padding:0.75rem 0.5rem;font-size:0.9375rem;font-weight:500;color:rgba(0,0,0,.75);border-radius:0.75rem;}
.site-header__mobile > a:active{background:rgba(0,0,0,.05);}
.site-header__mobile .btn--members{margin-top:0.5rem;text-align:center;}
.site-header__mobile .site-header__lang{margin-top:0.5rem;align-self:center;}
@media (min-width:768px){.site-header__mobile{display:none !important;}}

/* SECTION: members-button */
.btn--members{background:var(--color-blue);color:var(--color-white);padding:0.5rem 1.25rem;font-size:0.875rem;font-weight:600;box-shadow:var(--shadow-md);min-height:0;}
.btn--members:hover{background:var(--color-blue-hover);box-shadow:var(--shadow-lg);}
.site-header__links > a.btn--members{color:var(--color-white);}
.site-header__links > a.btn--members:hover{color:var(--color-white);}

/* SECTION:pattern overlay (triangle grid,light on color bands) */
.section--pattern-orange{position:relative;overflow:hidden;}
.section--pattern-orange > .container{position:relative;z-index:1;}
.section--pattern-orange::before{content:"";position:absolute;inset:0;pointer-events:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='83.14'%3E%3Cpath d='M0 .5h48M0 42.07h48M0 0l48 83.14M48 0L0 83.14' stroke='%23EF7722' stroke-opacity='.09' fill='none'/%3E%3C/svg%3E");-webkit-mask-image:radial-gradient(ellipse 85% 75% at 50% 50%,transparent 15%,#000 70%);mask-image:radial-gradient(ellipse 85% 75% at 50% 50%,transparent 15%,#000 70%);}
.section--pattern-light{position:relative;overflow:hidden;}
.section--pattern-light > .container{position:relative;z-index:1;}
.section--pattern-light::before{content:"";position:absolute;inset:0;pointer-events:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='83.14'%3E%3Cpath d='M0 .5h48M0 42.07h48M0 0l48 83.14M48 0L0 83.14' stroke='%23FFFFFF' stroke-opacity='.05' fill='none'/%3E%3C/svg%3E");-webkit-mask-image:radial-gradient(ellipse 85% 75% at 50% 50%,transparent 15%,#000 70%);mask-image:radial-gradient(ellipse 85% 75% at 50% 50%,transparent 15%,#000 70%);}

/* SECTION:contact */
.contact-card{max-width:44rem;margin-inline:auto;padding:2rem;}
@media (min-width:640px){.contact-card{padding:3rem;}}
.form-field{margin-bottom:1.25rem;}
.form-field label{display:block;font-size:0.875rem;font-weight:600;margin-bottom:0.5rem;color:rgba(0,0,0,.8);}
.form-field input,
.form-field textarea{width:100%;background:var(--color-bg-input);border:1px solid rgba(0,0,0,.1);border-radius:16px;padding:0.875rem 1.125rem;font-family:var(--font-sans);font-size:1rem;color:var(--color-text);transition:border-color .15s,box-shadow .15s;}
.form-field input::placeholder,
.form-field textarea::placeholder{color:rgba(0,0,0,.35);}
.form-field input:focus,
.form-field textarea:focus{outline:none;border-color:var(--color-blue);box-shadow:0 0 0 3px rgba(12,166,223,.15);}
.form-field textarea{resize:vertical;min-height:8rem;}
#contact-form .btn--primary{width:100%;}
#contact-form .btn--primary:hover{transform:translateY(-2px);}
.hp-field{position:absolute;left:-9999px;width:1px;height:1px;opacity:0;}
.form-status{margin-top:1rem;text-align:center;font-size:0.9375rem;min-height:1.25rem;}
.form-status--ok{color:var(--color-status-ok);font-weight:600;}
.form-status--error{color:var(--color-status-error);font-weight:600;}

/* SECTION:included (intro course bundled) — band carries the Intro to ZBrush: Mushroom identity: brick red sampled from that course's key art (#A63A2B / #7E2418) + blue eyebrow */
.section--mushroom{background:linear-gradient(150deg,#A63A2B 30%,#7E2418);color:var(--color-white);}
.included__grid{display:grid;grid-template-columns:minmax(0,1fr);gap:2rem;align-items:center;}
@media (min-width:768px){.included__grid{grid-template-columns:0.45fr 1.55fr;}}
.included__media img{border-radius:var(--radius-card-lg);border:1px solid rgba(255,255,255,.16);box-shadow:var(--shadow-xl);max-width:min(18rem,100%);margin-inline:auto;}
#included .eyebrow{background:var(--color-blue);color:var(--color-white);}
.included__body h2{font-size:1.875rem;margin-top:0.75rem;color:var(--color-white);}
.included__body p{margin-top:1rem;max-width:36rem;font-size:1.0625rem;line-height:var(--leading-relaxed);color:rgba(255,255,255,.75);}
.included__body p strong{color:var(--color-white);}
/* SECTION: discord (school community banner) */
.discord-banner{background:linear-gradient(150deg,var(--color-blue) 30%,var(--color-blue-hover));color:var(--color-white);}
.discord-banner__inner{display:grid;gap:1.5rem;justify-items:center;text-align:center;}
@media (min-width:768px){.discord-banner__inner{grid-template-columns:auto 1fr auto;align-items:center;justify-items:start;text-align:left;gap:2rem;}}
.discord-banner__badge{width:5.5rem;height:5.5rem;border-radius:50%;background:var(--color-white);display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-lg);}
.discord-banner__badge img{width:3.25rem;height:auto;display:block;}
.discord-banner__body h2{color:var(--color-white);font-size:1.875rem;}
.discord-banner__body p{margin-top:0.5rem;max-width:34rem;color:rgba(255,255,255,.8);line-height:var(--leading-relaxed);}
#discord .btn--inverse{color:var(--color-blue);}
#discord .btn--inverse:hover{background:var(--color-blue-soft);}

/* SECTION: promo (limited-time coupon MENTORSHIP20) */
.hero__promo { margin-top: 1.125rem; display: inline-flex; align-items: center; flex-wrap: wrap; border-radius: var(--radius-pill); background: var(--color-orange-soft); box-shadow: inset 0 0 0 1px rgba(239,119,34,.35); padding: 0.5rem 1.125rem; font-size: 0.875rem; color: rgba(0,0,0,.7); }
.hero__promo strong { color: var(--color-orange); margin-inline: 0.25rem; }
.promo-banner { display: flex; flex-wrap: wrap; align-items: center; gap: 0.625rem 0.875rem; background: var(--color-orange-soft); border: 1px dashed rgba(239,119,34,.45); border-radius: 16px; padding: 0.875rem 1.25rem; margin-top: 1.5rem; }
.promo-banner__tag { display: inline-flex; border-radius: var(--radius-pill); background: var(--color-orange); color: var(--color-white); font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-widest); padding: 0.25rem 0.75rem; }
.promo-banner p { font-size: 0.9375rem; color: rgba(0,0,0,.7); }
.promo-banner__code { background: var(--color-white); border: 1px solid rgba(239,119,34,.35); border-radius: 8px; padding: 0.125rem 0.5rem; letter-spacing: 0.06em; color: var(--color-orange); white-space: nowrap; }
