:root {
  --bg: #08060b;
  --bg-alt: #0f0b16;
  --card: #161122;
  --accent: #c1983c;
  --accent-strong: #f8d07a;
  --text: #f4f0ff;
  --text-muted: #c1bcd4;
  --border: rgba(255, 255, 255, 0.08);
  --gradient: linear-gradient(135deg, #201238 0%, #1a1b2f 45%, #0c0c14 100%);
  --font-display: "Playfair Display", serif;
  --font-body: "Space Grotesk", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

main {
  padding-inline: clamp(1.25rem, 4vw, 5rem);
}

.hero {
  padding: 2rem clamp(1.25rem, 4vw, 5rem) 5rem;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 2rem;
  text-align: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.logo__icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.logo__mark {
  font-weight: 600;
  text-transform: uppercase;
}

.logo__tag {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

.nav__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--text-muted);
}

.nav__links a {
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--text);
}

.btn {
  background: var(--accent);
  border: none;
  color: #20160c;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(193, 152, 60, 0.35);
}

.btn--outline {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid transparent;
}

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

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

.btn--xl {
  padding: 1.1rem 2.8rem;
  font-size: 1.1rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero__lead {
  color: var(--text-muted);
  max-width: 550px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  justify-content: center;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--accent-strong);
  margin-bottom: 0.75rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.hero__stats article {
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
}

.hero__emblem {
  position: absolute;
  right: 5%;
  bottom: -40px;
  width: clamp(220px, 25vw, 360px);
  opacity: 0.12;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.hero__stats h3 {
  font-size: 2rem;
  color: var(--accent-strong);
}

.hero__card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card__badge {
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.hero__card h2 {
  font-size: 1.8rem;
}

.hero__card ul {
  list-style: none;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.card__foot {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.proof .section__head {
  max-width: 1024px;
}

section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.carousel {
  position: relative;
}

.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, min(420px, 65vw));
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 0.75rem;
  scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__item {
  scroll-snap-align: start;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
}

.carousel__media {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #000;
}

.carousel__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(8, 6, 11, 0.75);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.carousel__control--prev {
  left: -1rem;
}

.carousel__control--next {
  right: -1rem;
}

.carousel__control[disabled] {
  opacity: 0.35;
  pointer-events: none;
}

.carousel__item h3 {
  font-size: 1.1rem;
  text-align: center;
}

.carousel__item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 640px) {
  .carousel__control {
    display: none;
  }
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.proof__grid article {
  background: var(--card);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem 2rem;
  border: 1px solid var(--border);
  text-align: center;
}

.proof__grid h3 {
  margin-bottom: 1rem;
}

.proof__grid ul {
  list-style: none;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.proof__grid li {
  width: 90%;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.proof__grid li:nth-child(2) {
  width: 75%;
}

.proof__grid li:nth-child(3) {
  width: 60%;
}

.proof__note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.features__grid article {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.features__grid h3 {
  margin-bottom: 0.5rem;
  color: var(--accent-strong);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.workflow__content ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.workflow__content li {
  display: flex;
  gap: 1rem;
}

.workflow__content span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-weight: 600;
}

.workflow__panel {
  background: linear-gradient(160deg, rgba(193, 152, 60, 0.15), rgba(22, 17, 34, 0.9));
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
}

.workflow__panel ul {
  list-style: none;
  margin-top: 1.5rem;
  color: var(--text-muted);
}

.workflow__panel li + li {
  margin-top: 0.75rem;
}

.offer__card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.offer__tag {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-strong);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.offer__lead {
  color: var(--text-muted);
  max-width: 460px;
}

.offer__card ul {
  list-style: none;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.offer__cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.faq__item button {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq__item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  display: none;
}

.faq__item.open p {
  display: block;
}

.faq__item .icon {
  font-size: 1.5rem;
  transition: transform 0.2s;
}

.faq__item.open .icon {
  transform: rotate(45deg);
}

.cta {
  background: rgba(193, 152, 60, 0.08);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.cta__meta {
  color: var(--text-muted);
}

.footer {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.footer a {
  color: var(--accent-strong);
}

@media (max-width: 768px) {
  .nav__links {
    width: 100%;
    justify-content: center;
  }

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

  .workflow__content li {
    align-items: flex-start;
  }
}
