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

:root {
  color-scheme: light;
  --bg: #f8fafc;
  --bg-glow: rgba(59, 130, 246, 0.12);
  --bg-glow-strong: rgba(14, 165, 233, 0.16);
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: #e5e7eb;
  --surface-soft-hover: #d1d5db;
  --text: #1f2937;
  --text-muted: #4b5563;
  --text-soft: #94a3b8;
  --border: rgba(15, 23, 42, 0.08);
  --header: rgba(255, 255, 255, 0.72);
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #08111f;
  --bg-glow: rgba(59, 130, 246, 0.16);
  --bg-glow-strong: rgba(34, 197, 94, 0.14);
  --surface: rgba(15, 23, 42, 0.9);
  --surface-strong: #111827;
  --surface-soft: #1f2937;
  --surface-soft-hover: #334155;
  --text: #e5eefb;
  --text-muted: #cbd5e1;
  --text-soft: #94a3b8;
  --border: rgba(148, 163, 184, 0.18);
  --header: rgba(8, 17, 31, 0.78);
  --shadow: 0 22px 60px rgba(2, 6, 23, 0.38);
  --shadow-soft: 0 14px 36px rgba(2, 6, 23, 0.3);
}

body {
  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: radial-gradient(
      circle at top left,
      var(--bg-glow),
      transparent 30%
    ),
    radial-gradient(
      circle at top right,
      var(--bg-glow-strong),
      transparent 28%
    ),
    var(--bg);
  color: var(--text);
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

h1,
h2,
h3,
.nav-brand,
.nav-link,
.section-eyebrow {
  font-family: "Sora", "Manrope", system-ui, sans-serif;
}

body,
header,
section,
article,
div,
a,
button,
img {
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

header {
  background: transparent;
  border-bottom: 0;
  padding-top: 0.8rem;
}

html[data-theme="dark"] body {
  background: radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.2),
      transparent 32%
    ),
    radial-gradient(
      circle at top right,
      rgba(16, 185, 129, 0.16),
      transparent 30%
    ),
    #08111f !important;
  color: #e5eefb !important;
}

.bg-white {
  background-color: var(--surface-strong);
}

.bg-gray-100,
.bg-gray-200 {
  background-color: var(--surface-soft);
}

.text-gray-900,
.text-gray-800 {
  color: var(--text);
}

.text-gray-700,
.text-gray-500,
.text-gray-400 {
  color: var(--text-muted);
}

.border,
.border-black {
  border-color: var(--border);
}

.shadow-sm,
.shadow,
.shadow-xl {
  box-shadow: var(--shadow-soft);
}

.theme-switch {
  display: inline-flex;
  align-items: center;
  width: 3.45rem;
  height: 1.95rem;
  padding: 0.16rem;
  border-radius: 999px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(226, 232, 240, 0.92)
  );
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow:
    inset 0 2px 8px rgba(255, 255, 255, 0.92),
    inset 0 -6px 12px rgba(148, 163, 184, 0.22),
    0 12px 28px rgba(15, 23, 42, 0.14);
}

.theme-switch:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 2px 8px rgba(255, 255, 255, 0.92),
    inset 0 -6px 12px rgba(148, 163, 184, 0.2),
    0 16px 30px rgba(15, 23, 42, 0.16);
}

.theme-switch-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.62rem;
  height: 1.62rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow:
    0 10px 18px rgba(148, 163, 184, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateX(0);
}

.theme-switch-icon {
  line-height: 1;
  font-size: 0.92rem;
}

.theme-switch-sun {
  color: #f7c948;
}

.theme-switch-moon {
  display: none;
  color: #f8fafc;
}

html[data-theme="dark"] .theme-switch {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96),
    rgba(203, 213, 225, 0.88)
  );
  border-color: rgba(226, 232, 240, 0.34);
  box-shadow:
    inset 0 2px 8px rgba(255, 255, 255, 0.92),
    inset 0 -8px 14px rgba(148, 163, 184, 0.22),
    0 16px 34px rgba(2, 6, 23, 0.34);
}

html[data-theme="dark"] .theme-switch-thumb {
  background: linear-gradient(180deg, #252528, #18181b);
  box-shadow:
    0 12px 20px rgba(2, 6, 23, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateX(1.48rem);
}

html[data-theme="dark"] .theme-switch-sun {
  display: none;
}

html[data-theme="dark"] .theme-switch-moon {
  display: inline;
}

html[data-theme="dark"] .hover\:bg-gray-300:hover {
  background-color: #334155;
  color: #f8fafc;
}

html[data-theme="light"] .hover\:bg-gray-300:hover {
  background-color: #d1d5db;
}

html[data-theme="dark"] .hover\:text-blue-700:hover {
  color: #93c5fd;
}

html[data-theme="dark"] .backdrop-blur {
  backdrop-filter: blur(18px);
}

html[data-theme="dark"] .bg-white,
html[data-theme="dark"] .bg-white\/70 {
  background-color: #0f172a !important;
  background: rgba(8, 17, 31, 0.86) !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
}

html[data-theme="dark"] .bg-gray-100,
html[data-theme="dark"] .bg-gray-200 {
  background-color: #182334 !important;
  border-color: rgba(148, 163, 184, 0.16) !important;
}

html[data-theme="dark"] .text-gray-900,
html[data-theme="dark"] .text-gray-800,
html[data-theme="dark"] .font-bold,
html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] a:not(.bg-blue-700):not(.bg-gray-200),
html[data-theme="dark"] button {
  color: #e5eefb !important;
}

html[data-theme="dark"] .text-gray-700,
html[data-theme="dark"] .text-gray-500,
html[data-theme="dark"] .text-gray-400,
html[data-theme="dark"] p,
html[data-theme="dark"] li,
html[data-theme="dark"] footer {
  color: #cbd5e1 !important;
}

html[data-theme="dark"] .text-blue-700 {
  color: #93c5fd !important;
}

html[data-theme="dark"] .bg-blue-700 {
  background-color: #2563eb !important;
  color: #eff6ff !important;
}

html[data-theme="dark"] .hover\:bg-blue-800:hover {
  background-color: #1d4ed8 !important;
}

html[data-theme="dark"] .hover\:underline:hover,
html[data-theme="dark"] .hover\:text-blue-700:hover {
  color: #bfdbfe !important;
}

html[data-theme="dark"] .border,
html[data-theme="dark"] .border-black {
  border-color: rgba(148, 163, 184, 0.2) !important;
}

html[data-theme="dark"] .shadow-sm,
html[data-theme="dark"] .shadow,
html[data-theme="dark"] .shadow-xl {
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.36) !important;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #eff6ff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.94);
}

html[data-theme="dark"] .btn-secondary {
  background: rgba(15, 23, 42, 0.88);
  color: #e5eefb;
  border-color: rgba(148, 163, 184, 0.16);
}

html[data-theme="dark"] .btn-secondary:hover {
  background: rgba(30, 41, 59, 0.94);
}

.testimonial-section {
  position: relative;
}

.testimonial-shell {
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(241, 245, 249, 0.88)
  );
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.1);
}

.testimonial-card {
  height: 100%;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94),
    rgba(248, 250, 252, 0.92)
  );
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.testimonial-quote {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #bfdbfe, transparent 55%),
    linear-gradient(145deg, #2563eb, #7c3aed);
  color: white;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

.testimonial-photo {
  width: 3.4rem;
  height: 3.4rem;
  flex-shrink: 0;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.testimonial-link {
  color: #2563eb;
  font-weight: 600;
}

.testimonial-link:hover {
  color: #1d4ed8;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: var(--text);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.testimonial-arrow:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
}

.testimonial-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
}

.testimonial-dot.is-active {
  background: #2563eb;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

html[data-theme="dark"] .testimonial-shell {
  background: linear-gradient(
    180deg,
    rgba(9, 18, 34, 0.9),
    rgba(15, 23, 42, 0.94)
  );
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.34);
}

html[data-theme="dark"] .testimonial-card {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.96),
    rgba(18, 31, 52, 0.92)
  );
  border-color: rgba(148, 163, 184, 0.14);
}

html[data-theme="dark"] .testimonial-link {
  color: #93c5fd;
}

html[data-theme="dark"] .testimonial-link:hover {
  color: #bfdbfe;
}

html[data-theme="dark"] .testimonial-arrow {
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(148, 163, 184, 0.16);
  color: #e5eefb;
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.28);
}

html[data-theme="dark"] .testimonial-arrow:hover {
  background: rgba(37, 99, 235, 0.18);
  color: #bfdbfe;
}

html[data-theme="dark"] .testimonial-dot {
  background: rgba(148, 163, 184, 0.42);
}

html[data-theme="dark"] .testimonial-dot.is-active {
  background: #93c5fd;
  box-shadow: 0 0 0 6px rgba(147, 197, 253, 0.14);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex: 1 1 auto;
}

.nav-brand {
  padding: 0.35rem 0.5rem;
  border-radius: 0.75rem;
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-brand:hover {
  background: rgba(59, 130, 246, 0.08);
  color: #2563eb;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(148, 163, 184, 0.1);
  color: var(--text);
}

.nav-toggle:hover {
  background: rgba(59, 130, 246, 0.12);
}

.nav-toggle-box {
  display: inline-flex;
  flex-direction: column;
  gap: 0.24rem;
}

.nav-toggle-line {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(0.38rem) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.14);
  margin-left: 1.25rem;
  margin-right: 1rem;
}

.nav-link {
  padding: 0.58rem 0.84rem;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-link:hover {
  background: rgba(59, 130, 246, 0.1);
  color: var(--text);
}

.mobile-menu {
  display: none;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0.95rem 1rem 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.mobile-menu-link:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.22);
  transform: translateY(-1px);
}

.mobile-menu-copy {
  min-width: 0;
}

.mobile-menu-label {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

html[data-theme="dark"] .mobile-menu-link {
  background: rgba(148, 163, 184, 0.08);
  border-color: rgba(148, 163, 184, 0.14);
}

html[data-theme="dark"] .mobile-menu-link:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.22);
}

html[data-theme="dark"] .mobile-menu-label {
  color: #e5eefb;
}

.locale-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.16rem;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.locale-btn {
  min-width: 2.4rem;
  padding: 0.5rem 0.66rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
}

.locale-btn:hover {
  background: rgba(59, 130, 246, 0.08);
  color: var(--text);
}

.locale-btn.is-active {
  background: var(--surface-strong);
  color: #2563eb;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #60a5fa;
}

.mentor-layout,
.employer-layout {
  display: grid;
}

.testimonial-title {
  line-height: 1.02;
}

.case-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.testimonial-role {
  letter-spacing: 0.12em;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 3rem;
  align-items: center;
  padding-top: 1rem;
}

.hero-title {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-description {
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--text-muted);
}

.hero-mobile-avatar-shell {
  display: none;
}

.hero-mobile-avatar-image {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
}

.hero-proof-card {
  min-height: 5.5rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-proof-value {
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-proof-label {
  margin-top: 0.45rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-portrait-shell {
  position: relative;
  width: min(100%, 24rem);
  margin-left: auto;
  padding: 1rem;
  border-radius: 1.9rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.08)
  );
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.hero-portrait-ring {
  position: absolute;
  inset: -1.1rem auto auto -1.2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.38),
    transparent 68%
  );
  filter: blur(8px);
  pointer-events: none;
}

.hero-portrait-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1.5rem;
  object-fit: cover;
}

.mentor-shell,
.product-shell,
.employer-shell,
.resume-shell,
.contact-shell {
  border-radius: 1.9rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(248, 250, 252, 0.88)
  );
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

.mentor-chip,
.employer-chip {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(15, 23, 42, 0.06);
}

.insight-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.case-card {
  height: 100%;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(244, 247, 251, 0.88)
  );
}

.resume-preview-shell {
  width: 17rem;
  height: 17rem;
  border-width: 10px;
  border-color: rgba(148, 163, 184, 0.4);
  border-radius: 1rem;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.contact-links {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.contact-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.contact-link-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #60a5fa;
}

.contact-link-value {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.contact-link-action {
  color: #2563eb;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

html[data-theme="dark"] .nav-shell,
html[data-theme="dark"] .mentor-shell,
html[data-theme="dark"] .product-shell,
html[data-theme="dark"] .employer-shell,
html[data-theme="dark"] .resume-shell,
html[data-theme="dark"] .contact-shell,
html[data-theme="dark"] .case-card {
  background: linear-gradient(
    180deg,
    rgba(10, 18, 34, 0.9),
    rgba(15, 23, 42, 0.94)
  );
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow: 0 28px 58px rgba(2, 6, 23, 0.28);
}

html[data-theme="dark"] .nav-links,
html[data-theme="dark"] .nav-toggle,
html[data-theme="dark"] .locale-switch,
html[data-theme="dark"] .hero-proof-card,
html[data-theme="dark"] .mentor-chip,
html[data-theme="dark"] .employer-chip,
html[data-theme="dark"] .insight-card {
  background: rgba(148, 163, 184, 0.08);
  border-color: rgba(148, 163, 184, 0.14);
}

html[data-theme="dark"] .nav-brand,
html[data-theme="dark"] .nav-link,
html[data-theme="dark"] .nav-toggle,
html[data-theme="dark"] .locale-btn {
  color: #d8e1ef !important;
}

html[data-theme="dark"] .nav-link:hover,
html[data-theme="dark"] .locale-btn:hover {
  background: rgba(96, 165, 250, 0.12);
  color: #f8fbff !important;
}

html[data-theme="dark"] .locale-btn.is-active {
  background: rgba(15, 23, 42, 0.94);
  color: #93c5fd !important;
  box-shadow: 0 12px 22px rgba(2, 6, 23, 0.34);
}

html[data-theme="dark"] .hero-portrait-shell {
  background: linear-gradient(
    180deg,
    rgba(30, 41, 59, 0.54),
    rgba(15, 23, 42, 0.28)
  );
}

html[data-theme="dark"] .contact-link-card {
  background: rgba(15, 23, 42, 0.78);
  border-color: rgba(148, 163, 184, 0.14);
}

html[data-theme="dark"] .resume-preview-shell {
  border-color: rgba(148, 163, 184, 0.32) !important;
}

.testimonial-card:hover,
.case-card:hover,
.insight-card:hover,
.mentor-chip:hover,
.employer-chip:hover,
.contact-link-card:hover,
.resume-preview-shell:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] .testimonial-card:hover,
html[data-theme="dark"] .case-card:hover,
html[data-theme="dark"] .insight-card:hover,
html[data-theme="dark"] .mentor-chip:hover,
html[data-theme="dark"] .employer-chip:hover,
html[data-theme="dark"] .contact-link-card:hover,
html[data-theme="dark"] .resume-preview-shell:hover {
  box-shadow: 0 28px 48px rgba(2, 6, 23, 0.34);
}

@media (max-width: 1024px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 0;
  }

  .hero-portrait-shell {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    padding-top: 1rem !important;
    padding-bottom: 4.5rem !important;
  }

  header {
    padding-top: 0.65rem;
  }

  .nav-shell {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0.9rem;
    border-radius: 1.1rem;
    overflow: visible;
  }

  .nav-row {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-main {
    display: none;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0.35rem;
    right: 0.35rem;
    z-index: 40;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    width: auto;
    margin: 0;
    padding: 0.55rem;
    border-radius: 1.05rem;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(241, 245, 249, 0.98)
    );
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow:
      0 24px 42px rgba(15, 23, 42, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
    backdrop-filter: none;
  }

  .nav-main.is-open {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
    width: 100%;
  }

  .nav-controls {
    margin-left: auto;
    order: 2;
    gap: 0.45rem;
  }

  .mobile-menu-link {
    padding: 0.92rem 0.98rem 0.96rem 1rem;
  }

  html[data-theme="dark"] .nav-main {
    background: linear-gradient(
      180deg,
      rgba(9, 15, 28, 0.98),
      rgba(13, 20, 36, 0.98)
    );
    border-color: rgba(148, 163, 184, 0.16);
    box-shadow:
      0 24px 42px rgba(2, 6, 23, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2.45rem, 12vw, 3.5rem);
    line-height: 0.98;
  }

  .hero-mobile-avatar-shell {
    display: flex;
    width: fit-content;
    margin: -0.15rem auto 0.8rem;
    padding: 0.28rem;
    border-radius: 999px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.32),
      rgba(255, 255, 255, 0.12)
    );
    border: 1px solid rgba(148, 163, 184, 0.14);
  }

  html[data-theme="dark"] .hero-mobile-avatar-shell {
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.72),
      rgba(15, 23, 42, 0.48)
    );
    border-color: rgba(148, 163, 184, 0.14);
  }

  .hero-mobile-avatar-image {
    width: 7rem;
    height: 7rem;
  }

  .section-eyebrow {
    text-align: center;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof-card {
    min-height: auto;
  }

  .hero-portrait-shell {
    display: none;
  }

  .mentor-shell,
  .product-shell,
  .employer-shell,
  .resume-shell,
  .contact-shell,
  .testimonial-shell {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .resume-preview-shell {
    width: 14rem;
    height: 14rem;
  }

  .contact-link-card {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  .hero-inner {
    padding-top: 0.7rem !important;
  }

  header {
    padding-top: 0.5rem;
  }

  .nav-shell {
    padding: 0.72rem;
    border-radius: 1rem;
  }

  .nav-main {
    left: 0.28rem;
    right: 0.28rem;
    padding: 0.45rem;
    border-radius: 0.95rem;
  }

  .mobile-menu-links {
    gap: 0.38rem;
  }

  .mobile-menu-link {
    padding: 0.88rem 0.9rem 0.92rem 0.92rem;
    border-radius: 0.9rem;
  }

  .mobile-menu-label {
    font-size: 0.94rem;
  }

  .hero-mobile-avatar-image {
    width: 6.35rem;
    height: 6.35rem;
    border-radius: 999px;
  }

  .nav-toggle {
    width: 2.5rem;
    height: 2.5rem;
  }

  .nav-controls {
    gap: 0.4rem;
  }

  .theme-switch {
    width: 2.95rem;
    height: 1.75rem;
    padding: 0.14rem;
  }

  .theme-switch-thumb {
    width: 1.42rem;
    height: 1.42rem;
  }

  html[data-theme="dark"] .theme-switch-thumb {
    transform: translateX(1.12rem);
  }

  .locale-switch {
    justify-content: flex-end;
  }

  .locale-btn {
    min-width: 1.9rem;
    font-size: 0.72rem;
    padding: 0.42rem 0.46rem;
  }

  .hero-title {
    font-size: clamp(2.15rem, 13vw, 2.95rem);
  }

  .hero-description,
  .text-lg {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .section-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  .testimonial-shell {
    padding: 1.35rem;
    border-radius: 1.5rem;
  }

  .testimonial-card {
    padding: 1rem;
    border-radius: 1.2rem;
  }

  .testimonial-photo,
  .testimonial-avatar {
    width: 3rem;
    height: 3rem;
  }

  .testimonial-quote {
    -webkit-line-clamp: 4;
  }

  .testimonial-controls {
    margin-top: 1.4rem;
    gap: 0.7rem;
  }

  .testimonial-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }

  .mentor-shell,
  .product-shell,
  .employer-shell,
  .resume-shell,
  .contact-shell,
  .testimonial-shell {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .mentor-chip,
  .employer-chip,
  .insight-card,
  .case-card {
    border-radius: 1.05rem;
  }

  .resume-preview-shell {
    width: 11.5rem;
    height: 11.5rem;
    border-width: 8px;
  }

  .contact-link-card {
    flex-direction: column;
    gap: 0.45rem;
  }

  .contact-link-action {
    align-self: flex-start;
  }
}

@media (min-width: 769px) {
  .nav-shell {
    justify-content: flex-start;
  }

  .nav-row {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-main {
    margin-left: 0.55rem;
    flex: 0 0 auto;
    justify-content: flex-start;
    gap: 0;
  }

  .nav-links {
    margin-left: 0;
    margin-right: 0;
  }

  .nav-controls {
    margin-left: auto;
  }

  .hero-shell {
    align-items: start;
  }

  .hero-portrait-shell {
    align-self: start;
    margin-top: 1.6rem;
  }
}

@media (min-width: 768px) {
  .mentor-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .employer-layout {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

@media (min-width: 1024px) {
  .testimonial-title {
    font-size: 3.5rem;
  }
}
