:root {
  --bg: #0d0a09;
  --bg-soft: rgba(18, 12, 10, 0.55);
  --line: rgba(255, 205, 130, 0.24);
  --gold: #f0c47a;
  --gold-strong: #ffcf84;
  --gold-soft: rgba(240, 196, 122, 0.18);
  --text: #f5eee6;
  --muted: #cdbfaf;
  --white-soft: rgba(255, 255, 255, 0.08);
  --shadow-gold: 0 0 18px rgba(240, 196, 122, 0.18),
                 0 0 45px rgba(240, 196, 122, 0.08);
}

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

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

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

button {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7, 5, 4, 0.35), rgba(7, 5, 4, 0.7)),
    url("./a.jpeg") center center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 204, 120, 0.12), transparent 25%),
    radial-gradient(circle at 50% 72%, rgba(255, 188, 92, 0.1), transparent 18%),
    linear-gradient(to right, rgba(255, 195, 110, 0.06), transparent 10%, transparent 90%, rgba(255, 195, 110, 0.06)),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.landing {
  min-height: 100vh;
  padding: 24px 0 40px;
  position: relative;
  z-index: 1;
}

.landing::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 196, 118, 0.35),
    rgba(255, 196, 118, 0.22),
    rgba(255, 196, 118, 0.35),
    transparent
  );
  box-shadow: 0 0 14px rgba(255, 196, 118, 0.12);
}

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

.section {
  width: 100%;
  padding: 56px 0;
  position: relative;
}

.section + .section {
  padding-top: 24px;
}

/* Header */
.topbar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px 28px;
  position: relative;
  z-index: 3;
}

.topbar-left {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
  margin: 0 auto;
  text-align: center;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  color: #e8ddd0;
  opacity: 0.88;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffe8c1;
  opacity: 1;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, transparent, var(--gold-strong), transparent);
  box-shadow: 0 0 12px rgba(255, 207, 132, 0.45);
}

/* Hero */
.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-inner {
  max-width: 980px;
  width: 100%;
}

.brand-mark {
  color: var(--gold-strong);
  text-shadow: 0 0 20px rgba(255, 203, 126, 0.28);
  margin: 0 auto 2px;
  opacity: 0.96;
  display: flex;
  justify-content: center;
}

.brand-mark img {
  width: clamp(76px, 10vw, 100px);
  height: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

.brand-block {
  margin-bottom: 28px;
}

.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  color: #f6d39b;
  line-height: 0.9;
  text-shadow: 0 0 26px rgba(255, 202, 124, 0.15);
}

.brand-subtitle {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.brand-subtitle p {
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  color: #f4e8d9;
  white-space: nowrap;
}

.brand-subtitle span {
  width: 72px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  box-shadow: 0 0 10px rgba(255, 207, 132, 0.18);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #f8f4ee;
  margin-bottom: 24px;
  line-height: 1.08;
  text-wrap: balance;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}
.hero-title .script {
  font-family: "Great Vibes", cursive;
  font-size: 1.45em;
  color: var(--gold-strong);
  font-weight: 400;
  text-shadow: 0 0 18px rgba(255, 204, 123, 0.18);
  margin: 0 6px;
}

.hero-text {
  max-width: 860px;
  margin: 0 auto 34px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #e7ddd1;
  opacity: 0.95;
  line-height: 1.65;
  text-wrap: balance;
  padding-inline: 12px;
}

.hero-text strong {
  color: #f0c47a;
  font-weight: 600;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 auto 34px;
  max-width: 820px;
}

.hero-stats span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 214, 160, 0.16);
  border-radius: 999px;
  background: rgba(20, 14, 11, 0.36);
  backdrop-filter: blur(8px);
  color: #f2e4d2;
  font-size: 0.96rem;
  line-height: 1;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 16px rgba(255, 198, 113, 0.05);
}

.cta-main {
  min-width: 280px;
  max-width: 100%;
  height: 76px;
  padding: 0 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(255, 214, 160, 0.26);
  background: rgba(28, 18, 14, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 28px rgba(255, 198, 113, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-main:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 32px rgba(255, 198, 113, 0.16);
}

.cta-main::before {
  content: "";
  position: absolute;
  left: 20%;
  bottom: -10px;
  width: 60%;
  height: 30px;
  background: radial-gradient(circle, rgba(255, 206, 131, 0.35), transparent 70%);
  filter: blur(10px);
}

.cta-main span {
  position: relative;
  z-index: 1;
}

.cta-main > span:first-child {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #ffe9c3;
}

.cta-main .arrow {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--gold-strong);
}

/* Features */
.features-section {
  padding-top: 20px;
}

.features {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.feature-card {
  min-height: 112px;
  border-radius: 22px;
  border: 1px solid rgba(255, 216, 161, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(15, 10, 8, 0.36)
  );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 18px rgba(255, 190, 100, 0.06);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 18px 14px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 24px rgba(255, 190, 100, 0.09);
}

.feature-card::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.8;
}

.feature-icon {
  font-size: 2rem;
  color: var(--gold-strong);
  margin-bottom: 10px;
  text-shadow: 0 0 14px rgba(255, 204, 123, 0.14);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-strong);
  filter: drop-shadow(0 0 6px rgba(255, 204, 123, 0.25));
}

.feature-card p {
  font-size: 1rem;
  color: #efe2d3;
  font-weight: 400;
  line-height: 1.4;
}

/* Trust section */
.trust-section {
  padding-top: 18px;
}

.trust-block {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 38px 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 216, 161, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(14, 9, 8, 0.42)
  );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 24px rgba(255, 190, 100, 0.06);
  backdrop-filter: blur(10px);
}

.trust-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 160, 0.18);
  background: rgba(255, 214, 160, 0.05);
  color: var(--gold-strong);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-block h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  color: #f8eddc;
  margin-bottom: 16px;
  text-wrap: balance;
}

.trust-block p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: #dccfbe;
  font-size: 1.02rem;
  line-height: 1.75;
}

/* Bottom divider */
.bottom-divider {
  width: min(200px, 100%);
  height: 18px;
  margin: 0 auto;
  position: relative;
}

.bottom-divider::before {
  content: "";
  position: absolute;
  inset: 8px 0 auto;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 203, 125, 0.45), transparent);
}

.bottom-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 18px;
  height: 18px;
  transform: translateX(-50%) rotate(45deg);
  border-top: 1px solid rgba(255, 208, 138, 0.55);
  border-left: 1px solid rgba(255, 208, 138, 0.55);
  background: rgba(18, 12, 10, 0.8);
  box-shadow: 0 0 16px rgba(255, 196, 122, 0.1);
}

/* Laptop */
@media (max-width: 1100px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 40px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .landing {
    padding: 20px 0 32px;
  }

  .landing::before {
    display: none;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 42px 0;
  }

  .topbar {
    padding: 0 12px 20px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 0.95rem;
  }

  .main-nav a.active::after {
    bottom: -8px;
  }

  .brand-block {
    margin-bottom: 22px;
  }

  .brand-subtitle {
    gap: 10px;
  }

  .brand-subtitle span {
    width: 42px;
  }

  .brand-subtitle p {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
  }

  .hero-title {
    margin-bottom: 18px;
  }

  .hero-text {
    margin-bottom: 26px;
  }

  .hero-stats {
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero-stats span {
    font-size: 0.9rem;
    min-height: 38px;
    padding: 9px 14px;
  }

  .cta-main {
    min-width: 100%;
    width: min(100%, 420px);
    height: 64px;
    padding: 0 24px;
  }

  .features {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-block {
    padding: 30px 20px;
    border-radius: 22px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .topbar {
    padding-bottom: 16px;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
  }

  .hero-stats span {
    width: 100%;
  }

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

  .feature-card {
    min-height: 96px;
  }

  .trust-kicker {
    font-size: 0.78rem;
  }

  .trust-block h3 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .trust-block p:last-child {
    font-size: 0.96rem;
    line-height: 1.65;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .container {
    width: calc(100% - 18px);
  }

  .main-nav {
    gap: 10px;
  }

  .main-nav a {
    font-size: 0.85rem;
  }

  .brand-title {
    font-size: 2.5rem;
  }

  .brand-subtitle p {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }

  .brand-subtitle span {
    width: 28px;
  }

  .cta-main {
    height: 58px;
    padding: 0 18px;
  }

  .cta-main > span:first-child {
    font-size: 1rem;
  }

  .hero-stats span {
    font-size: 0.85rem;
  }
}