/* SparkBudd shared marketing styles
 * Used by: index, platform, how-it-works, pricing, trust, and the marketing
 * chrome on mentor.html. Form pages also pull this in for nav + footer; their
 * form-specific styles are inlined per page.
 */

:root {
  --orange: #E8600A;
  --orange-soft: #FFE6D2;
  --teal: #00C9C8;
  --blue: #0047AB;
  --mint: #1B9E72;
  --coral: #D94F35;
  --ink: #1C1814;
  --ink-2: #4A433D;
  --ink-3: #7B736C;
  --paper: #FBF7F2;
  --paper-2: #F4EFE7;
  --line: #E7DFD4;
  --white: #FFFFFF;

  --grad: linear-gradient(120deg, var(--teal) 0%, var(--blue) 100%);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --serif: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Brand mark ---------- */
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 22px;
  line-height: 1;
  position: relative;
}
.brand .spark { color: var(--ink); }
.brand .budd  { color: var(--orange); position: relative; }
.brand .budd::after {
  content: "";
  position: absolute;
  left: calc(100% - 0.74em);
  top: -0.55em;
  width: 0.65em;
  height: 0.65em;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 0 L14 10 L24 12 L14 14 L12 24 L10 14 L0 12 L10 10 Z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 0 L14 10 L24 12 L14 14 L12 24 L10 14 L0 12 L10 10 Z'/></svg>") center/contain no-repeat;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 242, 0.85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-links {
  display: flex; gap: 32px;
  font-size: 14.5px; color: var(--ink-2); font-weight: 500;
}
.nav-links a { transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.is-active { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-sm);
  font-weight: 500; font-size: 14.5px;
  transition: transform .15s ease, background .15s ease;
}
.nav-cta:hover { background: #000; transform: translateY(-1px); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-weight: 500; font-size: 15px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  font-family: inherit;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #d95605; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding: 40px 0 72px; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600;
  padding: 6px 12px;
  background: var(--paper-2);
  border-radius: 999px;
  border: 1px solid var(--line);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(27,158,114,0.18);
}

h1.headline {
  margin: 22px 0 18px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1.headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  font-variation-settings: "opsz" 144;
}
.lede {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 14px; color: var(--ink-3); font-weight: 500;
  transition: color .15s ease;
}
.hero-link:hover { color: var(--ink); }

.hero-meta {
  margin-top: 40px;
  display: flex; gap: 36px;
  flex-wrap: wrap;
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: var(--serif); font-weight: 600;
  font-size: 26px; color: var(--ink);
  letter-spacing: -0.01em;
}
.hero-meta span {
  font-size: 13px; color: var(--ink-3); margin-top: 2px;
}

/* Hero visual — two profile cards */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.02;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
}
.card {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(28,24,20,0.04),
    0 30px 60px -18px rgba(28,24,20,0.45),
    0 10px 22px -8px rgba(28,24,20,0.22);
  padding: 18px;
  width: 58%;
  z-index: 2;
}
.card-mentor { top: 6%; left: 4%; transform: rotate(-3deg); }
.card-mentee { bottom: 6%; right: 4%; transform: rotate(2.5deg); }
@media (max-width: 920px) {
  .hero-visual { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 520px) {
  .hero-visual { max-width: 360px; }
  .card { width: 62%; padding: 14px; }
  .card-mentor { top: 4%; left: 2%; }
  .card-mentee { bottom: 4%; right: 2%; }
}

.card-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFD7AE, #FF9F5C);
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.card-mentee .card-photo { background: linear-gradient(135deg, #BFE9E7, #6BB1F2); }
.card-photo svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.card-row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.card-name { font-family: var(--serif); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.card-mbti {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--blue); background: #E8F2FF; padding: 3px 7px; border-radius: 4px;
}
.card-role { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; }
.card-tags { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.tag { font-size: 11px; padding: 3px 8px; background: var(--paper-2); border-radius: 999px; color: var(--ink-2); }
.card-price {
  margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--ink-3);
}
.card-price strong { font-family: var(--serif); color: var(--ink); font-size: 15px; }

/* ---------- Section primitives ---------- */
section { padding: 96px 0; }
@media (max-width: 760px) { section { padding: 72px 0; } }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); font-weight: 600; margin-bottom: 14px;
}
h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}
.sub { font-size: 17px; color: var(--ink-2); max-width: 620px; }

/* Sub-page hero (smaller than home hero) */
.page-hero {
  padding: 64px 0 32px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 14px;
  color: var(--ink);
}
.page-hero h1 em {
  font-style: italic; font-weight: 400; color: var(--orange);
  font-variation-settings: "opsz" 144;
}
.page-hero .lede { max-width: 640px; margin-bottom: 0; }

/* ---------- Three tiers ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px 30px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tier:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -24px rgba(28,24,20,0.22); border-color: #d8cebd; }
.tier-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; width: fit-content;
}
.tier-c2c .tier-tag { background: #FFE6D2; color: var(--orange); }
.tier-b2c .tier-tag { background: #CFF6F5; color: #007D7C; }
.tier-b2b .tier-tag { background: #E0EAFF; color: var(--blue); }
.tier h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 26px; letter-spacing: -0.015em; margin: 4px 0 4px;
}
.tier .status { font-size: 12.5px; color: var(--ink-3); }
.tier p { color: var(--ink-2); font-size: 15px; margin: 4px 0 0; }
.tier ul { list-style: none; padding: 0; margin: 12px 0 0; }
.tier li {
  font-size: 14px; color: var(--ink-2); padding: 6px 0;
  border-top: 1px dashed var(--line);
  display: flex; align-items: center; gap: 10px;
}
.tier li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.tier-b2c li::before { background: var(--teal); }
.tier-b2b li::before { background: var(--blue); }

/* ---------- Differentiators ---------- */
.diff-section { background: var(--paper-2); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.diff {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  grid-column: span 2;
  border: 1px solid var(--line);
}
.diff.span-3 { grid-column: span 3; }
.diff.span-full { grid-column: span 6; }
.diff-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--white);
}
.diff h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 20px; letter-spacing: -0.01em; margin: 0 0 8px;
}
.diff p { color: var(--ink-2); font-size: 14.5px; margin: 0; }

/* Student-first dark callout block */
.diff-student {
  background: var(--ink);
  color: var(--paper);
  border-color: transparent;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}
.diff-student h4 { color: var(--paper); }
.diff-student p { color: rgba(251,247,242,0.75); }
.diff-student-stats {
  display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap;
}
.diff-student-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px;
  min-width: 160px;
  flex: 1 1 160px;
}
.diff-student-stat-value { font-family: var(--serif); font-size: 28px; letter-spacing: -0.01em; line-height: 1.1; }
.diff-student-stat-label { font-size: 13px; color: rgba(251,247,242,0.6); margin-top: 6px; }

@media (max-width: 920px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .diff,
  .diff.span-3 { grid-column: span 1; }
  .diff.span-full { grid-column: span 2; }
  .diff-student { grid-template-columns: 1fr; gap: 24px; }
  .diff-student-stats { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .diff-grid { grid-template-columns: 1fr; }
  .diff.span-full { grid-column: span 1; }
  .diff { padding: 22px 20px; }
  .diff-student { padding: 24px 22px; }
  .diff-student-stats { gap: 10px; }
  .diff-student-stat {
    min-width: 0;
    padding: 14px;
    flex: 1 1 calc(50% - 10px);
  }
  .diff-student-stat-value { font-size: 22px; }
}

/* ---------- How it works (tabs) ---------- */
.tabs {
  display: inline-flex; padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  margin-bottom: 36px;
}
.tabs button {
  border: 0; background: transparent;
  padding: 10px 20px; cursor: pointer;
  font-family: inherit; font-weight: 500; font-size: 14.5px;
  color: var(--ink-3);
  border-radius: 999px;
  transition: color .15s, background .15s;
}
.tabs button.active { background: var(--ink); color: var(--paper); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
}
.step-num {
  font-family: var(--serif); font-weight: 500;
  font-size: 14px; color: var(--orange);
  letter-spacing: 0.04em;
}
.step h5 { font-family: var(--serif); font-weight: 500; font-size: 19px; letter-spacing: -0.01em; margin: 0; }
.step p { font-size: 14px; color: var(--ink-2); margin: 4px 0 0; }

/* ---------- Pricing ---------- */
.pricing-section { background: var(--ink); color: var(--paper); }
.pricing-section h2 { color: var(--paper); }
.pricing-section .sub { color: rgba(251,247,242,0.7); }
.pricing-section .section-eyebrow { color: #FFB680; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  margin-top: 8px;
}
@media (max-width: 920px) { .pricing-grid { grid-template-columns: 1fr; } }

.bundles { display: grid; gap: 10px; }
.bundle {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  transition: background .2s ease, border-color .2s ease;
}
.bundle:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); }
.bundle.featured {
  background: linear-gradient(120deg, rgba(0,201,200,0.16), rgba(0,71,171,0.16));
  border-color: rgba(0,201,200,0.35);
}
.bundle-name { font-family: var(--serif); font-size: 19px; }
.bundle-name small { display: block; font-family: var(--sans); font-size: 12.5px; color: rgba(251,247,242,0.6); margin-top: 2px; }
.bundle-credits { font-size: 13px; color: rgba(251,247,242,0.7); }
.bundle-price { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.bundle .badge {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); background: #FFB680; padding: 3px 8px; border-radius: 4px;
  margin-left: 8px; vertical-align: middle;
}

.session-list {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.session-list h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; padding: 22px 22px 6px; margin: 0;
}
.session-list p { padding: 0 22px 16px; color: rgba(251,247,242,0.7); font-size: 14px; margin: 0; }
.session-row {
  display: grid; grid-template-columns: 1.4fr 0.6fr 0.6fr 0.7fr;
  padding: 14px 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  align-items: center;
  font-size: 14px;
}
.session-row.head { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(251,247,242,0.55); }
.session-row .price { font-family: var(--serif); font-size: 16px; }
.session-row .credits { color: var(--teal); font-weight: 500; }
@media (max-width: 520px) {
  .session-row { grid-template-columns: 1.3fr 0.6fr 0.7fr; }
  .session-row .len { display: none; }
}

/* ---------- Trust ---------- */
.trust-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 920px) { .trust-grid { grid-template-columns: 1fr; gap: 40px; } }
.trust-list { display: grid; gap: 18px; }
.trust-item { display: flex; gap: 16px; }
.trust-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--paper-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.trust-item h4 { font-family: var(--serif); font-weight: 500; font-size: 19px; margin: 0 0 4px; letter-spacing: -0.01em; }
.trust-item p { font-size: 14.5px; color: var(--ink-2); margin: 0; }

.quote-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: var(--grad);
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(4px);
}
.quote-card p {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; line-height: 1.35; letter-spacing: -0.01em;
  margin: 0 0 18px; position: relative;
}
.quote-card small { color: rgba(251,247,242,0.65); font-size: 13px; position: relative; }

/* ---------- Surfaces ---------- */
.surfaces-section { background: var(--paper-2); }
.surfaces { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px) { .surfaces { grid-template-columns: 1fr; } }
.surface {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.surface-visual {
  height: 200px;
  border-radius: var(--radius-md);
  background: var(--grad);
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.surface-phone, .surface-screen {
  position: absolute;
  background: var(--ink);
  border-radius: 14px;
}
.surface-phone {
  width: 90px; height: 170px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  border: 3px solid #111;
}
.surface-phone::before {
  content: ""; position: absolute; inset: 8px;
  background: linear-gradient(180deg, #FFB680 0%, #E8600A 60%, #1C1814 100%);
  border-radius: 8px;
}
.surface-screen {
  width: 75%; height: 145px;
  left: 50%; top: 55%;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  border: 4px solid #111;
  border-bottom-width: 18px;
}
.surface-screen::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, #BFE9E7, #6BB1F2);
  border-radius: 6px;
}
.surface h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin: 0; letter-spacing: -0.01em; }
.surface p { font-size: 15px; color: var(--ink-2); margin: 0; }
.surface ul { padding: 0; margin: 6px 0 0; list-style: none; }
.surface li { font-size: 14px; color: var(--ink-2); padding: 6px 0; border-top: 1px dashed var(--line); }
.surface li:first-child { border-top: 0; }

/* ---------- Mentor band ---------- */
.mentor-band {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.mentor-band::before {
  content: "";
  position: absolute;
  left: -120px; top: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(232,96,10,0.30) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.mentor-band::after {
  content: "";
  position: absolute;
  right: -160px; bottom: -160px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0,201,200,0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.mentor-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) { .mentor-grid { grid-template-columns: 1fr; gap: 40px; } }

.mentor-stats { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 28px; }
.mentor-stats div { display: flex; flex-direction: column; }
.mentor-stats strong {
  font-family: var(--serif); font-weight: 600;
  font-size: 32px; color: #FFB680;
  letter-spacing: -0.01em;
}
.mentor-stats span { font-size: 13px; color: rgba(251,247,242,0.6); margin-top: 2px; }

.mentor-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mentor-card-head {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #FFB680; font-weight: 600;
  padding: 6px 12px;
  background: rgba(232,96,10,0.14);
  border: 1px solid rgba(255,182,128,0.3);
  border-radius: 999px;
  margin-bottom: 18px;
}
.mentor-card-head svg { color: #FFB680; }
.mentor-card h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 26px; letter-spacing: -0.015em;
  margin: 0 0 10px; color: var(--paper);
}
.mentor-card p {
  color: rgba(251,247,242,0.75);
  font-size: 15px; margin: 0 0 18px;
}
.mentor-perks { list-style: none; padding: 0; margin: 0 0 24px; }
.mentor-perks li {
  font-size: 14px; color: rgba(251,247,242,0.9);
  padding: 8px 0;
  border-top: 1px dashed rgba(255,255,255,0.10);
  display: flex; align-items: center; gap: 10px;
}
.mentor-perks li:first-child { border-top: 0; padding-top: 0; }
.mentor-perks .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(27,158,114,0.20); color: #6FE5BB;
  font-size: 12px; flex-shrink: 0;
}
.mentor-cta { width: 100%; justify-content: center; }
.mentor-note {
  display: block; margin-top: 14px;
  font-size: 12.5px; color: rgba(251,247,242,0.55);
  text-align: center;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--grad);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: grid; grid-template-columns: 1.4fr auto; gap: 32px; align-items: center;
}
@media (max-width: 760px) { .cta-banner { grid-template-columns: 1fr; padding: 40px 28px; } }
.cta-banner h2 { color: var(--white); margin: 0 0 10px; }
.cta-banner p { margin: 0; color: rgba(255,255,255,0.85); font-size: 16px; max-width: 520px; }
.cta-banner .btn-primary { background: var(--white); color: var(--ink); }
.cta-banner .btn-primary:hover { background: var(--paper); }
.cta-banner::after {
  content: "";
  position: absolute;
  right: -100px; bottom: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); background: transparent; }
.cta-banner .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ---------- Footer ---------- */
footer.site-footer {
  padding: 64px 0 48px;
  border-top: 1px solid var(--line);
}
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot p { color: var(--ink-3); font-size: 14px; margin: 14px 0 0; max-width: 280px; }
.foot h5 { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin: 0 0 14px; font-weight: 600; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { padding: 5px 0; font-size: 14px; color: var(--ink-2); }
.foot li a:hover { color: var(--orange); }
.legal {
  border-top: 1px solid var(--line);
  margin-top: 48px; padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--ink-3);
  flex-wrap: wrap; gap: 12px;
}

/* ---------- Reveal anim ---------- */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* Focus styles */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}
