:root {
  --bg: #070806;
  --ink: #fff5df;
  --muted: #bdae90;
  --line: rgba(255, 245, 223, 0.15);
  --green: #38ff7a;
  --gold: #f3c46b;
  --mud: #6a3b1d;
  --panel: rgba(255, 245, 223, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(56, 255, 122, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(243, 196, 107, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 16% 14%, rgba(243, 196, 107, 0.18), transparent 30rem),
    radial-gradient(circle at 82% 8%, rgba(56, 255, 122, 0.15), transparent 28rem),
    linear-gradient(135deg, #0a0805, #050605 48%, #0a1009);
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 245, 223, 0.035),
    rgba(255, 245, 223, 0.035) 1px,
    transparent 1px,
    transparent 6px
  );
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 6, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(56, 255, 122, 0.42);
  border-radius: 8px;
  background: rgba(56, 255, 122, 0.1);
}

.brand-icon img {
  width: 32px;
  height: 32px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

nav a,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav a {
  padding: 0 14px;
  border: 1px solid transparent;
  color: var(--muted);
}

nav a:hover {
  color: var(--ink);
  border-color: var(--line);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: calc(100vh - 79px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(34px, 7vw, 96px) clamp(18px, 5vw, 76px);
}

.kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(56px, 11vw, 136px);
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(56, 255, 122, 0.38);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.98;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  text-transform: uppercase;
}

.hero-text {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
}

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

.button {
  padding: 0 20px;
  border: 1px solid var(--line);
}

.button.primary {
  color: #061006;
  border-color: var(--green);
  background: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 245, 223, 0.06);
}

.hero-card {
  margin: 0;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 1px solid rgba(243, 196, 107, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(106, 59, 29, 0.34), rgba(56, 255, 122, 0.09)),
    rgba(255, 245, 223, 0.04);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  overflow: hidden;
}

.hero-card::after {
  content: "$TDOG";
  position: absolute;
  left: 20px;
  top: 18px;
  color: rgba(255, 245, 223, 0.15);
  font-size: clamp(54px, 8vw, 102px);
  font-weight: 900;
}

.hero-card img {
  position: relative;
  z-index: 1;
  width: min(82%, 420px);
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.48));
}

.hero-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(56, 255, 122, 0.36);
  border-radius: 8px;
  background: rgba(7, 8, 6, 0.74);
}

.hero-card span,
.token-card span,
.bio-lines span,
.launch-card span,
.launch-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker {
  display: flex;
  gap: 12px;
  overflow: hidden;
  padding: 18px clamp(18px, 5vw, 76px);
  border-block: 1px solid var(--line);
  background: rgba(56, 255, 122, 0.055);
}

.ticker span {
  min-width: max-content;
  padding: 10px 14px;
  border: 1px solid rgba(243, 196, 107, 0.32);
  border-radius: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bio-panel,
.launch-panel,
.token-panel,
.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  padding: clamp(54px, 8vw, 108px) clamp(18px, 5vw, 76px);
}

.bio-card,
.launch-card,
.token-card,
.cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.bio-card {
  padding: clamp(22px, 4vw, 42px);
}

.bio-card p,
.launch-copy p,
.token-copy p,
.cards p,
.proof p {
  color: var(--muted);
  line-height: 1.62;
}

.bio-lines {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.bio-lines strong {
  color: var(--green);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 76px) clamp(54px, 7vw, 94px);
}

.cards article {
  padding: 24px;
}

.cards article span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--green);
  font-weight: 900;
}

.launch-panel,
.token-panel {
  border-block: 1px solid var(--line);
  background: rgba(243, 196, 107, 0.035);
}

.launch-card {
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(24px, 4vw, 42px);
}

.launch-card strong {
  color: var(--green);
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.9;
}

.launch-card small {
  color: var(--gold);
}

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

.token-card div {
  min-height: 124px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.token-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(20px, 3vw, 34px);
  text-transform: uppercase;
}

.proof {
  align-items: center;
}

.proof img {
  width: min(100%, 360px);
  justify-self: center;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.5));
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

footer a {
  color: var(--green);
}

@media (max-width: 860px) {
  .topbar,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .bio-panel,
  .launch-panel,
  .token-panel,
  .proof {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    min-height: 330px;
  }

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

@media (max-width: 520px) {
  h1 {
    font-size: 54px;
  }

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

  .button {
    width: 100%;
  }
}
