:root {
  --bg: #080b0b;
  --panel: #101615;
  --panel-2: #17201f;
  --text: #edf8ee;
  --muted: #9bb1a6;
  --line: #263833;
  --green: #79ff8c;
  --yellow: #f4d44d;
  --cyan: #58d7ff;
  --danger: #ff6f91;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
}

a,
button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
}

.hero {
  min-height: 92svh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border-bottom: 1px solid var(--line);
}

.token-hero {
  min-height: 58svh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 11, 11, 0.98), rgba(8, 11, 11, 0.84) 54%, rgba(8, 11, 11, 0.35)),
    url("/assets/pat-hero.png") center right / cover no-repeat;
}

.page-hero {
  min-height: 50svh;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 11, 11, 0.98), rgba(8, 11, 11, 0.84) 54%, rgba(8, 11, 11, 0.35)),
    url("/assets/pat-hero.png") center right / cover no-repeat;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 11, 0.96) 0%, rgba(8, 11, 11, 0.75) 42%, rgba(8, 11, 11, 0.2) 100%),
    url("/assets/pat-hero.png") center right / cover no-repeat;
  transform: scale(1.02);
}

.topbar {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(121, 255, 140, 0.5);
  background: rgba(121, 255, 140, 0.12);
  color: var(--green);
  font-weight: 900;
  border-radius: 8px;
}

.brand-mark strong {
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions a,
.nav-actions button,
.hero-buttons a,
.lab-panel button,
.funding-actions a,
.funding-actions button {
  border: 1px solid rgba(237, 248, 238, 0.18);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  background: rgba(16, 22, 21, 0.8);
  padding: 11px 14px;
  min-height: 44px;
}

.nav-actions button,
.lab-panel button,
.funding-actions button,
.primary {
  background: var(--green);
  color: #061006;
  border-color: var(--green);
  font-weight: 800;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  align-self: center;
  padding: 60px 0 100px;
}

.token-hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 96px;
  position: relative;
  z-index: 1;
}

.page-hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 88px;
  position: relative;
  z-index: 1;
}

.page-hero-content h1 {
  max-width: 900px;
  font-size: clamp(44px, 7vw, 88px);
}

.page-hero-content p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  margin-top: 22px;
}

.token-hero-content h1 {
  max-width: 900px;
  font-size: clamp(46px, 7vw, 96px);
}

.token-hero-content p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  margin-top: 22px;
}

.eyebrow,
.section-heading p,
.output-label,
.token-band span {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(58px, 10vw, 128px);
  line-height: 0.9;
  margin-top: 14px;
}

.hero-copy {
  max-width: 610px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  margin-top: 24px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.secondary {
  background: rgba(244, 212, 77, 0.12) !important;
  color: var(--yellow) !important;
  border-color: rgba(244, 212, 77, 0.35) !important;
}

.token-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.token-band article {
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #0b100f;
}

.token-band article:last-child {
  border-right: 0;
}

.token-band strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.15;
}

.token-page-band {
  border-top: 0;
}

.lab-section,
.funding-section,
.donate-section,
.platform-section,
.competition-section,
.gateway-section,
.step-zero-section,
.launch-day-section,
.trust-preview-section,
.trust-section,
.status-checklist-section,
.tokenomics-section,
.allocation-section,
.phase-section,
.roadmap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.step-zero-section {
  padding-bottom: 0;
}

.step-zero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(121, 255, 140, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(121, 255, 140, 0.14), transparent 42%),
    linear-gradient(315deg, rgba(88, 215, 255, 0.12), transparent 48%),
    var(--panel-2);
  padding: clamp(24px, 5vw, 42px);
}

.step-zero-card::after {
  content: "PAT";
  position: absolute;
  right: clamp(18px, 5vw, 56px);
  bottom: -34px;
  color: rgba(121, 255, 140, 0.05);
  font-size: clamp(90px, 18vw, 220px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.step-zero-card span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.step-zero-card h2 {
  max-width: 900px;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.98;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.step-zero-card p {
  max-width: 820px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.step-zero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.step-zero-tags strong {
  display: inline-flex;
  color: var(--green);
  border: 1px solid rgba(121, 255, 140, 0.28);
  border-radius: 999px;
  background: rgba(121, 255, 140, 0.1);
  padding: 10px 14px;
}

.launch-day-section {
  padding-bottom: 0;
}

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

.launch-day-grid article {
  min-height: 230px;
  border: 1px solid rgba(88, 215, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(88, 215, 255, 0.1), transparent 48%),
    #0b100f;
  padding: 22px;
}

.launch-day-grid span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-day-grid h3 {
  font-size: 26px;
  line-height: 1.08;
  margin-top: 26px;
}

.launch-day-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 14px;
}

.inline-proof-link {
  display: inline-flex;
  width: fit-content;
  color: #061006;
  background: var(--cyan);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  padding: 10px 13px;
  margin-top: 18px;
}

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

.gateway-grid a {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(121, 255, 140, 0.08), transparent 45%),
    #0b100f;
  padding: 20px;
  text-decoration: none;
}

.gateway-grid span {
  color: var(--yellow);
  font-weight: 900;
}

.gateway-grid strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  margin-top: 28px;
}

.gateway-grid p {
  color: var(--muted);
  line-height: 1.5;
  margin-top: 12px;
}

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

.trust-preview-grid article,
.trust-preview-link {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b100f;
  padding: 20px;
}

.trust-preview-grid span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.trust-preview-grid strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  margin-top: 18px;
}

.trust-preview-grid p {
  color: var(--muted);
  line-height: 1.5;
  margin-top: 10px;
}

.trust-preview-link {
  display: grid;
  place-items: center;
  color: #061006;
  background: var(--green);
  border-color: var(--green);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.trust-main,
.trust-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-main {
  background:
    linear-gradient(135deg, rgba(121, 255, 140, 0.12), transparent 42%),
    var(--panel-2);
  padding: 28px;
}

.trust-main h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  margin-top: 18px;
}

.trust-main p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin-top: 18px;
}

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

.trust-list article {
  background: #0b100f;
  padding: 20px;
}

.trust-list b {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 13px;
}

.trust-list h3 {
  font-size: 21px;
  margin-top: 16px;
}

.trust-list p,
.trust-list small {
  display: block;
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
  margin-top: 10px;
}

.trust-list a {
  display: inline-flex;
  color: var(--cyan);
  margin-top: 14px;
}

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

.status-checklist-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b100f;
  padding: 18px;
}

.status-checklist-grid span {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.status-checklist-grid p {
  color: var(--text);
  line-height: 1.35;
  margin-top: 12px;
}

.funding-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.funding-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(244, 212, 77, 0.12), transparent 44%),
    var(--panel);
}

.funding-copy h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  margin-top: 12px;
}

.funding-copy > p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
  margin-top: 20px;
}

.funding-copy small {
  display: block;
  color: #c3cfc8;
  line-height: 1.5;
  margin-top: 18px;
}

.funding-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

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

.funding-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b100f;
  padding: 20px;
}

.funding-grid b {
  color: var(--yellow);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.funding-grid h3 {
  font-size: 22px;
  margin-top: 18px;
}

.funding-grid p {
  color: var(--muted);
  line-height: 1.5;
  margin-top: 10px;
}

.tokenomics-grid,
.allocation-grid {
  display: grid;
  gap: 14px;
}

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

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

.tokenomics-grid article,
.allocation-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b100f;
  padding: 20px;
}

.tokenomics-grid span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(88, 215, 255, 0.32);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(88, 215, 255, 0.1);
  font-weight: 900;
}

.tokenomics-grid h3,
.allocation-grid h3 {
  font-size: 22px;
  margin-top: 18px;
}

.tokenomics-grid p,
.allocation-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 10px;
}

.allocation-grid b {
  color: var(--yellow);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.token-disclaimer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 72px;
  border: 1px solid rgba(244, 212, 77, 0.35);
  border-radius: 8px;
  background: rgba(244, 212, 77, 0.08);
  padding: 26px;
}

.token-disclaimer h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.token-disclaimer p {
  color: #d8e5dc;
  line-height: 1.6;
  margin-top: 12px;
}

.site-footer {
  width: 100%;
  border-top: 0;
  background: #eef1ef;
  color: #17201f;
  padding: 64px 0;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid h2 {
  color: #17201f;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.footer-grid a {
  display: block;
  color: #3e4642;
  font-size: 16px;
  line-height: 1.25;
  text-decoration: none;
  margin: 0 0 16px;
}

.footer-grid a:hover {
  color: #061006;
}

.language-select {
  width: fit-content;
  min-width: 174px;
  margin-top: 10px;
  color: #17201f;
  font-weight: 500;
}

.language-select span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.language-select select {
  min-height: 52px;
  width: 100%;
  color: #17201f;
  background: #ffffff;
  border: 1px solid #c5d1cc;
  border-radius: 6px;
  padding: 0 42px 0 16px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.platform-section {
  border-bottom: 1px solid var(--line);
}

.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.platform-tabs button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #0b100f;
  padding: 10px 16px;
  font-weight: 900;
}

.platform-tabs button.active {
  color: #061006;
  background: var(--green);
  border-color: var(--green);
}

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

.platform-panel.active {
  display: grid;
}

.platform-panel.token-panel.active {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.platform-panel article,
.competition-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(88, 215, 255, 0.08), transparent 46%),
    #0b100f;
  padding: 20px;
}

.platform-panel span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(88, 215, 255, 0.32);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(88, 215, 255, 0.1);
  font-weight: 900;
}

.platform-panel h3,
.competition-grid h3 {
  font-size: 23px;
  margin-top: 20px;
}

.platform-panel p,
.competition-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 10px;
}

.competition-section {
  padding-top: 0;
}

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

.competition-grid b {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 13px;
}

.donate-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.donate-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.donate-main,
.donate-channels article {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.donate-main {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(121, 255, 140, 0.12), transparent 35%),
    linear-gradient(315deg, rgba(244, 212, 77, 0.1), transparent 42%),
    var(--panel-2);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(121, 255, 140, 0.36);
  border-radius: 999px;
  color: var(--green);
  background: rgba(121, 255, 140, 0.1);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.donate-main h3 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  margin-top: 18px;
}

.donate-main p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin-top: 18px;
}

.donate-main .support-note {
  border-left: 3px solid var(--yellow);
  color: #d8e5dc;
  background: rgba(244, 212, 77, 0.08);
  padding: 12px 14px;
}

.wallet-box {
  border: 1px solid rgba(88, 215, 255, 0.3);
  border-radius: 8px;
  background: rgba(8, 11, 11, 0.54);
  padding: 16px;
  margin-top: 24px;
}

.wallet-box small {
  display: block;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
}

.wallet-box code {
  display: block;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  margin-top: 8px;
}

.wallet-box p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 12px;
}

.donate-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.donate-actions button,
.donate-actions a {
  min-height: 44px;
  border: 1px solid rgba(237, 248, 238, 0.18);
  border-radius: 8px;
  padding: 11px 14px;
  text-decoration: none;
}

.donate-actions button {
  color: #061006;
  background: var(--green);
  border-color: var(--green);
  font-weight: 900;
}

.donate-actions a {
  color: var(--yellow);
  background: rgba(244, 212, 77, 0.12);
  border-color: rgba(244, 212, 77, 0.35);
}

.donate-channels {
  display: grid;
  gap: 14px;
}

.donate-channels article {
  padding: 20px;
  background: #0b100f;
}

.donate-channels b {
  color: var(--yellow);
  font-size: 34px;
  line-height: 1;
}

.donate-channels h3 {
  font-size: 22px;
  margin-top: 14px;
}

.donate-channels p {
  color: var(--muted);
  line-height: 1.5;
  margin-top: 8px;
}

.donate-channels span {
  display: block;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  margin-top: 14px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  margin-top: 10px;
}

.lab-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.lab-panel,
.output-panel,
.roadmap-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.lab-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #0b1110;
  padding: 0 14px;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--green);
}

.output-panel {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(121, 255, 140, 0.11), transparent 50%),
    var(--panel-2);
}

.output-panel h3 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
  margin-top: 14px;
}

.output-panel p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  margin-top: 18px;
}

.hashtags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hashtags span {
  color: var(--cyan);
  background: rgba(88, 215, 255, 0.1);
  border: 1px solid rgba(88, 215, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
}

.phase-section {
  border-top: 1px solid var(--line);
}

.phase-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.phase-main,
.phase-checklist article {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.phase-main {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(88, 215, 255, 0.13), transparent 48%),
    var(--panel-2);
}

.phase-main b,
.phase-checklist span {
  color: var(--yellow);
  font-weight: 900;
}

.phase-main h3 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  margin-top: 18px;
}

.phase-main p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin-top: 18px;
}

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

.phase-checklist article {
  padding: 20px;
  background: #0b100f;
}

.phase-checklist span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(244, 212, 77, 0.34);
  border-radius: 8px;
  background: rgba(244, 212, 77, 0.1);
}

.phase-checklist h3 {
  margin-top: 22px;
  font-size: 21px;
}

.phase-checklist p {
  color: var(--muted);
  line-height: 1.5;
  margin-top: 10px;
}

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

.roadmap-grid article {
  padding: 20px;
}

.roadmap-grid b {
  color: var(--yellow);
}

.roadmap-grid h3 {
  margin-top: 28px;
  font-size: 22px;
}

.roadmap-grid p {
  color: var(--muted);
  line-height: 1.5;
  margin-top: 12px;
}

.roadmap-grid ul {
  padding-left: 18px;
  margin: 18px 0 0;
  color: #c9d8ce;
  line-height: 1.65;
}

.roadmap-grid li::marker {
  color: var(--green);
}

@media (max-width: 860px) {
  .hero {
    min-height: 860px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(8, 11, 11, 0.96) 0%, rgba(8, 11, 11, 0.82) 50%, rgba(8, 11, 11, 0.35) 100%),
      url("/assets/pat-hero.png") center bottom / cover no-repeat;
  }

  .topbar,
  .nav-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .brand-mark strong {
    white-space: normal;
  }

  .token-band,
  .tokenomics-grid,
  .allocation-grid,
  .gateway-grid,
  .trust-preview-grid,
  .trust-layout,
  .trust-list,
  .status-checklist-grid,
  .footer-grid,
  .platform-panel.active,
  .platform-panel.token-panel.active,
  .competition-grid,
  .lab-grid,
  .funding-section,
  .funding-grid,
  .donate-layout,
  .phase-layout,
  .phase-checklist,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

    .token-band article {
      border-right: 0;
      border-bottom: 1px solid var(--line);
    }

    .site-footer {
      padding: 44px 0;
    }

    .footer-grid {
      gap: 28px;
    }
  }
