:root {
  --bg: #101014;
  --bg-soft: #17171f;
  --card: rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #f7f1e8;
  --muted: #c9bdad;
  --soft: #938879;
  --gold: #d9a441;
  --gold-light: #f0cf86;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 164, 65, 0.16), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 25rem),
    var(--bg);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16, 16, 20, 0.66);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(16, 16, 20, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #16120b;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 0.91rem;
  color: var(--muted);
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  color: #17120b !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 99px;
}

.section-pad {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 56px;
  min-height: 100vh;
  padding-top: 150px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.55;
}

.hero-glow-one {
  width: 300px;
  height: 300px;
  right: 18%;
  top: 22%;
  background: rgba(217, 164, 65, 0.18);
}

.hero-glow-two {
  width: 220px;
  height: 220px;
  right: 5%;
  bottom: 18%;
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow,
.mini-eyebrow,
.package-label {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.2rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-copy,
.section-heading p,
.split-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 670px;
  margin: 26px 0 0;
  font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #17120b;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 40px rgba(217, 164, 65, 0.24);
}

.button.ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.button.full {
  width: 100%;
  margin-top: auto;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  color: var(--muted);
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.phone-shell {
  position: relative;
  width: min(380px, 100%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.phone-top {
  width: 92px;
  height: 6px;
  margin: 0 auto 14px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
}

.profile-card {
  min-height: 560px;
  padding: 30px 24px;
  border-radius: 31px;
  background:
    linear-gradient(rgba(16, 16, 20, 0.45), rgba(16, 16, 20, 0.86)),
    radial-gradient(circle at 20% 15%, rgba(217, 164, 65, 0.34), transparent 16rem),
    #17171f;
}

.avatar {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  border-radius: 24px;
  color: #191207;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 900;
  font-size: 1.35rem;
}

.profile-card h2 {
  font-size: 2.9rem;
}

.profile-card > p:not(.mini-eyebrow) {
  margin: 10px 0 24px;
  color: var(--muted);
}

.card-buttons {
  display: grid;
  gap: 10px;
}

.card-buttons span {
  padding: 13px 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
  font-weight: 800;
}

.listing-preview {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.18);
}

.listing-preview > div:first-child {
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(240, 207, 134, 0.9), rgba(255, 255, 255, 0.16));
}

.listing-preview small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.price-card,
.contact-card,
.stats-panel,
.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.feature-card,
.price-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.feature-card {
  min-height: 100%;
}

.feature-card h3,
.price-card h3 {
  margin-bottom: 12px;
}

.feature-card p,
.price-card li {
  color: var(--muted);
}

.feature-card p {
  margin: 0 0 24px;
}

.feature-card .button {
  margin-top: auto;
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: #17120b;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--gold-light);
  font-weight: 900;
}

.stats-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.stats-panel div {
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
}

.stats-panel strong {
  display: block;
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1;
}

.stats-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(217, 164, 65, 0.17), rgba(255, 255, 255, 0.07));
  border-color: rgba(240, 207, 134, 0.36);
  transform: translateY(-12px);
}

.price {
  margin: 18px 0;
  color: var(--text);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0 0 28px;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 46px;
  margin-top: 30px;
  background:
    radial-gradient(circle at top right, rgba(240, 207, 134, 0.2), transparent 20rem),
    var(--card-strong);
}

.cta-band h2 {
  max-width: 800px;
}

.contact-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 42px;
  text-align: center;
}

.contact-actions {
  justify-content: center;
}

.fine-print {
  margin-top: 24px !important;
  color: var(--soft) !important;
  font-size: 0.92rem !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  color: var(--soft);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-light);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    width: calc(100% - 24px);
  }

  .site-nav {
    gap: 4px;
    font-size: 0.86rem;
  }

  .site-nav a {
    padding: 9px 10px;
  }

  .brand {
    font-size: 0.96rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    justify-content: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(16, 16, 20, 0.96);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero,
  .split,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    min-height: auto;
  }

  .price-card.featured {
    transform: none;
  }

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

@media (max-width: 560px) {
  .section-pad {
    width: min(100% - 24px, var(--max-width));
    padding: 64px 0;
  }

  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 12px 12px;
  }

  .brand span:last-child {
    max-width: 175px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding-top: 124px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-copy,
  .section-heading p,
  .split-copy p,
  .contact-card p {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .feature-card,
  .price-card,
  .contact-card,
  .cta-band {
    padding: 24px;
    border-radius: 24px;
  }

  .phone-shell {
    border-radius: 34px;
  }

  .profile-card {
    min-height: 500px;
  }

  .profile-card h2 {
    font-size: 2.55rem;
  }

  .listing-preview {
    grid-template-columns: 1fr;
  }

  .listing-preview > div:first-child {
    height: 120px;
  }

  .site-footer {
    flex-direction: column;
  }
}