:root {
  color-scheme: light;
  --ink: #1d2526;
  --muted: #5d6867;
  --line: #d9e0dc;
  --paper: #fbfaf6;
  --white: #ffffff;
  --moss: #2f6d5c;
  --moss-dark: #1c4f43;
  --copper: #b76536;
  --gold: #e6b84a;
  --mist: #e9f1ed;
  --shadow: 0 24px 70px rgba(29, 37, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

::selection {
  background: rgba(230, 184, 74, 0.38);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 28px;
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 10px 28px rgba(29, 37, 38, 0.1);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 8px;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: inherit;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a,
.header-cta,
.inline-link {
  text-decoration: none;
}

.site-nav a:hover,
.inline-link:hover {
  color: var(--gold);
}

.header-cta {
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 750;
}

.hero {
  position: relative;
  display: grid;
  min-height: 76vh;
  padding: 96px 28px 34px;
  overflow: hidden;
  color: var(--white);
  place-items: end start;
}

.hero-bg,
.hero-bg::after {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 25, 24, 0.9), rgba(18, 25, 24, 0.58) 48%, rgba(18, 25, 24, 0.22)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Tram_Salt_Lake_City_%28Unsplash%29.jpg/1280px-Tram_Salt_Lake_City_%28Unsplash%29.jpg")
      center / cover no-repeat;
  transform: scale(1.02);
}

.hero-bg::after {
  content: "";
  z-index: -1;
  background: linear-gradient(0deg, rgba(18, 25, 24, 0.56), transparent 36%);
}

.hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: 4.85rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: #211b09;
}

.button-primary:hover {
  background: #f0c65f;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(700px, 100%);
  margin: 26px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(15, 20, 19, 0.28);
  backdrop-filter: blur(8px);
}

.hero-stats div {
  padding: 12px 16px;
}

.hero-stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stats dt {
  margin: 0;
  font-size: 1rem;
  font-weight: 850;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.section {
  padding: 86px 28px;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.problem-section {
  padding-top: 54px;
}

.problem-grid,
.split-grid,
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.problem-copy p:first-child,
.split-grid p,
.form-grid p {
  margin-top: 0;
}

.problem-copy {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 44px;
  margin-bottom: 36px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

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

.deliverable,
.price-card,
.snapshot-panel,
form,
details,
.thank-you-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(29, 37, 38, 0.06);
}

.deliverable {
  min-height: 246px;
  padding: 24px;
}

.deliverable-number {
  display: block;
  margin-bottom: 42px;
  color: var(--moss);
  font-weight: 900;
}

.deliverable p,
.price-card p,
.price-card li,
.snapshot-note,
.form-footnote,
.compliance-note,
details p {
  color: var(--muted);
}

.split-section {
  background: var(--mist);
}

.split-grid {
  align-items: center;
}

.inline-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--moss-dark);
  font-weight: 850;
}

.snapshot-panel {
  padding: 26px;
}

.snapshot-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  font-weight: 850;
}

.score-row {
  display: grid;
  grid-template-columns: 1fr minmax(150px, 0.55fr);
  gap: 18px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

meter {
  width: 100%;
  height: 12px;
}

meter::-webkit-meter-bar {
  border: 0;
  border-radius: 999px;
  background: #e6ebe7;
}

meter::-webkit-meter-optimum-value {
  border-radius: 999px;
  background: var(--moss);
}

meter::-moz-meter-bar {
  border-radius: 999px;
  background: var(--moss);
}

.snapshot-note {
  margin-bottom: 0;
}

.pricing-section {
  background: var(--paper);
}

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

.price-card {
  padding: 26px;
}

.price-label {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 8px;
  font-size: 2.8rem;
}

.price-card ul {
  margin: 22px 0 0;
  padding-left: 1.1rem;
}

.price-card li + li {
  margin-top: 10px;
}

.accent-card {
  border-color: rgba(47, 109, 92, 0.34);
  background: #f5fbf7;
}

.form-section {
  background: #f6f0e7;
}

form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.hidden-field {
  position: absolute;
  left: -10000px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 7px;
}

label {
  font-size: 0.9rem;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cdd6d1;
  border-radius: 8px;
  padding: 11px 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

input:focus {
  border-color: var(--moss);
  outline: 3px solid rgba(47, 109, 92, 0.16);
}

.form-button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
  font: inherit;
}

.form-footnote {
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
}

.compliance-note {
  border-left: 4px solid var(--copper);
  padding-left: 14px;
  font-weight: 650;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 12px 0 0;
}

.site-footer {
  padding: 34px 28px;
  background: var(--ink);
  color: var(--white);
}

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

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-small {
  font-size: 0.88rem;
}

.simple-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(29, 37, 38, 0.78), rgba(29, 37, 38, 0.78)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Tram_Salt_Lake_City_%28Unsplash%29.jpg/1280px-Tram_Salt_Lake_City_%28Unsplash%29.jpg")
      center / cover no-repeat;
  color: var(--white);
}

.thank-you-wrap {
  display: grid;
  min-height: 100vh;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 40px 0;
  align-content: center;
  gap: 24px;
}

.thank-you-panel {
  padding: clamp(28px, 5vw, 54px);
  color: var(--ink);
}

.thank-you-panel h1 {
  font-size: 4.5rem;
}

.thank-you-panel p {
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 18px;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    padding: 9px 11px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 74vh;
    padding: 94px 18px 32px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-stats {
    display: none;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(18, 25, 24, 0.82), rgba(18, 25, 24, 0.58)),
      url("https://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Tram_Salt_Lake_City_%28Unsplash%29.jpg/1280px-Tram_Salt_Lake_City_%28Unsplash%29.jpg")
        center / cover no-repeat;
  }

  .hero-stats,
  .problem-grid,
  .split-grid,
  .form-grid,
  .section-heading,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-stats div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .section {
    padding: 64px 18px;
  }

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

  .problem-grid,
  .split-grid,
  .form-grid,
  .section-heading {
    gap: 24px;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .deliverables-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .deliverable {
    min-height: 0;
  }

  .deliverable-number {
    margin-bottom: 22px;
  }

  .snapshot-header,
  .score-row,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .score-row {
    gap: 8px;
  }

  .thank-you-panel h1 {
    font-size: 3rem;
  }
}

@media (max-width: 460px) {
  .brand {
    gap: 7px;
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  h1 {
    font-size: 2.62rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  .button {
    width: 100%;
  }

  form,
  .snapshot-panel,
  .price-card,
  .deliverable {
    padding: 20px;
  }
}
