:root {
  --bg: #060606;
  --panel: #101010;
  --panel-soft: #141414;
  --text: #f2f2f2;
  --muted: #a8a8a8;
  --silver: #d9d9d9;
  --silver-dark: #7d7d7d;
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.055), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.04), transparent 16%),
    linear-gradient(180deg, #040404 0%, #090909 100%);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

.site {
  width: min(920px, calc(100vw - 32px));
  margin: 36px auto 64px;
  position: relative;
}

.hero,
.strip,
.section,
.footer-note {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  border-radius: 28px;
}

.hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.045) 32%, transparent 52%),
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.hero-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px;
}

.floating-mark {
  animation: floatMark 6.5s ease-in-out infinite;
}

.hero-mark::before {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.14), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015) 62%, transparent 74%);
  filter: blur(8px);
  pointer-events: none;
}

.logo {
  width: min(100%, 260px);
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  padding: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015) 56%, transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 40px rgba(0, 0, 0, 0.42);
  transition: transform 220ms ease, filter 220ms ease;
}

.hero:hover .logo {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 30px 54px rgba(0, 0, 0, 0.5);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--silver-dark);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

h1,
h2,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(64px, 11vw, 132px);
  line-height: 0.86;
  margin-left: -0.04em;
}

h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.92;
  max-width: 10ch;
}

.lede {
  margin-top: 14px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  max-width: 30ch;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-meta span,
.label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta span {
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.032);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 120ms ease, opacity 120ms ease;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.button-primary {
  color: #0c0c0c;
  background: linear-gradient(180deg, #ffffff 0%, #cfcfcf 100%);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.1);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 36px 0 44px;
  padding: 0 4px;
  background: transparent;
  box-shadow: none;
}

.strip-item {
  padding: 0;
  background: transparent;
  transform: translateY(0);
  transition: transform 180ms ease, opacity 180ms ease;
}

.strip-item:hover {
  transform: translateY(-2px);
}

.strip-item strong,
.buy-item strong,
.legend-row strong,
.legend-total strong {
  display: block;
  margin-top: 10px;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.08;
  color: var(--silver);
}

.section {
  padding: 34px 0;
  margin-top: 8px;
  background: transparent;
  box-shadow: none;
}

.section-head {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}

.section-copy {
  max-width: 56ch;
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.launch-banner {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.launch-banner p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 48ch;
}

.launch-state {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4f4f4 0%, #cccccc 100%);
  color: #090909;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.allocation-bar {
  display: flex;
  height: 68px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.allocation-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38);
}

.allocation-presale,
.allocation-liquidity {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.allocation-presale {
  width: 60%;
  color: #070707;
  background: linear-gradient(180deg, #f4f4f4 0%, #cfcfcf 100%);
}

.allocation-liquidity {
  width: 40%;
  color: var(--text);
  background: linear-gradient(180deg, #4d4d4d 0%, #1c1c1c 100%);
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: start;
}

.pie-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 320px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.pie-chart {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #efefef 0deg 0deg,
    #4a4a4a 0deg 0deg,
    #1a1a1a 0deg 360deg
  );
  box-shadow: var(--shadow);
  position: relative;
  transform-origin: center;
  animation:
    pieEntrance 1.15s cubic-bezier(0.22, 1, 0.36, 1) both,
    pieFill 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards,
    slowPulse 7.5s ease-in-out infinite 1.7s,
    pieDrift 18s ease-in-out infinite 1.7s;
}

.pie-chart::after {
  content: "";
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background: #090909;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.sheen-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.34),
    transparent 28%,
    transparent 52%,
    rgba(255, 255, 255, 0.14)
  );
  mix-blend-mode: screen;
  animation: sweepShine 4.4s ease-in-out infinite 1.1s;
}

.pie-center {
  position: absolute;
  display: grid;
  gap: 4px;
  place-items: center;
  text-align: center;
  z-index: 1;
}

.pie-center span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.pie-center strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 34px;
  line-height: 1;
  color: var(--silver);
}

.legend {
  display: grid;
  gap: 14px;
}

.legend-row,
.legend-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  transition: transform 180ms ease, border-color 180ms ease;
}

.legend-row:hover,
.legend-total:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.14);
}

.legend-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.presale-dot {
  background: #efefef;
}

.liquidity-dot {
  background: #5a5a5a;
}

.dev-dot {
  background: #202020;
}

.buy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.action-placeholder {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.wallet-panel {
  margin-bottom: 30px;
  padding: 16px 18px 0;
  border-top: 1px solid var(--line-soft);
}

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

.wallet-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-text {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

button.button {
  border: 0;
  cursor: pointer;
}

button.button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.buy-item {
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line-soft);
  transition: transform 180ms ease, border-color 180ms ease;
}

.buy-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
}

.buy-item p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 24ch;
}

.buy-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-top: 8px;
}

.guide-block {
  padding-top: 6px;
}

.guide-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.remaining-stats {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.progress-shell {
  width: 100%;
  height: 12px;
  margin-top: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f5f5f5 0%, #bdbdbd 100%);
  background-size: 200% 100%;
  animation: progressGlow 4s linear infinite;
}

.remaining-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 14px;
}

.remaining-row strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 24px;
  line-height: 1.08;
  color: var(--silver);
}

.remaining-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  max-width: 34ch;
}

.footer-note {
  margin-top: 28px;
  padding: 24px 0 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border-top: 1px solid var(--line-soft);
}

.footer-note p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 0.9s ease forwards;
}

.reveal-1 {
  animation-delay: 0.05s;
}

.reveal-2 {
  animation-delay: 0.14s;
}

.reveal-3 {
  animation-delay: 0.23s;
}

.reveal-4 {
  animation-delay: 0.32s;
}

.reveal-5 {
  animation-delay: 0.4s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes sweepShine {
  0% {
    transform: rotate(-24deg) scale(1.02);
    opacity: 0;
  }
  18% {
    opacity: 0.92;
  }
  54% {
    opacity: 0.35;
  }
  100% {
    transform: rotate(24deg) scale(1.02);
    opacity: 0;
  }
}

@keyframes slowPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.012);
  }
}

@keyframes pieEntrance {
  0% {
    opacity: 0;
    transform: scale(0.82) rotate(-160deg);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes pieFill {
  0% {
    background: conic-gradient(
      #efefef 0deg 0deg,
      #4a4a4a 0deg 0deg,
      #1a1a1a 0deg 360deg
    );
  }
  60% {
    background: conic-gradient(
      #efefef 0deg 216deg,
      #4a4a4a 216deg 216deg,
      #1a1a1a 216deg 360deg
    );
  }
  100% {
    background: conic-gradient(
      #efefef 0deg 216deg,
      #4a4a4a 216deg 360deg,
      #1a1a1a 360deg 360deg
    );
  }
}

@keyframes pieDrift {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

@keyframes progressGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@media (max-width: 760px) {
  .site {
    width: min(100vw - 16px, 920px);
    margin-top: 8px;
  }

  .hero,
  .strip,
  .buy-grid,
  .tokenomics-grid,
  .buy-guide {
    grid-template-columns: 1fr;
  }

  .hero,
  .section,
  .footer-note {
    padding: 20px 0;
    border-radius: 22px;
  }

  .strip {
    gap: 18px;
    margin: 24px 0 30px;
    padding: 0;
  }

  .row {
    flex-direction: column;
  }
}
