/* =========================
   Base
========================= */
:root {
  --black: #070707;
  --black-soft: #111111;
  --cream: #f2efe7;
  --white: #ffffff;
  --red: #f04438;
  --red-dark: #b92118;
  --lime: #cffb34;
  --muted: #adadad;
  --line: rgba(255, 255, 255, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(240, 68, 56, 0.12), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(207, 251, 52, 0.08), transparent 25%),
    var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  overflow: hidden;
}

.section-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Archivo Black", Impact, sans-serif;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: var(--lime);
  color: var(--black);
}

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

.button-secondary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* =========================
   Navigation
========================= */
.site-header {
  position: relative;
  z-index: 10;
  padding: 24px 20px 0;
}

.nav-card {
  width: min(1180px, 100%);
  min-height: 78px;
  margin: 0 auto;
  padding: 10px 12px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(16, 16, 16, 0.9);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

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

.brand-logo-wrap {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  overflow: hidden;
  border: 2px solid var(--red);
  border-radius: 16px;
  background: var(--cream);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1rem;
}

.brand-copy small {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.nav-links a {
  color: #d8d8d8;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--lime);
}

.nav-cta {
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--black);
  font-weight: 900;
}

.nav-cta:hover {
  background: var(--red);
  color: var(--white);
}

/* =========================
   Hero
========================= */
.hero {
  min-height: 760px;
  padding: 90px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 820px;
  margin: 22px 0 24px;
  font-size: clamp(4.1rem, 7.2vw, 7.4rem);
  line-height: 0.88;
}

.hero h1 span {
  color: var(--red);
}

.hero-text {
  max-width: 650px;
  margin-bottom: 26px;
  color: #c9c9c9;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.contract-box {
  max-width: 650px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--black-soft);
}

.contract-meta {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.contract-meta span {
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contract-meta small {
  color: var(--lime);
  font-weight: 700;
}

.contract-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.contract-row code {
  min-width: 0;
  padding: 15px 16px;
  border-radius: 14px;
  background: #1d1d1d;
  color: var(--white);
  font-family: "Inter", monospace;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.copy-button {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: var(--lime);
  color: var(--black);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-weight: 900;
}

.copy-button:hover {
  background: var(--red);
  color: var(--white);
}

.copy-icon {
  font-size: 1.1rem;
}

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

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame {
  aspect-ratio: 4 / 5;
  border: 8px solid var(--red);
  box-shadow: 20px 20px 0 var(--lime);
  transform: rotate(1.5deg);
}

.frame-sticker {
  position: absolute;
  z-index: 3;
  padding: 10px 16px;
  border: 2px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 0.8rem;
  transform: rotate(-5deg);
}

.frame-sticker-red {
  top: 22px;
  left: 20px;
  background: var(--red);
  color: var(--white);
}

.frame-sticker-lime {
  right: 20px;
  bottom: 22px;
  background: var(--lime);
  transform: rotate(5deg);
}

.hero-mobile-image {
  display: none;
}

/* =========================
   Ticker strip
========================= */
.ticker-strip {
  overflow: hidden;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  background: var(--lime);
  color: var(--black);
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  min-width: max-content;
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(0.8rem, 1.4vw, 1.05rem);
  letter-spacing: 0.04em;
}

.ticker-track b {
  color: var(--red);
}

/* =========================
   About
========================= */
.about {
  padding: 120px 0 80px;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.92;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 28px;
}

.about-frame {
  min-height: 520px;
  border: 7px solid var(--lime);
}

.corner-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--black);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
}

.card-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(240, 68, 56, 0.16), transparent 42%),
    var(--black-soft);
}

.panel-number {
  position: absolute;
  top: -22px;
  right: 18px;
  color: rgba(255, 255, 255, 0.06);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(7rem, 16vw, 13rem);
  line-height: 1;
}

.about-copy p {
  position: relative;
  z-index: 1;
  max-width: 650px;
  color: #d4d4d4;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

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

.about-tags span {
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.about-tags span:nth-child(even) {
  background: var(--lime);
  color: var(--black);
}

/* =========================
   Tokenomics
========================= */
.tokenomics {
  padding: 90px 0;
}

.center-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.center-heading .eyebrow {
  margin: 0 auto;
}

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

.token-card {
  min-height: 250px;
  padding: 26px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.token-card strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.9;
}

.token-card p {
  margin-bottom: 0;
  line-height: 1.5;
}

.token-label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.red-card {
  background: var(--red);
}

.lime-card {
  background: var(--lime);
  color: var(--black);
}

.dark-card {
  border: 1px solid var(--line);
  background: #161616;
}

.cream-card {
  background: var(--cream);
  color: var(--black);
}

/* =========================
   Buy panel
========================= */
.buy-panel {
  padding: 30px 0 90px;
}

.buy-card {
  padding: clamp(30px, 6vw, 72px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(207, 251, 52, 0.95), rgba(207, 251, 52, 0.82)),
    var(--lime);
  color: var(--black);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px 70px;
  align-items: start;
}

.buy-card .eyebrow {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.07);
  color: var(--black);
}

.buy-card h2 {
  margin: 18px 0 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.92;
}

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

.buy-steps li {
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
}

.buy-steps span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: "Archivo Black", Impact, sans-serif;
}

.buy-steps p {
  margin: 0;
  font-weight: 700;
  line-height: 1.45;
}

.buy-button {
  grid-column: 1 / -1;
  justify-self: start;
  background: var(--black);
}

.buy-button:hover {
  background: var(--red);
  color: var(--white);
}

/* =========================
   Community
========================= */
.community {
  padding: 10px 0 100px;
}

.community-card {
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 68, 56, 0.26), transparent 28%),
    #111;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}

.community-copy h2 {
  margin: 18px 0;
  font-size: clamp(2.8rem, 5.7vw, 5.6rem);
  line-height: 0.92;
}

.community-copy p {
  max-width: 650px;
  margin-bottom: 0;
  color: #cfcfcf;
  line-height: 1.7;
}

.community-actions {
  min-width: 220px;
  display: grid;
  gap: 12px;
}

.social-button {
  min-height: 58px;
  padding: 0 22px;
  border-radius: 18px;
  background: var(--red);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.social-button:nth-child(2) {
  background: var(--lime);
  color: var(--black);
}

.social-button:hover {
  background: var(--white);
  color: var(--black);
}

/* =========================
   Footer
========================= */
.site-footer {
  padding: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid var(--red);
  border-radius: 14px;
}

.footer-brand div {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  font-family: "Archivo Black", Impact, sans-serif;
}

.footer-brand span,
.site-footer p {
  color: #8f8f8f;
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

/* =========================
   Tablet
========================= */
@media (max-width: 980px) {
  .nav-card {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    padding: 10px 6px 2px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 7.2vw, 5.8rem);
  }

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

  .buy-card {
    grid-template-columns: 1fr;
  }

  .community-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .community-actions {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   Mobile
========================= */
@media (max-width: 700px) {
  .section-wrap {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 14px 14px 0;
  }

  .nav-card {
    width: 100%;
    padding: 10px;
    border-radius: 22px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-logo-wrap {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .nav-links {
    grid-column: auto;
    grid-row: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    padding: 0;
  }

  .nav-links a {
    padding: 10px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 70px;
    display: block;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero .eyebrow {
    order: 1;
  }

  .hero h1 {
    order: 2;
    width: 100%;
    max-width: 100%;
    margin: 18px 0 28px;
    font-size: clamp(3rem, 14vw, 4.9rem) !important;
    line-height: 0.9;
    overflow-wrap: anywhere;
  }

  .hero-mobile-image {
    order: 3;
    display: block;
    width: min(100%, 430px);
    margin: 0 auto 34px;
  }

  .hero-desktop-image {
    display: none;
  }

  .hero-frame {
    box-shadow: 10px 10px 0 var(--lime);
    transform: none;
  }

  .hero-text {
    order: 4;
    margin-bottom: 24px;
    text-align: center;
  }

  .contract-box {
    order: 5;
    width: 100%;
    padding: 14px;
  }

  .contract-meta {
    align-items: flex-start;
    text-align: left;
  }

  .contract-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .copy-button {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    order: 6;
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .ticker-track {
    padding: 14px 0;
  }

  .about {
    padding: 90px 0 60px;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: center;
  }

  .section-heading .eyebrow {
    margin: 0 auto;
  }

  .section-heading h2,
  .community-copy h2,
  .buy-card h2 {
    font-size: clamp(2.4rem, 12vw, 4rem) !important;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-frame {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .card-panel {
    text-align: center;
  }

  .about-tags {
    justify-content: center;
  }

  .tokenomics {
    padding: 70px 0;
  }

  .token-grid {
    grid-template-columns: 1fr;
  }

  .token-card {
    min-height: 210px;
  }

  .buy-panel {
    padding-bottom: 70px;
  }

  .buy-card {
    padding: 28px 20px;
    text-align: center;
    gap: 28px;
  }

  .buy-card .eyebrow {
    margin: 0 auto;
  }

  .buy-steps li {
    grid-template-columns: 40px 1fr;
    text-align: left;
  }

  .buy-steps span {
    width: 40px;
    height: 40px;
  }

  .buy-button {
    width: 100%;
    justify-self: stretch;
  }

  .community {
    padding-bottom: 70px;
  }

  .community-card {
    padding: 32px 20px;
    text-align: center;
  }

  .community-copy .eyebrow {
    margin: 0 auto;
  }

  .community-actions {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 28px;
    flex-direction: column;
    text-align: center;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(2.65rem, 13.5vw, 3.5rem) !important;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    font-size: 0.66rem;
  }

  .frame-sticker {
    padding: 8px 12px;
    font-size: 0.68rem;
  }
}
