:root {
  --bg: #0d0f12;
  --panel: rgba(19, 22, 27, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(223, 168, 62, 0.28);
  --text: #f5f5f2;
  --muted: #b2b7bf;
  --gold: #dca33b;
  --gold-strong: #f0bf5a;
  --ink: #121418;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(220, 163, 59, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, #0a0c0f 0%, #12161b 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.hidden {
  display: none !important;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 42%),
    repeating-linear-gradient(90deg, transparent 0, transparent 78px, rgba(255, 255, 255, 0.015) 79px, transparent 80px);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(12, 14, 17, 0.8);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner {
  min-height: 96px;
}

.brand img {
  height: 64px;
  width: auto;
}

.site-footer img {
  height: 48px;
  width: auto;
}

.hero-section,
.calculator-section,
.results-section,
.lead-section {
  padding: 92px 0;
}

.hero-grid,
.section-grid,
.lead-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.summary-copy h3,
.lead-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(44px, 7vw, 76px);
}

.hero-text,
.section-heading p,
.method-list p,
.method-note p,
.summary-copy p,
.lead-copy p,
.lead-points,
.hero-points,
.site-footer p,
.hero-highlights p,
.returning-access p {
  color: var(--muted);
  line-height: 1.75;
}

.brand-text {
  color: #f4f4f1;
  font-weight: 800;
}

.brand-text span {
  color: var(--gold-strong);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(220, 163, 59, 0.08);
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions,
.summary-metrics,
.returning-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #121418;
  background: linear-gradient(135deg, #f2bc54, #d2992f);
  box-shadow: 0 18px 34px rgba(220, 163, 59, 0.2);
}

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

.hero-points,
.lead-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.lead-points li {
  position: relative;
  padding-left: 22px;
  margin-top: 10px;
}

.hero-points li::before,
.lead-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-card,
.panel,
.summary-panel,
.result-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-card,
.summary-panel {
  border-radius: var(--radius-xl);
  padding: 26px;
}

.panel,
.result-card {
  border-radius: var(--radius-lg);
}

.brand-panel {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background:
    radial-gradient(circle at top left, rgba(220, 163, 59, 0.1), transparent 32%),
    linear-gradient(180deg, #161a1f, #111418);
}

.brand-panel img {
  width: min(100%, 460px);
  height: auto;
}

.hero-highlights {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.hero-highlights article,
.summary-metrics div,
.returning-access {
  padding: 18px;
  border-radius: 18px;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-highlights strong,
.result-card strong,
.summary-metrics strong,
.returning-access strong {
  display: block;
  font-family: "Sora", sans-serif;
  color: var(--gold-strong);
}

.hero-highlights p {
  margin: 8px 0 0;
}

.section-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: start;
}

.panel {
  padding: 30px;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.section-heading p {
  margin: 14px 0 0;
}

.form-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  font-weight: 800;
  color: #d8dbe0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select {
  min-height: 56px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  outline: none;
}

.field select,
.field select option {
  color: var(--text);
  background: #171b20;
}

.field input::placeholder {
  color: #7e8288;
}

.field input:focus,
.field select:focus {
  border-color: rgba(220, 163, 59, 0.65);
  box-shadow: 0 0 0 4px rgba(220, 163, 59, 0.12);
}

.form-feedback {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--gold-strong);
  font-size: 14px;
  font-weight: 700;
}

.method-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.method-list article,
.method-note {
  padding: 20px;
  border-radius: 18px;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-list strong,
.method-note strong,
.summary-copy h3 {
  font-size: 18px;
  color: var(--gold-strong);
}

.method-list p,
.method-note p,
.returning-access p {
  margin: 10px 0 0;
}

.method-note {
  margin-top: 18px;
  border-color: var(--line-strong);
}

.heading-inline {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--gold-strong);
  background: rgba(220, 163, 59, 0.08);
  font-weight: 800;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.result-card {
  padding: 24px;
}

.result-card span,
.summary-metrics span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.result-card strong {
  margin-top: 14px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.summary-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 22px;
}

.summary-copy p {
  margin: 14px 0 0;
}

.summary-metrics {
  align-items: stretch;
}

.lead-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: start;
}

.returning-actions {
  margin-top: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  min-height: 40px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.instagram-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(220, 163, 59, 0.24);
  background: rgba(220, 163, 59, 0.08);
  color: var(--gold-strong);
}

.instagram-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.instagram-dot {
  fill: currentColor;
  stroke: none;
}

.site-footer {
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(9, 11, 13, 0.84);
}

.site-footer p {
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
}

@media (max-width: 1040px) {
  .hero-grid,
  .section-grid,
  .lead-grid,
  .summary-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(42px, 8vw, 64px);
  }

  .brand-panel {
    min-height: 220px;
  }
}

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

  .site-header {
    position: static;
  }

  .header-inner,
  .footer-inner,
  .heading-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.03;
    letter-spacing: -0.04em;
  }

  .hero-text,
  .section-heading p,
  .summary-copy p,
  .lead-copy p,
  .method-list p,
  .method-note p {
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-section,
  .calculator-section,
  .results-section,
  .lead-section {
    padding: 68px 0;
  }

  .panel,
  .hero-card,
  .summary-panel,
  .result-card {
    padding: 22px;
  }

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

  .hero-actions,
  .returning-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .brand img {
    height: 66px;
  }

  .site-footer img {
    height: 40px;
  }

  .brand-panel {
    min-height: 180px;
    padding: 22px;
  }

  .brand-panel img {
    width: min(100%, 320px);
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .header-inner,
  .footer-inner,
  .heading-inline {
    gap: 12px;
  }

  .footer-inner,
  .footer-brand {
    align-items: center;
  }

  .footer-brand {
    justify-content: center;
    gap: 12px;
  }

  .header-inner {
    min-height: 92px;
    padding-top: 6px;
    padding-bottom: 10px;
  }

  .header-nav {
    gap: 8px;
    margin-top: 2px;
    margin-bottom: 14px;
  }

  .eyebrow {
    margin-bottom: 14px;
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero-copy h1 {
    font-size: clamp(31px, 10.5vw, 43px);
    line-height: 1.05;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-section,
  .calculator-section,
  .results-section,
  .lead-section {
    padding: 44px 0;
  }

  .panel,
  .hero-card,
  .summary-panel,
  .result-card {
    padding: 18px;
  }

  .hero-grid,
  .section-grid,
  .lead-grid {
    gap: 22px;
  }

  .hero-highlights {
    gap: 12px;
  }

  .hero-highlights article,
  .summary-metrics div,
  .returning-access {
    padding: 16px;
  }

  .brand img {
    height: 60px;
  }

  .site-footer img {
    height: 38px;
  }

  .site-footer p {
    font-size: 9px;
    line-height: 1.45;
    text-align: center;
  }

  .method-note {
    padding: 18px 16px;
  }

  .method-note p {
    font-size: 14px;
    line-height: 1.65;
    word-break: normal;
    hyphens: none;
  }

  .hero-points,
  .lead-points {
    margin-top: 20px;
  }

  .instagram-link {
    min-height: 36px;
    font-size: 11px;
  }

  .instagram-icon {
    width: 26px;
    height: 26px;
  }
}
