:root {
  color-scheme: light;
  --bg: #f7f8f4;
  --ink: #18201d;
  --muted: #52605b;
  --line: #d9dfd6;
  --panel: #ffffff;
  --accent: #0f6b5b;
  --accent-dark: #0a443b;
  --gold: #c18b2f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 244, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a,
.button {
  color: var(--ink);
  text-decoration: none;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 72px clamp(20px, 7vw, 88px);
  background:
    linear-gradient(90deg, rgba(24, 32, 29, 0.88), rgba(24, 32, 29, 0.46)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.hero-inner {
  max-width: 820px;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c36c;
}

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

h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  max-width: 840px;
  margin-bottom: 22px;
}

h2 {
  font-size: 34px;
  line-height: 1.08;
  margin-bottom: 14px;
}

h3 {
  font-size: 18px;
}

.lede {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button,
button {
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 16px;
  font-weight: 800;
}

.primary,
button {
  background: var(--accent);
  color: #fff;
}

.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.band,
.section {
  padding: 56px clamp(20px, 6vw, 80px);
}

.band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

article,
.panel,
.metrics div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

article p,
.section p {
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

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

.score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #e6f1ed;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 850;
}

.metrics strong {
  display: block;
  font-size: 34px;
  color: var(--accent-dark);
}

.metrics span {
  color: var(--muted);
  font-size: 14px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.sample-followup {
  margin-top: 16px;
}

table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef2eb;
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 82px;
}

button {
  cursor: default;
}

@media (max-width: 900px) {
  .five,
  .three,
  .score-grid,
  .metrics,
  .split {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 620px;
  }
}

/* --- deploy additions --- */
.hero {
  background: linear-gradient(135deg, #10201b 0%, #0f6b5b 78%, #158b76 100%);
}

.footer {
  padding: 40px clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.embed-wrap {
  max-width: 760px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 18px 18px;
}

.embed-wrap iframe {
  width: 100%;
  border: 0;
}

.prose {
  max-width: 760px;
}

.prose p, .prose li {
  color: var(--muted);
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  align-items: start;
}

.price-tag {
  font-size: 40px;
  font-weight: 850;
  color: var(--accent-dark);
  margin: 0 0 4px;
}

ul.checklist {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.notice {
  background: #fdf6e9;
  border: 1px solid #ecd9b0;
  border-radius: 8px;
  padding: 14px 18px;
  color: #6b5320;
  font-size: 14px;
  max-width: 760px;
  margin-bottom: 22px;
}

@media (max-width: 900px) {
  .pricing { grid-template-columns: 1fr; }
}
