@font-face {
  font-family: "Rodchenko";
  src: url("./assets/Rodchenko-Regular.otf") format("opentype");
  font-display: swap;
}

:root {
  --bg: #090909;
  --bg-soft: #14100d;
  --panel: rgba(18, 18, 18, 0.9);
  --panel-2: rgba(28, 22, 16, 0.92);
  --line: rgba(255, 161, 44, 0.18);
  --text: #f7efe5;
  --muted: #d5c4b1;
  --accent: #ff9d1c;
  --accent-2: #ff5b1f;
  --accent-3: #ffd36e;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", Arial, sans-serif;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 166, 42, 0.22), transparent 30%),
    radial-gradient(circle at 100% 20%, rgba(255, 91, 31, 0.16), transparent 24%),
    radial-gradient(circle at 0% 80%, rgba(255, 124, 34, 0.14), transparent 26%),
    linear-gradient(180deg, #120d09 0%, #090909 42%, #050505 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 157, 28, 0.04) 0%, transparent 36%),
    linear-gradient(225deg, rgba(255, 91, 31, 0.05) 0%, transparent 34%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 12px
    );
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), transparent 55%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 6px
    );
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

.page-shell {
  position: relative;
  width: 100%;
  padding: 16px 12px 34px;
  overflow: hidden;
}

.ambient {
  position: fixed;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  opacity: 0.34;
  pointer-events: none;
  filter: blur(18px);
}

.ambient-one {
  top: 10%;
  left: -26px;
  background: rgba(255, 157, 28, 0.62);
  animation: driftOne 8s ease-in-out infinite;
}

.ambient-two {
  right: -20px;
  bottom: 18%;
  background: rgba(255, 91, 31, 0.5);
  animation: driftTwo 10s ease-in-out infinite;
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.panel,
.feature-card,
.social-link,
.contract-box {
  position: relative;
  display: block;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(28, 22, 16, 0.95), rgba(14, 14, 14, 0.94));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.panel,
.feature-card {
  padding: 18px;
  margin-bottom: 14px;
}

.panel::after,
.feature-card::after,
.contract-box::after,
.social-link::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero {
  text-align: center;
  overflow: hidden;
  padding-top: 24px;
  background:
    linear-gradient(180deg, rgba(33, 22, 13, 0.96), rgba(11, 11, 11, 0.96)),
    linear-gradient(135deg, rgba(255, 157, 28, 0.08), transparent 36%);
}

.hero-glow {
  position: absolute;
  top: -50px;
  left: 50%;
  width: 180px;
  height: 180px;
  margin-left: -90px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 157, 28, 0.38), transparent 70%);
  filter: blur(14px);
  animation: pulseGlow 4.2s ease-in-out infinite;
}

.stack,
.social-grid,
.hero-actions,
.token-actions {
  display: block;
}

.hero-actions {
  position: relative;
  z-index: 3;
}

.logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 126px;
  height: 126px;
  margin: 0 auto 14px;
  object-fit: cover;
  border-radius: 24px;
  border: 2px solid rgba(255, 157, 28, 0.64);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.36),
    0 0 30px rgba(255, 157, 28, 0.18);
  animation: logoFloat 4.8s ease-in-out infinite;
}

.eyebrow,
.label,
.contract-label {
  display: block;
  margin: 0 0 10px;
  color: var(--accent-3);
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

h1,
h2 {
  margin: 0 0 12px;
  font-family: "Rodchenko", Arial, sans-serif;
  font-weight: normal;
  line-height: 1.02;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff4e5;
}

h1 {
  font-size: 36px;
  text-shadow: 0 0 18px rgba(255, 157, 28, 0.16);
}

h2 {
  font-size: 24px;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.hero-copy {
  max-width: 320px;
  margin: 0 auto 14px;
}

.hero-badge-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.hero-badge {
  display: inline-block;
  padding: 7px 11px;
  border: 1px solid rgba(255, 157, 28, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffe0ab;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-card {
  overflow: hidden;
  transform: rotate(0deg);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  background:
    linear-gradient(180deg, rgba(26, 20, 14, 0.98), rgba(13, 13, 13, 0.96)),
    radial-gradient(circle at top right, rgba(255, 157, 28, 0.08), transparent 34%);
}

.card-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  box-shadow: 0 0 16px rgba(255, 91, 31, 0.42);
}

.card-heading {
  display: block;
  margin-bottom: 10px;
}

.emoji {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(255, 157, 28, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 157, 28, 0.16);
  font-size: 22px;
}

.section-title {
  margin-bottom: 10px;
}

.status-strip {
  margin: 0 0 12px;
  padding: 8px 10px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 157, 28, 0.08);
  color: #ffdca7;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.chart-panel {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(26, 18, 11, 0.98), rgba(10, 10, 10, 0.98)),
    radial-gradient(circle at top center, rgba(255, 157, 28, 0.1), transparent 32%);
}

.chart-orbit {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.32;
  filter: blur(18px);
}

.chart-orbit-left {
  top: -26px;
  left: -30px;
  background: rgba(255, 157, 28, 0.42);
}

.chart-orbit-right {
  right: -30px;
  bottom: 80px;
  background: rgba(255, 91, 31, 0.34);
}

.chart-frame-wrap {
  position: relative;
  margin: 0 0 12px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 157, 28, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 157, 28, 0.12), rgba(255, 91, 31, 0.05)),
    rgba(8, 8, 8, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 12px 28px rgba(0, 0, 0, 0.24);
  min-height: 420px;
  overflow: hidden;
}

.chart-preview {
  padding: 10px;
}

.chart-frame {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  border-radius: 12px;
  background: #090909;
}

.social-link {
  padding: 14px;
  margin-bottom: 10px;
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  background:
    linear-gradient(180deg, rgba(31, 24, 18, 0.96), rgba(18, 18, 18, 0.96));
}

.social-panel {
  background:
    linear-gradient(180deg, rgba(30, 21, 14, 0.98), rgba(10, 10, 10, 0.98)),
    radial-gradient(circle at bottom center, rgba(255, 157, 28, 0.08), transparent 34%);
}

.community-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 157, 28, 0.14);
}

.community-footer p {
  margin-bottom: 12px;
  color: #f5d7ab;
  font-size: 14px;
}

.social-link span,
.social-link strong {
  display: block;
}

.social-link span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-link strong {
  font-size: 17px;
}

.button {
  display: block;
  width: 100%;
  min-height: 50px;
  margin-bottom: 10px;
  padding: 14px 16px;
  border: 0;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 0.2px;
  text-transform: none;
  cursor: pointer;
  color: #170d05;
  background: linear-gradient(135deg, var(--accent-3), var(--accent), var(--accent-2));
  box-shadow: 0 12px 24px rgba(255, 91, 31, 0.24);
  -webkit-appearance: none;
  appearance: none;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  visibility: visible !important;
}

.button-secondary {
  color: var(--text);
  background: linear-gradient(180deg, rgba(41, 41, 41, 0.96), rgba(27, 27, 27, 0.96));
  border: 2px solid rgba(255, 157, 28, 0.36);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-actions .button-primary {
  border: 2px solid rgba(255, 211, 110, 0.52);
}

.hero-actions .button-secondary {
  background: rgba(18, 18, 18, 0.94);
}

.button:hover,
.button:focus,
.social-link:hover,
.social-link:focus,
.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-2px);
}

.button:hover,
.button:focus {
  box-shadow: 0 16px 30px rgba(255, 91, 31, 0.34);
}


.social-link:hover,
.social-link:focus {
  border-color: rgba(255, 157, 28, 0.32);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.feature-card:hover,
.feature-card:focus-within {
  border-color: rgba(255, 157, 28, 0.28);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.reveal,
.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.05);
  }
}

@keyframes driftOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(20px, 12px, 0);
  }
}

@keyframes driftTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-16px, -16px, 0);
  }
}

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