:root {
  --navy: #071629;
  --navy-2: #0c2038;
  --navy-3: #102a47;
  --gold: #d9a84e;
  --gold-soft: #f0d9a5;
  --ivory: #fbf4e7;
  --muted: #c9d2dd;
  --line: rgba(240, 217, 165, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at top left, rgba(217, 168, 78, 0.16), transparent 30rem),
    linear-gradient(135deg, #050d19 0%, var(--navy) 48%, #0b1728 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(240, 217, 165, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 217, 165, 0.05) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

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

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

.slide-deck {
  min-height: calc(100vh - 132px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 22, 41, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(240, 217, 165, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.6rem);
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a:hover,
.nav-cta,
.nav a.is-active {
  color: var(--ivory);
}

.nav a.is-active {
  text-shadow: 0 0 24px rgba(240, 217, 165, 0.34);
}

.nav-cta {
  padding: 0.58rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero {
  min-height: calc(100vh - 62px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 4.5vw, 3.8rem) clamp(1.2rem, 5vw, 4.5rem);
}

.hero__content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.95;
}

h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.8rem, 6.5vw, 5.9rem);
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.08rem;
}

.hero__text,
.intro p,
.section__heading p,
.split__text,
.contact p,
.site-footer {
  color: var(--muted);
  line-height: 1.55;
}

.hero__text {
  max-width: 620px;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
}

.hero__note,
.privacy-note {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.hero__note {
  max-width: 640px;
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  color: var(--gold-soft);
  line-height: 1.55;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #10101a;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 38px rgba(217, 168, 78, 0.25);
}

.button--secondary,
.button--ghost {
  border: 1px solid var(--line);
}

.button--secondary {
  color: var(--gold-soft);
}

.button--ghost {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.04);
}

.microcopy {
  margin-top: 0.95rem;
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.hero__card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: var(--navy-2);
}

.hero__card img {
  max-height: min(62vh, 560px);
  width: 100%;
  object-fit: cover;
}

.hero__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.intro {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.2rem, 5vw, 4.5rem);
}

.intro p {
  max-width: 980px;
  margin: 0 auto;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.75rem);
  line-height: 1.12;
  text-align: center;
}

.section {
  padding: clamp(2.6rem, 5vw, 4.4rem) clamp(1.2rem, 5vw, 4.5rem);
}

.section--dark {
  background:
    radial-gradient(circle at 80% 0%, rgba(217, 168, 78, 0.12), transparent 22rem),
    rgba(3, 11, 21, 0.42);
  border-block: 1px solid var(--line);
}

.section__heading {
  max-width: 760px;
  margin-bottom: 1.55rem;
}

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

.step,
.price-card,
.faq article {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.18);
}

.step,
.faq article {
  padding: 1.1rem;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.9rem;
  color: var(--gold-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.step p,
.faq p,
.price-card li {
  color: var(--muted);
  line-height: 1.48;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 1.18rem;
}

.price-card--featured {
  background: linear-gradient(180deg, rgba(217, 168, 78, 0.14), rgba(255, 255, 255, 0.05));
  border-color: rgba(240, 217, 165, 0.46);
}

.tag {
  align-self: flex-start;
  margin: 0 0 0.75rem;
  padding: 0.32rem 0.55rem;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.price {
  margin: 0.2rem 0 0;
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.35rem;
  font-weight: 700;
}

.regular {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.price-card ul {
  flex: 1;
  padding-left: 1.1rem;
  margin: 1rem 0;
}

.price-card .button {
  width: 100%;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.split__text p:first-child {
  margin-top: 0;
}

.faq__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact {
  margin: clamp(1.5rem, 4vw, 3rem) clamp(1.2rem, 5vw, 4.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(240, 217, 165, 0.38);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(217, 168, 78, 0.16), rgba(255, 255, 255, 0.04)),
    var(--navy-2);
  box-shadow: var(--shadow);
}

.contact h2 {
  margin-bottom: 0.8rem;
}

.contact__actions {
  justify-content: flex-end;
  margin-top: 0;
}

.privacy-note {
  margin-top: 1.2rem;
  padding: 1rem;
}

.privacy-note h3 {
  margin-bottom: 0.45rem;
  color: var(--ivory);
}

.privacy-note p {
  margin-bottom: 0;
}

.page-panel {
  display: none;
}

.page-panel.is-active {
  animation: panelFade 260ms ease both;
}

.hero.page-panel.is-active,
.contact.page-panel.is-active {
  display: grid;
}

.section.page-panel.is-active {
  min-height: calc(100vh - 132px);
  display: grid;
  align-content: center;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  display: grid;
  gap: 0.6rem;
  padding: 1.35rem clamp(1.2rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

.slide-controls {
  position: fixed;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 1rem;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem;
  border: 1px solid rgba(240, 217, 165, 0.28);
  border-radius: 999px;
  background: rgba(7, 22, 41, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.slide-button {
  min-height: 36px;
  padding: 0 0.9rem;
  color: var(--ivory);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.slide-button:hover:not(:disabled) {
  border-color: rgba(240, 217, 165, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.slide-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.slide-button--next {
  color: #11131c;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.slide-button--next:hover {
  background: linear-gradient(135deg, #f8e6bd, #e1ad55);
}

.slide-counter {
  min-width: 42px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
}

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

  .hero {
    padding-top: 3rem;
  }

  .hero__card {
    max-width: 560px;
  }

  .steps,
  .pricing {
    grid-template-columns: 1fr;
  }

  .contact__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

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

  .price {
    font-size: 2.55rem;
  }

  .slide-controls {
    right: 50%;
    transform: translateX(50%);
  }
}
