:root {
  --bg: #100814;
  --bg-soft: #1b0f23;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.11);
  --text: #fff8f1;
  --muted: #d9c8dd;
  --gold: #f7c86a;
  --rose: #e88cb8;
  --violet: #9f65ff;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(159, 101, 255, 0.26), transparent 35%),
    radial-gradient(circle at bottom right, rgba(232, 140, 184, 0.18), transparent 32%),
    linear-gradient(135deg, #0d0612, #1d0d28 50%, #120815);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.background-orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
  z-index: -1;
}

.orb-one {
  top: 10%;
  left: -120px;
  background: var(--violet);
}

.orb-two {
  right: -120px;
  bottom: 18%;
  background: var(--rose);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 8, 24, 0.72);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.logo {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #160a17;
  background: linear-gradient(135deg, var(--gold), #fff0b8);
  box-shadow: 0 0 35px rgba(247, 200, 106, .45);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: .95rem;
  transition: .2s;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-button {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 1.6rem;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  padding: 100px 0 70px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: 14px;
}

h1, h2, h3 {
  font-family: "Cinzel", serif;
}

.hero h1 {
  font-size: clamp(4.2rem, 10vw, 8.8rem);
  line-height: .86;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, #fff, var(--gold), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 22px;
}

.hero h2 {
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.08;
  max-width: 850px;
}

.hero-text {
  color: var(--muted);
  max-width: 720px;
  font-size: 1.07rem;
  line-height: 1.8;
  margin-top: 24px;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: .2s ease;
}

.btn-primary {
  color: #1a0c16;
  background: linear-gradient(135deg, var(--gold), #ffecb0);
  box-shadow: 0 14px 36px rgba(247, 200, 106, .24);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(247, 200, 106, .34);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.12);
}

.social-row {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.social-row a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.social-row a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-card {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 22%, rgba(247, 200, 106, .22), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 30px;
}

.hero-card::before {
  content: "✦ ✧ ✦ ✧ ✦";
  position: absolute;
  top: 28px;
  color: rgba(255,255,255,.22);
  letter-spacing: 16px;
}

.moon {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff8d9, #f7c86a 48%, #8a4d9c 72%);
  box-shadow: 0 0 90px rgba(247, 200, 106, .45);
  position: absolute;
  top: 78px;
}

.card-inner {
  position: relative;
  margin-top: 190px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(16, 8, 20, .66);
  border: 1px solid var(--line);
}

.card-symbol {
  color: var(--gold);
  font-size: 2.4rem;
}

.card-inner h3 {
  font-size: 1.7rem;
  margin: 8px 0 14px;
}

.card-inner p {
  color: var(--muted);
  line-height: 1.7;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.intro {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255,255,255,.07);
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.7;
  box-shadow: var(--shadow);
}

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

.section-heading h2, .warning h2, .contact h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

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

.feature-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  transition: .2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: var(--card-strong);
}

.feature-card span {
  font-size: 2rem;
}

.feature-card h3 {
  margin: 16px 0 10px;
  font-size: 1.35rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-group {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.065);
  padding: 24px;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.price-group h3 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.price-group ul {
  list-style: none;
}

.price-group li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.price-group li:last-child {
  border-bottom: none;
}

.price-group span {
  color: var(--muted);
  line-height: 1.45;
}

.price-group strong {
  color: #fff;
  white-space: nowrap;
}

.warning {
  padding: 38px;
  border: 1px solid rgba(247, 200, 106, .32);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(247, 200, 106, .13), rgba(232, 140, 184, .07)),
    rgba(255,255,255,.055);
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.warning p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 14px;
}

.contact-card {
  min-height: 380px;
  padding: 42px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(159, 101, 255, .16), rgba(247, 200, 106, .08)),
    rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}

.contact-card p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 18px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #38e07b, #b8ffd2);
  color: #07140c;
  font-size: 2rem;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 46px rgba(56, 224, 123, .35);
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 54px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
  .site-header {
    border-radius: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(18, 8, 24, .95);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .feature-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .hero h1 {
    font-size: 4.1rem;
  }

  .hero-card {
    min-height: 440px;
  }

  .moon {
    width: 180px;
    height: 180px;
  }

  .card-inner {
    margin-top: 150px;
  }

  .price-group li {
    flex-direction: column;
    gap: 6px;
  }

  .section {
    padding: 56px 0;
  }

  .intro,
  .warning,
  .contact-card {
    padding: 26px;
  }

  .btn {
    width: 100%;
  }
}
