/* SUPER VLAD — two-section site */

:root {
  --green: #00c805;
  --green-glow: rgba(0, 200, 5, 0.45);
  --gold: #ffd23f;
  --ink: #0b0f14;
  --ink-2: #121821;
  --paper: #fffdf5;
  --text: #f4f6f8;
  --muted: #9aa6b2;
  --display: 'Bangers', 'Impact', sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Section 1: Hero ---------- */
.hero {
  position: relative;
  background: var(--gold);
  color: var(--ink);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 2rem;
  padding: 4rem 6vw;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(rgba(11,15,20,0.10) 1.4px, transparent 1.9px) 0 0 / 12px 12px,
    repeating-conic-gradient(from 0deg at 70% 50%, rgba(255,255,255,0.35) 0deg 7deg, transparent 7deg 14deg),
    var(--gold);
}
.hero__bg::after {
  content: '';
  position: absolute;
  width: min(62vw, 720px);
  aspect-ratio: 1;
  left: 70%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--paper);
  border: 8px solid var(--ink);
  box-shadow: 16px 16px 0 var(--ink);
}
.hero__content, .hero__art { position: relative; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 2rem;
}

.hero__title {
  font-family: var(--display);
  line-height: 0.9;
  margin-bottom: 2rem;
  text-shadow: 4px 4px 0 var(--paper);
}
.hero__title .line { display: block; color: var(--ink); font-size: clamp(3rem, 8vw, 6.5rem); letter-spacing: 0.02em; }
.hero__title .line--accent {
  color: var(--green);
  font-size: clamp(3.8rem, 10vw, 8rem);
  text-shadow: 4px 4px 0 var(--ink);
}
.hero__title .line--small { font-size: clamp(1.8rem, 4.5vw, 3.2rem); color: var(--paper); text-shadow: 3px 3px 0 var(--ink); }

.hero__sub {
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: rgba(11,15,20,0.65);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  padding: 0.6em 1.6em;
  border-radius: 12px;
  border: 3px solid var(--ink);
  background: var(--green);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink), 0 0 30px var(--green-glow);
  transition: transform 0.12s, box-shadow 0.12s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink), 0 0 40px var(--green-glow); }

.contract {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
  max-width: 100%;
}
.contract__label { font-weight: 800; color: var(--green); }
.contract code {
  font-family: ui-monospace, Consolas, monospace;
  color: #3a4351;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contract__copy {
  font: 600 0.75rem var(--body);
  background: var(--ink);
  color: var(--green);
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 0.2em 0.6em;
  cursor: pointer;
}
.contract__copy:hover, .contract__copy.copied { background: var(--green); color: var(--ink); }

.hero__art { display: flex; justify-content: center; position: relative; }
.hero__name {
  position: absolute;
  left: 50%;
  bottom: -1.2rem;
  transform: translateX(-50%) rotate(-4deg);
  font-family: var(--display);
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  color: var(--ink);
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 12px;
  padding: 0.12em 0.5em 0.1em;
  box-shadow: 8px 8px 0 var(--ink);
}
.hero__name-accent { color: var(--green); text-shadow: 3px 3px 0 var(--ink); }
.hero__art img {
  width: min(100%, 780px);
  filter: drop-shadow(12px 14px 0 rgba(11,15,20,0.9));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ---------- Section 2: Quote + sources ---------- */
.quote {
  background: var(--green);
  color: var(--ink);
  padding: 6rem 6vw;
  text-align: center;
  position: relative;
}
.quote::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.12) 1.5px, transparent 2px);
  background-size: 10px 10px;
  pointer-events: none;
}
.quote > * { position: relative; }
.quote__kicker {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
}
.quote__text {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 600;
  line-height: 1.45;
}
.quote__text em {
  font-style: normal;
  font-family: var(--display);
  font-size: 1.35em;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: var(--green);
  padding: 0.05em 0.35em;
  border-radius: 6px;
}
.quote__cite {
  margin: 1.5rem 0 3.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.sources {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.clip {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 6px;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  transform: rotate(-1deg);
  transition: transform 0.2s;
  text-align: left;
}
.clip:nth-child(2) { transform: rotate(0.8deg); }
.clip.clip--wide img { max-width: none; }
.clip:hover { transform: rotate(0) scale(1.02); }
.clip img {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-bottom: 3px solid var(--ink);
  background: #fff;
  padding: 0.5rem;
}
.clip__caption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
  line-height: 1.4;
}
.clip__caption strong { font-size: 0.95rem; }
.clip__caption span { color: #4a5563; }

/* ---------- Footer ---------- */
.footer {
  padding: 2.5rem 6vw;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer a { color: var(--green); font-weight: 600; }
.footer__disclaimer { margin-top: 0.75rem; font-size: 0.75rem; max-width: 560px; margin-inline: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 3rem; }
  .hero__art { order: -1; }
  .hero__art img { width: min(90%, 460px); }
}
