:root {
  --bg: #0c0f17;
  --bg-soft: #111827;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #f8fafc;
  --muted: #aab4c5;
  --accent: #d6b36a;
  --accent-dark: #b98d37;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(214, 179, 106, 0.22), transparent 30%),
    radial-gradient(circle at 85% 5%, rgba(80, 111, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #070911 0%, #111827 45%, #0c0f17 100%);
  line-height: 1.6;
}

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

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

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand,
.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #111827;
  background: linear-gradient(135deg, var(--accent), #fff1c4);
  box-shadow: 0 12px 30px rgba(214, 179, 106, 0.25);
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 56px auto 0;
  min-height: 68vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  max-width: 850px;
  margin: 12px 0 22px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.93;
  letter-spacing: -0.08em;
}

.hero-content h1 span {
  display: inline-block;
  color: var(--accent);
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary,
.button.full {
  color: #111827;
  background: linear-gradient(135deg, var(--accent), #fff0ba);
  box-shadow: 0 18px 40px rgba(214, 179, 106, 0.24);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
}

.button.full {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

.trust-row span {
  color: var(--muted);
  padding: 10px 14px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.92rem;
}

.sale-card,
.feature-card,
.contact-card,
.split-section {
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.sale-card {
  padding: 34px;
  border-radius: var(--radius);
}

.card-topline {
  color: var(--muted);
  font-weight: 700;
}

.price {
  margin: 8px 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.sale-card p {
  color: var(--muted);
  margin-bottom: 26px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 110px auto 0;
  position: relative;
  z-index: 1;
}

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

.section h2,
.contact-copy h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

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

.feature-card {
  padding: 28px;
  border-radius: 24px;
}

.icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.feature-card p,
.contact-copy p,
.step p,
.form-note {
  color: var(--muted);
}

.split-section {
  padding: 34px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: var(--accent);
  font-weight: 800;
}

.contact-section {
  width: min(1180px, calc(100% - 40px));
  margin: 110px auto 0;
  position: relative;
  z-index: 1;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 34px;
  border-radius: var(--radius);
}

.contact-copy p:last-child {
  margin-top: 16px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 15px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(214, 179, 106, 0.7);
  box-shadow: 0 0 0 4px rgba(214, 179, 106, 0.12);
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 80px auto 0;
  padding: 28px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: var(--accent);
}

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

  .hero {
    margin-top: 26px;
  }

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

@media (max-width: 640px) {
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .section,
  .contact-section,
  .site-header,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .sale-card,
  .contact-card,
  .split-section {
    padding: 22px;
  }

  .button {
    width: 100%;
  }
}
