:root {
  --ink: #102028;
  --ink-soft: #8fa3a8;
  --paper: #f8f8e8;
  --white: #fffdf0;
  --line: rgba(248, 248, 232, 0.18);
  --teal: #004050;
  --teal-mid: #104858;
  --teal-soft: #185060;
  --amber: #ffa000;
  --amber-deep: #d09810;
  --charcoal: #082028;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(8, 32, 40, 0.82), rgba(8, 32, 40, 0));
}

.brand {
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.86rem;
}

nav a {
  text-decoration: none;
  opacity: 0.88;
}

nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 64, 80, 0.94) 0%, rgba(0, 64, 80, 0.78) 42%, rgba(0, 64, 80, 0.18) 100%),
    radial-gradient(circle at 18% 24%, rgba(255, 160, 0, 0.16), rgba(255, 160, 0, 0) 28%),
    linear-gradient(0deg, rgba(8, 32, 40, 0.82) 0%, rgba(8, 32, 40, 0.06) 50%);
}

.hero-portrait {
  position: absolute;
  z-index: 1;
  top: clamp(116px, 14vh, 164px);
  right: clamp(22px, 6vw, 76px);
  width: clamp(132px, 15vw, 220px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 22%;
  border: 2px solid rgba(248, 248, 232, 0.78);
  border-radius: 999px;
  box-shadow: 0 24px 70px rgba(8, 32, 40, 0.38);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding-top: 78px;
}

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

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

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(2.85rem, 8.2vw, 6.8rem);
  line-height: 0.92;
  font-weight: 850;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 0;
}

h3 {
  font-size: 1.06rem;
  margin-bottom: 12px;
}

.hero-copy {
  max-width: 610px;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.contact-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  color: var(--charcoal);
  background: var(--amber);
}

.button.secondary {
  border: 1px solid rgba(255, 253, 240, 0.44);
  color: var(--white);
  background: rgba(255, 253, 240, 0.08);
}

.snapshot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.snapshot div {
  min-height: 150px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
}

.metric {
  display: block;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 850;
}

.snapshot p,
.copy-block p,
.pillar-grid p,
.market-fit p,
.contact-panel a,
footer p {
  line-height: 1.55;
}

.section {
  padding: clamp(62px, 10vw, 124px) clamp(18px, 6vw, 76px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.85fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: start;
}

.copy-block {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-head {
  max-width: 980px;
  margin-bottom: 36px;
}

.compact-head {
  max-width: 1080px;
}

.compact-head h2 {
  max-width: 900px;
  margin-bottom: 18px;
}

.compact-head > p:last-child {
  max-width: 860px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.market-fit {
  background: var(--paper);
}

.fit-lanes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(16, 32, 40, 0.08);
  background: rgba(16, 32, 40, 0.08);
}

.fit-lanes article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.fit-lanes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 64, 80, 0.16);
  border-radius: 999px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
}

.fit-lanes h3 {
  color: var(--teal);
}

.fit-lanes p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.proof {
  background: #e9eee5;
}

.ai-first {
  background: var(--white);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pillar-grid article {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
}

.pillar-grid article:nth-child(2) h3 {
  color: var(--teal-soft);
}

.pillar-grid article:nth-child(3) h3 {
  color: var(--teal-mid);
}

.pillar-grid article:nth-child(4) h3 {
  color: var(--amber-deep);
}

.pillar-grid article:nth-child(5) h3 {
  color: var(--amber);
}

.target-band {
  color: var(--white);
  background: var(--teal);
}

.target-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 253, 240, 0.18);
  border: 1px solid rgba(255, 253, 240, 0.18);
}

.target-list span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(255, 253, 240, 0.06);
  font-weight: 780;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
}

.contact-panel {
  margin-top: 0;
}

.contact-panel a {
  width: 100%;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

footer {
  padding: 28px clamp(18px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
}

footer p {
  margin: 0;
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .snapshot,
  .pillar-grid,
  .target-list,
  .fit-lanes,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    margin-left: 18px;
    padding-top: 112px;
  }

  .hero-portrait {
    display: none;
  }

  .target-list span,
  .pillar-grid article,
  .fit-lanes article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.55rem, 13.5vw, 4.05rem);
  }

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

  .button,
  .contact-panel a {
    width: 100%;
    justify-content: center;
  }
}
