:root {
  --bg: #120e0a;
  --bg-soft: #1a140f;
  --panel: rgba(255, 247, 238, 0.05);
  --text: #f6f0e8;
  --muted: #d3c1ad;
  --muted-2: #a9957f;
  --line: rgba(246, 240, 232, 0.14);
  --accent: #d7b07a;
  --accent-strong: #f0c98b;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --safe-bottom: max(1rem, env(safe-area-inset-bottom));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(215, 176, 122, 0.1), transparent 32%),
    linear-gradient(180deg, #19120d 0%, #0d0907 100%);
  color: var(--text);
}

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

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

.page-shell {
  position: relative;
  overflow: clip;
  width: min(100%, 28rem);
  min-height: 100svh;
  margin: 0 auto;
  background:
    radial-gradient(circle at top, rgba(215, 176, 122, 0.14), transparent 32%),
    linear-gradient(180deg, #0f0b08 0%, #17110d 48%, #0e0a07 100%);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem 1rem calc(1.1rem + var(--safe-bottom));
}

.hero-media,
.feature-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img,
.feature-media img {
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  transform: translate3d(0, 0, 0) scale(1.08);
  filter: saturate(0.92) contrast(1.02) brightness(0.72);
  animation: heroFade 1.2s ease-out both;
  object-position: 62% 28%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 8, 5, 0.2) 0%, rgba(12, 8, 5, 0.32) 24%, rgba(12, 8, 5, 0.74) 58%, rgba(12, 8, 5, 0.95) 100%),
    linear-gradient(90deg, rgba(12, 8, 5, 0.84) 0%, rgba(12, 8, 5, 0.26) 60%, rgba(12, 8, 5, 0.18) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 7rem;
  right: -2rem;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 176, 122, 0.28), rgba(215, 176, 122, 0));
  filter: blur(12px);
  pointer-events: none;
}

.hero-chrome,
.hero-copy,
.hero-brands {
  position: relative;
  z-index: 1;
}

.hero-chrome {
  display: flex;
  justify-content: flex-start;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(246, 240, 232, 0.74);
}

.hero-copy {
  width: 100%;
  max-width: 22rem;
  margin-top: min(44svh, 24rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand,
.headline,
.section h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand {
  margin: 0;
  font-size: clamp(3.35rem, 15vw, 4.8rem);
  line-height: 0.88;
}

.headline {
  margin: 0.55rem 0 0;
  font-size: clamp(1.88rem, 9vw, 2.8rem);
  line-height: 0.98;
  max-width: 12ch;
}

.subhead {
  margin: 0.9rem 0 0;
  max-width: none;
  font-size: 0.96rem;
  line-height: 1.56;
  color: var(--muted);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.55rem;
  margin-top: 1.15rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 201, 139, 0.18);
  background: linear-gradient(135deg, #f4d199 0%, #c99558 100%);
  color: #20150d;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 40px rgba(203, 146, 82, 0.26);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.hero-copy > .primary-cta {
  display: none;
}

.hero-note {
  margin: 0.75rem 0 0;
  color: rgba(246, 240, 232, 0.72);
  font-size: 0.79rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 18px 46px rgba(203, 146, 82, 0.32);
}

.hero-brands {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(246, 240, 232, 0.16);
  color: rgba(246, 240, 232, 0.8);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-brands span {
  position: relative;
  padding-right: 0.95rem;
}

.hero-brands span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: rgba(240, 201, 139, 0.7);
  transform: translateY(-50%);
}

main {
  position: relative;
  z-index: 1;
  padding-bottom: 7.2rem;
}

.section {
  position: relative;
  padding: 3.25rem 1rem;
}

.process-intro,
.final-cta {
  max-width: 32rem;
}

.section h3 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 0.98;
}

.section p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.66;
  font-size: 0.98rem;
}

.support {
  padding-top: 2.4rem;
}

.support-lines {
  margin-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.support-lines p {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.process-lines {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.process-lines article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.75rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.process-lines span {
  color: var(--accent-strong);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
}

.process-lines h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.process-lines p {
  margin-top: 0.35rem;
}

.final-cta {
  padding-bottom: calc(2rem + var(--safe-bottom));
}

.floating-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(0.8rem + var(--safe-bottom));
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(246, 240, 232, 0.14);
  border-radius: 1.25rem;
  background: rgba(21, 16, 12, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translateY(0);
  opacity: 1;
  transition: border-color 180ms ease;
}

.floating-cta span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-cta small {
  color: var(--accent-strong);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reveal {
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

[data-reveal] {
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js .reveal,
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}

.js body.is-ready .reveal,
.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

.reveal-delay-4 {
  transition-delay: 320ms;
}

.reveal-delay-5 {
  transition-delay: 400ms;
}

@keyframes heroFade {
  from {
    opacity: 0.72;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 760px) {
  body {
    padding: 1rem;
  }

  .page-shell {
    border-radius: 1.5rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  }

  .hero,
  .section {
    padding-inline: 1.35rem;
  }

  .floating-cta {
    left: 50%;
    right: auto;
    width: min(26rem, calc(100vw - 2rem));
    transform: translate(-50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  [data-reveal],
  .floating-cta {
    opacity: 1;
    transform: none;
  }
}
