:root {
  --bg-900: #0d1117;
  --bg-800: #141a23;
  --gold-500: #d4a13b;
  --gold-400: #e5bc63;
  --silver-300: #cad2df;
  --text-100: #f5f7fb;
  --text-300: #b9c2d0;
  --card-border: #2a3342;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--text-100);
  background:
    radial-gradient(circle at 20% 10%, #202938 0%, transparent 36%),
    linear-gradient(180deg, var(--bg-900), #0b0f14 55%, #0a0e13);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 14, 19, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1f2735;
}

.header-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  color: var(--text-100);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.3vw, 1.7rem);
  letter-spacing: 0.2px;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 56px 0 36px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 161, 59, 0.28), transparent 28%),
    radial-gradient(circle at 8% 50%, rgba(202, 210, 223, 0.14), transparent 35%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.82rem;
}

h1 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  text-wrap: balance;
}

.subtext {
  margin: 0;
  max-width: 60ch;
  color: var(--text-300);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
}

.hero-actions {
  margin-top: 26px;
}

.feature-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--silver-300);
}

.feature-list li {
  margin-bottom: 6px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta-primary {
  min-height: 52px;
  padding: 0 28px;
  color: #18120a;
  background: linear-gradient(180deg, #f0c96f, var(--gold-500));
  box-shadow: 0 16px 36px rgba(212, 161, 59, 0.26);
}

.cta-primary:hover {
  background: linear-gradient(180deg, #f2d07f, #d9aa4f);
}

.cta-small {
  min-height: 40px;
  padding: 0 16px;
  color: #18120a;
  background: linear-gradient(180deg, #f0c96f, var(--gold-500));
}

.note {
  margin: 10px 0 0;
  color: var(--text-300);
  font-size: 0.84rem;
}

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

.hero-image {
  width: min(100%, 430px);
  height: auto;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.35));
}

.trust {
  padding: 22px 0 70px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-card {
  background: linear-gradient(180deg, rgba(20, 26, 35, 0.9), rgba(14, 19, 27, 0.95));
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 20px;
}

.trust-card h2 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.trust-card p {
  margin: 0;
  color: var(--text-300);
}

.site-footer {
  border-top: 1px solid #1f2735;
  background: #0b1016;
}

.final-cta {
  padding: 0 0 82px;
}

.final-cta-wrap {
  background:
    linear-gradient(180deg, rgba(18, 26, 38, 0.96), rgba(11, 16, 24, 0.98));
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
}

.final-cta h2 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.final-cta p {
  margin: 0 0 16px;
  color: var(--text-300);
}

.final-cta .note {
  margin-top: 12px;
}

.footer-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
}

.site-footer p {
  margin: 0;
  color: var(--text-300);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-image {
    width: min(100%, 360px);
  }

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

  .final-cta {
    padding-bottom: 70px;
  }
}

@media (max-width: 560px) {
  .header-wrap {
    min-height: 64px;
  }

  .cta-small {
    min-height: 36px;
    padding: 0 13px;
    font-size: 0.9rem;
  }

  .footer-wrap {
    min-height: 62px;
  }
}

@media (max-width: 360px) {
  .header-wrap {
    gap: 10px;
  }

  .brand {
    font-size: 0.95rem;
    letter-spacing: 0;
  }

  .cta-small {
    padding: 0 12px;
    font-size: 0.85rem;
  }
}
