:root {
  --bg: #070a12;
  --bg2: #0b1024;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.6);
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
  --shadow2: 0 10px 35px rgba(0, 0, 0, 0.35);
  --accent: #a78bfa;
  --accent2: #22d3ee;
  --accent3: #60a5fa;
  --ring: rgba(167, 139, 250, 0.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1100px;
  --header-h: 74px;
}

[data-theme="light"] {
  --bg: #f7f7fb;
  --bg2: #f1f4ff;
  --card: rgba(0, 0, 0, 0.04);
  --card2: rgba(0, 0, 0, 0.06);
  --stroke: rgba(0, 0, 0, 0.12);
  --text: rgba(15, 23, 42, 0.92);
  --muted: rgba(15, 23, 42, 0.74);
  --muted2: rgba(15, 23, 42, 0.6);
  --shadow: 0 22px 90px rgba(2, 6, 23, 0.15);
  --shadow2: 0 12px 40px rgba(2, 6, 23, 0.12);
  --ring: rgba(34, 211, 238, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 10% -10%, rgba(167, 139, 250, 0.18), transparent 60%),
    radial-gradient(1100px 700px at 90% 10%, rgba(34, 211, 238, 0.15), transparent 60%),
    radial-gradient(900px 500px at 55% 105%, rgba(96, 165, 250, 0.12), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.06), transparent 38%),
    radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.045), transparent 45%),
    radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.04), transparent 45%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 8px);
  opacity: 0.18;
  mix-blend-mode: overlay;
}

@supports not (mix-blend-mode: overlay) {
  body::before {
    opacity: 0.1;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.sr-only {
  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 {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 12px;
  background: var(--card2);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.02));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.45));
  border-bottom: 1px solid rgba(2, 6, 23, 0.08);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
}

.brand:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(167, 139, 250, 0.16), 0 0 0 12px rgba(34, 211, 238, 0.08);
}

.brand-text {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
  box-shadow: var(--shadow2);
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.nav-toggle-bars {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
  border-radius: 99px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  opacity: 0.85;
}

.nav-toggle-bars::before {
  top: -6px;
}
.nav-toggle-bars::after {
  top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  font-weight: 600;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 14px;
  transition: background 140ms ease, color 140ms ease;
}

.nav-link:hover {
  background: var(--card);
  color: var(--text);
}

.nav-link[aria-current="page"] {
  color: var(--text);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.18), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ghost-btn {
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  color: var(--text);
  box-shadow: var(--shadow2);
}

.ghost-btn:hover {
  background: var(--card2);
}

.ghost-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.hero {
  position: relative;
  padding: 52px 0 44px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.hero-copy {
  padding-top: 22px;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(167, 139, 250, 0.92), rgba(34, 211, 238, 0.9));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 62ch;
}

.quote {
  color: var(--text);
  font-weight: 600;
}

.motto {
  display: inline-block;
  margin-top: 6px;
  color: var(--muted2);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, background 140ms ease, border-color 140ms ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(167, 139, 250, 1), rgba(34, 211, 238, 0.95));
  color: rgba(8, 10, 18, 0.96);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 55px rgba(167, 139, 250, 0.22);
}

.btn.primary:hover {
  filter: brightness(1.02);
}

.btn.secondary {
  background: var(--card);
  border-color: var(--stroke);
  color: var(--text);
}

.btn.secondary:hover {
  background: var(--card2);
}

.btn.ghost {
  background: transparent;
  border-color: var(--stroke);
  color: var(--text);
}

.btn.small {
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 700;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.badge {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow2);
  padding: 14px 14px;
}

.badge-top {
  color: var(--muted2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-bottom {
  margin-top: 8px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-card {
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.55), rgba(34, 211, 238, 0.42), rgba(96, 165, 250, 0.32));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.9;
  pointer-events: none;
}

.card-glow {
  position: absolute;
  inset: -80px -80px auto auto;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.35), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(167, 139, 250, 0.28), transparent 60%);
  filter: blur(1px);
  opacity: 0.9;
}

.profile {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
}

.avatar {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  filter: contrast(1.03) saturate(1.04);
  position: relative;
  z-index: 2;
}

.avatar-ring {
  position: absolute;
  inset: -26px;
  border-radius: 999px;
  background: conic-gradient(from 180deg, var(--accent), var(--accent2), var(--accent3), var(--accent));
  opacity: 0.75;
  filter: blur(0.2px);
  animation: spin 7s linear infinite;
  z-index: 1;
  mix-blend-mode: screen;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.profile-name {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.profile-role {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.quick-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chip {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--text);
  transition: background 140ms ease, transform 120ms ease;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.mini {
  position: relative;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
}

.mini-label {
  color: var(--muted2);
  font-weight: 700;
}

.mini-value {
  color: var(--muted);
  font-weight: 650;
  text-align: right;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg .grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.18;
  mask-image: radial-gradient(ellipse at 40% 30%, black 35%, transparent 72%);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.55;
}

.orb-a {
  width: 340px;
  height: 340px;
  left: -120px;
  top: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(167, 139, 250, 0.7), transparent 62%);
}

.orb-b {
  width: 380px;
  height: 380px;
  right: -160px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.58), transparent 62%);
}

.orb-c {
  width: 320px;
  height: 320px;
  left: 40%;
  bottom: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.45), transparent 62%);
}

.section {
  padding: 56px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}

.section-title::after {
  content: "";
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(167, 139, 250, 1), rgba(34, 211, 238, 0.95));
  opacity: 0.85;
}

.section-lede {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 72ch;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.panel {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  padding: 16px;
  box-shadow: var(--shadow2);
}

.panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.35), rgba(34, 211, 238, 0.22), rgba(96, 165, 250, 0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.85;
  pointer-events: none;
}

.panel-title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted2);
}

.panel-body {
  margin: 10px 0 0;
  line-height: 1.7;
  color: var(--muted);
}

.panel-muted {
  display: block;
  margin-top: 6px;
  color: var(--muted2);
  font-weight: 700;
}

.list {
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.list strong {
  color: var(--text);
}

.stats {
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  padding: 14px;
  box-shadow: var(--shadow2);
}

.stats::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.32), rgba(167, 139, 250, 0.28), rgba(96, 165, 250, 0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
  pointer-events: none;
}

.stat {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.stat + .stat {
  margin-top: 10px;
}

[data-theme="light"] .stat {
  border-color: rgba(2, 6, 23, 0.08);
  background: rgba(2, 6, 23, 0.03);
}

.stat-num {
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18px;
  align-self: center;
}

.stat-label {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.25;
  align-self: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.card {
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  padding: 18px;
  box-shadow: var(--shadow2);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.28), rgba(34, 211, 238, 0.18), rgba(96, 165, 250, 0.14));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.card:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 65px rgba(0, 0, 0, 0.38);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.22), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.card-title {
  margin: 14px 0 6px;
  letter-spacing: -0.02em;
}

.card-body {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.contact-panel {
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.35), rgba(34, 211, 238, 0.22), rgba(96, 165, 250, 0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
  pointer-events: none;
}

.contact-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 12px;
  padding: 16px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-row:first-child {
  border-top: none;
}

[data-theme="light"] .contact-row {
  border-top-color: rgba(2, 6, 23, 0.08);
}

.contact-label {
  color: var(--muted2);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-value {
  min-width: 0;
}

.contact-link {
  color: var(--text);
  font-weight: 750;
  word-break: break-word;
}

.contact-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.toast {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  letter-spacing: 0.01em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

[data-theme="light"] .toast {
  background: rgba(15, 23, 42, 0.86);
  border-color: rgba(255, 255, 255, 0.14);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.site-footer {
  padding: 28px 0 40px;
  color: var(--muted2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

[data-theme="light"] .footer-inner {
  border-top-color: rgba(2, 6, 23, 0.1);
}

.footer-left {
  margin: 0;
  font-weight: 700;
}

.footer-right {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.footer-right:hover {
  background: rgba(255, 255, 255, 0.07);
}

.footer-right:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-top: 6px;
  }
  .hero-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-grid {
    grid-template-columns: 1fr;
  }
  .about-cards {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links {
    position: absolute;
    right: 24px;
    top: calc(var(--header-h) - 2px);
    width: min(320px, calc(100vw - 48px));
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--stroke);
    background: rgba(10, 12, 20, 0.75);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  [data-theme="light"] .nav-links {
    background: rgba(255, 255, 255, 0.8);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-actions {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}

