:root {
  --green-950: #071a14;
  --green-900: #0d241c;
  --green-800: #123226;
  --green-700: #1d4435;
  --gold-500: #b99a5b;
  --gold-300: #d8c391;
  --cream-100: #f7f1e6;
  --cream-200: #ede2cf;
  --ink: #141512;
  --muted: #5d625a;
  --line: rgba(20, 21, 18, 0.13);
  --white: #fffaf0;
  --shadow: 0 20px 60px rgba(7, 26, 20, 0.13);
  color-scheme: light;
  font-family:
    "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-100);
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(185, 154, 91, 0.34);
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--gold-500);
  color: var(--green-950);
  padding: 0.7rem 0.9rem;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 22px clamp(20px, 5vw, 56px);
  color: var(--white);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 26, 20, 0.82), rgba(7, 26, 20, 0));
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(216, 195, 145, 0.7);
  border-radius: 4px;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2rem);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.78;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-300);
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    image-set(
      url("/assets/scoutai-hero.jpg") 1x
    )
    center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 26, 20, 0.94) 0%, rgba(7, 26, 20, 0.76) 39%, rgba(7, 26, 20, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 26, 20, 0.86) 0%, rgba(7, 26, 20, 0.08) 46%);
}

.hero-content {
  padding: 168px 0 92px;
  color: var(--white);
}

.eyebrow {
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(3.1rem, 8vw, 6.9rem);
  line-height: 0.94;
}

.hero-copy {
  max-width: 610px;
  margin-top: 1.6rem;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0.95rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  border: 1px solid var(--gold-300);
  background: var(--gold-500);
  color: var(--green-950);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-300);
}

.email-link {
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(216, 195, 145, 0.45);
  padding-bottom: 0.22rem;
}

.email-link:hover,
.email-link:focus-visible,
.contact-email:hover,
.contact-email:focus-visible {
  color: var(--gold-500);
}

.section {
  padding: clamp(72px, 9vw, 128px) 0;
}

.section-intro {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.7), rgba(247, 241, 230, 1)),
    var(--cream-100);
}

.split,
.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.sample-layout {
  max-width: 760px;
}

h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
}

.section-copy p,
.founder-copy p,
.section-heading p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.75;
}

.section-copy p {
  max-width: 670px;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
  color: var(--green-800);
  font-size: 0.96rem;
  font-weight: 700;
}

.section-muted {
  background: #fffaf0;
  border-block: 1px solid rgba(20, 21, 18, 0.08);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(2rem, 5vw, 3.7rem);
}

.section-heading h2 + p {
  margin-top: 1.1rem;
}

.section-heading p + p {
  margin-top: 0.85rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(18, 50, 38, 0.18);
  border: 1px solid rgba(18, 50, 38, 0.14);
}

.premium-card {
  min-height: 292px;
  background: #fffaf0;
  padding: clamp(1.35rem, 2.2vw, 2rem);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.premium-card:hover {
  background: #fbf4e8;
  transform: translateY(-2px);
}

.card-index {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.15em;
}

.premium-card h3 {
  color: var(--green-900);
  font-size: 1.33rem;
  line-height: 1.16;
}

.premium-card p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.founder-section {
  background: var(--green-900);
  color: var(--white);
}

.founder-section .eyebrow {
  color: var(--gold-300);
}

.founder-copy {
  display: grid;
  gap: 1.35rem;
  border-left: 1px solid rgba(216, 195, 145, 0.38);
  padding-left: clamp(1.25rem, 4vw, 3rem);
}

.founder-copy p {
  color: rgba(255, 250, 240, 0.76);
}

.compact {
  margin-bottom: 0;
}

.contact-section {
  padding: clamp(76px, 9vw, 128px) 0;
  background:
    linear-gradient(135deg, rgba(7, 26, 20, 0.96), rgba(18, 50, 38, 0.94)),
    var(--green-900);
  color: var(--white);
}

.contact-content {
  display: grid;
  gap: 1rem;
}

.contact-content h2 {
  max-width: 760px;
}

.contact-location {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.96rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-email {
  width: fit-content;
  margin-top: 1.1rem;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1.25rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(216, 195, 145, 0.52);
  padding-bottom: 0.28rem;
}

.site-footer {
  background: var(--green-950);
  color: rgba(255, 250, 240, 0.68);
  padding: 24px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 920px) {
  .site-nav {
    display: none;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 26, 20, 0.94), rgba(7, 26, 20, 0.7)),
      linear-gradient(0deg, rgba(7, 26, 20, 0.9), rgba(7, 26, 20, 0.08));
  }

  .split,
  .founder-layout {
    grid-template-columns: 1fr;
  }

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

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

  .card-index {
    margin-bottom: 3rem;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 16px 14px;
  }

  .hero-content {
    padding: 138px 0 58px;
  }

  h1 {
    font-size: clamp(2.72rem, 15vw, 4.6rem);
  }

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

  .button {
    width: 100%;
  }

  .email-link {
    overflow-wrap: anywhere;
  }

  .section {
    padding: 68px 0;
  }

  .focus-list,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .premium-card {
    min-height: auto;
  }

  .card-index {
    margin-bottom: 2.2rem;
  }

  .founder-copy {
    border-left: 0;
    border-top: 1px solid rgba(216, 195, 145, 0.38);
    padding-left: 0;
    padding-top: 1.35rem;
  }

  .contact-email {
    overflow-wrap: anywhere;
  }

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