:root {
  --bg: #0f1113;
  --bg-2: #171a1d;
  --bg-3: #20252a;
  --paper: #f2e8da;
  --text: #f7f1ea;
  --muted: #b7aea3;
  --muted-dark: #6f675d;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #c58945;
  --accent-dark: #9c6a31;
  --card: rgba(255, 255, 255, 0.04);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --max: 1180px;
  --ok: #9adbb2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(197, 137, 69, 0.16), transparent 26%),
    linear-gradient(180deg, #0d0f11, #111417 42%, #13171b);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

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

.shell {
  width: min(var(--max), calc(100% - 34px));
  margin: 0 auto;
}

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

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

.brand,
h1,
h2,
h3,
.button,
.price {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.brand {
  font-size: 1.22rem;
  font-weight: 700;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #d59a56, var(--accent) 55%, var(--accent-dark));
  color: #171310;
  box-shadow: 0 14px 32px rgba(197, 137, 69, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.button-wide {
  width: 100%;
}

.hero,
.section {
  padding: 92px 0;
}

.hero {
  padding-top: 52px;
}

.hero-grid,
.form-layout,
.cta-shell {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h1,
.page-title {
  margin: 18px 0 18px;
  font-size: clamp(2.8rem, 6.8vw, 5.1rem);
  line-height: 0.96;
}

.page-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(197, 137, 69, 0.09);
  border: 1px solid rgba(197, 137, 69, 0.2);
  color: #dcc3a1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(197, 137, 69, 0.12);
}

.lede,
.section-head p,
.site-footer p,
.form-help,
.status-text,
.side-note p,
.health-stamp,
.health-list li {
  color: var(--muted);
}

.hero-actions,
.pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin: 28px 0;
}

.mini-grid,
.card-grid,
.stat-row,
.form-grid,
.health-list {
  display: grid;
  gap: 16px;
}

.mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}

.mini-grid li,
.info-card,
.step-card,
.price-card,
.side-note,
.health-card,
.form-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.mini-grid li {
  padding: 14px 15px;
  color: var(--muted);
}

.mini-grid strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.showcase-card {
  position: relative;
}

.browser-frame {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(140deg, #1e2226, #111316);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.browser-url {
  margin-left: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d5c8b7;
  font-size: 0.8rem;
}

.browser-body {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
}

.browser-panel {
  padding: 30px;
}

.browser-panel-light {
  background: linear-gradient(180deg, #efe7dc, #eadfce);
  color: #181615;
}

.browser-panel-dark {
  background: linear-gradient(180deg, #1d2125, #121417);
}

.panel-label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.browser-panel-light .panel-label {
  color: #8a6c46;
}

.browser-panel-dark .panel-label {
  color: #dbc5a7;
}

.browser-panel h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.03;
}

.browser-panel p {
  margin: 0 0 16px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(23, 25, 28, 0.08);
}

.pill-dark {
  background: #17191c;
  color: #f6f0e8;
}

.stat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-row div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(24, 22, 21, 0.08);
  color: #665d53;
  font-size: 0.78rem;
}

.stat-row strong {
  display: block;
  color: #181615;
  font-size: 1.05rem;
}

.feature-box,
.proof-box {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.feature-box strong,
.proof-box strong,
.side-note strong {
  display: block;
  margin-bottom: 8px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
}

.card-grid.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.step-card,
.price-card {
  padding: 26px;
}

.info-card span,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(197, 137, 69, 0.13);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

.price-card.featured {
  transform: translateY(-8px);
  border-color: rgba(197, 137, 69, 0.3);
  background:
    radial-gradient(circle at top left, rgba(197, 137, 69, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.05);
}

.price-label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(197, 137, 69, 0.14);
  color: #dcc3a1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 16px 0 10px;
}

.price {
  margin: 0;
  font-size: 2.9rem;
  line-height: 1;
}

.price-note {
  margin: 8px 0 20px;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.section-soft {
  background: linear-gradient(180deg, rgba(242, 232, 218, 0.08), rgba(242, 232, 218, 0.03));
}

.cta-band {
  padding-top: 40px;
}

.cta-shell {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
}

.form-layout {
  align-items: start;
}

.side-note,
.health-card {
  padding: 24px;
}

.form-card {
  padding: 28px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
}

input:focus,
select:focus {
  outline: 2px solid rgba(197, 137, 69, 0.28);
  border-color: rgba(197, 137, 69, 0.55);
}

.form-help,
.status-text {
  margin: 14px 0 0;
  text-align: center;
}

.status-text {
  min-height: 24px;
  font-weight: 600;
}

.status-text.success {
  color: var(--ok);
}

.health-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.health-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.health-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0 36px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .form-layout,
  .cta-shell,
  .browser-body {
    grid-template-columns: 1fr;
  }

  .card-grid.four-up,
  .card-grid.three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .mini-grid,
  .form-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero,
  .section {
    padding: 76px 0;
  }

  .shell {
    width: min(100% - 20px, var(--max));
  }

  .button {
    width: 100%;
  }

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

  .card-grid.four-up,
  .card-grid.three-up {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    flex-direction: column;
    text-align: center;
  }

  .cta-shell,
  .form-card,
  .side-note,
  .health-card {
    padding: 22px;
  }
}
