﻿:root {
  --bg: #12090d;
  --panel: rgba(33, 15, 21, 0.72);
  --panel-border: rgba(255, 232, 236, 0.14);
  --text: #fff7f8;
  --text-soft: #f3d8de;
  --accent: #ff8fab;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 125, 160, 0.2), transparent 30%),
    linear-gradient(180deg, #1b0b11 0%, #12090d 45%, #0c0608 100%);
}

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 2rem;
  overflow: hidden;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 143, 171, 0.28), transparent 0 28%),
    radial-gradient(circle at 80% 30%, rgba(255, 77, 125, 0.2), transparent 0 30%),
    radial-gradient(circle at 50% 85%, rgba(255, 205, 215, 0.12), transparent 0 24%);
  filter: blur(10px);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  text-align: center;
  padding: 3rem 1.5rem;
}

.hero__eyebrow,
.section-heading__kicker {
  margin: 0 0 1rem;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.hero__title {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.95;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.hero__subtitle {
  width: min(560px, 100%);
  margin: 1.5rem auto 0;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-soft);
}

.content {
  width: 100%;
  margin: 0;
  padding: 1rem 0 4rem;
}

.carousel-section,
.future-section {
  margin-top: 2rem;
  padding: 2rem 0;
}

.carousel-section {
  width: 100%;
}

.future-section {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.section-heading {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 1.5rem;
}

.section-heading__title {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.carousel {
  position: relative;
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel__track {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 320px;
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 900ms ease;
}

.carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.carousel__overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.carousel__controls {
  position: absolute;
  inset: auto 1rem 1rem auto;
  z-index: 2;
  display: flex;
  gap: 0.75rem;
}

.carousel__button {
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 247, 248, 0.18);
  color: var(--text);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.carousel__button:hover {
  background: rgba(255, 247, 248, 0.26);
  transform: translateY(-2px);
}

.carousel__indicators {
  position: absolute;
  inset: auto auto 1.15rem 1.25rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.carousel__indicator {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.carousel__indicator.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.carousel__empty {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-soft);
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.future-card {
  padding: 1.5rem;
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.future-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}

.future-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-soft);
}

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

@media (max-width: 680px) {
  .hero {
    min-height: 85vh;
    padding-inline: 1rem;
  }

  .section-heading,
  .future-section {
    width: min(100% - 1rem, 1180px);
  }

  .carousel__track {
    min-height: 240px;
  }

  .carousel__controls {
    inset: auto 0.85rem 0.85rem auto;
  }

  .carousel__indicators {
    inset: auto auto 0.95rem 0.95rem;
  }
}
