:root {
  --bg-1: #170b0e;
  --bg-2: #271117;
  --card: #381821;
  --text: #fff2d8;
  --muted: #d4bc95;
  --gold: #f0be5e;
  --gold-soft: #ffdea0;
  --green: #39cb84;
  --danger: #f25f5c;
  --line: rgba(240, 190, 94, 0.28);
  --shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
  background: radial-gradient(circle at 12% 8%, #5b1f2a 0%, var(--bg-1) 38%),
              radial-gradient(circle at 90% 92%, #3f1820 0%, var(--bg-2) 52%);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background: #8f2e3a;
  top: -90px;
  right: -90px;
}

body::after {
  background: #efc26d;
  left: -120px;
  bottom: -140px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(34, 12, 17, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  line-height: 1;
}

.logo-image {
  display: block;
  width: auto;
  height: clamp(42px, 5.6vw, 64px);
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.hamburger span {
  width: 18px;
  height: 2px;
  background: #f6f8ff;
  border-radius: 4px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hamburger:hover {
  border-color: rgba(233, 189, 98, 0.6);
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  color: #2e1017;
  box-shadow: 0 10px 22px rgba(233, 189, 98, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero {
  padding: 1.8rem 0 2.3rem;
  position: relative;
}

.hero-banner {
  position: relative;
  width: 100%;
  margin-inline: 0;
  min-height: clamp(300px, 54vw, 520px);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 214, 148, 0.24);
  box-shadow: 0 24px 44px rgba(8, 3, 3, 0.48);
}

@media (min-width: 1200px) {
  .hero-banner {
    min-height: clamp(320px, 46vw, 560px);
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
  background: #2a1219;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 620ms ease, transform 4.2s ease;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #2a1219;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-intro {
  margin-top: 1rem;
}

.hero-copy {
  width: 100%;
  max-width: none;
  background: linear-gradient(160deg, rgba(240, 190, 94, 0.1), rgba(25, 9, 13, 0.52));
  border: 1px solid rgba(255, 214, 148, 0.24);
  border-radius: 18px;
  padding: 1.35rem;
  backdrop-filter: blur(4px);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 239, 199, 0.74);
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, width 220ms ease;
}

.hero-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, #f0be5e, #ffdea0);
  border-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-soft);
  border: 1px solid var(--line);
  background: rgba(233, 189, 98, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.84rem;
  margin-bottom: 1rem;
}

h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: 0.3px;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero p {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 62ch;
  margin-bottom: 1.4rem;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.hero-micro {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: #f1dfc0;
  font-size: 0.93rem;
}

.hero-micro span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.92;
}

.showcase {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  animation: floatCard 4.8s ease-in-out infinite;
}

.showcase img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #111;
}

.stats-row {
  padding: 1.5rem 0 0.3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.stat {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.45rem;
  color: var(--gold-soft);
  line-height: 1.2;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.15;
  margin-bottom: 0.7rem;
  text-wrap: balance;
}

.section-desc {
  color: var(--muted);
  max-width: 76ch;
  margin-bottom: 1.8rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
}

.card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
  color: var(--gold-soft);
}

.card p {
  color: var(--muted);
  font-size: 0.97rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.panel {
  background: linear-gradient(160deg, rgba(233, 189, 98, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(233, 189, 98, 0.25);
  border-radius: var(--radius-xl);
  padding: 1.35rem;
}

.list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 0.7rem;
}

.list li {
  display: flex;
  gap: 0.6rem;
  color: var(--muted);
  align-items: flex-start;
}

.list li span {
  color: var(--green);
  line-height: 1.2;
  margin-top: 0.1rem;
  font-weight: 700;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1rem;
  overflow: hidden;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0.75rem;
  right: 0.95rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quote {
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.quote p {
  color: #f8e7c8;
  margin-bottom: 0.9rem;
  font-size: 0.96rem;
}

.quote small {
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 0.7rem;
}

details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff1d4;
}

details p {
  color: var(--muted);
  margin-top: 0.5rem;
}

.cta {
  margin: 1rem 0 0;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(233, 189, 98, 0.35);
  background: linear-gradient(140deg, rgba(233, 189, 98, 0.17), rgba(255, 255, 255, 0.05));
  text-align: center;
}

.cta h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
  font-family: "Archivo Black", sans-serif;
}

.cta p {
  color: #f5e5c6;
  margin-bottom: 1rem;
}

footer {
  padding: 2.3rem 0 1.6rem;
  color: #9cabc6;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  margin-top: 2rem;
}

footer a {
  color: #f0d7ad;
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  color: #ffdea0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #f0d7ad;
  text-decoration: none;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0% { transform: rotate(1deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-6px); }
  100% { transform: rotate(1deg) translateY(0); }
}

@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .cards,
  .steps,
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body.menu-open {
    overflow: hidden;
  }

  .container {
    width: min(100% - 1.2rem, var(--max));
  }

  .nav-inner {
    padding: 0.7rem 0;
    position: relative;
  }

  .logo-image {
    height: 42px;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0.6rem;
    right: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.65rem;
    border-radius: 18px;
    border: 1px solid rgba(240, 190, 94, 0.35);
    background: linear-gradient(170deg, rgba(35, 11, 16, 0.97), rgba(63, 22, 30, 0.98));
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
    z-index: 70;
  }

  .nav-links a {
    color: #ffeaca;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 214, 148, 0.2);
    border-radius: 12px;
    padding: 0.72rem 0.86rem;
    font-weight: 500;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .hero {
    padding: 1rem 0 1.3rem;
  }

  .hero-banner {
    width: min(100% - 1.2rem, var(--max));
    min-height: clamp(220px, 56vw, 310px);
    border-radius: 18px;
  }

  .hero-intro {
    margin-top: 0.75rem;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    background: linear-gradient(165deg, rgba(233, 189, 98, 0.08), rgba(25, 9, 13, 0.55));
    border: 1px solid rgba(233, 189, 98, 0.2);
    border-radius: 14px;
    padding: 0.8rem;
  }

  .hero-copy p {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.85rem;
  }

  .hero-cta {
    margin-bottom: 0.65rem;
  }

  .hero-micro {
    display: none;
  }

  .hero-controls {
    bottom: 0.6rem;
  }

  .showcase {
    transform: none;
    animation-duration: 5.2s;
  }

  .eyebrow {
    margin-bottom: 0.75rem;
  }

  .stats-grid,
  .cards,
  .steps,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-micro {
    gap: 0.65rem;
    font-size: 0.88rem;
  }

  .stat,
  .card,
  .step,
  .quote,
  .panel,
  .cta {
    border-radius: 14px;
  }

  h1 {
    font-size: clamp(1.65rem, 9vw, 2.4rem);
  }
}
