:root {
  --ink: #0c1520;
  --ink-soft: #152433;
  --foam: #f3ebe0;
  --sand: #d9c3a1;
  --sand-deep: #b8956a;
  --amber: #ffb020;
  --amber-hi: #ffd56a;
  --sun: #ff8a2b;
  --sea: #1e4054;
  --mist: #8fa0b0;
  --line: 1.5px solid rgba(243, 235, 224, 0.18);
  --font-display: "Syne", "Arial Black", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
  --header-h: 4.5rem;
  --glow: 0 0 28px rgba(255, 176, 32, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--foam);
  font-family: var(--font-body);
  background:
    radial-gradient(900px 520px at 88% 8%, rgba(255, 138, 43, 0.18), transparent 58%),
    radial-gradient(720px 480px at 8% 92%, rgba(30, 64, 84, 0.55), transparent 55%),
    linear-gradient(165deg, #0a1118 0%, #101c28 48%, #0c1520 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 clamp(0.9rem, 3vw, 2rem);
  background: rgba(12, 21, 32, 0.72);
  border-bottom: var(--line);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: start;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-mark {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 176, 32, 0.65);
  box-shadow: var(--glow);
  background: #2a2418;
}

.logo-text {
  background: linear-gradient(120deg, var(--amber-hi), var(--sun));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: none;
  gap: 1.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}

.nav a:hover {
  color: var(--amber-hi);
}

.nav-cta {
  justify-self: end;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--amber), var(--sun));
  color: var(--ink);
  border: 1.5px solid rgba(255, 213, 106, 0.5);
  box-shadow: var(--glow);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

@media (min-width: 800px) {
  .nav {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.7rem 1.3rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: transform 0.15s var(--ease), box-shadow 0.15s ease, background 0.15s ease, filter 0.15s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--sun));
  color: var(--ink);
  border-color: rgba(255, 213, 106, 0.45);
  box-shadow: var(--glow);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: rgba(243, 235, 224, 0.06);
  color: var(--foam);
  border-color: rgba(243, 235, 224, 0.22);
}

.btn-ghost:hover {
  border-color: rgba(255, 176, 32, 0.55);
  color: var(--amber-hi);
}

.btn-gold {
  background: linear-gradient(135deg, var(--amber), var(--sun));
  color: var(--ink);
  border-color: rgba(255, 213, 106, 0.45);
}

/* Hero — full-bleed banner */
.hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 1.5rem) clamp(1rem, 4vw, 3rem) 3.5rem;
  isolation: isolate;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  animation: dawn 1.2s var(--ease) both;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 14, 22, 0.78) 0%, rgba(8, 14, 22, 0.35) 42%, rgba(8, 14, 22, 0.15) 68%),
    linear-gradient(180deg, rgba(8, 14, 22, 0.35) 0%, transparent 28%, transparent 48%, rgba(8, 14, 22, 0.88) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  animation: rise 0.9s var(--ease) 0.12s both;
}

.hero-ticker {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--amber-hi);
  text-shadow: 0 0 24px rgba(255, 176, 32, 0.55);
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 11vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #fff6e8 10%, var(--amber-hi) 55%, var(--sun) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(255, 138, 43, 0.35));
}

.hero-lede {
  margin: 1.05rem 0 1.5rem;
  max-width: 26rem;
  font-size: clamp(1.02rem, 2.1vw, 1.2rem);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(243, 235, 224, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

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

@keyframes dawn {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: min(92svh, 760px);
    align-items: end;
  }

  .hero-visual img {
    object-position: 62% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 14, 22, 0.45) 0%, rgba(8, 14, 22, 0.2) 35%, rgba(8, 14, 22, 0.92) 100%);
  }
}

/* Ticker */
.ticker {
  overflow: hidden;
  border-block: var(--line);
  background: rgba(255, 176, 32, 0.1);
  color: var(--amber-hi);
}

.ticker-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.8vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  animation: ticker 28s linear infinite;
}

.ticker-track b {
  color: var(--sun);
  font-weight: 400;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* Shared sections */
.section-inner {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7.5vw, 4.6rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--foam);
}

.section-lede {
  margin: 1rem 0 1.5rem;
  max-width: 34rem;
  color: var(--mist);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
}

.about,
.token,
.buy,
.principles,
.community,
.watch,
.chart {
  padding: clamp(3.5rem, 9vw, 6rem) 0;
}

/* About */
.about-heading {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 380px);
    gap: 2.75rem;
  }

  .about-visual {
    position: sticky;
    top: calc(var(--header-h) + 1.25rem);
    width: 100%;
    max-width: 380px;
    justify-self: end;
  }
}

.about-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.about-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  column-gap: 1.15rem;
  padding: 0 0 1.85rem;
}

.about-step:last-child {
  padding-bottom: 0;
}

.about-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.375rem;
  top: 2.75rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--amber), transparent);
  transform: translateX(-50%);
}

.about-step__index {
  position: relative;
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--amber), var(--sun));
  color: var(--ink);
  border-radius: 50%;
  box-shadow: var(--glow);
}

.about-step__body {
  padding-top: 0.35rem;
  min-width: 0;
}

.about-step__body h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

.about-step__body p {
  margin: 0;
  max-width: 34rem;
  color: var(--mist);
  font-size: 0.98rem;
  line-height: 1.65;
}

.about-step__body strong {
  color: var(--amber-hi);
  font-weight: 700;
}

.mascot-frame {
  margin: 0;
  overflow: hidden;
  border: 1.5px solid rgba(255, 176, 32, 0.35);
  background: rgba(21, 36, 51, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), var(--glow);
}

.mascot-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  animation: float 5.5s ease-in-out infinite;
}

.mascot-frame figcaption {
  padding: 1rem 1.1rem 1.15rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--mist);
  border-top: var(--line);
}

.mascot-frame figcaption b {
  color: var(--amber-hi);
}

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

.rep-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .rep-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rep {
  padding: 1.45rem 1.3rem 1.55rem;
  background: rgba(243, 235, 224, 0.04);
  border: var(--line);
  border-top: 2px solid rgba(255, 176, 32, 0.45);
  transition: transform 0.2s var(--ease), border-color 0.2s ease, background 0.2s ease;
}

.rep:hover {
  transform: translateY(-3px);
  background: rgba(255, 176, 32, 0.06);
  border-color: rgba(255, 176, 32, 0.35);
}

.rep > span {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  background: linear-gradient(135deg, var(--amber), var(--sun));
  padding: 0.2rem 0.55rem;
  letter-spacing: 0.04em;
}

.rep h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.rep p {
  margin: 0;
  color: var(--mist);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* Token */
.token {
  background:
    radial-gradient(600px 320px at 70% 20%, rgba(255, 138, 43, 0.1), transparent 60%),
    transparent;
}

.ca-box {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}

.ca-box code {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  min-height: 3.1rem;
  padding: 0.8rem 1rem;
  font-family: Consolas, Monaco, monospace;
  font-size: clamp(0.78rem, 2.2vw, 0.98rem);
  background: rgba(8, 14, 22, 0.65);
  border: var(--line);
  color: var(--sand);
  word-break: break-all;
}

.token-meta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.token-meta span {
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: var(--line);
  background: rgba(243, 235, 224, 0.04);
  color: var(--mist);
}

.token-meta b {
  color: var(--amber-hi);
  margin-left: 0.35rem;
}

.token-note {
  margin-top: 1.25rem;
  margin-bottom: 0;
  color: var(--mist);
  font-size: 0.95rem;
}

/* How to Buy */
.buy {
  background:
    linear-gradient(180deg, rgba(255, 176, 32, 0.12), rgba(255, 138, 43, 0.05)),
    var(--ink-soft);
  border-block: var(--line);
}

.buy .eyebrow {
  color: var(--amber-hi);
}

.buy-heading {
  max-width: 36rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.buy-heading .section-lede {
  margin-top: 0.85rem;
  color: var(--sand);
}

.buy-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .buy-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.buy-steps li {
  display: grid;
  gap: 1rem;
  padding: 1.35rem 1.25rem 1.45rem;
  background: rgba(8, 14, 22, 0.45);
  border: var(--line);
  transition: transform 0.2s var(--ease), border-color 0.2s ease;
}

.buy-steps li:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 176, 32, 0.4);
}

.buy-steps li > span {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--amber), var(--sun));
  color: var(--ink);
  border-radius: 50%;
}

.buy-steps b {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
}

.buy-steps p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--mist);
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

/* Chart */
.chart-shell {
  margin-top: 0.5rem;
  border: var(--line);
  background: #070d14;
  overflow: hidden;
}

.chart-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border-bottom: var(--line);
  background: linear-gradient(90deg, rgba(255, 176, 32, 0.2), rgba(255, 138, 43, 0.08));
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-hi);
}

.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #3dcc6e;
  box-shadow: 0 0 0 3px rgba(61, 204, 110, 0.25);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

.chart-placeholder {
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: min(52vw, 360px);
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--mist);
}

.chart-placeholder img {
  width: 7rem;
  height: 7rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 176, 32, 0.45);
  box-shadow: var(--glow);
}

.chart-placeholder p {
  margin: 0;
  max-width: 24rem;
  font-size: 0.98rem;
  line-height: 1.5;
}

.chart-actions {
  margin-top: 1.5rem;
}

/* Watch / TikTok */
.watch {
  background:
    radial-gradient(700px 420px at 78% 40%, rgba(255, 138, 43, 0.12), transparent 58%),
    rgba(0, 0, 0, 0.12);
  border-block: var(--line);
}

.watch-inner {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
}

@media (min-width: 900px) {
  .watch-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 3rem;
  }
}

.watch-copy .section-lede {
  margin-bottom: 1.25rem;
}

.tiktok-shell {
  position: relative;
  width: min(100%, 360px);
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1.5px solid rgba(255, 176, 32, 0.4);
  background: #070d14;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.45),
    var(--glow);
}

.tiktok-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* X / Community */
.community {
  background:
    radial-gradient(640px 360px at 20% 30%, rgba(255, 176, 32, 0.1), transparent 60%),
    rgba(0, 0, 0, 0.18);
  border-block: var(--line);
}

.x-card {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 42rem;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background: rgba(8, 14, 22, 0.65);
  border: 1.5px solid rgba(255, 176, 32, 0.28);
  box-shadow: var(--glow);
}

.x-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.15rem;
  margin-bottom: 1.25rem;
}

.x-card__avatar {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 176, 32, 0.55);
  box-shadow: var(--glow);
  background: #2a2418;
}

.x-card__identity {
  flex: 1 1 10rem;
  min-width: 0;
}

.x-card__identity h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.x-card__handle {
  margin: 0.3rem 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber);
}

.x-card__follow {
  margin-left: auto;
}

.x-card__bio {
  display: grid;
  gap: 1rem;
  padding-top: 1.15rem;
  border-top: var(--line);
}

.x-card__bio p {
  margin: 0;
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  line-height: 1.65;
  color: rgba(243, 235, 224, 0.9);
  font-weight: 500;
}

.x-card__bio p:last-child {
  color: var(--amber-hi);
  font-weight: 600;
}

@media (max-width: 560px) {
  .x-card__follow {
    margin-left: 0;
    width: 100%;
  }
}

/* Footer */
.site-footer {
  padding: 2.5rem 1rem 3.25rem;
  border-top: var(--line);
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, var(--amber-hi), var(--sun));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 176, 32, 0.5);
  box-shadow: var(--glow);
}

.site-footer p {
  margin: 0.85rem auto 0;
  max-width: 38rem;
  color: var(--mist);
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-copy,
  .hero-visual img,
  .ticker-track,
  .mascot-frame img {
    animation: none !important;
  }
}
