:root {
  --bg: #0d0d12;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #fff7ea;
  --muted: #c9c0b2;
  --accent: #ffcc4d;
  --accent-2: #ff5c8a;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 5%, rgba(255, 92, 138, 0.28), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255, 204, 77, 0.18), transparent 26%),
    linear-gradient(135deg, #101018 0%, #15131f 55%, #09090d 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 22px 70px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.logo {
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--accent);
}

.nav a {
  font-weight: 700;
  color: var(--muted);
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 42px;
  align-items: center;
  margin-top: 68px;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.lead,
.muted {
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.7;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--border);
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-4px) rotate(-1deg);
}

.primary {
  background: var(--accent);
  color: #16110a;
  box-shadow: 0 18px 36px rgba(255, 204, 77, 0.25);
}

.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  position: relative;
  border-radius: 36px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 28px;
}

.tilt {
  transform: rotate(2deg);
  animation: float 4.4s ease-in-out infinite;
}

.stamp {
  position: absolute;
  right: -16px;
  bottom: 30px;
  max-width: 210px;
  padding: 14px 16px;
  color: #160f05;
  background: var(--accent);
  border-radius: 18px;
  font-weight: 950;
  transform: rotate(-8deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 38px;
  padding: 18px 0;
  animation: run 22s linear infinite;
}

.ticker span {
  color: var(--accent);
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 22px;
}

.section-title {
  max-width: 820px;
  margin-bottom: 34px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 310px;
  gap: 18px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 310px;
}

.photo-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.photo-card:hover img {
  transform: scale(1.08) rotate(1deg);
  filter: saturate(1.22) contrast(1.05);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), transparent 58%);
}

.card-copy {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 204, 77, 0.16);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.card-copy p {
  margin-bottom: 0;
  color: #e8ded0;
  line-height: 1.5;
}

.tall {
  grid-row: span 2;
}

.wide {
  grid-column: span 2;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: start;
}

.stats {
  display: grid;
  gap: 16px;
}

.stat {
  position: relative;
  padding: 20px;
  border-radius: 26px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
  overflow: hidden;
}

.stat span,
.stat strong {
  position: relative;
  z-index: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 800;
}

.stat strong {
  float: right;
  color: var(--accent);
}

.stat i {
  display: block;
  width: var(--w);
  height: 10px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 28px rgba(255, 92, 138, 0.28);
}

.evidence {
  text-align: center;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
  text-align: left;
}

.reasons article {
  padding: 28px;
  border-radius: 30px;
  background: var(--panel);
  border: 1px solid var(--border);
  transition: 0.25s ease;
}

.reasons article:hover {
  transform: translateY(-8px);
  background: var(--panel-strong);
}

.reasons b {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-2);
  font-size: 2rem;
}

.reasons p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

footer {
  padding: 34px 22px 46px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}

@keyframes run {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

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

  .wide {
    grid-column: span 2;
  }

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

@media (max-width: 620px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 26px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-grid {
    margin-top: 42px;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .tall,
  .wide {
    grid-column: auto;
    grid-row: auto;
  }

  .stamp {
    right: 12px;
    bottom: 18px;
  }
}
