/* ══════════════════════════════════════════════════════════════════
   SOUTH ARM LINKS — styles.css
   Design System: "Architectural Authority" (DESIGN.md)
   No build tools required. Paste-and-go.
   ══════════════════════════════════════════════════════════════════ */

/* ─── Design tokens ─────────────────────────────────────────────── */
:root {
  /* Brand colors */
  --primary:           #051125;
  --primary-container: #1B263B;
  --primary-fixed-dim: #BBC6E2;
  --secondary:         #47607E;
  --sec-container:     #C2DCFF;

  /* Surfaces — layered like vellum (DESIGN.md §2 "No-Line Rule") */
  --surface:      #F9F9FF;
  --surface-low:  #F1F3FF;
  --surface-w:    #FFFFFF;

  /* Text */
  --on-bg:     #101B30;
  --on-surf:   #101B30;
  --on-muted:  #45474D;
  --outline:   #75777D;
  --outline-v: #C5C6CD;

  /* Accents */
  --gold:      #C49A2C;
  --gold-lt:   #E8C96A;
  --malachite: #17896A;
  --action:    #3F4D7E;

  /* Social */
  --li:  #0077B5;
  --ig:  #E1306C;
  --yt:  #E03026;
  --x:   #14171A;

  /* Glass — 70% white + blur (DESIGN.md §2) */
  --glass:       rgba(255, 255, 255, 0.70);
  --glass-light: rgba(255, 255, 255, 0.60);
  --glass-dark:  rgba(27, 38, 59, 0.85);
  --glass-blur:  20px;
  --glass-bdr:   rgba(197, 198, 205, 0.20);

  /* Ambient shadows — zero offset (DESIGN.md §4) */
  --sh-sm: 0 0 20px rgba(16,27,48,.05), 0 2px 8px  rgba(16,27,48,.04);
  --sh-md: 0 0 40px rgba(16,27,48,.07), 0 4px 16px rgba(16,27,48,.05);
  --sh-lg: 0 0 60px rgba(16,27,48,.09), 0 8px 32px rgba(16,27,48,.06);

  /* Radii */
  --r-sm:   8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full: 9999px;

  /* Transitions */
  --t: all .2s cubic-bezier(.22,1,.36,1);
  --t-spring: all .32s cubic-bezier(.34,1.56,.64,1);

  /* Fonts */
  --f-head: 'Manrope', 'Segoe UI', Arial, sans-serif;
  --f-disp: 'DM Serif Display', Georgia, serif;
  --f-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ─── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

/* ─── Body ───────────────────────────────────────────────────────── */
body {
  font-family: var(--f-body);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
  color: var(--on-bg);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Material Symbols helper ────────────────────────────────────── */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-size: inherit;
  line-height: 1;
  letter-spacing: normal;
  vertical-align: middle;
  font-style: normal;
  font-weight: normal;
  user-select: none;
  display: inline-block;
}

/* ══════════════════════════════════════════════════════════════════
   TOP NAV — sticky glass
   ══════════════════════════════════════════════════════════════════ */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-bdr);
  box-shadow: var(--sh-sm);
  transition: var(--t);
}
.topnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1050px;
  margin: 0 auto;
  padding: 21px 35px;
}
.topnav__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ── Nav logo: circle with contain so rectangular logo fits ──────── */
.topnav__logo-wrap {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-w);
  border: 1.5px solid rgba(197,198,205,.30);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
}
.topnav__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.topnav__name {
  font-family: var(--f-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--on-bg);
  letter-spacing: -0.02em;
}
.topnav__share {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  background: transparent;
  border: none;
  border-radius: var(--r-md);
  color: var(--on-bg);
  cursor: pointer;
  transition: var(--t);
  font-size: 38px;
}
.topnav__share:hover { background: rgba(16,27,48,.07); }

/* ══════════════════════════════════════════════════════════════════
   HERO TOP — full-bleed with profile
   ══════════════════════════════════════════════════════════════════ */
.hero-top {
  position: relative;
  min-height: 805px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  animation: fadeIn .6s ease both;
}
.hero-top__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-top__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: saturate(1.15) brightness(.65);
}
.hero-top__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%,  rgba(196,154,44,.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 78%,  rgba(23,137,106,.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 5% 80%,   rgba(225,48,108,.08) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(5,17,37,.08) 0%, rgba(5,17,37,.55) 100%);
}
.hero-top__body {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 0 20px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp .7s cubic-bezier(.22,1,.36,1) .1s both;
}

/* ── Profile ring — BIGGER for rectangular logos ─────────────────
   Key fix: 148px container, object-fit:contain + brand bg padding
   so the full rectangular logo is always visible inside the circle.
   ──────────────────────────────────────────────────────────────── */
.profile-ring {
  position: relative;
  width: 259px;
  height: 259px;
  flex-shrink: 0;
  margin-bottom: 32px;
}

/* Animated conic gradient ring */
.profile-ring__track {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: conic-gradient(
    var(--gold)      0deg,
    var(--ig)       80deg,
    var(--action)  190deg,
    var(--malachite) 300deg,
    var(--gold)    360deg
  );
  animation: ring-spin 9s linear infinite;
}

/* Blurred glow behind ring */
.profile-ring__glow {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: conic-gradient(
    var(--gold)      0deg,
    var(--ig)       80deg,
    var(--action)  190deg,
    var(--malachite) 300deg,
    var(--gold)    360deg
  );
  filter: blur(21px);
  opacity: .40;
  animation: ring-spin 9s linear infinite;
}

/* Photo circle: brand bg + contain so rectangular logo shows whole */
.profile-ring__photo {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-w);
  border: 3px solid rgba(255,255,255,.60);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;         /* breathing room so logo doesn't touch edge */
}
.profile-ring__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* show entire logo without cropping */
  display: block;
  filter: brightness(1.05);
}

@keyframes ring-spin { to { transform: rotate(360deg); } }

.hero-top__name {
  font-family: var(--f-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--on-bg);
  letter-spacing: -0.03em;
  text-shadow: 0 2px 16px rgba(255,255,255,.5);
  margin-bottom: 7px;
}
.hero-top__tag {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 14px;
}
.hero-top__desc {
  font-size: 23px;
  color: #fff;
  font-weight: 500;
  max-width: 473px;
  line-height: 1.65;
  margin-bottom: 32px;
  background: rgba(5, 17, 37, .85);
  padding: 14px 28px;
  border-radius: var(--r-full);
  display: inline-block;
}
.hero-top__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  list-style: none;
}
.hero-top__pills li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 23px;
  background: rgba(255,255,255,.60);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.40);
  border-radius: var(--r-full);
  font-size: 20px;
  font-weight: 500;
  color: var(--on-bg);
}
.hero-top__pills li .material-symbols-outlined { font-size: 24px; opacity: .75; }

/* ══════════════════════════════════════════════════════════════════
   MAIN CONTENT COLUMN
   ══════════════════════════════════════════════════════════════════ */
.main { position: relative; z-index: 1; }

.wrap {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 28px 84px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

/* ── Section glass card ──────────────────────────────────────────── */
.section {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--r-xl);
  padding: 11px 24px 24px;
  box-shadow: var(--sh-md);
}
.section__eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--on-muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: 21px 7px 18px;
}
.section__eyebrow .material-symbols-outlined { font-size: 24px; }

/* ── Link list — white-space dividers only (no lines) ────────────── */
.link-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ══════════════════════════════════════════════════════════════════
   LINK ITEM — glass button
   ══════════════════════════════════════════════════════════════════ */
.link-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 24px 24px 21px;
  border-radius: var(--r-lg);
  background: var(--glass-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(197,198,205,.18);
  text-decoration: none;
  color: var(--on-bg);
  transition: var(--t);
  box-shadow: var(--sh-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Left accent bar — per-item color via CSS custom property */
.link-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--accent, var(--secondary));
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.link-item:hover { background: rgba(255,255,255,.82); border-color: rgba(197,198,205,.30); box-shadow: var(--sh-md); transform: translateY(-2px); }
.link-item:hover::before { transform: scaleY(1); }
.link-item:hover .link-item__chevron { transform: translateX(4px); opacity: 1; }
.link-item:hover .link-item__icon    { transform: scale(1.08); }
.link-item:active { transform: translateY(0); box-shadow: var(--sh-sm); }

/* Accent colors propagated via :has() */
.link-item:has(.link-item__icon--li)       { --accent: var(--li); }
.link-item:has(.link-item__icon--ig)       { --accent: var(--ig); }
.link-item:has(.link-item__icon--yt)       { --accent: var(--yt); }
.link-item:has(.link-item__icon--x)        { --accent: #45474D; }
.link-item:has(.link-item__icon--platform) { --accent: var(--action); }
.link-item:has(.link-item__icon--edu)      { --accent: var(--gold); }
.link-item:has(.link-item__icon--conf)     { --accent: var(--malachite); }
.link-item:has(.link-item__icon--srv)      { --accent: var(--secondary); }
.link-item:has(.link-item__icon--mail)     { --accent: var(--ig); }

/* Primary CTA — dark glass (LinkedIn) */
.link-item--cta {
  background: var(--glass-dark);
  color: #fff;
  border-color: rgba(255,255,255,.10);
  --accent: var(--gold);
}
.link-item--cta strong { color: #fff; }
.link-item--cta .link-item__text span { color: var(--primary-fixed-dim); }
.link-item--cta .link-item__chevron   { color: var(--primary-fixed-dim); }
.link-item--cta:hover { background: rgba(27,38,59,.93); border-color: rgba(196,154,44,.30); box-shadow: var(--sh-lg); }

/* Icon wrapper */
.link-item__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.link-item__icon svg,
.link-item__icon .material-symbols-outlined { width: 38px; height: 38px; font-size: 38px; }
.link-item__icon svg { fill: currentColor; display: block; }

.link-item__icon--li       { background: rgba(0,119,181,.12);   color: var(--li); }
.link-item__icon--ig       { background: rgba(225,48,108,.12);  color: var(--ig); }
.link-item__icon--yt       { background: rgba(224,48,38,.12);   color: var(--yt); }
.link-item__icon--x        { background: rgba(20,23,26,.08);    color: #2c2e33;   }
.link-item__icon--platform { background: rgba(63,77,126,.12);   color: var(--action); }
.link-item__icon--edu      { background: rgba(196,154,44,.14);  color: #9c7a22; }
.link-item__icon--conf     { background: rgba(23,137,106,.12);  color: var(--malachite); }
.link-item__icon--srv      { background: rgba(71,96,126,.12);   color: var(--secondary); }
.link-item__icon--mail     { background: rgba(225,48,108,.10);  color: #c01e52; }

/* Text content */
.link-item__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.link-item__text strong {
  font-family: var(--f-head);
  font-size: 25px;
  font-weight: 700;
  color: var(--on-bg);
  letter-spacing: -0.015em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.link-item--cta .link-item__text strong { color: #fff; }

.link-item__text span {
  font-size: 21px;
  color: var(--on-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Arrow / chevron */
.link-item__chevron {
  font-size: 35px;
  color: var(--outline);
  flex-shrink: 0;
  opacity: .55;
  transition: transform .2s ease, opacity .2s;
}

/* ══════════════════════════════════════════════════════════════════
   MID GEOLOGICAL IMAGE
   ══════════════════════════════════════════════════════════════════ */
.img-break {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 324px;
  box-shadow: var(--sh-md);
}
.img-break__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(1.2) brightness(.72);
  transition: transform .6s ease;
}
.img-break:hover .img-break__img { transform: scale(1.03); }
.img-break__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 18px 14px;
  background: linear-gradient(to top, rgba(5,17,37,.82) 0%, transparent 100%);
  font-size: 21px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 11px;
}
.img-break__caption .material-symbols-outlined { font-size: 26px; color: var(--gold-lt); }

/* ══════════════════════════════════════════════════════════════════
   TAGLINE CARD
   ══════════════════════════════════════════════════════════════════ */
.tagline-card {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--r-xl);
  padding: 56px 49px;
  text-align: center;
  box-shadow: var(--sh-md);
}
.tagline-card__eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--on-muted);
  text-transform: uppercase;
  letter-spacing: .20em;
  margin-bottom: 18px;
}
.tagline-card__headline {
  font-family: var(--f-head);
  font-size: 46px;
  font-weight: 800;
  color: var(--on-bg);
  letter-spacing: -0.025em;
  line-height: 1.22;
  margin-bottom: 24px;
}
.tagline-card__headline em {
  font-style: italic;
  font-family: var(--f-disp);
  font-weight: 400;
  color: var(--secondary);
}
.tagline-card__body {
  font-size: 24px;
  color: var(--on-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════════
   HERO BOTTOM — full-bleed
   ══════════════════════════════════════════════════════════════════ */
.hero-bottom {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 7px;
}
.hero-bottom__media { position: absolute; inset: 0; z-index: 0; }
.hero-bottom__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(.44) saturate(1.1);
  display: block;
}
.hero-bottom__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5,17,37,.55) 0%, rgba(27,38,59,.45) 100%),
    linear-gradient(to bottom, transparent 25%, rgba(5,17,37,.62) 100%);
}
.hero-bottom__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 91px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}
.hero-bottom__quote {
  font-family: var(--f-disp);
  font-size: clamp(35px, 5vw, 49px);
  font-style: italic;
  color: #fff;
  line-height: 1.45;
  max-width: 805px;
  text-shadow: 0 2px 12px rgba(5,17,37,.5);
}
.hero-bottom__quote::before { content: '\201C'; }
.hero-bottom__quote::after  { content: '\201D'; }

.hero-bottom__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 24px 49px;
  /* Signature gradient (DESIGN.md §2) */
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
  color: #fff;
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 700;
  border-radius: var(--r-full);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--sh-md);
  transition: var(--t);
  letter-spacing: -0.01em;
}
.hero-bottom__cta .material-symbols-outlined { font-size: 32px; transition: transform .2s ease; }
.hero-bottom__cta:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.hero-bottom__cta:hover .material-symbols-outlined { transform: translateX(7px); }
.hero-bottom__cta:active { transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid var(--glass-bdr);
}
.footer__inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 52px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  text-align: center;
}
.footer__logo-wrap { display: flex; align-items: center; gap: 14px; }

/* Footer logo: same fix as nav — contain inside circle */
.footer__logo-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-w);
  border: 1px solid rgba(197,198,205,.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
}
.footer__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer__brand {
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--on-bg);
  letter-spacing: -0.02em;
}
.footer__copy { font-size: 21px; color: var(--on-muted); }
.footer__links { display: flex; align-items: center; gap: 35px; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: 21px; color: var(--on-muted); text-decoration: none; font-weight: 500; transition: color .15s; }
.footer__links a:hover { color: var(--on-bg); }

/* ══════════════════════════════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 49px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: rgba(27,38,59,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  padding: 21px 38px;
  border-radius: var(--r-md);
  font-family: var(--f-body);
  font-size: 23px;
  font-weight: 500;
  z-index: 9999;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--sh-lg);
  opacity: 0;
  transition: opacity .25s ease, transform .25s cubic-bezier(.22,1,.36,1);
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════════ */
@keyframes fadeIn    { from { opacity: 0; }               to { opacity: 1; } }
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Scroll-reveal: initial hidden state, revealed by IntersectionObserver */
.js-animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1),
              transform .55s cubic-bezier(.22,1,.36,1);
}
.js-animate.is-visible { opacity: 1; transform: translateY(0); }

/* Staggered link items inside revealed sections */
.js-animate.is-visible .link-item {
  opacity: 0;
  animation: fadeInUp .45s cubic-bezier(.22,1,.36,1) forwards;
}
.js-animate.is-visible .link-item:nth-child(1) { animation-delay: .06s; }
.js-animate.is-visible .link-item:nth-child(2) { animation-delay: .12s; }
.js-animate.is-visible .link-item:nth-child(3) { animation-delay: .18s; }
.js-animate.is-visible .link-item:nth-child(4) { animation-delay: .24s; }
.js-animate.is-visible .link-item:nth-child(5) { animation-delay: .30s; }
.js-animate.is-visible .link-item:nth-child(6) { animation-delay: .36s; }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */

/* ── Mobile (up to 480px) ────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-top  { min-height: 700px; }
  .hero-top__name { font-size: 46px; }
  .hero-top__tag { font-size: 16px; }
  .hero-top__desc { font-size: 18px; padding: 12px 20px; }
  .hero-top__pills li { font-size: 16px; padding: 9px 18px; }

  /* Keep ring a decent size on mobile */
  .profile-ring { width: 217px; height: 217px; }
  .profile-ring__photo { padding: 14px; }

  .topnav__inner { padding: 14px 18px; }
  .topnav__logo-wrap { width: 52px; height: 52px; padding: 5px; }
  .topnav__name { font-size: 22px; }
  .topnav__share { width: 52px; height: 52px; font-size: 30px; }

  .wrap { padding: 0 18px 60px; }

  .section { padding: 9px 18px 18px; }
  .section__eyebrow { font-size: 14px; padding: 16px 5px 14px; }
  .section__eyebrow .material-symbols-outlined { font-size: 20px; }

  .link-item { padding: 18px; gap: 16px; }
  .link-item__icon { width: 64px; height: 64px; }
  .link-item__icon svg,
  .link-item__icon .material-symbols-outlined { width: 30px; height: 30px; font-size: 30px; }
  .link-item__text strong { font-size: 20px; }
  .link-item__text span   { font-size: 16px; }
  .link-item__chevron { font-size: 28px; }

  .img-break { height: 220px; }
  .img-break__caption { font-size: 16px; }
  .img-break__caption .material-symbols-outlined { font-size: 20px; }

  .hero-bottom { min-height: 455px; }
  .hero-bottom__content { padding: 65px 28px; gap: 35px; }
  .hero-bottom__quote { font-size: clamp(28px, 5vw, 38px); }
  .hero-bottom__cta { font-size: 18px; padding: 18px 35px; }

  .tagline-card { padding: 35px 24px; }
  .tagline-card__eyebrow { font-size: 14px; }
  .tagline-card__headline { font-size: 32px; }
  .tagline-card__body { font-size: 18px; }

  .footer__inner { padding: 42px 24px; }
  .footer__logo-circle { width: 44px; height: 44px; padding: 5px; }
  .footer__brand { font-size: 20px; }
  .footer__copy { font-size: 16px; }
  .footer__links { gap: 24px; }
  .footer__links a { font-size: 16px; }

  .toast { font-size: 18px; padding: 16px 28px; bottom: 35px; }
}

/* ── Tablet (481px to 768px) ─────────────────────────────────────── */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-top  { min-height: 750px; }
  .hero-top__name { font-size: 48px; }
  .hero-top__tag { font-size: 17px; }
  .hero-top__desc { font-size: 20px; padding: 13px 24px; }
  .hero-top__pills li { font-size: 17px; padding: 10px 20px; }

  .profile-ring { width: 230px; height: 230px; }

  .topnav__inner { padding: 16px 24px; }
  .topnav__logo-wrap { width: 56px; height: 56px; }
  .topnav__name { font-size: 24px; }
  .topnav__share { width: 56px; height: 56px; font-size: 32px; }

  .wrap { padding: 0 24px 70px; max-width: 750px; }

  .section { padding: 10px 20px 20px; }
  .section__eyebrow { font-size: 15px; }

  .link-item { padding: 20px; gap: 18px; }
  .link-item__icon { width: 70px; height: 70px; }
  .link-item__icon svg,
  .link-item__icon .material-symbols-outlined { width: 34px; height: 34px; font-size: 34px; }
  .link-item__text strong { font-size: 22px; }
  .link-item__text span   { font-size: 18px; }

  .img-break { height: 260px; }
  .img-break__caption { font-size: 18px; }

  .hero-bottom { min-height: 480px; }
  .hero-bottom__content { padding: 75px 35px; }
  .hero-bottom__quote { font-size: clamp(30px, 5vw, 42px); }
  .hero-bottom__cta { font-size: 20px; padding: 20px 40px; }

  .tagline-card { padding: 42px 32px; }
  .tagline-card__headline { font-size: 38px; }
  .tagline-card__body { font-size: 20px; }

  .footer__inner { padding: 46px 28px; }
  .footer__logo-circle { width: 48px; height: 48px; }
  .footer__brand { font-size: 21px; }
  .footer__copy { font-size: 17px; }
  .footer__links a { font-size: 17px; }
}

/* ── Laptop (769px to 1024px) ────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-top  { min-height: 780px; }
  .hero-top__name { font-size: 52px; }
  .hero-top__tag { font-size: 17px; }
  .hero-top__desc { font-size: 21px; padding: 13px 26px; }
  .hero-top__pills li { font-size: 18px; }

  .profile-ring { width: 245px; height: 245px; }

  .topnav__inner { padding: 18px 28px; max-width: 900px; }
  .topnav__logo-wrap { width: 60px; height: 60px; }
  .topnav__name { font-size: 26px; }
  .topnav__share { width: 60px; height: 60px; font-size: 34px; }

  .wrap { padding: 0 26px 78px; max-width: 950px; }

  .section { padding: 10px 22px 22px; }
  .section__eyebrow { font-size: 16px; }

  .link-item { padding: 22px; gap: 20px; }
  .link-item__icon { width: 74px; height: 74px; }
  .link-item__icon svg,
  .link-item__icon .material-symbols-outlined { width: 36px; height: 36px; font-size: 36px; }
  .link-item__text strong { font-size: 23px; }
  .link-item__text span   { font-size: 19px; }

  .img-break { height: 290px; }
  .img-break__caption { font-size: 19px; }

  .hero-bottom { min-height: 520px; }
  .hero-bottom__content { padding: 82px 38px; }
  .hero-bottom__quote { font-size: clamp(32px, 5vw, 45px); }
  .hero-bottom__cta { font-size: 22px; padding: 22px 44px; }

  .tagline-card { padding: 48px 38px; }
  .tagline-card__headline { font-size: 42px; }
  .tagline-card__body { font-size: 21px; }

  .footer__inner { padding: 48px 32px; max-width: 950px; }
  .footer__logo-circle { width: 52px; height: 52px; }
  .footer__brand { font-size: 22px; }
  .footer__copy { font-size: 18px; }
  .footer__links a { font-size: 18px; }
}

/* ── Desktop (1025px to 1440px) ──────────────────────────────────── */
@media (min-width: 1025px) and (max-width: 1440px) {
  .hero-top  { min-height: 805px; }
  .hero-top__name { font-size: 56px; }
  .hero-top__tag { font-size: 18px; }
  .hero-top__desc { font-size: 23px; padding: 14px 28px; }
  .hero-top__pills li { font-size: 20px; }

  .profile-ring { width: 259px; height: 259px; }

  .topnav__inner { padding: 21px 35px; max-width: 1200px; }
  .topnav__logo-wrap { width: 66px; height: 66px; }
  .topnav__name { font-size: 28px; }
  .topnav__share { width: 66px; height: 66px; font-size: 38px; }

  .wrap { padding: 0 28px 84px; max-width: 1100px; }

  .section { padding: 11px 24px 24px; }
  .section__eyebrow { font-size: 18px; }

  .link-item { padding: 24px; gap: 24px; }
  .link-item__icon { width: 80px; height: 80px; }
  .link-item__icon svg,
  .link-item__icon .material-symbols-outlined { width: 38px; height: 38px; font-size: 38px; }
  .link-item__text strong { font-size: 25px; }
  .link-item__text span   { font-size: 21px; }

  .img-break { height: 324px; }
  .img-break__caption { font-size: 21px; }

  .hero-bottom { min-height: 560px; }
  .hero-bottom__content { padding: 91px 42px; }
  .hero-bottom__quote { font-size: clamp(35px, 5vw, 49px); }
  .hero-bottom__cta { font-size: 24px; padding: 24px 49px; }

  .tagline-card { padding: 56px 49px; }
  .tagline-card__headline { font-size: 46px; }
  .tagline-card__body { font-size: 24px; }

  .footer__inner { padding: 52px 35px; max-width: 1100px; }
  .footer__logo-circle { width: 56px; height: 56px; }
  .footer__brand { font-size: 24px; }
  .footer__copy { font-size: 21px; }
  .footer__links a { font-size: 21px; }
}

/* ── Large Desktop (1441px and up) ──────────────────────────────── */
@media (min-width: 1441px) {
  .hero-top  { min-height: 900px; }
  .hero-top__name { font-size: 64px; }
  .hero-top__tag { font-size: 20px; letter-spacing: .28em; }
  .hero-top__desc { font-size: 26px; padding: 16px 32px; max-width: 550px; }
  .hero-top__pills li { font-size: 22px; padding: 12px 26px; gap: 10px; }
  .hero-top__pills li .material-symbols-outlined { font-size: 28px; }

  .profile-ring { width: 300px; height: 300px; }
  .profile-ring__track,
  .profile-ring__glow { inset: -9px; }
  .profile-ring__photo { inset: 11px; padding: 22px; border-width: 4px; }

  .topnav__inner { padding: 24px 45px; max-width: 1400px; }
  .topnav__logo-wrap { width: 76px; height: 76px; padding: 9px; }
  .topnav__name { font-size: 32px; }
  .topnav__share { width: 76px; height: 76px; font-size: 42px; }

  .wrap { padding: 0 35px 98px; max-width: 1300px; }

  .section { padding: 13px 28px 28px; }
  .section__eyebrow { font-size: 20px; padding: 24px 8px 20px; gap: 13px; }
  .section__eyebrow .material-symbols-outlined { font-size: 28px; }

  .link-item { padding: 28px; gap: 28px; }
  .link-item__icon { width: 92px; height: 92px; }
  .link-item__icon svg,
  .link-item__icon .material-symbols-outlined { width: 44px; height: 44px; font-size: 44px; }
  .link-item__text strong { font-size: 28px; }
  .link-item__text span   { font-size: 24px; }
  .link-item__chevron { font-size: 40px; }

  .img-break { height: 380px; }
  .img-break__caption { font-size: 24px; padding: 38px 22px 16px; }
  .img-break__caption .material-symbols-outlined { font-size: 30px; }

  .hero-bottom { min-height: 650px; }
  .hero-bottom__content { padding: 105px 55px; gap: 55px; }
  .hero-bottom__quote { font-size: clamp(40px, 5vw, 58px); max-width: 950px; }
  .hero-bottom__cta { font-size: 28px; padding: 28px 58px; gap: 16px; }
  .hero-bottom__cta .material-symbols-outlined { font-size: 38px; }

  .tagline-card { padding: 65px 58px; }
  .tagline-card__eyebrow { font-size: 20px; margin-bottom: 22px; }
  .tagline-card__headline { font-size: 54px; margin-bottom: 28px; }
  .tagline-card__body { font-size: 28px; max-width: 850px; }

  .footer__inner { padding: 60px 45px; max-width: 1300px; gap: 26px; }
  .footer__logo-circle { width: 66px; height: 66px; padding: 9px; }
  .footer__brand { font-size: 28px; }
  .footer__copy { font-size: 24px; }
  .footer__links { gap: 45px; }
  .footer__links a { font-size: 24px; }

  .toast { font-size: 26px; padding: 24px 45px; bottom: 55px; }
}