:root {
  --sf: 'Space Grotesk', sans-serif;
  --bf: 'Inter', sans-serif;
  --deep-sea: #0a1628;
  --purple: #8b5cf6;
  --purple-tint: #a78bfa; /* WCAG-compliant accent tint per Cross-Page Spec §1 */
  --blue: #00adff;
  --mint: #00d9c0;
  --white: #ffffff;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --brand-grad: linear-gradient(90deg, #8b5cf6 0%, #00adff 50%, #00d9c0 100%);
  --stat-grad: linear-gradient(135deg, #8b5cf6 0%, #8b5cf6 30%, #00adff 60%, #00d9c0 100%);

  /* HubSpot dark theme (included for cross-page consistency, no form on this page) */
  --hsf-global__font-family: 'Inter', sans-serif;
  --hsf-global__font-size: 14px;
  --hsf-global__color: #d1d5db;
  --hsf-global-error__color: #f87171;
  --hsf-background__background-color: transparent;
  --hsf-background__border-color: transparent;
  --hsf-background__border-radius: 0px;
  --hsf-background__padding: 0px;
  --hsf-field-input__background-color: rgba(255,255,255,0.1);
  --hsf-field-input__border-color: rgba(255,255,255,0.2);
  --hsf-field-input__border-radius: 8px;
  --hsf-field-input__color: #ffffff;
  --hsf-field-input__font-size: 16px;
  --hsf-field-input__placeholder-color: #9ca3af;
  --hsf-field-label__color: #d1d5db;
  --hsf-field-label__font-size: 14px;
  --hsf-button__background-color: rgba(139,92,246,0.8);
  --hsf-button__color: #ffffff;
  --hsf-button__border-color: rgba(139,92,246,0.5);
  --hsf-button__border-radius: 8px;
  --hsf-button__font-family: 'Inter', sans-serif;
  --hsf-button__font-size: 14px;
  --hsf-button__font-weight: 500;
  --hsf-button--hover__background-color: #8b5cf6;
  --hsf-button--hover__color: #ffffff;
  --hsf-button--hover__border-color: #8b5cf6;
  --hsf-legal-consent__color: #9ca3af;
  --hsf-legal-consent__font-size: 12px;
  --hsf-rich-text__color: #9ca3af;
  --hsf-rich-text__font-size: 12px;
  --hsf-row__vertical-spacing: 16px;
  --hsf-module__vertical-spacing: 12px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--bf);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-300);
  background: linear-gradient(135deg, #0a1628 0%, #0d1a2d 50%, #0a1628 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
.hero-content{
    min-height:100vh;display:flex;align-items:center;padding-top:5rem;padding-bottom:6rem;
}
/* ===== TAILWIND UTILITY CLASSES ===== */
.relative { position: relative; }
.z-10 { z-index: 10; }
.text-center { text-align: center; }
.text-white { color: #ffffff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.leading-relaxed { line-height: 1.625; }
.max-w-7xl { max-width: 80rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.inline-flex { display: inline-flex; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-lg { border-radius: 0.5rem; }
.h-full { height: 100%; }

/* ===== GRADIENT TEXT ===== */
.grad-text {
  color: #8b5cf6; /* WCAG fallback */
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== RESPONSIVE TEXT UPSCALES (md: = 768px+) ===== */
@media (min-width: 768px) {
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
}

/* ===== AMBIENT BACKGROUND LAYERS ===== */
.bg-ambient-top {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 70% 20%, rgba(139,92,246,0.06) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}
.bg-ambient-bottom {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 30% 70%, rgba(139,92,246,0.04) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}

/* ===== NEURAL CANVAS ===== */
#neuralCanvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 1rem; left: 1rem; z-index: 100;
  width: auto; height: auto; padding: 0.5rem 1rem; margin: 0;
  overflow: visible; clip: auto; white-space: normal;
  background: var(--purple); color: white; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
}

/* ===== FOCUS STATES ===== */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== PRIMARY BUTTON ===== */
.btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; min-height: 44px; border-radius: 8px;
  font-family: var(--bf); font-size: 0.875rem; font-weight: 500;
  color: white; background: rgba(139,92,246,0.8);
  border: 1px solid rgba(139,92,246,0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all 0.3s; cursor: pointer;
  text-decoration:none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139,92,246,0.3);
}
.btn-primary .btn-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #8b5cf6, #00adff);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-primary:hover .btn-fill { transform: translateX(0); }
.btn-primary .btn-text,
.btn-primary .btn-arrow { position: relative; z-index: 1; }
.btn-primary .btn-arrow { transition: transform 0.3s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* ===== SECONDARY BUTTON ===== */
.btn-secondary {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; min-height: 44px; border-radius: 8px;
  font-family: var(--bf); font-size: 0.875rem; font-weight: 500;
  color: white; background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  overflow: visible;
  transition: all 0.3s; cursor: pointer;
  border: none;
  text-decoration:none;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-secondary .btn-border-static {
  position: absolute; inset: 0; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: opacity 0.3s; pointer-events: none;
}
.btn-secondary:hover .btn-border-static { opacity: 0; }
.btn-secondary .border-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  overflow: visible;
}
.btn-secondary .border-svg rect {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 0.6s ease-out;
}
.btn-secondary:hover .border-svg rect { stroke-dashoffset: 0; }
.btn-secondary .btn-glow {
  position: absolute; inset: 0; border-radius: 8px;
  box-shadow: 0 0 20px rgba(139,92,246,0.3);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.btn-secondary:hover .btn-glow { opacity: 1; }
.btn-secondary .btn-text,
.btn-secondary .btn-arrow { position: relative; z-index: 1; }
.btn-secondary .btn-arrow { transition: transform 0.3s; }
.btn-secondary:hover .btn-arrow { transform: translateX(4px); }

/* ===== GLASS CARD ===== */
.glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.glass:hover {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(24px) saturate(1.1);
  border-color: rgba(139,92,246,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 20px rgba(139,92,246,0.08);
  transform: translateY(-2px);
}
.glass .glass-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.glass:hover .glass-glow { opacity: 1; }
.glass .glass-inner { position: relative; z-index: 1; }

/* ===== CONTENT OPTION CARD ===== */
.content-option-card {
  border-radius: 0.75rem; display: flex; flex-direction: column; height: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.content-option-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(139,92,246,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 20px rgba(139,92,246,0.08);
  transform: translateY(-2px);
}
.content-option-card .card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.content-option-card:hover .card-glow { opacity: 1; }
.content-option-card .card-img-area {
  position: relative; height: 200px;
  background: linear-gradient(135deg, rgba(139,92,246,0.08) 0%, rgba(0,173,255,0.06) 50%, rgba(0,217,192,0.04) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.content-option-card .card-img-area::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 70%; height: 70%;
  background: radial-gradient(ellipse at center,
    rgba(139,92,246,0.18) 0%, rgba(0,173,255,0.08) 50%, transparent 75%);
  border-radius: 50%; filter: blur(25px);
  pointer-events: none; z-index: 0;
  transition: opacity 0.5s;
}
.content-option-card:hover .card-img-area::before { opacity: 1.3; }
.content-option-card .card-img-area img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
  opacity: 0.85; position: relative; z-index: 1;
}
.content-option-card:hover .card-img-area img { opacity: 1; transform: scale(1.03); }
.content-option-card .card-number {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(10,22,40,0.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(139,92,246,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.content-option-card .card-number span {
  font-size: 1.5rem; font-weight: 700;
  font-family: var(--sf);
  background: linear-gradient(135deg, #8b5cf6, #00adff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  transition: filter 0.5s;
}
.content-option-card:hover .card-number span {
  filter: drop-shadow(0 0 6px rgba(139,92,246,1)) drop-shadow(0 0 12px rgba(139,92,246,0.8)) drop-shadow(0 0 20px rgba(0,173,255,0.6));
}
.content-option-card .card-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; flex: 1;
  padding: 1.5rem;
}
.content-option-card .card-link {
  color: var(--blue); font-size: 0.875rem; font-weight: 500;
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0.5rem 0;
  text-decoration:none;
}
.content-option-card .card-link .link-underline {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.content-option-card .card-link:hover .link-underline { transform: scaleX(1); }
.content-option-card .card-link .link-arrow {
  margin-left: 4px; transition: transform 0.3s;
}
.content-option-card .card-link:hover .link-arrow { transform: translateX(4px); }
@keyframes chevronBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.scroll-chevron-wrap { animation: chevronBounce 2s ease-in-out infinite; }
.scroll-chevron-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  margin: 0 auto; background: none; border: none; cursor: pointer;
  padding-bottom: 2rem; transition: opacity 0.3s;
}

/* ===== PARTNER CARD ===== */
.partner-card {
  border-radius: 0.75rem; padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden; height: 100%;
}
.partner-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(139,92,246,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 20px rgba(139,92,246,0.08);
  transform: translateY(-2px);
}
.partner-card .card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.partner-card:hover .card-glow { opacity: 1; }
.partner-card .partner-inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.partner-card .partner-logo {
  margin-bottom: 1.25rem; height: 52px; display: flex; align-items: center;
}
.partner-card .partner-logo img {
  max-height: 42px; max-width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s;
}
.partner-card .partner-logo img.no-invert {
  filter: none;
}
.partner-card:hover .partner-logo img { opacity: 1; }

/* ===== WHY CARD ===== */
.why-card {
  padding: 1.75rem 1.5rem; border-radius: 0.75rem; text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(139,92,246,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 20px rgba(139,92,246,0.08);
  transform: translateY(-2px);
}
.why-card .card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.why-card:hover .card-glow { opacity: 1; }
.why-card .why-inner { position: relative; z-index: 1; }
.why-card .icon-wrap {
  margin-bottom: 1rem; width: 5.5rem; height: 5.5rem;
  border-radius: 1rem; display: flex; align-items: center; justify-content: center;
  margin-left: auto; margin-right: auto;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(0,173,255,0.2));
}
.why-card .icon-mask {
  width: 3rem; height: 3rem;
  background: linear-gradient(135deg, #8b5cf6, #00adff, #00d9c0);
  -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;
  mask-size: contain; mask-repeat: no-repeat; mask-position: center;
}

/* ===== STAT COUNTER ===== */
.stat-item { text-align: center; }
.stat-value {
  font-size: 2.25rem; font-weight: 700;
  font-family: var(--sf);
  color: #8b5cf6; /* WCAG fallback */
  background: var(--stat-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(139,92,246,0.6)) drop-shadow(0 0 24px rgba(139,92,246,0.4));
}
@media (min-width: 768px) {
  .stat-value { font-size: 3rem; }
}

/* ===== FREE COURSES CTA ===== */
.free-courses-wrap {
  position: relative; border-radius: 1rem;
  padding: 2.5rem;
  background: rgba(13,26,45,0.8);
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.free-courses-wrap:hover { transform: translateY(-2px); }
.free-courses-border {
  position: absolute; inset: 0; border-radius: 1rem; padding: 1px;
  background: linear-gradient(135deg, #8b5cf6 0%, #00adff 50%, #00d9c0 100%);
  opacity: 0.6; transition: opacity 0.5s; pointer-events: none;
}
.free-courses-wrap:hover .free-courses-border { opacity: 0.75; }
.free-courses-border-inner {
  width: 100%; height: 100%; border-radius: calc(1rem - 1px);
  background: rgba(13,26,45,0.95);
}
.free-courses-glow {
  position: absolute; inset: 0; border-radius: 1rem;
  box-shadow: 0 0 30px rgba(139,92,246,0.12);
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.free-courses-wrap:hover .free-courses-glow { opacity: 1; }
.free-courses-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center;
}
.free-courses-img {
  width: 100%; border-radius: 12px; overflow: hidden;
}
.free-courses-img img {
  width: 100%; height: auto; border-radius: 12px;
}

/* ===== GRID LAYOUTS ===== */
.hero-grid {
  display: grid; grid-template-columns: 2fr 3fr;
  gap: 3rem; align-items: center;
}
.hero-img-wrap { position: relative; }
.hero-img-wrap img {
  width: 100%; object-fit: contain; display: block;
  position: relative; z-index: 1;
}
.hero-img-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at center,
    rgba(139,92,246,0.35) 0%, rgba(0,173,255,0.2) 35%, rgba(139,92,246,0.08) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none; z-index: 0;
}
.content-options-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.partner-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .px-6 { padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (max-width: 900px) {
  .content-options-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .py-20 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
    .hero-content{
    min-height:80vh;padding-top:2rem;padding-bottom:6rem;
}
  .text-5xl { font-size: 2.25rem; line-height: 2.5rem; }
  .text-4xl { font-size: 1.875rem; line-height: 2.25rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-chevron { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .free-courses-grid { grid-template-columns: 1fr; text-align: center; }
  .free-courses-wrap { padding: 1.5rem; }
}
@media (max-width: 600px) {
  .partner-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .stat-value { font-size: 1.875rem; }
  .content-options-grid { grid-template-columns: 1fr; }
}

/* ===== HERO CHEVRON ===== */
.hero-chevron {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    text-decoration: none;
    padding: 0.5rem 1rem;
    min-height: 44px;
    transition: color 0.3s;
    animation: chevron-float 2.5s ease-in-out infinite;
    background: transparent;
    border: 0;
}
.hero-chevron:hover { color: #ffffff; }
.hero-chevron-text {
  font-family: var(--sf); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.05em;
}
@keyframes chevron-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}