:root {
  --bg: #05030a;
  --bg-soft: #0c0714;
  --panel: rgba(20, 13, 32, 0.72);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --text: #f8f3ff;
  --muted: #b8abc9;
  --accent: #b86cff;
  --accent-soft: rgba(184, 108, 255, 0.16);
  --accent-glow: 0 0 38px rgba(184, 108, 255, 0.42);
  --border: rgba(226, 205, 255, 0.18);
  --radius: 8px;
  --max-width: 1160px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 8%, rgba(144, 66, 255, 0.34), transparent 27rem),
    radial-gradient(circle at 88% 16%, rgba(255, 81, 214, 0.12), transparent 30rem),
    linear-gradient(135deg, #030207 0%, #07040d 42%, #12071e 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 84%);
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -4;
  pointer-events: none;
  background:
    conic-gradient(from 120deg at 25% 38%, transparent, rgba(184, 108, 255, 0.2), transparent 34%),
    conic-gradient(from 290deg at 72% 55%, transparent, rgba(89, 218, 255, 0.1), transparent 38%);
  filter: blur(34px);
  animation: glow-shift 18s ease-in-out infinite alternate;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.background-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 28%, rgba(184, 108, 255, 0.18), transparent 20rem),
    radial-gradient(circle at 80% 70%, rgba(129, 67, 255, 0.14), transparent 25rem);
  animation: float-glow 12s ease-in-out infinite alternate;
}

.floating-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  left: var(--x-start);
  top: var(--y-start);
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  opacity: var(--opacity);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), transparent 18%),
    radial-gradient(circle, var(--accent) 0%, rgba(184, 108, 255, 0.48) 48%, transparent 72%);
  filter: blur(var(--blur));
  box-shadow: 0 0 18px rgba(184, 108, 255, 0.42), 0 0 34px rgba(184, 108, 255, 0.18);
  transform: translate3d(0, 0, 0) rotate(0deg);
  animation: particle-float var(--duration) linear var(--delay) infinite;
  will-change: transform, opacity;
}

.particle.petal {
  width: var(--size);
  height: var(--size);
  border-radius: 999px 999px 999px 2px;
  background: linear-gradient(145deg, rgba(245, 228, 255, 0.82), rgba(184, 108, 255, 0.54) 48%, rgba(124, 58, 237, 0.12));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 3, 10, 0.76);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max-width), calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand,
.nav-links,
.language-switcher,
.badge-row,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(184, 108, 255, 0.44), rgba(255, 255, 255, 0.06));
  color: #fff;
  box-shadow: var(--accent-glow);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.nav-links {
  flex: 1 1 auto;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 9px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(226, 205, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
}

.language-switcher {
  flex: 0 0 auto;
  gap: 8px;
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
}

.language-button {
  border: 0;
  padding: 5px 7px;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-button:hover,
.language-button.active {
  color: var(--text);
  background: var(--accent-soft);
  box-shadow: 0 0 18px rgba(184, 108, 255, 0.24);
}

.section {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.72fr);
  align-items: center;
  gap: 56px;
  padding-top: 58px;
}

.eyebrow,
.section-kicker,
.project-meta,
.card-index {
  color: #ddc0ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.1rem, 13vw, 9.4rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 0 60px rgba(184, 108, 255, 0.45);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.72;
}

.badge-row,
.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.badge-row span {
  border: 1px solid rgba(226, 205, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: #eadbff;
  background: rgba(184, 108, 255, 0.12);
  box-shadow: 0 0 24px rgba(184, 108, 255, 0.12);
  font-size: 0.9rem;
}

.hero-actions {
  margin-top: 36px;
}

.hero-blog-card {
  max-width: 620px;
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px 20px;
  color: #f4eaff;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.hero-blog-card strong {
  color: #fff;
  font-size: 1.05rem;
}

.hero-blog-card span {
  color: var(--muted);
  line-height: 1.62;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease, background 190ms ease, color 190ms ease;
}

.button:hover,
.hero-blog-card:hover,
.link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(226, 205, 255, 0.52);
  box-shadow: var(--accent-glow);
}

.button-primary {
  color: #16081f;
  background: linear-gradient(135deg, #f5e9ff, #bd76ff 48%, #7c3aed);
  box-shadow: 0 0 38px rgba(184, 108, 255, 0.36);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.button-disabled,
.button-disabled:hover {
  color: rgba(248, 243, 255, 0.48);
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: none;
  transform: none;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.avatar-card,
.glass-card,
.image-panel,
.stat-card,
.hero-blog-card,
.link-card,
.code-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--panel), rgba(11, 7, 20, 0.48));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.avatar-card {
  overflow: hidden;
  padding: 12px;
}

.avatar-card::after,
.glass-card::after,
.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 32%, rgba(184, 108, 255, 0.1));
  opacity: 0.72;
}

.avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  filter: saturate(1.08) contrast(1.05);
  cursor: pointer;
  user-select: none;
  transition: transform 220ms ease, filter 220ms ease;
}

.avatar:hover {
  transform: scale(1.012);
  filter: saturate(1.14) contrast(1.08);
}

.arch-egg {
  position: absolute;
  left: 50%;
  top: 22px;
  z-index: 4;
  padding: 9px 13px;
  border: 1px solid rgba(226, 205, 255, 0.32);
  border-radius: var(--radius);
  color: #16081f;
  background: linear-gradient(135deg, #f7ecff, #bd76ff);
  box-shadow: 0 0 26px rgba(184, 108, 255, 0.46);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -12px) scale(0.92);
  transition: opacity 220ms ease, transform 220ms ease;
  white-space: nowrap;
}

.arch-egg.show {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.firework-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: visible;
  pointer-events: none;
}

.firework-particle {
  position: absolute;
  left: 50%;
  top: 31%;
  width: var(--burst-size);
  height: var(--burst-size);
  border-radius: 999px;
  background: var(--burst-color);
  box-shadow: 0 0 16px var(--burst-color);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  animation: firework-burst var(--burst-duration) ease-out forwards;
}

.code-card {
  min-height: 188px;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  color: #f3e8ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.76rem, 1.55vw, 0.95rem);
  line-height: 1.65;
  white-space: pre-wrap;
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  margin-left: 2px;
  vertical-align: -0.18em;
  background: var(--accent);
  box-shadow: var(--accent-glow);
  animation: cursor-blink 780ms steps(2, start) infinite;
}

.about-layout,
.support-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.image-panel {
  overflow: hidden;
  padding: 12px;
}

.image-panel img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.about-content {
  display: grid;
  gap: 18px;
}

.about-card,
.support-main,
.ecosystem-panel {
  padding: clamp(24px, 4vw, 36px);
}

.about-card p:last-child,
.support-main p {
  color: var(--muted);
  line-height: 1.78;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 18px;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.card-grid,
.quotes-grid,
.links-grid,
.progress-grid {
  display: grid;
  gap: 18px;
}

.three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card,
.project-card,
.quote-card {
  min-height: 100%;
  padding: 24px;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.work-card:hover,
.project-card:hover,
.quote-card:hover,
.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 205, 255, 0.38);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.58), var(--accent-glow);
}

.work-card p,
.project-card p,
.support-main p {
  color: var(--muted);
  line-height: 1.68;
}

.card-index,
.project-meta {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 0.78rem;
}

.work-card,
.project-card {
  display: flex;
  flex-direction: column;
}

.project-card .button,
.work-card .button {
  width: fit-content;
  margin-top: auto;
}

.progress-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.progress-card {
  min-height: 100%;
  display: grid;
  justify-items: center;
  padding: 24px;
  text-align: center;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.progress-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 205, 255, 0.38);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.58), var(--accent-glow);
}

.progress-ring {
  position: relative;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background:
    conic-gradient(var(--accent) var(--progress), rgba(255, 255, 255, 0.08) 0),
    radial-gradient(circle, rgba(184, 108, 255, 0.15), transparent 64%);
  box-shadow: inset 0 0 24px rgba(184, 108, 255, 0.18), 0 0 34px rgba(184, 108, 255, 0.18);
}

.progress-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(10, 6, 18, 0.96), rgba(26, 15, 42, 0.94));
  box-shadow: inset 0 0 0 1px rgba(226, 205, 255, 0.08);
}

.progress-ring span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 1.1rem;
  font-weight: 900;
}

.planned-ring {
  background:
    conic-gradient(rgba(226, 205, 255, 0.16) 100%, rgba(255, 255, 255, 0.08) 0),
    radial-gradient(circle, rgba(184, 108, 255, 0.12), transparent 64%);
}

.progress-card h3 {
  margin-bottom: 8px;
}

.progress-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.roadmap-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 31px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 108, 255, 0.76), transparent);
  box-shadow: 0 0 22px rgba(184, 108, 255, 0.28);
}

.roadmap-card {
  min-height: 160px;
  padding: 24px;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.roadmap-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 205, 255, 0.38);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.58), var(--accent-glow);
}

.roadmap-dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 24px;
  border: 2px solid #f3e8ff;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: var(--accent-glow);
}

.roadmap-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.12rem;
}

.roadmap-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.quotes-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quote-card {
  margin: 0;
}

.quote-card blockquote {
  margin: 0 0 20px;
  color: #fff;
  font-size: 1.03rem;
  line-height: 1.64;
}

.quote-card figcaption {
  color: #ddc0ff;
  font-weight: 800;
}

.support-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.7fr);
}

.support-main h3 {
  margin-top: 26px;
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.ecosystem-panel {
  min-height: 260px;
  display: grid;
  align-content: center;
  overflow: hidden;
}

.ecosystem-panel h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.ecosystem-panel p {
  position: relative;
  z-index: 1;
  color: #ddc0ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.orbital-line {
  position: absolute;
  width: 210px;
  height: 210px;
  right: -44px;
  top: -44px;
  border: 1px solid rgba(226, 205, 255, 0.22);
  border-radius: 999px;
  box-shadow: inset 0 0 34px rgba(184, 108, 255, 0.15), 0 0 42px rgba(184, 108, 255, 0.18);
}

.links-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.link-card {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 20px;
  color: #f4eaff;
  font-weight: 850;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.link-card-detailed {
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
}

.link-card-detailed strong {
  color: #fff;
}

.link-card-detailed span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.site-footer {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease var(--delay, 0ms), transform 620ms ease var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes glow-shift {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(8deg) scale(1.08);
  }
}

@keyframes float-glow {
  from {
    transform: translate3d(-1.5%, -1%, 0);
  }
  to {
    transform: translate3d(1.5%, 1%, 0);
  }
}

@keyframes particle-float {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.8);
  }
  12% {
    opacity: var(--opacity);
  }
  50% {
    transform: translate3d(var(--x-mid), var(--y-mid), 0) rotate(140deg) scale(1);
  }
  88% {
    opacity: var(--opacity);
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--x-drift), var(--y-travel), 0) rotate(300deg) scale(0.86);
  }
}

@keyframes cursor-blink {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}

@keyframes firework-burst {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
  }
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--burst-x)), calc(-50% + var(--burst-y))) scale(0.12);
  }
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    order: 4;
    display: none;
    flex: 0 0 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 6px 0 2px;
  }

  .nav-links.open {
    display: flex;
  }

  .language-switcher {
    margin-left: 0;
  }

  .hero,
  .about-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 38px;
  }

  .three-grid,
  .work-grid,
  .project-grid,
  .progress-grid,
  .quotes-grid,
  .links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-timeline {
    grid-template-columns: 1fr;
  }

  .roadmap-timeline::before {
    left: 31px;
    right: auto;
    top: 28px;
    bottom: 28px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(184, 108, 255, 0.76), transparent);
  }

  .roadmap-card {
    min-height: auto;
  }

  .image-panel img {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 66px;
  }

  .nav {
    width: min(100% - 24px, var(--max-width));
    gap: 10px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .language-switcher {
    padding: 5px 7px;
  }

  .section {
    width: min(100% - 24px, var(--max-width));
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(3.35rem, 20vw, 5.2rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions .button,
  .support-main .button {
    width: 100%;
  }

  .three-grid,
  .work-grid,
  .project-grid,
  .progress-grid,
  .quotes-grid,
  .links-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .progress-ring {
    width: 104px;
    height: 104px;
  }

  .arch-egg {
    top: 20px;
    max-width: calc(100% - 40px);
    font-size: 0.9rem;
  }

  .code-card {
    min-height: 206px;
  }

  .image-panel img {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .floating-bg {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
