:root {
  --bg: #06181f;
  --bg-soft: #0b2730;
  --card: rgba(9, 35, 43, 0.78);
  --card-strong: rgba(11, 43, 53, 0.94);
  --gold: #f7d65c;
  --gold-deep: #c88d2e;
  --teal: #48d6c8;
  --text: #f7f1d5;
  --muted: #b7c8be;
  --line: rgba(247, 214, 92, 0.22);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(247, 214, 92, 0.14), transparent 30rem),
    radial-gradient(circle at 80% 20%, rgba(72, 214, 200, 0.12), transparent 28rem),
    linear-gradient(135deg, #041017 0%, #06181f 45%, #092630 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 75%);
}

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

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

.page-glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.36;
  pointer-events: none;
  z-index: -1;
}

.page-glow-one {
  top: 8rem;
  left: -6rem;
  background: var(--gold);
}

.page-glow-two {
  right: -8rem;
  bottom: 4rem;
  background: var(--teal);
}

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: 0 0 26px rgba(247, 214, 92, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(6, 24, 31, 0.58);
  backdrop-filter: blur(18px);
}

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.92rem;
  transition: 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 56px;
  padding: 56px 0 88px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn,
.copy-button {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #09222a;
  background: linear-gradient(135deg, var(--gold), #fff0a5 52%, var(--gold-deep));
  box-shadow: 0 16px 44px rgba(247, 214, 92, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.art-frame {
  overflow: hidden;
  border-radius: 28px;
  background: #092630;
}

.art-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: scale(1.01);
}

.live-pill {
  position: absolute;
  left: 36px;
  bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(6, 24, 31, 0.74);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(247, 214, 92, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(247, 214, 92, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(247, 214, 92, 0);
  }
}

.contract-section,
.description-section,
.stream-panel {
  margin-bottom: 24px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contract-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.muted,
.copy-status {
  color: var(--muted);
}

.contract-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(2, 12, 16, 0.45);
}

.contract-box code {
  overflow: auto;
  padding-left: 10px;
  color: var(--text);
  font-size: clamp(0.92rem, 2vw, 1.06rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.copy-button {
  min-width: 96px;
  color: #06181f;
  background: var(--gold);
}

.copy-status {
  min-height: 22px;
  margin: 0;
  font-size: 0.94rem;
}

.description-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.description-text {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.description-text:last-child {
  margin-bottom: 0;
}

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

.pillar-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(247, 214, 92, 0.17);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.pillar-card span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--gold);
  font-weight: 900;
}

.pillar-card p,
.stream-panel p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.stream-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 64px;
  background:
    linear-gradient(135deg, rgba(247, 214, 92, 0.13), rgba(72, 214, 200, 0.08)),
    var(--card-strong);
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  margin: 8px 0 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.social-links a {
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  transition: 180ms ease;
}

.social-links a:hover {
  color: var(--text);
  border-color: var(--line);
}

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

  .nav-links {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero,
  .description-section,
  .stream-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
    gap: 36px;
  }

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

@media (max-width: 560px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  .nav-links a {
    padding-inline: 10px;
    font-size: 0.86rem;
  }

  .hero-actions,
  .contract-box {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .copy-button {
    width: 100%;
  }

  .live-pill {
    left: 28px;
    right: 28px;
    bottom: 28px;
    justify-content: center;
  }
}
