:root {
  --ink: #071733;
  --ink-2: #182a4d;
  --blue: #0d6efd;
  --blue-2: #8fb6ff;
  --sky: #dff5ff;
  --mint: #53e6c4;
  --signal: #ffcc66;
  --rose: #ff6b8a;
  --paper: #f6fbff;
  --white: #ffffff;
  --muted: #627089;
  --line: rgba(7, 23, 51, 0.12);
  --shadow: 0 24px 80px rgba(7, 23, 51, 0.12);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #eaf9ff 0%, #ffffff 42%, #f8fbff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 60px rgba(12, 79, 130, 0.12);
  backdrop-filter: blur(20px);
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(13, 110, 253, 0.18);
  box-shadow: 0 16px 48px rgba(7, 23, 51, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: conic-gradient(from 120deg, var(--blue), var(--mint), var(--signal), var(--blue));
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: inset 0 -8px 16px rgba(7, 23, 51, 0.2), 0 10px 24px rgba(13, 110, 253, 0.24);
  font-size: 1rem;
  font-weight: 900;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: 0.89rem;
  font-weight: 760;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
  background: rgba(13, 110, 253, 0.08);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, color 170ms ease, border-color 170ms ease;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(13, 110, 253, 0.22);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(7, 23, 51, 0.14);
}

.header-cta:hover,
.button:hover,
.header-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(7, 23, 51, 0.18);
}

.button span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 900;
}

.button.ghost span {
  color: var(--blue);
  background: rgba(13, 110, 253, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 100vw;
  min-height: 88svh;
  overflow: hidden;
  padding: 136px max(24px, calc((100vw - 1180px) / 2)) 64px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.92) 0%, rgba(223, 245, 255, 0.74) 46%, rgba(83, 230, 196, 0.2) 100%),
    radial-gradient(circle at 78% 24%, rgba(255, 204, 102, 0.28), rgba(255, 204, 102, 0) 27%),
    linear-gradient(180deg, #e7f8ff 0%, #ffffff 100%);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-grid {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(13, 110, 253, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 110, 253, 0.15) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(transparent, black);
}

.hero-content {
  width: min(700px, 100%);
  min-width: 0;
  align-self: center;
  padding: 40px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(4.25rem, 13vw, 10.5rem);
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: #2a3d60;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 560;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(690px, 100%);
  margin: 42px 0 0;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 51, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 23, 51, 0.12);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
}

.snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: -18px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 18px 50px rgba(7, 23, 51, 0.08);
}

.snapshot-item {
  min-height: 192px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
}

.snapshot-item span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
}

.snapshot-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.snapshot-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.section-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.78fr);
  gap: 56px;
  align-items: start;
}

.section h2 {
  max-width: 780px;
  font-size: clamp(2.5rem, 5vw, 5.1rem);
}

.section-copy p,
.activity-header p,
.community-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-copy p + p {
  margin-top: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.feature-card,
.roadmap-card,
.activity-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(7, 23, 51, 0.06);
}

.feature-card {
  min-height: 250px;
  padding: 24px;
}

.feature-icon {
  display: inline-grid;
  min-width: 54px;
  height: 34px;
  place-items: center;
  margin-bottom: 48px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--sky);
  border: 1px solid rgba(13, 110, 253, 0.16);
  border-radius: var(--radius);
  font-size: 0.73rem;
  font-weight: 950;
}

.feature-card:nth-child(2) .feature-icon {
  background: rgba(83, 230, 196, 0.22);
}

.feature-card:nth-child(3) .feature-icon {
  background: rgba(255, 204, 102, 0.28);
}

.feature-card h3,
.token-notes h3,
.roadmap-card h3,
.activity-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.2;
}

.feature-card p,
.roadmap-card p,
.activity-card p,
.token-notes li {
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-card p,
.roadmap-card p,
.activity-card p {
  margin: 12px 0 0;
}

.tokenomics-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(280px, 0.92fr) minmax(280px, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 42px;
}

.token-ring,
.allocation-list,
.token-notes {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(7, 23, 51, 0.06);
}

.token-ring {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.96));
}

.token-ring::before {
  width: min(270px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(
      var(--blue) 0deg 126deg,
      var(--mint) 126deg 216deg,
      var(--signal) 216deg 270deg,
      var(--rose) 270deg 313.2deg,
      var(--blue-2) 313.2deg 342deg,
      var(--ink-2) 342deg 360deg
    );
  box-shadow: inset 0 0 0 28px rgba(255, 255, 255, 0.74), 0 24px 54px rgba(13, 110, 253, 0.16);
  content: "";
}

.token-ring-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 148px;
  height: 148px;
  place-items: center;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(7, 23, 51, 0.08);
  transform: translate(-50%, -50%);
}

.token-ring-core span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.token-ring-core strong {
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1;
}

.allocation-list {
  display: grid;
  align-content: stretch;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.allocation-row {
  display: grid;
  grid-template-columns: auto min-content;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 18px;
  background: var(--white);
}

.allocation-label {
  display: grid;
  gap: 4px;
}

.allocation-label span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-weight: 800;
}

.allocation-label span::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.allocation-label small {
  margin-left: 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
}

.allocation-row strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.token-notes {
  padding: 24px;
}

.contract-card {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid rgba(13, 110, 253, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(223, 245, 255, 0.82), rgba(255, 255, 255, 0.94));
}

.contract-card span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contract-card code {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.contract-card button {
  justify-self: start;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(13, 110, 253, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
  font-size: 0.84rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contract-card button:hover,
.contract-card button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(13, 110, 253, 0.18);
}

.contract-card p {
  min-height: 18px;
  margin: 0;
  color: #047e66;
  font-size: 0.82rem;
  font-weight: 780;
}

.token-notes ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.token-notes li {
  position: relative;
  padding-left: 22px;
}

.token-notes li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.roadmap-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
}

.roadmap-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--line);
  content: "";
}

.roadmap-card.active::before {
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.roadmap-card span,
.activity-card span {
  display: inline-flex;
  margin-bottom: 66px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.activity-section {
  padding-bottom: 0;
}

.activity-header {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.78fr);
  gap: 56px;
  align-items: end;
}

.activity-header h2 {
  margin: 0;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.activity-card {
  min-height: 260px;
  padding: 24px;
}

.activity-card:nth-child(2) span {
  color: #049d7e;
}

.activity-card:nth-child(3) span {
  color: #b07600;
}

.activity-card:nth-child(4) span {
  color: var(--rose);
}

.community-section {
  width: 100%;
  margin-top: 110px;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(7, 23, 51, 0.96), rgba(24, 42, 77, 0.96)),
    linear-gradient(90deg, var(--blue), var(--mint));
}

.community-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(310px, 0.75fr);
  gap: 44px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
  color: var(--white);
}

.community-panel .section-kicker {
  color: var(--mint);
}

.community-panel h2 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.community-panel p {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.community-form {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.community-form label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.input-row input {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.input-row input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.input-row input:focus {
  border-color: var(--mint);
}

.input-row button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--mint);
  font-size: 0.9rem;
  font-weight: 760;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 850;
  background: rgba(255, 255, 255, 0.08);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--mint);
  background: rgba(83, 230, 196, 0.14);
  transform: translateY(-2px);
}

.team-section {
  background: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.team-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  gap: 36px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 54px;
}

.team-inner h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
}

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

.team-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(223, 245, 255, 0.66), rgba(255, 255, 255, 0.96));
  box-shadow: 0 14px 36px rgba(7, 23, 51, 0.06);
}

.team-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 42px;
  padding: 5px 9px;
  border: 1px solid rgba(13, 110, 253, 0.16);
  border-radius: var(--radius);
  color: var(--blue);
  background: rgba(13, 110, 253, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.16;
}

.team-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 850;
  color: var(--blue);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 78px 16px auto;
    display: none;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .snapshot,
  .roadmap,
  .activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-layout,
  .activity-header,
  .community-panel,
  .team-inner {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .tokenomics-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .token-ring {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 90svh;
    padding: 112px 18px 44px;
  }

  .hero-content,
  .hero-actions,
  .hero-stats {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .hero-content {
    justify-self: start;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-copy {
    width: 100%;
    max-width: min(32ch, calc(100vw - 36px));
    margin-top: 22px;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .input-row .button,
  .input-row {
    width: 100%;
  }

  .hero-stats,
  .snapshot,
  .feature-grid,
  .roadmap,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .snapshot-item,
  .feature-card,
  .roadmap-card,
  .activity-card {
    min-height: auto;
  }

  .section {
    width: calc(100% - 28px);
    padding-top: 82px;
  }

  .section-layout,
  .activity-header {
    gap: 24px;
  }

  .section h2,
  .activity-header h2 {
    font-size: clamp(2.25rem, 13vw, 3.6rem);
  }

  .feature-icon,
  .roadmap-card span,
  .activity-card span {
    margin-bottom: 32px;
  }

  .community-panel {
    width: calc(100% - 28px);
    padding: 62px 0;
  }

  .community-form {
    padding: 16px;
  }

  .team-inner {
    width: calc(100% - 28px);
    padding: 54px 0 34px;
  }

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

  .team-card span {
    margin-bottom: 28px;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
