:root {
  --ink: #080808;
  --muted: #767676;
  --soft: #fafafa;
  --paper: #ffffff;
  --line: #dbdbdb;
  --line-soft: #efefef;
  --blue: #0095f6;
  --green: #37d67a;
  --coral: #ff7a59;
  --yellow: #f5c84b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

* {
  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;
  line-height: 1.45;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: grid;
  min-height: 64px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 max(18px, calc((100% - 1120px) / 2));
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.header-actions,
.hero-actions,
.card-header,
.person,
.card-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 820;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-size: 1rem;
}

.nav-links {
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.header-light,
.header-social {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
}

.header-light {
  display: inline-flex;
  min-width: 58px;
  align-items: center;
  justify-content: center;
}

.header-light span {
  padding: 0 12px;
}

.header-social {
  display: grid;
  place-items: center;
}

.header-mvp {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 850;
}

.header-mvp span {
  padding: 0 12px;
}

.button,
.card-actions button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 760;
  white-space: nowrap;
}

.hero {
  display: grid;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 64px);
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  align-items: center;
  gap: 88px;
  margin: 0 auto;
  padding: 80px 0 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(4.1rem, 8.4vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 600px;
  margin-bottom: 28px;
  color: #383838;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-width: 166px;
  padding: 0 18px;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.contact-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-card::before {
  position: absolute;
  z-index: -1;
  inset: 34px -28px -28px 44px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 24% 10%, rgba(255, 122, 89, 0.18), transparent 27%),
    radial-gradient(circle at 78% 0%, rgba(0, 149, 246, 0.16), transparent 28%),
    radial-gradient(circle at 62% 88%, rgba(55, 214, 122, 0.14), transparent 32%),
    #f7f7f7;
  content: "";
}

.card-header {
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.person {
  gap: 12px;
}

.avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 999px;
  outline: 2px solid var(--line);
  background:
    linear-gradient(135deg, #ffd66b, #ff7a59 52%, #0095f6);
  color: var(--paper);
  font-weight: 850;
}

.person small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.fit {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eefaf2;
  color: #168a49;
  font-size: 0.78rem;
  font-weight: 820;
}

.request {
  margin: 0;
  padding: 18px;
  color: #2f2f2f;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 18px;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}

.signal-list div {
  padding: 12px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.signal-list span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
}

.signal-list strong {
  font-size: 0.92rem;
}

.agent-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin: 18px;
  padding: 12px;
  background: var(--soft);
}

.agent-note span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: #eef7ff;
  color: var(--blue);
}

.agent-note p {
  margin: 0;
  color: #2f2f2f;
}

.card-actions {
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 18px;
}

.card-actions button {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.card-actions button:first-child {
  border-color: transparent;
  background: var(--blue);
  color: var(--paper);
}

.section-band {
  padding: 88px 0;
  border-top: 1px solid var(--line-soft);
  background: var(--paper);
}

.muted-band {
  background: var(--soft);
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.closing h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.how-grid h2 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3.6vw, 3.3rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.phrase-lock {
  white-space: nowrap;
}

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

.signal-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  min-height: 154px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.signal-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    linear-gradient(135deg, #ffd66b, #ff7a59 42%, #0095f6 72%, #37d67a) border-box;
  font-weight: 850;
}

.signal-grid h3 {
  margin-bottom: 7px;
  font-size: 1.12rem;
}

.signal-grid p,
.steps p,
.closing p {
  margin-bottom: 0;
  color: var(--muted);
}

.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 70px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.steps article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line-soft);
}

.steps article:last-child {
  border-bottom: 0;
}

.steps span {
  color: var(--blue);
  font-weight: 850;
}

.closing-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.closing h2 {
  max-width: 820px;
  margin-bottom: 16px;
}

.closing .button {
  width: fit-content;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(18px, calc((100% - 1120px) / 2));
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 850;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

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

  .hero {
    gap: 48px;
    min-height: auto;
    padding-top: 70px;
  }

  .contact-card {
    max-width: 540px;
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 58px;
    gap: 10px;
    padding: 0 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .header-light,
  .header-social {
    width: 32px;
    height: 32px;
  }

  .header-light {
    min-width: 54px;
  }

  .header-light span {
    padding: 0 10px;
  }

  .header-mvp {
    min-height: 32px;
  }

  .header-mvp span {
    padding: 0 10px;
  }

  .hero {
    width: calc(100% - 24px);
    padding: 46px 0 62px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.25rem);
  }

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

  .button {
    width: 100%;
  }

  .contact-card::before {
    inset: 44px -8px -14px 14px;
    border-radius: 32px;
  }

  .card-header {
    align-items: flex-start;
  }

  .signal-list {
    grid-template-columns: 1fr;
  }

  .section-band {
    padding: 64px 0;
  }

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

  .signal-grid article {
    min-height: auto;
  }

  .steps article {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }

  .how-grid h2 {
    font-size: clamp(1.82rem, 8.2vw, 2rem);
  }

  .phrase-lock {
    white-space: nowrap;
  }

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