:root {
  --bg: #0a0d13;
  --bg2: #111722;
  --panel: rgba(19, 25, 35, 0.9);
  --panel2: rgba(12, 16, 23, 0.95);
  --line: rgba(255, 173, 67, 0.18);
  --text: #fff6e8;
  --muted: #f1dfc8;
  --orange: #ff8f1e;
  --orange2: #ffb544;
  --orange3: #ff6c0a;
  --shadow: 0 18px 44px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(255,131,29,.18), transparent 28%),
    linear-gradient(180deg, #080b10 0%, #101620 100%);
  overflow-x: hidden;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.container { width: min(1220px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(8,11,16,.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--orange2), var(--orange3));
  color: #1f1507;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 133, 25, .35);
}
.brand-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  font-size: 2.2rem;
  line-height: 1;
}
.brand-wordmark .light { color: var(--text); }
.brand-wordmark .accent { color: var(--orange); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a,
.footer-links a {
  text-decoration: none;
  color: rgba(255,246,232,.9);
  font-weight: 800;
  letter-spacing: .02em;
}
.main-nav a:hover,
.footer-links a:hover { color: var(--orange2); }

.cta, .ghost-btn, .copy-btn, .x-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.cta:hover, .ghost-btn:hover, .x-button:hover, .copy-btn:hover {
  transform: translateY(-2px);
}
.cta {
  color: #1d1307;
  background: linear-gradient(180deg, var(--orange2), var(--orange3));
  box-shadow: 0 14px 28px rgba(255, 128, 0, .28), inset 0 2px 0 rgba(255,255,255,.24);
}
.cta-small { min-width: 172px; min-height: 52px; padding: 0 24px; }
.cta-large { min-width: 320px; min-height: 82px; font-size: 2rem; font-family: 'Bebas Neue', sans-serif; letter-spacing: .04em; }
.ghost-btn {
  min-width: 190px; min-height: 62px; padding: 0 22px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,10,15,.88) 0%, rgba(8,10,15,.6) 35%, rgba(8,10,15,.2) 58%, rgba(8,10,15,.62) 100%),
    url('Grafik/twitter-banner.png') center/cover no-repeat;
  filter: saturate(1.08) contrast(1.04);
}
.hero-flare {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .22;
  pointer-events: none;
}
.hero-flare-left { left: -40px; top: 120px; background: #ff6b00; }
.hero-flare-right { right: -20px; top: 240px; background: #ffb342; }
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 520px);
  align-items: center;
  gap: 22px;
  padding: 42px 0 34px;
}
.hero-copy {
  max-width: 650px;
  padding: 16px 0;
}
.hero-copy h1 {
  margin: 0 0 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.4rem, 8vw, 7.8rem);
  line-height: .9;
  letter-spacing: 1.5px;
  text-shadow: 0 8px 22px rgba(0,0,0,.45);
}
.hero-copy h1 span { color: var(--orange2); }
.hero-text {
  max-width: 560px;
  margin: 0 0 26px;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--muted);
  font-weight: 700;
  text-shadow: 0 4px 18px rgba(0,0,0,.45);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.contract-box {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    'cap btn'
    'addr btn';
  gap: 8px 14px;
  width: min(760px, 100%);
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(11,15,21,.68);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.contract-caption {
  grid-area: cap;
  color: var(--orange2);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .18em;
  font-weight: 900;
}
.contract-address {
  grid-area: addr;
  font-weight: 800;
  word-break: break-all;
  font-size: 1rem;
}
.copy-btn {
  grid-area: btn;
  min-width: 110px;
  padding: 0 18px;
  border: 0;
  cursor: pointer;
  color: #1d1307;
  background: linear-gradient(180deg, var(--orange2), var(--orange3));
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: end;
  min-height: 520px;
}
.hero-bunny {
  width: min(100%, 570px);
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.5));
  animation: floaty 4.6s ease-in-out infinite;
}

.strip-title {
  position: relative;
  z-index: 3;
  background: linear-gradient(180deg, #ff8c14, #d45e00);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(0,0,0,.35);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.18), 0 10px 24px rgba(0,0,0,.2);
}
.strip-title h2 {
  margin: 0;
  padding: 22px 0;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: 1px;
  color: #1a1208;
}

.feature-section,
.buy-section,
.roadmap-section,
.social-section {
  position: relative;
  padding: 36px 0 46px;
  background:
    linear-gradient(180deg, rgba(255,146,32,.06), transparent 30%),
    linear-gradient(180deg, #121924 0%, #0d131c 100%);
}
.buy-section {
  background:
    radial-gradient(circle at bottom center, rgba(255,166,58,.13), transparent 30%),
    linear-gradient(180deg, #111722 0%, #0d131c 100%);
}
.roadmap-section {
  background:
    radial-gradient(circle at center, rgba(255,130,18,.09), transparent 34%),
    linear-gradient(180deg, #121924 0%, #0d131c 100%);
}
.social-section {
  padding-bottom: 58px;
}
.card-grid {
  display: grid;
  gap: 18px;
}
.three-up { grid-template-columns: repeat(3, minmax(0,1fr)); }
.four-up { grid-template-columns: repeat(4, minmax(0,1fr)); }
.info-card,
.step-card,
.phase-card,
.social-wrap {
  position: relative;
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(180deg, rgba(255,157,41,.08), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(17,23,33,.96), rgba(10,14,20,.98));
  box-shadow: var(--shadow);
}
.info-card,
.phase-card {
  min-height: 280px;
  border-radius: 18px;
  padding: 24px;
  overflow: hidden;
}
.info-card::after,
.step-card::after,
.phase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(255,176,75,.08), transparent 40%);
  pointer-events: none;
}
.emoji {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 10px;
}
.info-card h3,
.phase-card h3 {
  margin: 0 0 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: .04em;
}
.info-card p,
.step-card p,
.phase-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 700;
}
.ribbon {
  display: flex;
  justify-content: center;
  margin: 0 auto 24px;
}
.ribbon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 0 34px;
  background: linear-gradient(180deg, var(--orange2), var(--orange3));
  color: #1b1209;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: .06em;
  border-radius: 16px;
  box-shadow: 0 16px 26px rgba(255,128,0,.22), inset 0 2px 0 rgba(255,255,255,.2);
}
.ribbon-small span {
  min-height: 64px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.step-grid { align-items: stretch; }
.step-card {
  min-height: 230px;
  border-radius: 14px;
  padding: 20px 18px;
}
.step-title {
  margin-bottom: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--text);
}
.step-title span {
  color: var(--orange2);
  margin-right: 8px;
}
.phase-no {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange2);
  font-weight: 900;
  letter-spacing: .16em;
  font-size: .85rem;
}
.social-wrap {
  border-radius: 24px;
  padding: 30px 26px;
  text-align: center;
}
.social-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.x-button {
  min-width: min(100%, 420px);
  min-height: 92px;
  padding: 0 26px;
  gap: 16px;
  color: #111;
  background: linear-gradient(180deg, #ffffff, #d8d8d8);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .05em;
  font-size: 2rem;
  box-shadow: 0 16px 30px rgba(0,0,0,.25);
}
.x-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.site-footer {
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(7,9,14,.96);
}
.footer-main {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.footer-tag {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .04em;
}
.footer-links {
  display: flex;
  justify-content: end;
  gap: 18px;
}
.footer-copy {
  padding: 0 0 22px;
  text-align: center;
  color: rgba(255,246,232,.72);
  font-weight: 700;
}

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

@media (max-width: 1080px) {
  .hero-inner,
  .three-up,
  .four-up,
  .footer-main {
    grid-template-columns: 1fr;
  }
  .main-nav { display: none; }
  .hero {
    padding-top: 10px;
  }
  .hero-copy {
    max-width: none;
  }
  .hero-visual {
    min-height: unset;
    order: -1;
  }
  .hero-bunny {
    max-width: 420px;
  }
  .footer-tag,
  .footer-links,
  .footer-brand { justify-self: center; text-align: center; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 20px, 1220px); }
  .topbar { min-height: 74px; }
  .brand-wordmark { font-size: 1.8rem; }
  .cta-small { min-width: 136px; min-height: 46px; padding: 0 16px; }
  .hero-inner { min-height: unset; padding: 24px 0 30px; }
  .hero-copy h1 { font-size: 3.6rem; }
  .hero-text { font-size: 1.1rem; }
  .cta-large, .ghost-btn { width: 100%; min-height: 62px; font-size: 1.6rem; }
  .contract-box { grid-template-columns: 1fr; grid-template-areas: 'cap' 'addr' 'btn'; }
  .copy-btn { min-height: 46px; }
  .step-title { font-size: 1.7rem; }
  .x-button { width: 100%; font-size: 1.6rem; min-height: 78px; }
  .footer-tag { font-size: 1.5rem; }
}
