:root {
  color-scheme: light;
  --ink: #172027;
  --muted: #62707b;
  --line: #dce4e7;
  --paper: #f7f9f8;
  --white: #ffffff;
  --dark: #071115;
  --dark-2: #0e1b20;
  --teal: #0f9f91;
  --teal-dark: #06786e;
  --amber: #d68a16;
  --blue: #2f6da8;
  --shadow: 0 22px 70px rgba(15, 28, 35, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #f6fbfb;
  background: rgba(7, 17, 21, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #061113;
  background: #ffffff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: rgba(246, 251, 251, 0.68);
  font-size: 12px;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(246, 251, 251, 0.78);
  font-size: 14px;
}

.nav a:hover,
.header-action:hover,
.site-footer a:hover {
  color: #ffffff;
}

.header-action {
  padding: 10px 14px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
  background: var(--dark);
  padding: 128px clamp(18px, 6vw, 78px) 50px;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.94) contrast(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 21, 0.95) 0%, rgba(7, 17, 21, 0.82) 40%, rgba(7, 17, 21, 0.26) 100%),
    linear-gradient(0deg, rgba(7, 17, 21, 0.92) 0%, rgba(7, 17, 21, 0.1) 46%, rgba(7, 17, 21, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #8be4d8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal-dark);
}

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

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(246, 251, 251, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.btn.primary {
  color: #061113;
  background: #ffffff;
}

.btn.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 960px);
  margin: 64px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.proof-strip div {
  padding: 18px;
  background: rgba(7, 17, 21, 0.54);
}

.proof-strip dt {
  margin-bottom: 6px;
  font-weight: 900;
}

.proof-strip dd {
  margin: 0;
  color: rgba(246, 251, 251, 0.72);
  font-size: 14px;
}

section:not(.hero) {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 6vw, 78px);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: end;
}

.section-head.split > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.pain-grid article,
.agent-board article,
.founder-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.pain-grid article {
  padding: 28px;
}

.pain-grid p,
.agent-board p,
.timeline p,
.service-item p,
.founder-card p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--teal-dark);
  font-weight: 900;
  font-size: 22px;
}

.services,
.process {
  background: #ffffff;
}

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

.service-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.service-item:last-child {
  border-bottom: 1px solid var(--line);
}

.service-num {
  color: var(--teal-dark);
  font-weight: 900;
  font-size: 24px;
}

.service-item strong {
  justify-self: end;
  white-space: nowrap;
  color: var(--ink);
}

.agents {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: center;
  color: #ffffff;
  background: var(--dark-2);
}

.agent-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(246, 251, 251, 0.74);
  font-size: 18px;
}

.agent-board {
  display: grid;
  gap: 14px;
}

.agent-board article {
  position: relative;
  padding: 24px 24px 24px 86px;
  color: var(--ink);
  box-shadow: none;
}

.agent-board span {
  position: absolute;
  left: 24px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue);
  font-weight: 900;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: #314049;
  font-weight: 750;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  padding-top: 18px;
  border-top: 3px solid var(--teal);
}

.timeline span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--amber);
  font-weight: 900;
}

.founder {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}

.founder-card {
  padding: 30px;
}

.founder-card p + p {
  margin-top: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 44px;
  color: #ffffff;
  background: var(--dark);
}

.contact-copy {
  align-self: center;
}

.contact-copy p {
  margin-top: 20px;
  color: rgba(246, 251, 251, 0.74);
  font-size: 18px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-methods a {
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: rgba(246, 251, 251, 0.86);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(246, 251, 251, 0.84);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(246, 251, 251, 0.42);
}

input:focus,
textarea:focus {
  border-color: #8be4d8;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #8be4d8;
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 6vw, 78px);
  color: rgba(246, 251, 251, 0.7);
  background: #050b0d;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(246, 251, 251, 0.88);
}

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

  .nav {
    display: none;
  }

  .hero {
    min-height: 900px;
    align-items: flex-end;
  }

  .proof-strip,
  .pain-grid,
  .timeline,
  .section-head.split,
  .agents,
  .founder,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 54px 1fr;
  }

  .service-item strong {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding: 12px 14px;
  }

  .brand small,
  .header-action {
    display: none;
  }

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

  .hero {
    min-height: 860px;
    padding: 104px 18px 28px;
  }

  h1 {
    font-size: 39px;
  }

  .hero-lead,
  .agent-copy p:not(.eyebrow),
  .contact-copy p,
  .section-head.split > p {
    font-size: 16px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .proof-strip div,
  .pain-grid article,
  .lead-form,
  .founder-card {
    padding: 20px;
  }

  .agent-board article {
    padding: 22px;
  }

  .agent-board span {
    position: static;
    margin-bottom: 16px;
  }

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