/* FAF Codex Frontend Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "PP Neue Corp Compact";
  src: url("../fonts/PPNeueCorp-CompactUltrabold.woff2") format("woff2"),
    url("../fonts/PPNeueCorp-CompactUltrabold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #131818;
  --bg-darker: #090c0c;
  --accent: #c8f520;
  --accent-soft: rgba(200, 245, 32, 0.1);
  --text-primary: #f7f7f7;
  --text-muted: rgba(255, 255, 255, 0.68);
  --panel-bg: rgba(26, 34, 34, 0.72);
  --panel-border: rgba(255, 255, 255, 0.06);
  --outline: rgba(200, 245, 32, 0.35);
  --shadow-lg: 0 20px 80px rgba(0, 0, 0, 0.45);
  --radius-pill: 999px;
  font-family: "Onest", sans-serif;
  color: var(--text-primary);
  background: var(--bg-dark);
}

html,
body {
  min-height: 100%;
  background: var(--bg-dark);
  color: var(--text-primary);
}

body {
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: clamp(18px, 5vw, 36px);
}

.page-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at top, rgba(200, 245, 32, 0.05), transparent 55%),
    radial-gradient(circle at bottom right, rgba(120, 255, 215, 0.04), transparent 50%),
    linear-gradient(180deg, var(--bg-darker) 0%, #111616 100%);
}

.page-background .grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 95%, rgba(255, 255, 255, 0.03) 97%),
    linear-gradient(90deg, transparent 95%, rgba(255, 255, 255, 0.03) 97%);
  background-size: 140px 140px;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, transparent 0%, black 25%, black 75%, transparent 100%);
}

.orb {
  position: absolute;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.55;
  background: radial-gradient(circle, rgba(200, 245, 32, 0.18) 0%, rgba(200, 245, 32, 0) 68%);
  mix-blend-mode: screen;
  animation: float 12s ease-in-out infinite;
}

.orb-one {
  width: 32vw;
  top: 5vh;
  left: -10vw;
}

.orb-two {
  width: 38vw;
  bottom: -12vh;
  right: -8vw;
  animation-delay: -4s;
}

@keyframes float {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -20px, 0);
  }
}

.site-header {
  width: min(1200px, 92%);
  margin: 48px auto 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
}

.branding {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.brand-wordmark {
  font-family: "PP Neue Corp Compact", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  letter-spacing: -0.02em;
}

.hero-pill {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero {
  width: min(1360px, 94%);
  margin: clamp(40px, 7vw, 72px) auto clamp(60px, 10vw, 90px);
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(520px, 720px);
  gap: clamp(48px, 8vw, 80px);
  align-items: start;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 32px);
}

.eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.headline {
  font-family: "PP Neue Corp Compact", sans-serif;
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
}

@media (min-width: 1024px) and (max-width: 1300px) {
  .headline {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
  }
}

.headline .accent {
  display: block;
  color: var(--accent);
}

.subhead {
  max-width: 520px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.action-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  max-width: 100%;
}

.cta-button {
  position: relative;
  flex: 1 1 0;
  padding: 18px 26px;
  border-radius: 28px;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  min-width: 0;
}

.cta-button--primary {
  background: var(--accent);
  color: #111;
  border-color: rgba(200, 245, 32, 0.4);
}

.cta-button--primary:hover {
  background: #f4ff7c;
  transform: translateY(-4px);
}

.cta-button--secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.cta-button--secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(200, 245, 32, 0.32);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cta-button--secondary:hover {
  transform: translateY(-4px);
  background: rgba(200, 245, 32, 0.08);
}

.cta-button--secondary:hover::after {
  opacity: 1;
}

.cta-label {
  display: block;
  font-family: "PP Neue Corp Compact", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.cta-caption {
  display: block;
  font-size: 0.95rem;
  color: rgba(17, 17, 17, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cta-button--secondary .cta-caption {
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  margin-top: clamp(28px, 4vw, 44px);
  align-items: stretch;
}

.pulse-card {
  position: relative;
  padding: 30px;
  margin-top: clamp(0px, 4vw, 12px);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(34, 46, 46, 0.92), rgba(17, 22, 22, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.pulse-card__ring,
.pulse-card__ring--delay {
  position: absolute;
  inset: -36px;
  border-radius: 50%;
  border: 1px solid rgba(200, 245, 32, 0.22);
  opacity: 0;
  animation: pulse 3.2s ease-out infinite;
}

.pulse-card__ring--delay {
  animation-delay: 1.4s;
}

@keyframes pulse {
  0% {
    transform: scale(0.88);
    opacity: 0.3;
  }

  45% {
    transform: scale(1.05);
    opacity: 0.12;
  }

  100% {
    transform: scale(1.16);
    opacity: 0;
  }
}

.pulse-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pulse-card__label {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pulse-card__value {
  font-family: "PP Neue Corp Compact", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.pulse-card__meta {
  font-size: 0.95rem;
  color: var(--text-muted);
}


.metric-card {
  position: relative;
  padding: 28px 16px;
  border-radius: 26px;
  background: rgba(17, 22, 22, 0.92);
  border: 1px solid rgba(200, 245, 32, 0.16);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.metric-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-meta h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.metric-figure {
  font-family: 'PP Neue Corp Compact', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

.metric-delta {
  color: var(--accent);
  font-size: 0.9rem;
}

.metric-disclaimer {
  font-size: 0.55rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 12px;
  padding: 0 16px;
}

.metric-disclaimer em {
  font-style: italic;
}

.metric-chart {
  position: relative;
  width: 100%;
  height: 160px;
}

.metric-chart canvas {
  width: 100%;
  height: 100%;
  display: block;
}


.info-panels {
  width: min(1200px, 92%);
  margin: 20px auto 90px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.panel {
  padding: 26px;
  border-radius: 28px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel--callout {
  background: linear-gradient(145deg, rgba(200, 245, 32, 0.14), rgba(255, 255, 255, 0.02));
  border-color: rgba(200, 245, 32, 0.25);
}

.panel__title {
  font-family: "PP Neue Corp Compact", sans-serif;
  font-size: 1.6rem;
}

.panel__list {
  display: grid;
  gap: 12px;
  color: var(--text-muted);
  list-style: none;
}

.panel__list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
}

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

.panel a {
  color: var(--accent);
  text-decoration: none;
}

.collapsible {
  width: min(1200px, 92%);
  margin: 0 auto 120px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 18, 18, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}

.collapsible__toggle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 24px 28px;
  background: transparent;
  border: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.toggle__label {
  font-family: "PP Neue Corp Compact", sans-serif;
  font-size: 1.35rem;
}

.toggle__hint {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.toggle__icon {
  position: absolute;
  right: 26px;
  top: 28px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.collapsible__content {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.collapsible__content iframe {
  width: 100%;
  height: 70vh;
  border: none;
}

.collapsible.open .toggle__icon {
  transform: rotate(180deg);
}

.collapsible.open .collapsible__content {
  max-height: 1200px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: 18px;
  background: rgba(17, 22, 22, 0.92);
  border: 1px solid rgba(200, 245, 32, 0.3);
  color: var(--accent);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  z-index: 20;
}

.toast__icon {
  font-size: 1.1rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 8, 0.88);
  backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
  padding: 32px 20px;
  z-index: 30;
}


.modal[hidden] {
  display: none !important;
}

.toast[hidden] {
  display: none !important;
}

.modal__dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: 90vh;
  background: linear-gradient(160deg, rgba(21, 27, 27, 0.98), rgba(12, 16, 15, 0.94));
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.modal__body {
  padding: 48px 42px 38px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Handle medium screens where button text might overflow */
@media (max-width: 1300px) and (min-width: 1101px) {
  .cta-label {
    font-size: 1.15rem;
  }

  .cta-caption {
    font-size: 0.8rem;
  }

  .cta-button {
    padding: 16px 20px;
  }
}

/* Handle smaller laptop screens */
@media (max-width: 900px) and (min-width: 641px) {
  .cta-caption {
    white-space: normal;
    line-height: 1.3;
  }

  .cta-button--secondary .cta-caption {
    white-space: normal;
    line-height: 1.3;
  }
}

@media (max-width: 1100px) {
  .action-row {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero {
    margin-top: 28px;
  }

  .modal__body {
    padding: 32px 24px;
  }

  .collapsible__content iframe {
    height: 60vh;
  }
}

@media (max-width: 480px) {
  .hero {
    margin-bottom: 56px;
  }

  .pulse-card {
    padding: 24px;
  }
}

.flow-headline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flow-headline h2 {
  font-family: "PP Neue Corp Compact", sans-serif;
  font-size: 2rem;
}

.flow-headline p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.crypto-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 14, 14, 0.8);
  color: var(--text-primary);
  font-size: 1rem;
}

.form-field input:focus,
.form-field select:focus {
  outline: 2px solid var(--outline);
  outline-offset: 2px;
}

.fieldset-inline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.form-footnote {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-primary,
.form-secondary {
  padding: 14px 24px;
  border-radius: 22px;
  font-family: "PP Neue Corp Compact", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.3s ease, border 0.3s ease;
}

.form-primary {
  background: var(--accent);
  color: #111;
  border-color: rgba(200, 245, 32, 0.3);
}

.form-primary:hover {
  transform: translateY(-2px);
  background: #f4ff7c;
}

.form-secondary {
  background: transparent;
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.12);
}

.form-secondary:hover {
  border-color: rgba(200, 245, 32, 0.3);
  color: var(--accent);
}

.form-error {
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 89, 89, 0.12);
  border: 1px solid rgba(255, 102, 102, 0.4);
  color: #ff9f9f;
  font-size: 0.95rem;
}

.spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 40px 0;
}

.spinner__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid rgba(200, 245, 32, 0.2);
  border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.address-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.address-card__subtitle {
  color: var(--text-muted);
}

.address-card__panel {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 20px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(12, 18, 18, 0.92);
  border: 1px solid rgba(200, 245, 32, 0.18);
}

.address-card__qr img {
  width: 100%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.address-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.address-card__address {
  font-family: "Onest", monospace;
  background: rgba(0, 0, 0, 0.4);
  padding: 12px 14px;
  border-radius: 14px;
  word-break: break-all;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.copy-button {
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 14px;
  border: 1px solid rgba(200, 245, 32, 0.3);
  background: rgba(200, 245, 32, 0.1);
  color: var(--accent);
  cursor: pointer;
}

.copy-button:hover {
  background: rgba(200, 245, 32, 0.22);
}

.address-card__note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.error-state {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.error-state p {
  color: var(--text-muted);
}

.success-modal {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}

.success-modal__icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 8px;
}

.success-modal__title {
  font-family: "PP Neue Corp Compact", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

.success-modal__message {
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
}

.success-modal__footer {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 8px 0 0;
}

.success-modal__support {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.success-modal__support a {
  color: var(--accent);
  text-decoration: none;
}

.success-modal__support a:hover {
  text-decoration: underline;
}

.success-modal .form-actions {
  justify-content: center;
  margin-top: 12px;
}

.toast--visible {
  animation: toast-in 0.3s ease forwards;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 640px) {
  .fieldset-inline {
    grid-template-columns: 1fr;
  }

  .address-card__panel {
    grid-template-columns: 1fr;
  }

  .copy-button {
    width: 100%;
    text-align: center;
  }
}

.admin-body {
  font-family: "Onest", sans-serif;
  padding: 40px 0;
}

.admin-container {
  width: min(1200px, 94%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.admin-header h1 {
  font-family: "PP Neue Corp Compact", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.admin-header p {
  max-width: 560px;
  color: var(--text-muted);
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(14, 18, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
}

.admin-filters label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.admin-filters select {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 14, 14, 0.8);
  color: var(--text-primary);
}

.admin-table-wrapper {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 18, 18, 0.9);
  backdrop-filter: blur(12px);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead {
  background: rgba(255, 255, 255, 0.05);
}

.admin-table th,
.admin-table td {
  padding: 14px;
  font-size: 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.admin-table tbody tr:hover {
  background: rgba(200, 245, 32, 0.06);
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-table td .form-secondary {
  font-size: 0.8rem;
  padding: 10px 14px;
}

.empty-state {
  text-align: center;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .admin-table thead {
    display: none;
  }

  .admin-table,
  .admin-table tbody,
  .admin-table tr,
  .admin-table td {
    display: block;
    width: 100%;
  }

  .admin-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
  }

  .admin-table td {
    border: none;
    padding: 6px 16px;
  }

  .admin-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
}

.admin-feedback {
  min-height: 20px;
  color: var(--accent);
  font-size: 0.95rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-pill--status {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 0.85rem;
  line-height: 1.2;
  position: relative;
  padding-left: 34px;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  box-shadow: 0 0 12px rgba(200, 245, 32, 0.7);
}

.hero-pill--status .status-dot {
  position: absolute;
  left: 16px;
  top: 18px;
}

.status-meta {
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
}

.social-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 4px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--text-primary);
  display: block;
  transform-origin: center;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 245, 32, 0.5);
  background: rgba(200, 245, 32, 0.18);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section-block {
  padding: clamp(50px, 12vw, 140px) 0;
}

.section-heading-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: clamp(32px, 8vw, 56px);
  max-width: 760px;
}

.section-title {
  font-family: 'PP Neue Corp Compact', sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  letter-spacing: -0.015em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.blueprint-grid,
.solves-grid,
.outcomes-grid,
.tokenomics-grid,
.participation-grid,
.staking-grid,
.launch-grid {
  display: grid;
  gap: clamp(20px, 4vw, 32px);
}

.blueprint-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.blueprint-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(17, 22, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blueprint-card h3 {
  font-family: 'PP Neue Corp Compact', sans-serif;
  font-size: 1.25rem;
}

.blueprint-card p {
  color: var(--text-muted);
}

.solves-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.solve-card {
  padding: 32px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(36, 46, 46, 0.9), rgba(12, 16, 16, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solve-icon {
  font-size: 1.4rem;
}

.solve-card h3 {
  font-family: 'PP Neue Corp Compact', sans-serif;
  font-size: 1.4rem;
}

.solve-card p {
  color: var(--text-muted);
}

.outcomes-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.outcome-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(13, 18, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.outcome-number {
  font-family: 'PP Neue Corp Compact', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.outcome-card h3 {
  font-family: 'PP Neue Corp Compact', sans-serif;
  font-size: 1.3rem;
}

.outcome-card p {
  color: var(--text-muted);
}

.tokenomics-section {
  background: linear-gradient(160deg, rgba(20, 27, 27, 0.94), rgba(10, 14, 14, 0.92));
}

.tokenomics-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tokenomics-card {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(200, 245, 32, 0.22);
  background: rgba(10, 12, 12, 0.8);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.tokenomics-card h3 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.token-figure {
  font-family: 'PP Neue Corp Compact', sans-serif;
  font-size: 2rem;
}

.token-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.token-disclaimer {
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.participation-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.participation-card {
  padding: 32px;
  border-radius: 24px;
  background: rgba(17, 22, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.participation-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
}

.participation-note {
  margin-top: 28px;
  padding: 22px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.staking-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.staking-card {
  padding: 26px;
  border-radius: 22px;
  background: rgba(13, 18, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
}

.staking-card h3 {
  font-family: 'PP Neue Corp Compact', sans-serif;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.launch-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.launch-card {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.launch-card h3 {
  font-family: 'PP Neue Corp Compact', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.checklist-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(17, 22, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.checklist-item span {
  font-size: 1.2rem;
  color: var(--accent);
}

.closing-section {
  padding-bottom: clamp(90px, 12vw, 140px);
}

.closing-card {
  padding: clamp(36px, 6vw, 64px);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(200, 245, 32, 0.14), rgba(17, 22, 22, 0.92));
  border: 1px solid rgba(200, 245, 32, 0.25);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.closing-card h2 {
  font-family: 'PP Neue Corp Compact', sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}

.closing-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.closing-actions {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.closing-link {
  padding: 14px 24px;
  border-radius: 22px;
  border: 1px solid rgba(200, 245, 32, 0.4);
  color: var(--accent);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.closing-link:hover {
  transform: translateY(-2px);
  background: rgba(200, 245, 32, 0.16);
}

@media (max-width: 768px) {
  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  .hero-pill--status {
    width: 100%;
  }

  .section-heading-block {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .social-nav {
    margin-left: auto;
  }
}


@media (max-width: 600px) {
  body {
    padding-top: 18px;
  }
}


@media (max-width: 640px) {
  .hero {
    margin: 32px auto 60px;
  }

  .cta-button {
    width: 100%;
  }

  .metric-card {
    padding: 12px;
  }

  .metric-chart {
    height: 140px;
  }
}


.social-link--x svg {
  transform: none;
}

.social-link--tg svg {
  transform: none;
}

/* Hamster Wheel Animation */
.hamster-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 28px 20px 8px;
  border-radius: 20px;
  border: 1px solid var(--accent);
}

.milestones-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 260px) minmax(0, 320px);
  grid-template-rows: repeat(2, auto);
  column-gap: 28px;
  row-gap: 18px;
  align-items: stretch;
  width: 100%;
  justify-content: center;
}

.milestone-box {
  background: rgba(17, 22, 22, 0.92);
  border-radius: 18px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  min-height: 0;
}

.milestone-box--seed {
  grid-column: 1;
  grid-row: 1;
}

.milestone-box--marketcap {
  grid-column: 1;
  grid-row: 2;
}

.milestone-box--cex {
  grid-column: 3;
  grid-row: 1;
}

.milestone-box--ventures {
  grid-column: 3;
  grid-row: 2;
}

.hamster-center {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}



.milestone-icon {
  font-size: 1remx;
  line-height: 1;
  flex-shrink: 0;
}

.milestone-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.milestone-title {
  font-size: 14px;
  font-weight: 600;
  color: #a0a0a0;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.milestone-amount {
  font-family: 'PP Neue Corp Compact', sans-serif;
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: -0.01em;
  text-align: center;
}

.milestone-desc {
  font-size: 8px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 6px;
}

.milestone-progress-container {
  width: 100%;
  height: 6px;
  background: rgba(200, 245, 32, 0.14);
  border-radius: 999px;
  overflow: hidden;
}

.milestone-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #c8f520 0%, #a8d510 100%);
  border-radius: inherit;
  transition: width 0.8s ease-out;
}

@media (max-width: 1200px) {
  .milestones-grid {
    column-gap: 28px;
  }



  .hero {
    grid-template-columns: minmax(300px, 1fr) minmax(440px, 580px);
    gap: clamp(40px, 7vw, 90px);
  }
}

@media (max-width: 1023px) {
  .hero {
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 72px);
  }

}


@media (min-width: 1024px) and (max-width: 1200px) {
  .milestones-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 20px;
  }

  .hamster-center {
    grid-column: 1;
    grid-row: auto;
    padding: 12px 0 4px;
    order: 2;
  }

  .milestone-box--seed {
    grid-column: 1;
    grid-row: auto;
    order: 1;
  }

  .milestone-box--marketcap {
    grid-column: 1;
    grid-row: auto;
    order: 3;
  }

  .milestone-box--cex {
    grid-column: 1;
    grid-row: auto;
    order: 4;
  }

  .milestone-box--ventures {
    grid-column: 1;
    grid-row: auto;
    order: 5;
  }
}

@media (max-width: 767px) {
  .milestones-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 20px;
  }

  .hamster-center {
    grid-column: 1;
    grid-row: auto;
    padding: 12px 0 4px;
    order: 2;
  }

  .milestone-box--seed {
    grid-column: 1;
    grid-row: auto;
    order: 1;
  }

  .milestone-box--marketcap {
    grid-column: 1;
    grid-row: auto;
    order: 3;
  }

  .milestone-box--cex {
    grid-column: 1;
    grid-row: auto;
    order: 4;
  }

  .milestone-box--ventures {
    grid-column: 1;
    grid-row: auto;
    order: 5;
  }
}

.wheel-and-hamster {
  --dur: 2s;
  position: relative;
  width: 13.5em;
  height: 13.5em;
  font-size: 13px;
}

.wheel,
.hamster,
.hamster div,
.spoke {
  position: absolute;
}

.wheel,
.spoke {
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wheel {
  background: radial-gradient(100% 100% at center, hsla(0, 0%, 60%, 0) 47.8%, hsl(0, 0%, 60%) 48%);
  z-index: 2;
}

.hamster {
  animation: hamster var(--dur) ease-in-out infinite;
  top: 57%;
  left: calc(50% - 3.5em);
  width: 7em;
  height: 3.75em;
  transform: rotate(4deg) translate(-0.8em, 1.85em);
  transform-origin: 50% 0;
  z-index: 1;
}

.hamster__head {
  animation: hamsterHead var(--dur) ease-in-out infinite;
  background: hsl(30, 90%, 55%);
  border-radius: 70% 30% 0 100% / 40% 25% 25% 60%;
  box-shadow: 0 -0.25em 0 hsl(30, 90%, 80%) inset, 0.75em -1.55em 0 hsl(30, 90%, 90%) inset;
  top: 0;
  left: -2em;
  width: 2.75em;
  height: 2.5em;
  transform-origin: 100% 50%;
}

.hamster__ear {
  animation: hamsterEar var(--dur) ease-in-out infinite;
  background: hsl(0, 90%, 85%);
  border-radius: 50%;
  box-shadow: -0.25em 0 hsl(30, 90%, 55%) inset;
  top: -0.25em;
  right: -0.25em;
  width: 0.75em;
  height: 0.75em;
  transform-origin: 50% 75%;
}

.hamster__eye {
  animation: hamsterEye var(--dur) linear infinite;
  background-color: hsl(0, 0%, 0%);
  border-radius: 50%;
  top: 0.375em;
  left: 1.25em;
  width: 0.5em;
  height: 0.5em;
}

.hamster__nose {
  background: hsl(0, 90%, 75%);
  border-radius: 35% 65% 85% 15% / 70% 50% 50% 30%;
  top: 0.75em;
  left: 0;
  width: 0.2em;
  height: 0.25em;
}

.hamster__body {
  animation: hamsterBody var(--dur) ease-in-out infinite;
  background: hsl(30, 90%, 90%);
  border-radius: 50% 30% 50% 30% / 15% 60% 40% 40%;
  box-shadow: 0.1em 0.75em 0 hsl(30, 90%, 55%) inset, 0.15em -0.5em 0 hsl(30, 90%, 80%) inset;
  top: 0.25em;
  left: 2em;
  width: 4.5em;
  height: 3em;
  transform-origin: 17% 50%;
  transform-style: preserve-3d;
}

.hamster__limb--fr,
.hamster__limb--fl {
  clip-path: polygon(0 0, 100% 0, 70% 80%, 60% 100%, 0% 100%, 40% 80%);
  top: 2em;
  left: 0.5em;
  width: 1em;
  height: 1.5em;
  transform-origin: 50% 0;
}

.hamster__limb--fr {
  animation: hamsterFRLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30, 90%, 80%) 80%, hsl(0, 90%, 75%) 80%);
  transform: rotate(15deg) translateZ(-1px);
}

.hamster__limb--fl {
  animation: hamsterFLLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30, 90%, 90%) 80%, hsl(0, 90%, 85%) 80%);
  transform: rotate(15deg);
}

.hamster__limb--br,
.hamster__limb--bl {
  border-radius: 0.75em 0.75em 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 30%, 70% 90%, 70% 100%, 30% 100%, 40% 90%, 0% 30%);
  top: 1em;
  left: 2.8em;
  width: 1.5em;
  height: 2.5em;
  transform-origin: 50% 30%;
}

.hamster__limb--br {
  animation: hamsterBRLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30, 90%, 80%) 90%, hsl(0, 90%, 75%) 90%);
  transform: rotate(-25deg) translateZ(-1px);
}

.hamster__limb--bl {
  animation: hamsterBLLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30, 90%, 90%) 90%, hsl(0, 90%, 85%) 90%);
  transform: rotate(-25deg);
}

.hamster__tail {
  animation: hamsterTail var(--dur) linear infinite;
  background: hsl(0, 90%, 85%);
  border-radius: 0.25em 50% 50% 0.25em;
  box-shadow: 0 -0.2em 0 hsl(0, 90%, 75%) inset;
  top: 1.5em;
  right: -0.5em;
  width: 1em;
  height: 0.5em;
  transform: rotate(30deg) translateZ(-1px);
  transform-origin: 0.25em 0.25em;
}

.spoke {
  animation: spoke var(--dur) linear infinite;
  background: radial-gradient(100% 100% at center, hsl(0, 0%, 60%) 4.8%, hsla(0, 0%, 60%, 0) 5%),
    linear-gradient(hsla(0, 0%, 55%, 0) 46.9%, hsl(0, 0%, 65%) 47% 52.9%, hsla(0, 0%, 65%, 0) 53%) 50% 50% / 99% 99% no-repeat;
}

.hamster-status {
  font-size: 12px;
  color: #c8f520;
  font-weight: 600;
  text-align: center;
}

@keyframes hamster {

  from,
  to {
    transform: rotate(4deg) translate(-0.8em, 1.85em);
  }

  50% {
    transform: rotate(0) translate(-0.8em, 1.85em);
  }
}

@keyframes hamsterHead {

  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(0);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(8deg);
  }
}

@keyframes hamsterEye {

  from,
  90%,
  to {
    transform: scaleY(1);
  }

  95% {
    transform: scaleY(0);
  }
}

@keyframes hamsterEar {

  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(0);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(12deg);
  }
}

@keyframes hamsterBody {

  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(0);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(-2deg);
  }
}

@keyframes hamsterFRLimb {

  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(50deg) translateZ(-1px);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(-30deg) translateZ(-1px);
  }
}

@keyframes hamsterFLLimb {

  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(-30deg);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(50deg);
  }
}

@keyframes hamsterBRLimb {

  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(-60deg) translateZ(-1px);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(20deg) translateZ(-1px);
  }
}

@keyframes hamsterBLLimb {

  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(20deg);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(-60deg);
  }
}

@keyframes hamsterTail {

  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(30deg) translateZ(-1px);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(10deg) translateZ(-1px);
  }
}

@keyframes spoke {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(-1turn);
  }
}

.hamster-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 24px;
}

.hamster-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-item {
  text-align: center;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #c8f520;
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(200, 245, 32, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #c8f520 0%, #a8d510 100%);
  border-radius: 3px;
  transition: width 0.5s ease-out;
}