:root {
  --ink: #17201d;
  --muted: #5b6761;
  --paper: #f7f3ec;
  --white: #ffffff;
  --teal: #126a6b;
  --green: #294f38;
  --red: #b84c34;
  --gold: #c89a3c;
  --line: #ded7cc;
  --shadow: 0 20px 50px rgba(23, 32, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 25, 22, 0.8), rgba(12, 25, 22, 0));
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.nav-links {
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 86dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(10, 24, 20, 0.92) 0%, rgba(10, 24, 20, 0.74) 34%, rgba(10, 24, 20, 0.2) 72%),
    linear-gradient(0deg, rgba(10, 24, 20, 0.46), rgba(10, 24, 20, 0)),
    url("assets/hero-bid-watch.png");
  background-size: cover;
  background-position: center;
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 88px);
  padding: 116px 0 56px;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(1.1rem, 2vw, 1.36rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.pricing-grid,
.process-grid,
.strip-inner {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  gap: 12px;
  margin: 36px 0 0;
}

.hero-stats div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.hero-stats dt {
  font-size: 1.45rem;
  font-weight: 900;
}

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

.strip {
  background: var(--green);
  color: var(--white);
}

.strip-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0;
}

.strip span {
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.section-copy p,
.contact-copy p,
.process p,
.pricing p {
  color: var(--muted);
}

.alert-preview,
.pricing-grid article,
.process-grid div,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.alert-preview {
  padding: clamp(20px, 4vw, 34px);
}

.alert-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.alert-label {
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.alert-head strong {
  display: grid;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-size: 1.35rem;
}

.alert-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.alert-meta dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.alert-meta dd {
  margin: 3px 0 0;
  font-weight: 700;
}

.match-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.match-list li {
  padding-left: 22px;
  background: linear-gradient(var(--teal), var(--teal)) 0 0.7em / 9px 9px no-repeat;
}

.process {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  background: #efe6d8;
}

.process-grid {
  margin-top: 26px;
}

.process-grid div {
  flex: 1 1 240px;
  min-height: 180px;
  padding: 24px;
  box-shadow: none;
}

.process-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.pricing-grid {
  margin-top: 26px;
}

.pricing-grid article {
  flex: 1 1 260px;
  padding: 26px;
  box-shadow: none;
}

.pricing-grid .featured {
  border-color: rgba(184, 76, 52, 0.45);
  box-shadow: 0 16px 42px rgba(184, 76, 52, 0.16);
}

.price {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

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

input:focus {
  outline: 3px solid rgba(18, 106, 107, 0.2);
  border-color: var(--teal);
}

.contact-form .button {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--ink);
}

@media (max-width: 780px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86dvh;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(10, 24, 20, 0.9) 0%, rgba(10, 24, 20, 0.76) 48%, rgba(10, 24, 20, 0.5) 100%),
      url("assets/hero-bid-watch.png");
    background-position: 58% center;
  }

  .hero-content {
    width: min(330px, calc(100vw - 58px));
    margin-left: 29px;
    padding-top: 104px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .strip-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
  }

  .strip span {
    overflow-wrap: anywhere;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .two-column,
  .contact {
    grid-template-columns: 1fr;
  }

  .alert-meta {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
