/* Tiger Brokers — Investment Education · Premium */
:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --bg-panel: #111111;
  --orange: #ff6a00;
  --orange-hot: #ff8533;
  --orange-dim: #cc5500;
  --orange-soft: rgba(255, 106, 0, 0.14);
  --orange-line: rgba(255, 106, 0, 0.35);
  --text: #f7f7f5;
  --text-muted: #a3a3a0;
  --text-faint: #6e6e6a;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.12);
  --font-display: "Manrope", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "IBM Plex Mono", monospace;
  --container: 1140px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--text-muted);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

img {
  display: block;
  max-width: 100%;
}

ol,
ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* Film grain */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.25s ease,
    box-shadow 0.35s var(--ease), border-color 0.25s ease, color 0.25s ease;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}

.btn-primary {
  background: var(--orange);
  color: #050505;
  border-color: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
}

.btn-primary:hover {
  background: var(--orange-hot);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 106, 0, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}

/* Nav */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--text);
}

/* Hero — full-bleed visual + brand-first */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 40px) 0 100px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: hero- ken 18s ease-out forwards;
}

@keyframes hero-ken {
  to {
    transform: scale(1);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(5, 5, 5, 0.92) 0%,
      rgba(5, 5, 5, 0.78) 42%,
      rgba(5, 5, 5, 0.35) 72%,
      rgba(5, 5, 5, 0.55) 100%
    ),
    linear-gradient(0deg, rgba(5, 5, 5, 0.95) 0%, transparent 45%),
    radial-gradient(ellipse 50% 40% at 70% 50%, rgba(255, 106, 0, 0.12), transparent 70%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-bottom: 8px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}

.hero-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.hero-title {
  font-size: clamp(42px, 7.2vw, 72px);
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--text);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 500;
  color: rgba(247, 247, 245, 0.72);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll {
  position: absolute;
  right: 36px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll i {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.7);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise-in 0.85s var(--ease) forwards;
}

.reveal-delay-1 {
  animation-delay: 0.15s;
}
.reveal-delay-2 {
  animation-delay: 0.28s;
}
.reveal-delay-3 {
  animation-delay: 0.42s;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Proof */
.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  padding: 44px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.proof-item {
  position: relative;
  padding-left: 24px;
}

.proof-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--line-strong);
}

.proof-val {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.proof-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Sections */
.section {
  padding: 128px 0;
  position: relative;
}

.section-bleed {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 106, 0, 0.06), transparent 60%),
    var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-faq {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  font-weight: 500;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
}

.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
  padding-bottom: 6px;
}

.section-head-center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-head-center .section-desc {
  max-width: 520px;
}

/* Audience / who */
.section-who {
  border-bottom: 1px solid var(--line);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.audience-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.audience-card:hover {
  border-color: var(--orange-line);
  background: var(--bg-panel);
}

.audience-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.audience-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.audience-card p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}

.outcomes-block {
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

.outcomes-title {
  font-size: 22px;
  margin-bottom: 28px;
  font-weight: 700;
}

.outcomes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

.outcomes-list li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
  border-left: 2px solid var(--orange);
}

.outcomes-list strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.outcomes-list span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Included */
.section-included {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.include-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.include-item {
  background: var(--bg-elevated);
  padding: 32px 28px;
  transition: background 0.3s ease;
}

.include-item:hover {
  background: var(--bg-panel);
}

.include-item h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.include-item p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
}

.module-points {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-points li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.01em;
}

.module-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 1px;
  background: var(--orange);
}


.syl-deliverable {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-aside {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
}

/* Methodology modules */
.module-list {
  display: flex;
  flex-direction: column;
}

.module-row {
  display: grid;
  grid-template-columns: 88px 1fr minmax(220px, 280px);
  gap: 40px;
  align-items: center;
  padding: 52px 0;
  border-top: 1px solid var(--line);
  transition: background 0.4s ease;
}

.module-row:last-child {
  border-bottom: 1px solid var(--line);
}

.module-row:hover {
  background: linear-gradient(90deg, var(--orange-soft), transparent 65%);
}

.module-row.reverse .module-visual {
  order: -1;
}

.module-row.reverse {
  grid-template-columns: 88px minmax(220px, 280px) 1fr;
}

.module-row.reverse .module-num {
  order: -2;
}

.module-row.reverse .module-body {
  order: 1;
}

.module-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 48px;
  color: rgba(255, 106, 0, 0.55);
  line-height: 1;
}

.module-body h3 {
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 700;
}

.module-body p {
  font-size: 16px;
  font-weight: 500;
  max-width: 420px;
  color: var(--text-muted);
}

.module-visual {
  justify-self: stretch;
}

.panel-sheet,
.panel-bars,
.panel-matrix {
  background: var(--bg-panel);
  border: 1px solid var(--line-strong);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.panel-sheet::before,
.panel-bars::before,
.panel-matrix::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.panel-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.sheet-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 8px;
  padding: 7px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  border-bottom: 1px solid var(--line);
}

.sheet-row.head {
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sheet-row.accent {
  color: var(--orange);
  border-bottom: none;
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 88px;
}

.mini-bars span {
  flex: 1;
  height: var(--h);
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.35s ease, transform 0.35s var(--ease);
}

.mini-bars span.active {
  background: linear-gradient(to top, var(--orange-dim), var(--orange));
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.35);
}

.module-row:hover .mini-bars span.active {
  transform: scaleY(1.08);
  transform-origin: bottom;
}

.mini-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
}

.mini-matrix span {
  text-align: center;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-faint);
  border: 1px solid var(--line);
}

.mini-matrix span.hi {
  color: var(--orange);
  border-color: var(--orange-line);
  background: var(--orange-soft);
}

/* Mentors — editorial profile rows */
.mentor-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.mentor {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 40px 48px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.mentor:nth-child(even) {
  grid-template-columns: 1fr minmax(220px, 320px);
}

.mentor:nth-child(even) .mentor-photo {
  order: 2;
}

.mentor-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-panel);
}

.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(35%) contrast(1.06) brightness(0.94);
  transition: filter 0.5s var(--ease), transform 0.7s var(--ease);
}

.mentor:hover .mentor-photo img {
  filter: grayscale(0%) contrast(1.04) brightness(1);
  transform: scale(1.03);
}

.mentor-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
  pointer-events: none;
}

.mentor:hover .mentor-photo::after {
  border-color: var(--orange-line);
}

.mentor-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 520px;
  min-width: 0;
}

.mentor:nth-child(even) .mentor-body {
  justify-self: end;
  text-align: right;
  align-items: flex-end;
}

.mentor-index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 16px;
}

.mentor-identity h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 8px;
  font-weight: 700;
}

.mentor-role {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.mentor-bio {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.mentor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mentor:nth-child(even) .mentor-tags {
  justify-content: flex-end;
}

.mentor-tags li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
}

/* Syllabus grid */
.syllabus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.syl-item {
  background: var(--bg);
  padding: 36px 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  transition: background 0.35s ease;
}

.syl-item:hover {
  background: var(--bg-panel);
}

.syl-item.featured {
  background: linear-gradient(160deg, rgba(255, 106, 0, 0.12), var(--bg-panel));
}

.syl-item.featured .syl-num {
  color: var(--orange);
}

.syl-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.syl-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

.syl-item p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: auto;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary {
  color: var(--orange);
}

.faq-body {
  padding: 0 0 26px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  animation: faq-open 0.35s var(--ease);
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA */
.cta-band {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  border-top: 1px solid var(--orange-line);
  background: var(--bg);
}

.cta-glow {
  position: absolute;
  inset: -20% 20% auto;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(255, 106, 0, 0.22), transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.cta-inner h2 {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-sub {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 36px;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.brand-col p {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  max-width: 280px;
  color: var(--text-faint);
}

.link-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.link-col a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.link-col a:hover {
  color: var(--orange);
}

.copyright {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* Responsive — tablet */
@media (max-width: 960px) {
  :root {
    --nav-h: 60px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .logo-mark {
    width: 28px;
    height: 28px;
  }

  .logo-text {
    font-size: 14px;
  }

  .btn-sm {
    padding: 8px 14px;
    font-size: 12px;
  }

  .hero {
    display: block;
    align-items: unset;
    min-height: auto;
    padding: 0 0 48px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: min(42vw, 280px);
    min-height: 200px;
    max-height: 280px;
    margin-top: var(--nav-h);
  }

  .hero-img {
    transform: none;
    animation: none;
  }

  .hero-container {
    position: relative;
    z-index: 1;
    margin-top: -56px;
    padding-top: 0;
    max-width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.2) 0%,
        rgba(5, 5, 5, 0.65) 50%,
        rgba(5, 5, 5, 1) 100%
      );
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 44px);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 14px;
  }

  .proof-strip {
    padding: 28px 0;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }

  .proof-item {
    padding-left: 0;
  }

  .proof-item::before {
    display: none;
  }

  .proof-val {
    font-size: 22px;
  }

  .proof-lbl {
    font-size: 11px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 36px;
    align-items: start;
  }

  .section-title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .section-title br {
    display: none;
  }

  .section-desc {
    font-size: 15px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 36px;
  }

  .audience-card {
    padding: 22px 18px;
  }

  .outcomes-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .include-item {
    padding: 24px 20px;
  }

  .module-row,
  .module-row.reverse {
    grid-template-columns: 40px 1fr;
    gap: 8px 14px;
    padding: 32px 0;
    align-items: start;
  }

  .module-row.reverse .module-num,
  .module-row.reverse .module-visual,
  .module-row.reverse .module-body {
    order: unset;
  }

  .module-num {
    font-size: 28px;
    padding-top: 2px;
  }

  .module-body h3 {
    font-size: 20px;
  }

  .module-body p {
    font-size: 14px;
    max-width: 100%;
  }

  .module-visual {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .panel-sheet,
  .panel-bars,
  .panel-matrix {
    max-width: 100%;
  }

  .mentor-list {
    border-top: 1px solid var(--line);
    gap: 0;
  }

  .mentor,
  .mentor:nth-child(even) {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 0;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
  }

  .mentor:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .mentor:first-child {
    padding-top: 8px;
  }

  .mentor:nth-child(even) .mentor-photo {
    order: unset;
  }

  .mentor:nth-child(even) .mentor-body {
    justify-self: stretch;
    text-align: left;
    align-items: flex-start;
  }

  .mentor:nth-child(even) .mentor-tags {
    justify-content: flex-start;
  }

  .mentor-photo {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 2px;
  }

  .mentor-photo img {
    object-position: center 15%;
  }

  .mentor-body {
    max-width: 100%;
    padding: 18px 0 0;
  }

  .mentor-index {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
  }

  .mentor-identity h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .mentor-role {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.4;
  }

  .mentor-bio {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .mentor-tags {
    gap: 6px;
  }

  .mentor-tags li {
    font-size: 10px;
    padding: 5px 8px;
  }

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

  .syl-item {
    min-height: 0;
    padding: 24px 20px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-aside {
    max-width: 100%;
  }

  .faq-item summary {
    padding: 18px 0;
    font-size: 15px;
    gap: 12px;
  }

  .faq-body {
    font-size: 14px;
    padding-bottom: 18px;
  }

  .cta-band {
    padding: 72px 0;
  }

  .cta-inner h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .cta-inner h2 br {
    display: none;
  }

  .cta-sub {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .footer {
    padding: 56px 0 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .brand-col p {
    max-width: 100%;
  }
}

/* Responsive — phone */
@media (max-width: 480px) {
  .container,
  .nav-inner {
    padding: 0 16px;
  }

  .hero-media {
    height: 180px;
    min-height: 180px;
    max-height: 180px;
  }

  .hero-container {
    margin-top: -40px;
  }

  .hero-kicker {
    font-size: 10px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.12;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }

  .mentor,
  .mentor:nth-child(even) {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 4px 14px;
    padding: 22px 0;
    align-items: start;
  }

  .mentor:nth-child(even) .mentor-photo {
    order: 0;
  }

  .mentor:nth-child(even) .mentor-body {
    justify-self: stretch;
    text-align: left;
    align-items: flex-start;
  }

  .mentor:nth-child(even) .mentor-tags {
    justify-content: flex-start;
  }

  .mentor-photo {
    max-width: none;
    width: 80px;
    aspect-ratio: 1 / 1;
  }

  .mentor-body {
    padding: 0;
    min-width: 0;
  }

  .mentor-index {
    margin-bottom: 4px;
  }

  .mentor-identity h3 {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .mentor-role {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .mentor-bio {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .section {
    padding: 52px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-img,
  .hero-scroll i,
  .faq-body {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-img {
    transform: none;
  }

  .btn-primary:hover,
  .mentor:hover .mentor-photo img,
  .module-row:hover .mini-bars span.active {
    transform: none;
  }
}
