/* =======================================================
   1. DESIGN TOKENS
======================================================= */
:root {
  --background: #f6f7fb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --text: #141720;
  --muted: #667085;
  --line: rgba(20, 23, 32, 0.10);
  --blue: #4361ee;
  --violet: #8f74ff;
  --cyan: #79d7f2;
  --green: #63d692;
  --soft-blue: #edf1ff;
  --shadow-sm: 0 16px 40px rgba(52, 62, 96, 0.07);
  --shadow-md: 0 24px 65px rgba(52, 62, 96, 0.10);
  --shadow-lg: 0 34px 100px rgba(48, 58, 95, 0.14);
  --max-width: 1180px;
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

/* =======================================================
   2. RESET & GLOBAL
======================================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(121, 215, 242, .22), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(143, 116, 255, .18), transparent 28%),
    var(--background);
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font: inherit; }
::selection { background: rgba(67, 97, 238, .18); }

.section-shell {
  width: min(calc(100% - 44px), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section { padding: 140px 0; }
.section-label {
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 14px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 700;
}
.section-heading h2,
.learn-fellow-copy h2,
.resume-card h2 {
  margin-top: 15px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -.06em;
}
.section-heading.narrow { max-width: 760px; }

/* =======================================================
   3. HEADER & NAVIGATION
======================================================= */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(calc(100% - 36px), 1160px);
  height: 68px;
  padding: 0 18px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 18px 60px rgba(52,62,96,.10);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 12px 28px rgba(67,97,238,.24);
}
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav a {
  padding: 11px 13px;
  border-radius: 14px;
  color: #50596b;
  font-size: .88rem;
  font-weight: 600;
  transition: .25s ease;
}
.desktop-nav a:hover {
  color: var(--text);
  background: rgba(67,97,238,.07);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border: 0;
  border-radius: 13px;
  background: rgba(67,97,238,.08);
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: .25s ease;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 82px;
  left: 10px;
  right: 10px;
  z-index: 99;
  padding: 12px;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 70px rgba(52,62,96,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(.98);
  transition: .25s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.mobile-menu a {
  padding: 15px 14px;
  border-radius: 14px;
  color: #454d5d;
  font-weight: 700;
}
.mobile-menu a:hover { color: var(--blue); background: var(--soft-blue); }

/* =======================================================
   4. BUTTONS
======================================================= */
.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 16px 34px rgba(67,97,238,.22);
}
.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.70);
}
.button-dark { margin-top: 28px; color: white; background: var(--text); }

/* =======================================================
   5. HERO
======================================================= */
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(67,97,238,.08), transparent 68%);
}
.hero {
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 72px;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20,23,32,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,23,32,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 10%, transparent 90%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  animation: float 9s ease-in-out infinite;
}
.orb-one {
  width: 290px; height: 290px; top: 12%; right: 2%;
  background: radial-gradient(circle at 35% 35%, rgba(121,215,242,.9), rgba(67,97,238,.12) 60%, transparent 72%);
}
.orb-two {
  width: 230px; height: 230px; left: 42%; bottom: 8%;
  background: radial-gradient(circle at 35% 35%, rgba(143,116,255,.44), transparent 70%);
  animation-delay: -4s;
}
.hero-content { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 10px 14px;
  border: 1px solid rgba(67,97,238,.12);
  border-radius: 999px;
  color: #596275;
  background: rgba(255,255,255,.76);
  font-size: .82rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.hero h1,
.coming-soon-card h1 {
  max-width: 800px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.8rem, 7.4vw, 7rem);
  line-height: .96;
  letter-spacing: -.075em;
}
.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-content > p,
.coming-soon-card > p {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* =======================================================
   6. PROFILE
======================================================= */
.hero-profile { position: relative; z-index: 2; }
.profile-frame {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 4 / 5;
  margin-left: auto;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 38px;
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow-lg);
}
.profile-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
}
.profile-badge {
  position: absolute;
  left: 34px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: 999px;
  color: #323846;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(31,39,72,.12);
  font-size: .8rem;
  font-weight: 700;
}
.profile-status {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(99,214,146,.85);
}
.profile-caption {
  width: min(100%, 430px);
  margin: 16px 0 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7b8494;
  font-size: .78rem;
}

/* =======================================================
   7. ABOUT & ACCOMPLISHMENTS
======================================================= */
.split-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
}
.section-copy p { color: var(--muted); font-size: 1.04rem; line-height: 1.85; }
.section-copy p + p { margin-top: 22px; }
.section-copy .lead { color: #2d3340; font-size: 1.35rem; line-height: 1.65; }

.accomplishment-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.accomplishment-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow-sm);
  transition: .3s var(--ease);
}
.accomplishment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-index { color: var(--blue); font-family: "Space Grotesk", sans-serif; font-size: .8rem; font-weight: 700; }
.accomplishment-card h3 {
  margin-top: 50px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -.035em;
}
.accomplishment-card p { margin-top: 14px; color: var(--muted); line-height: 1.7; }

/* =======================================================
   8. TIMELINE
======================================================= */
.timeline-section { padding: 40px 0 150px; }
.timeline-intro { margin-top: 18px; color: var(--muted); font-size: 1.04rem; line-height: 1.75; }
.dual-timeline { position: relative; height: 720px; margin-top: 70px; padding: 0 24px; }
.timeline-axis {
  position: absolute; left: 3%; right: 3%; top: 50%;
  height: 3px; transform: translateY(-50%); border-radius: 999px;
  background: linear-gradient(90deg, rgba(67,97,238,.18), var(--blue) 18%, var(--violet) 82%, rgba(143,116,255,.18));
}
.timeline-label {
  position: absolute; left: 0; padding: 8px 11px; border-radius: 999px;
  color: var(--blue); background: rgba(255,255,255,.82);
  font-family: "Space Grotesk", sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .14em;
}
.timeline-label-work { top: 2px; }
.timeline-label-education { bottom: 2px; color: var(--violet); }
.timeline-event { position: absolute; width: 18%; display: flex; align-items: center; flex-direction: column; }
.timeline-event.event-1 { left: 1%; }
.timeline-event.event-2 { left: 21%; }
.timeline-event.event-3 { left: 41%; }
.timeline-event.event-4 { left: 61%; }
.timeline-event.event-5 { left: 81%; }
.work-event { top: 62px; height: calc(50% - 62px); justify-content: flex-end; }
.education-event { top: 50%; height: calc(50% - 54px); justify-content: flex-start; }
.event-card {
  width: 100%; min-height: 178px; padding: 20px;
  border: 1px solid rgba(20,23,32,.09); border-radius: 21px;
  background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm);
}
.work-event .event-card { border-top: 3px solid rgba(67,97,238,.72); }
.education-event .event-card { border-bottom: 3px solid rgba(143,116,255,.72); }
.event-date {
  color: var(--blue); font-family: "Space Grotesk", sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.education-event .event-date { color: var(--violet); }
.event-card h3 { margin-top: 11px; font-family: "Space Grotesk", sans-serif; font-size: 1.05rem; line-height: 1.22; }
.event-card p { margin-top: 10px; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.event-stem { width: 2px; flex: 1; min-height: 28px; background: rgba(67,97,238,.28); }
.education-event .event-stem { background: rgba(143,116,255,.28); }
.event-dot {
  flex: 0 0 auto; width: 17px; height: 17px; border-radius: 50%;
  background: white; border: 4px solid var(--blue); box-shadow: 0 0 0 6px rgba(67,97,238,.1);
}
.education-event .event-dot { border-color: var(--violet); box-shadow: 0 0 0 6px rgba(143,116,255,.1); }

/* =======================================================
   9. LEARN FELLOW & RESUME CTA
======================================================= */
.learn-fellow-section { padding-top: 60px; }
.learn-fellow-card {
  min-height: 600px;
  padding: 56px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  border: 1px solid rgba(67,97,238,.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(121,215,242,.34), transparent 34%),
    linear-gradient(135deg, #eef2ff, #fbfcff);
  box-shadow: var(--shadow-lg);
}
.learn-fellow-copy p { margin-top: 18px; color: var(--muted); line-height: 1.75; }
.learn-fellow-visual { min-height: 430px; display: grid; place-items: center; }
.browser-window {
  width: 100%; max-width: 560px; overflow: hidden; border-radius: 24px;
  background: white; box-shadow: 0 34px 90px rgba(67,97,238,.18);
  transform: rotate(2deg); transition: .5s var(--ease);
}
.learn-fellow-card:hover .browser-window { transform: rotate(0) translateY(-5px); }
.browser-bar { height: 48px; padding: 0 16px; display: flex; align-items: center; gap: 7px; background: #f2f4f8; }
.browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: #c7ccd6; }
.browser-content { padding: 38px; }
.mock-nav { width: 42%; height: 11px; margin-bottom: 46px; border-radius: 10px; background: #dfe5ef; }
.mock-title { width: 82%; height: 22px; margin-bottom: 12px; border-radius: 8px; background: linear-gradient(90deg, var(--blue), var(--violet)); }
.mock-title.short { width: 58%; opacity: .28; }
.mock-button { width: 110px; height: 34px; margin: 24px 0 38px; border-radius: 10px; background: #1a2540; }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock-grid i { height: 100px; border-radius: 16px; background: #eff3f8; }

.resume-section { padding-bottom: 120px; }
.resume-card {
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow-md);
}
.resume-card h2 { font-size: clamp(2.5rem, 4.5vw, 4.5rem); }
.resume-card p { max-width: 650px; margin-top: 16px; color: var(--muted); line-height: 1.7; }

/* =======================================================
   10. COMING SOON PAGE
======================================================= */
.coming-soon-hero {
  min-height: 90vh;
  padding-top: 150px;
  padding-bottom: 80px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.coming-soon-card {
  max-width: 850px;
  padding: 64px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

/* =======================================================
   11. FOOTER
======================================================= */
.site-footer { margin-top: 120px; padding: 80px 0 35px; border-top: 1px solid rgba(0,0,0,.08); }
.footer-top {
  width: min(1150px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}
.footer-brand { max-width: 420px; }
.footer-brand p { margin-top: 18px; color: var(--muted); line-height: 1.8; }
.footer-links, .footer-social { display: flex; flex-direction: column; }
.footer-links h4, .footer-social h4 { margin-bottom: 18px; font-family: "Space Grotesk", sans-serif; }
.footer-links a, .footer-social a { margin-bottom: 12px; color: var(--muted); transition: .25s ease; }
.footer-links a:hover, .footer-social a:hover { color: var(--blue); transform: translateX(4px); }
.footer-bottom {
  width: min(1150px, calc(100% - 40px));
  margin: 65px auto 0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,.08);
  color: #98a2b3;
  font-size: .9rem;
}

/* =======================================================
   12. ANIMATIONS
======================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: calc(var(--delay, 0) * 1ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

/* =======================================================
   13. TABLET
======================================================= */
@media (max-width: 980px) {
  .hero, .split-layout, .learn-fellow-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; gap: 48px; }
  .hero-content { max-width: 800px; }
  .profile-frame { width: min(100%, 520px); margin-inline: auto; aspect-ratio: 5 / 4; }
  .profile-caption { width: min(100%, 520px); margin-inline: auto; }
  .split-layout { gap: 38px; }
  .learn-fellow-card { gap: 34px; }
  .resume-card { align-items: flex-start; flex-direction: column; }

  .dual-timeline {
    height: auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .timeline-axis, .timeline-label, .event-stem, .event-dot { display: none; }
  .timeline-event,
  .timeline-event.event-1,
  .timeline-event.event-2,
  .timeline-event.event-3,
  .timeline-event.event-4,
  .timeline-event.event-5,
  .work-event,
  .education-event {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    display: block;
  }
  .timeline-event::before {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-family: "Space Grotesk", sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
  }
  .work-event::before { content: "WORK"; }
  .education-event::before { content: "EDUCATION"; color: var(--violet); }
  .event-card { min-height: 170px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =======================================================
   14. MOBILE
======================================================= */
@media (max-width: 720px) {
  .cursor-glow, .hero-orb { display: none; }
  .section-shell { width: calc(100% - 30px); }
  .section { padding: 82px 0; }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 62px;
    padding: 0 9px 0 11px;
    border-radius: 19px;
  }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { display: flex; }
  .brand-mark { width: 40px; height: 40px; border-radius: 13px; }
  .brand-name { font-size: .9rem; }

  .hero {
    padding-top: 112px;
    padding-bottom: 68px;
    gap: 38px;
  }
  .hero-grid { background-size: 36px 36px; opacity: .65; }
  .eyebrow { margin-bottom: 20px; padding: 9px 12px; font-size: .72rem; line-height: 1.4; }
  .hero h1, .coming-soon-card h1 { font-size: clamp(3rem, 14vw, 4.25rem); line-height: .99; }
  .hero-content > p, .coming-soon-card > p { margin-top: 21px; font-size: 1rem; line-height: 1.65; }
  .hero-actions { margin-top: 27px; gap: 10px; }
  .button { width: 100%; min-height: 51px; }

  .profile-frame {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 5;
    padding: 10px;
    border-radius: 29px;
  }
  .profile-frame img { border-radius: 22px; }
  .profile-badge { left: 23px; bottom: 23px; padding: 9px 12px; font-size: .74rem; }
  .profile-caption { width: 100%; max-width: 480px; margin-top: 12px; flex-direction: column; gap: 4px; font-size: .73rem; }

  .section-number { width: 40px; height: 40px; margin-bottom: 25px; }
  .section-heading h2, .learn-fellow-copy h2, .resume-card h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    line-height: 1.04;
  }
  .section-copy .lead { font-size: 1.13rem; line-height: 1.58; }
  .section-copy p { font-size: .98rem; line-height: 1.72; }

  .accomplishment-grid { margin-top: 38px; grid-template-columns: 1fr; gap: 14px; }
  .accomplishment-card { min-height: 0; padding: 24px; border-radius: 21px; }
  .accomplishment-card h3 { margin-top: 30px; font-size: 1.34rem; }

  .timeline-section { padding: 20px 0 82px; }
  .dual-timeline { margin-top: 42px; grid-template-columns: 1fr; gap: 15px; }
  .event-card { min-height: 0; padding: 21px; border-radius: 19px; }

  .learn-fellow-section { padding-top: 20px; }
  .learn-fellow-card { min-height: 0; padding: 29px 20px; gap: 28px; border-radius: 27px; }
  .learn-fellow-visual { min-height: 0; }
  .browser-window { transform: none; border-radius: 18px; }
  .browser-content { padding: 25px; }
  .mock-grid i { height: 70px; }

  .resume-section { padding-bottom: 82px; }
  .resume-card { padding: 29px 22px; gap: 26px; border-radius: 24px; }

  .coming-soon-hero { min-height: auto; padding-top: 112px; padding-bottom: 40px; }
  .coming-soon-card { padding: 38px 24px; border-radius: 26px; }

  .site-footer { margin-top: 80px; padding: 58px 0 28px; }
  .footer-top { width: calc(100% - 32px); grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    width: calc(100% - 32px);
    margin-top: 42px;
    padding-top: 20px;
    flex-direction: column;
    gap: 8px;
    font-size: .8rem;
  }
}

/* =======================================================
   15. SMALL PHONES
======================================================= */
@media (max-width: 430px) {
  .section-shell { width: calc(100% - 24px); }
  .site-header { width: calc(100% - 16px); }
  .brand { gap: 9px; }
  .brand-name { font-size: .83rem; }
  .hero h1, .coming-soon-card h1 { font-size: clamp(2.7rem, 13.5vw, 3.45rem); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* =======================================================
   16. ACCESSIBILITY
======================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
