﻿@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Unbounded:wght@500;700&display=swap");

:root {
  --black: #080808;
  --ink: #121212;
  --white: #f7f7f7;
  --gray: #b9b9b9;
  --soft: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--white);
  background: #0b0b0b;
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Unbounded", "Space Grotesk", sans-serif;
  letter-spacing: 0.01em;
}

.granite-bg {
  position: fixed;
  inset: -35% -35% -35% -35%;
  z-index: -3;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.08), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.06), transparent 45%),
    linear-gradient(130deg, #050505, #141414, #070707);
  filter: contrast(135%) brightness(0.9);
  animation: graniteShift 16s ease-in-out infinite alternate;
}

.granite-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(90deg, transparent 95%, rgba(255, 255, 255, 0.08) 100%);
  background-size: 120px 120px;
  opacity: 0.15;
  animation: gridDrift 18s linear infinite;
}

.granite-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.07) 0,
      rgba(255, 255, 255, 0.03) 2px,
      transparent 7px,
      transparent 16px
    );
  opacity: 0.25;
  mix-blend-mode: screen;
  animation: graniteNoise 10s linear infinite;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 7, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
  padding: 120px 0 70px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
  margin: 0 0 16px;
  line-height: 1.05;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.hero-title span {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--gray);
}

.lead {
  color: var(--gray);
  line-height: 1.7;
  max-width: 540px;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.btn.primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.12);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255, 255, 255, 0.22);
}

.btn.ghost {
  color: var(--white);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-tags span {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panels {
  display: grid;
  gap: 18px;
}

.panel {
  background: rgba(14, 14, 14, 0.9);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  animation: floaty 7s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
}

.panel:nth-child(2) {
  animation-delay: -1.5s;
}

.panel:nth-child(3) {
  animation-delay: -3s;
}

.panel:nth-child(4) {
  animation-delay: -4.5s;
}

.stat-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-label {
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.stat-value {
  font-weight: 700;
  font-size: 1.2rem;
}

.dark-note h3 {
  margin-top: 0;
}

.section {
  padding: 80px 0;
}

.section-title h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-title p {
  color: var(--gray);
  max-width: 560px;
}

.grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: rgba(15, 15, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
}

.card h3 {
  margin-top: 0;
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list li {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.85rem;
}

.game {
  transition: transform 0.3s ease, border 0.3s ease;
}

.game:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.22);
}

.card:hover,
.panel:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55);
}

.game-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.pill {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.timeline-item {
  position: relative;
  padding: 18px 20px 18px 30px;
  border-left: 2px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 12, 12, 0.8);
  border-radius: 16px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.timeline-item h3 {
  margin: 0 0 6px;
}

.marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 9, 9, 0.8);
}

.marquee-track {
  display: flex;
  gap: 28px;
  padding: 18px 0;
  animation: marquee 22s linear infinite;
}

.marquee span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gray);
}

.contact-card {
  background: rgba(12, 12, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-label {
  color: var(--gray);
  margin: 0 0 6px;
}

.contact-link {
  color: var(--white);
  font-size: 1.2rem;
  text-decoration: none;
}

.site-footer {
  padding: 40px 0 60px;
  text-align: center;
  color: var(--gray);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes graniteShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(4%, -3%, 0) scale(1.08);
  }
}

@keyframes graniteNoise {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-6%, 4%, 0);
  }
}

@keyframes gridDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-8%, 6%, 0);
  }
}

@keyframes floaty {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 90px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .granite-bg,
  .granite-bg::before,
  .granite-bg::after,
  .panel,
  .marquee-track {
    animation: none;
  }

  .reveal {
    transition: none;
  }
}
