:root {
  --bg-1: #ffe8f3;
  --bg-2: #ffd4e8;
  --bg-3: #fff7fb;
  --ink: #161616;
  --hot-pink: #ff2f92;
  --fristi-blue: #00a9ff;
  --soft-blue: #d7f1ff;
  --card: rgba(255, 255, 255, 0.7);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 47, 146, 0.22), transparent 36%),
    radial-gradient(circle at 90% 20%, rgba(0, 169, 255, 0.24), transparent 38%),
    linear-gradient(140deg, var(--bg-1), var(--bg-2) 45%, var(--bg-3));
  overflow-x: hidden;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: radial-gradient(#000 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  z-index: 0;
}

.hero,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 78vh;
  padding: 7rem 1.2rem 1rem;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-content {
  max-width: 760px;
}

.camera-watermark {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow);
  z-index: 5;
}

.rec-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: #ff2f2f;
  box-shadow: 0 0 12px #ff2f2f;
  animation: pulse 1s infinite;
}

.hero-content h1 {
  margin: 0.4rem 0;
  font-family: "Rubik Glitch", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 12vw, 8rem);
  line-height: 1;
  color: #0a0a0a;
  text-shadow: 4px 4px 0 #fff;
}

.kicker {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #a10859;
}

.lead {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: clamp(1rem, 2.6vw, 1.35rem);
}

.fristi-image {
  width: min(320px, 72vw);
  margin-top: 1.8rem;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.2));
  transform: rotate(2deg);
  animation: bob 2.8s ease-in-out infinite;
}

.site-footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.social-links {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: #161616;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.social-link:hover {
  transform: translateY(-1px);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }

  50% {
    transform: translateY(-9px) rotate(6deg);
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 70vh;
    padding-top: 6rem;
  }

  .fristi-image {
    width: min(240px, 68vw);
  }
}
