/* =========================================================
   Peak for Peace 2 — Teaser
   Self-contained stylesheet (HTML + CSS only)
   ========================================================= */

:root {
  --red:    #E4322B;
  --green:  #1C9E4B;
  --white:  #ffffff;
  --ink:    #0c0c0e;
  --ink-3:  #1c1d22;
  --muted:  #a7a9b2;
  --line:   rgba(255, 255, 255, 0.10);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--white);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1 { margin: 0; line-height: 1.05; }
p  { margin: 0; }
a  { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ===== Stage ===== */
.teaser {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2.5rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 18% 12%, rgba(228, 50, 43, 0.28), transparent 55%),
    radial-gradient(120% 90% at 85% 30%, rgba(28, 158, 75, 0.24), transparent 55%),
    var(--ink);
}
/* topographic contour texture */
.teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(
    circle at 50% 120%,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 26px
  );
  pointer-events: none;
}

.teaser-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
}

/* ===== Eyebrow ===== */
.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(0.8rem, 2.5vw, 0.95rem);
  color: var(--green);
  margin-bottom: 1.5rem;
}

/* ===== Logo ===== */
.logo-wrap { margin: 0 0 0.5rem; }
.logo {
  width: min(600px, 100%);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.55));
}

/* ===== Tagline ===== */
.tagline {
  font-size: clamp(1.05rem, 3.2vw, 1.3rem);
  color: var(--muted);
  max-width: 30ch;
  margin: 1.4rem auto 0;
}

/* ===== Stat card ===== */
.stat {
  margin: clamp(2rem, 6vw, 3rem) auto 0;
  max-width: 460px;
  padding: 1.8rem 2rem;
  border-radius: 20px;
  background:
    radial-gradient(100% 120% at 0% 0%, rgba(228, 50, 43, 0.18), transparent 60%),
    radial-gradient(100% 120% at 100% 100%, rgba(28, 158, 75, 0.18), transparent 60%),
    var(--ink-3);
  border: 1px solid var(--line);
}
.stat-label {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.82rem, 2.6vw, 0.95rem);
  color: var(--muted);
}
.stat-figure {
  display: block;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 11vw, 4.6rem);
  line-height: 1.05;
  margin: 0.4rem 0 0.6rem;
  transform: skewX(-5deg);
  color: var(--white);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}
.stat-note {
  display: block;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.8vw, 1rem);
}

/* ===== Instagram button ===== */
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: clamp(2rem, 5vw, 2.4rem);
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(
    45deg,
    #feda75 0%,
    #fa7e1e 25%,
    #d62976 50%,
    #962fbf 75%,
    #4f5bd5 100%
  );
  box-shadow: 0 8px 26px rgba(214, 41, 118, 0.45);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-instagram:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 12px 32px rgba(214, 41, 118, 0.6);
}
.btn-instagram:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.ig-icon { width: 22px; height: 22px; }
