:root {
  --bg: #f5f7fb;
  --surface: rgba(255, 255, 255, 0.66);
  --surface-strong: #ffffff;
  --ink: #0b1220;
  --muted: #667085;
  --line: rgba(148, 163, 184, 0.28);
  --red: #ff5b43;
  --gold: #f5b84b;
  --teal: #18a999;
  --blue: #1473e6;
  --rose: #d9467a;
  --sand: #8b735f;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.11);
  --display: "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  --body: "SF Pro Text", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

::selection {
  color: #ffffff;
  background: var(--blue);
}

html {
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: #eef3fb;
}

html::-webkit-scrollbar-thumb {
  border: 3px solid #eef3fb;
  border-radius: 999px;
  background: #b9c6d8;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(20, 115, 230, 0.2), transparent 25%),
    radial-gradient(circle at 82% 6%, rgba(24, 169, 153, 0.18), transparent 24%),
    radial-gradient(circle at 62% 92%, rgba(245, 184, 75, 0.16), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #eef3fb 48%, #f8fafc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  right: -12vw;
  top: 22vh;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  filter: blur(48px);
  pointer-events: none;
}

.page-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 24px 60px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(28px) saturate(160%);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: linear-gradient(145deg, #101828, #3b485d);
  color: #ffffff;
  font-family: var(--display);
  font-size: 1.25rem;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.topnav a,
.ghost-button,
.primary-button,
.secondary-button {
  text-decoration: none;
}

.topnav a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.topnav-pages a.is-current {
  color: var(--ink);
  font-weight: 700;
}

.topnav a:hover {
  color: var(--ink);
}

.ghost-button,
.secondary-button {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.primary-button {
  padding: 13px 22px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #0071e3, #42a5ff);
  box-shadow: 0 18px 34px rgba(20, 115, 230, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.62fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  min-height: 680px;
  padding: 68px 0 48px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.03;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 5.4vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-text,
.section-heading p,
.feature-card p,
.spotlight-card p,
.revenue-explainer p,
.revenue-rules p,
.journey-step p,
.compliance-grid p,
.dashboard-card p,
.admin-panel li,
.launch-card p,
.role-card li,
.glass-strip p,
.signal-list p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 28px;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

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

.hero-metrics article,
.hero-card,
.glass-strip,
.feature-card,
.role-card,
.spotlight-card,
.revenue-explainer,
.revenue-board,
.revenue-rules article,
.journey-step,
.compliance-grid article,
.dashboard-card,
.admin-panel,
.launch-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(28px) saturate(165%);
  box-shadow: var(--shadow);
}

.hero-metrics article {
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.hero-metrics span,
.dashboard-card small,
.board-header span,
.signal-list small {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-metrics strong,
.dashboard-card strong,
.board-header strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  justify-self: end;
  width: min(100%, 520px);
}

.panel-glow {
  position: absolute;
  inset: 0 30px auto auto;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 115, 230, 0.34), transparent 64%);
  filter: blur(26px);
}

.hero-card {
  position: relative;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.44)),
    radial-gradient(circle at 100% 0%, rgba(20, 115, 230, 0.14), transparent 38%);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 300px;
  height: 300px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(24, 169, 153, 0.12), rgba(20, 115, 230, 0.18));
  transform: rotate(24deg);
}

.hero-card-head,
.allocation-label,
.board-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.hero-card-head strong {
  font-size: 2.35rem;
}

.signal-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.signal-list div {
  padding: 12px 0;
  border-top: 1px solid rgba(27, 26, 23, 0.08);
}

.signal-list p {
  margin: 8px 0 0;
}

.glass-strip {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.5);
}

.glass-strip span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(24, 169, 153, 0.12);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-device {
  position: relative;
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.52)),
    repeating-linear-gradient(90deg, rgba(20, 115, 230, 0.06) 0 1px, transparent 1px 46px);
  backdrop-filter: blur(34px) saturate(170%);
  box-shadow:
    0 42px 110px rgba(16, 24, 40, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.hero-device::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  pointer-events: none;
}

.hero-device img {
  width: min(78%, 320px);
  border-radius: 28px;
  filter: drop-shadow(0 28px 34px rgba(15, 23, 42, 0.16));
  animation: deviceFloat 5s ease-in-out infinite;
}

.device-topline,
.device-dock {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  color: var(--muted);
  font-size: 0.82rem;
}

.device-topline strong {
  color: var(--teal);
}

.device-dock {
  justify-content: center;
  flex-wrap: wrap;
}

.device-dock span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 115, 230, 0.08);
  color: var(--blue);
  font-weight: 700;
}

.section-block {
  padding: 58px 0;
}

.section-heading {
  max-width: 72ch;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.05rem, 3.8vw, 4.2rem);
  letter-spacing: -0.055em;
}

.section-heading p {
  margin-top: 14px;
}

.ecosystem-grid,
.spotlight-grid,
.revenue-rules,
.journey-grid,
.compliance-grid,
.dashboard-grid,
.admin-panels,
.launch-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  opacity: 0.14;
}

.feature-card:hover,
.quicklink-card:hover,
.project-card:hover,
.creator-card:hover,
.spotlight-card:hover,
.journey-step:hover,
.dashboard-card:hover,
.launch-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 115, 230, 0.22);
  box-shadow: 0 34px 96px rgba(15, 23, 42, 0.14);
}

.accent-red::before { background: var(--red); }
.accent-gold::before { background: var(--gold); }
.accent-teal::before { background: var(--teal); }
.accent-sand::before { background: var(--sand); }
.accent-blue::before { background: var(--blue); }
.accent-rose::before { background: var(--rose); }

.feature-card span,
.journey-step span,
.launch-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(20, 115, 230, 0.1);
  font-weight: 700;
}

.feature-card h3,
.role-card h3,
.spotlight-card h3,
.revenue-explainer h3,
.revenue-rules h3,
.journey-step h3,
.compliance-grid h3,
.admin-panel h3,
.launch-card h3 {
  margin: 18px 0 12px;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.selection-box {
  min-width: min(100%, 360px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.selection-box label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.selection-box select,
.slider-group input {
  width: 100%;
}

.selection-box select {
  padding: 14px 16px;
  border: 1px solid rgba(27, 26, 23, 0.14);
  border-radius: 16px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
}

.role-stage {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.role-card {
  padding: 22px;
  opacity: 0.55;
  transform: translateY(12px) scale(0.98);
  transition: opacity 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.role-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(20, 115, 230, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 246, 255, 0.74)),
    radial-gradient(circle at 100% 0%, rgba(20, 115, 230, 0.1), transparent 40%);
}

.role-card ul,
.admin-panel ul {
  margin: 0;
  padding-left: 18px;
}

.spotlight-block {
  position: relative;
}

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

.spotlight-card {
  padding: 24px;
  min-height: 190px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 249, 255, 0.62)),
    radial-gradient(circle at top right, rgba(20, 115, 230, 0.12), transparent 34%);
}

.revenue-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.revenue-explainer,
.revenue-board {
  padding: 24px;
}

.slider-group {
  margin-top: 20px;
}

.slider-group label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  font-weight: 700;
}

.slider-group input {
  accent-color: var(--red);
}

.revenue-guard {
  margin-top: 20px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.revenue-guard p {
  margin: 8px 0 0;
}

.allocation-bars {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.allocation-item strong {
  font-size: 1.1rem;
}

.bar {
  height: 14px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #7cc9ff);
}

.payout-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payout-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 115, 230, 0.1);
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
}

.revenue-rules {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.revenue-rules article,
.journey-step,
.compliance-grid article,
.dashboard-card,
.admin-panel,
.launch-card {
  padding: 22px;
}

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

.journey-step {
  min-height: 190px;
}

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

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

.dashboard-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 249, 255, 0.68)),
    radial-gradient(circle at top left, rgba(20, 115, 230, 0.09), transparent 40%);
}

.admin-panels {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

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

.launch-card {
  min-height: 220px;
}

.launch-card span {
  min-width: auto;
  padding: 8px 14px;
}

.page-hero {
  display: grid;
  gap: 20px;
  padding: 72px 0 28px;
}

.page-intro {
  max-width: 76ch;
}

.page-intro h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.page-intro p:last-child {
  max-width: 68ch;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.8;
}

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

.stat-strip article,
.quicklink-card,
.project-card,
.creator-card,
.ledger-card,
.board-column,
.kanban-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(26px) saturate(160%);
  box-shadow: var(--shadow);
}

.stat-strip article {
  padding: 20px;
}

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

.stat-strip strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

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

.quicklink-card {
  display: block;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.quicklink-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 115, 230, 0.25);
}

.quicklink-card span,
.meta-pair span,
.creator-meta span,
.card-topline small {
  color: var(--muted);
  font-size: 0.92rem;
}

.quicklink-card strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 1.3rem;
  line-height: 1.4;
}

.quicklink-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(14px);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.filter-chip.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #0071e3, #5bb8ff);
  box-shadow: 0 14px 26px rgba(20, 115, 230, 0.22);
}

.filter-chip:hover {
  transform: translateY(-2px);
}

.market-grid {
  display: grid;
  gap: 18px;
}

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

.project-card,
.creator-card,
.ledger-card {
  padding: 26px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.project-card h3,
.creator-card h3,
.board-column h3 {
  margin: 16px 0 10px;
  font-size: 1.3rem;
}

.project-card p,
.creator-card p,
.kanban-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.card-topline,
.creator-head,
.creator-meta,
.meta-pair {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.stage-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.stage-recruiting {
  color: #b66b00;
  background: rgba(245, 184, 75, 0.16);
}

.stage-production {
  color: var(--teal);
  background: rgba(24, 169, 153, 0.14);
}

.stage-launching {
  color: var(--rose);
  background: rgba(217, 70, 122, 0.14);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.tag-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 115, 230, 0.08);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.meta-pair {
  margin-top: 18px;
}

.meta-pair strong,
.creator-rate {
  font-size: 1rem;
}

.creator-head {
  align-items: start;
}

.creator-head h3 {
  margin: 0 0 6px;
}

.creator-head small {
  color: var(--muted);
}

.creator-rate {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(20, 115, 230, 0.1);
  font-weight: 700;
}

.creator-meta {
  flex-wrap: wrap;
  margin-top: 18px;
}

.creator-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

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

.ledger-card {
  overflow-x: auto;
}

.ledger-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.ledger-table th,
.ledger-table td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(27, 26, 23, 0.08);
  text-align: left;
}

.ledger-table th {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 700;
}

.board-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.board-column {
  padding: 18px;
}

.board-column h3 {
  margin: 4px 0 14px;
}

.kanban-card {
  padding: 16px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.kanban-card strong {
  display: block;
  margin-bottom: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 26px 0 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 1180px) {
  .hero,
  .revenue-layout,
  .admin-panels {
    grid-template-columns: 1fr;
  }

  .ecosystem-grid,
  .spotlight-grid,
  .revenue-rules,
  .compliance-grid,
  .dashboard-grid,
  .launch-grid,
  .quicklinks-grid,
  .project-grid,
  .creator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .role-stage,
  .board-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .page-shell {
    padding: 16px 16px 40px;
  }

  .topbar,
  .split-heading {
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
  }

  .topnav {
    justify-content: space-between;
    gap: 10px;
  }

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

  .hero h1 {
    max-width: none;
  }

  .hero-metrics,
  .ecosystem-grid,
  .spotlight-grid,
  .revenue-rules,
  .journey-grid,
  .compliance-grid,
  .dashboard-grid,
  .admin-panels,
  .launch-grid,
  .role-stage,
  .quicklinks-grid,
  .project-grid,
  .creator-grid,
  .stat-strip,
  .dual-columns,
  .board-columns {
    grid-template-columns: 1fr;
  }

  .selection-box {
    min-width: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .feature-card,
  .spotlight-card,
  .journey-step,
  .launch-card,
  .dashboard-card,
  .role-card {
    animation: rise 700ms ease both;
  }

  .feature-card:nth-child(2),
  .spotlight-card:nth-child(2),
  .journey-step:nth-child(2),
  .launch-card:nth-child(2),
  .dashboard-card:nth-child(2) {
    animation-delay: 80ms;
  }

  .feature-card:nth-child(3),
  .spotlight-card:nth-child(3),
  .journey-step:nth-child(3),
  .launch-card:nth-child(3),
  .dashboard-card:nth-child(3) {
    animation-delay: 160ms;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes deviceFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.012);
  }
}
