:root {
  color-scheme: light;
  --ink: #0b1215;
  --ink-soft: #2d3a3f;
  --paper: #f5f2ea;
  --white: #fffdf8;
  --line: #d8d2c4;
  --teal: #0e7c7b;
  --teal-dark: #075153;
  --coral: #cf5c42;
  --gold: #b8842b;
  --blue: #315f8f;
  --green: #4e7145;
  --shadow: 0 20px 60px rgba(11, 18, 21, 0.14);
}

* {
  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;
  letter-spacing: 0;
}

body::selection {
  background: rgba(14, 124, 123, 0.24);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5vw;
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 12, 15, 0.78), rgba(7, 12, 15, 0));
}

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

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 253, 248, 0.44);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.16);
  backdrop-filter: blur(12px);
}

.site-header nav {
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  background: rgba(7, 12, 15, 0.24);
  backdrop-filter: blur(14px);
}

.site-header nav a {
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 7px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  background: rgba(255, 253, 248, 0.14);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px 5vw 72px;
  color: var(--white);
  background: var(--ink);
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 12, 15, 0.9) 0%, rgba(7, 12, 15, 0.68) 37%, rgba(7, 12, 15, 0.28) 78%),
    linear-gradient(180deg, rgba(7, 12, 15, 0.12) 0%, rgba(7, 12, 15, 0.18) 55%, rgba(7, 12, 15, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

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

.hero .eyebrow {
  color: #ffc477;
}

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

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: 5.5rem;
  line-height: 0.95;
  font-weight: 850;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.28rem;
  line-height: 1.6;
}

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

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

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

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

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.section {
  padding: 92px 5vw;
}

.intro {
  padding-top: 42px;
  padding-bottom: 42px;
  background: var(--ink);
  color: var(--white);
}

.intro p {
  max-width: 1040px;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.36rem;
  line-height: 1.65;
}

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

.section-heading h2,
.method-copy h2,
.signal h2 {
  margin: 0;
  font-size: 3.1rem;
  line-height: 1.05;
}

.section-heading p:not(.eyebrow),
.method-copy p:not(.eyebrow),
.legal-note {
  color: var(--ink-soft);
  line-height: 1.7;
}

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

.feature-card,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}

.feature-card.staffing {
  border-top: 7px solid var(--teal);
}

.feature-card.properties {
  border-top: 7px solid var(--gold);
}

.feature-card.ai {
  border-top: 7px solid var(--blue);
}

.feature-card.ecommerce {
  border-top: 7px solid var(--green);
}

.feature-index {
  align-self: flex-start;
  margin-bottom: auto;
  color: var(--coral);
  font-weight: 850;
}

.feature-card h3,
.legal-panel h3 {
  margin: 0 0 12px;
  font-size: 1.42rem;
}

.feature-card p,
.legal-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.feature-card p + p,
.legal-panel p + p {
  margin-top: 16px;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 44px;
  align-items: start;
  background: #fff8ea;
}

.method-copy p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.08rem;
}

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

.method-list div {
  padding: 20px;
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.method-list div:nth-child(2) {
  border-left-color: var(--coral);
}

.method-list div:nth-child(3) {
  border-left-color: var(--gold);
}

.method-list strong,
.method-list span {
  display: block;
}

.method-list strong {
  margin-bottom: 6px;
  font-size: 1rem;
}

.method-list span {
  color: var(--ink-soft);
  line-height: 1.55;
}

.signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: var(--teal-dark);
}

.signal h2 {
  max-width: 980px;
}

.signal .eyebrow {
  color: #ffd17b;
}

.legal {
  background: #f8f5ee;
}

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

.legal-panel {
  scroll-margin-top: 100px;
  padding: 28px;
}

.legal-panel a {
  color: var(--teal-dark);
  font-weight: 750;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 26px 5vw;
  color: rgba(255, 253, 248, 0.76);
  background: var(--ink);
}

.site-footer a {
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

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

  .site-header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    min-height: 84svh;
    padding-top: 146px;
  }

  h1 {
    font-size: 4rem;
  }

  .hero-copy,
  .intro p {
    font-size: 1.08rem;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-heading h2,
  .method-copy h2,
  .signal h2 {
    font-size: 2.3rem;
  }

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

  .method,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 240px;
  }

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

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

@media (max-width: 560px) {
  .site-header {
    display: block;
  }

  .brand {
    width: max-content;
    margin-bottom: 12px;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .site-header nav a {
    font-size: 0.86rem;
    padding-left: 9px;
    padding-right: 9px;
  }

  .hero {
    min-height: 82svh;
    padding-bottom: 54px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 12, 15, 0.9), rgba(7, 12, 15, 0.5)),
      linear-gradient(180deg, rgba(7, 12, 15, 0.3), rgba(7, 12, 15, 0.86));
  }

  h1 {
    font-size: 3.25rem;
  }

  .button {
    width: 100%;
  }

  .section-heading h2,
  .method-copy h2,
  .signal h2 {
    font-size: 2rem;
  }

  .legal-panel,
  .feature-card {
    padding: 22px;
  }

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