:root {
  --black: #050505;
  --panel: #242424;
  --panel-soft: #171717;
  --line: rgba(255, 255, 255, 0.13);
  --text: #f7f4ef;
  --muted: #c9c2b6;
  --accent: #d8b678;
  --accent-soft: rgba(216, 182, 120, 0.14);
  --shadow: rgba(0, 0, 0, 0.35);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--black);
  font-family: var(--font-body);
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 38%, rgba(216, 182, 120, 0.15), transparent 23rem),
    linear-gradient(110deg, #070707 0 58%, #202020 58% 100%);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 34px 22px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.97), rgba(9, 9, 9, 0.92) 58%, rgba(36, 36, 36, 0.98)),
    radial-gradient(circle at 18% 42%, rgba(216, 182, 120, 0.13), transparent 20rem);
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 28%, rgba(216, 182, 120, 0.2) 0 1px, transparent 2px),
    linear-gradient(135deg, transparent 0 47%, rgba(216, 182, 120, 0.11) 47% 48%, transparent 48%);
  background-size: 56px 56px, auto;
  opacity: 0.34;
}

.hero-content,
.section,
.final-cta {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 46px;
  align-items: start;
}

.copy-column {
  max-width: 620px;
}

.eyebrow,
.form-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.brand-mark {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 590px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(2.12rem, 4vw, 3.45rem);
  line-height: 1.04;
  font-weight: 600;
}

.status-ribbon {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: 1px solid rgba(216, 182, 120, 0.45);
  color: var(--accent);
  background: rgba(216, 182, 120, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 520px;
  margin-bottom: 20px;
  color: #e8dfd2;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  font-weight: 500;
  line-height: 1.5;
}

.benefit-list {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 24px;
  color: #eee7dc;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--accent);
}

.info-stack {
  display: grid;
  gap: 7px;
  max-width: 440px;
  margin-top: 6px;
}

.info-stack p {
  margin: 0;
  color: #f2eee6;
  font-size: 0.9rem;
  line-height: 1.35;
}

.info-stack strong {
  color: #fff;
}

.form-panel {
  border: 0;
  border-radius: 4px;
  padding: 22px;
  background: rgba(34, 34, 34, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.form-panel h2 {
  margin-bottom: 11px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.18;
  font-weight: 600;
}

.form-logo {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  text-align: center;
}

.form-intro,
.privacy-note {
  color: var(--muted);
  line-height: 1.5;
}

.form-intro {
  margin-bottom: 12px;
  font-size: 0.82rem;
}

.lead-form {
  display: grid;
  gap: 8px;
}

.botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: #f0e7dc;
  font-size: 0.76rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  padding: 7px 10px;
  color: #111;
  background: #fff;
  outline: none;
}

.lead-form select,
.lead-form textarea {
  color: #111;
}

.lead-form textarea {
  min-height: 62px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.lead-form button,
.final-cta a {
  min-height: 58px;
  border: 0;
  border-radius: 7px;
  padding: 14px 20px;
  color: #14100a;
  background: var(--accent);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(216, 182, 120, 0.22);
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.privacy-note {
  margin: -2px 0 0;
  font-size: 0.76rem;
}

.form-result {
  border: 1px solid rgba(216, 182, 120, 0.35);
  padding: 10px;
  color: #efe4d0;
  background: rgba(216, 182, 120, 0.08);
  font-size: 0.78rem;
  line-height: 1.45;
}

.section {
  padding: 68px 22px;
}

.section-tight {
  padding-top: 42px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.15rem);
  line-height: 1.05;
  font-weight: 900;
}

.value-grid,
.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.value-grid article,
.proof-list article {
  border: 1px solid var(--line);
  padding: 22px;
  background: rgba(25, 25, 25, 0.74);
}

.value-grid strong,
.proof-list strong {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.25;
}

.value-grid p,
.proof-list p,
.proof-copy p,
.about-section p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.proof-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.proof-copy {
  max-width: 430px;
}

.proof-copy h2 {
  margin-bottom: 16px;
}

.proof-list span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 40px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 54px 22px 72px;
}

.final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 235px;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-bg {
    background-position: top left;
    background-size: min(104vw, 640px) auto;
  }

  .hero-content,
  .proof-section,
  .about-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .form-panel {
    width: min(100%, 520px);
  }

  .value-grid,
  .proof-list {
    grid-template-columns: 1fr;
  }

  .final-cta a {
    width: min(100%, 360px);
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 28px 16px;
  }

  .section,
  .final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .form-panel,
  .value-grid article,
  .proof-list article {
    padding: 20px;
  }

  .signal-row {
    display: grid;
  }

  .signal-row span,
  .lead-form button,
  .final-cta a {
    width: 100%;
  }
}
