:root {
  --navy: #102a55;
  --blue: #1f5f9f;
  --sky: #eaf3ff;
  --teal: #2bb3a3;
  --orange: #ffb14a;
  --ink: #142033;
  --muted: #637083;
  --white: #ffffff;
  --line: #d9e4f2;
  --soft: #f7faff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  position: relative;
  z-index: 2;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .2px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  position: relative;
  box-shadow: 0 10px 25px rgba(16,42,85,.18);
}
.logo-mark:before, .logo-mark:after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255,255,255,.9);
}
.logo-mark:before { top: 13px; transform: rotate(-8deg); }
.logo-mark:after { top: 22px; transform: rotate(8deg); }
.logo-core {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  right: 7px;
  top: 14px;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255,177,74,.85);
}
.nav-links { display: flex; gap: 24px; font-size: 14px; font-weight: 800; color: rgba(255,255,255,.92); }
.nav.light .nav-links { color: var(--navy); }
.nav.light { background: var(--white); border-bottom: 1px solid var(--line); max-width: none; padding-left: calc((100% - 1180px)/2 + 24px); padding-right: calc((100% - 1180px)/2 + 24px); }
.nav.light .brand { color: var(--navy); }

.hero {
  color: var(--white);
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(16,42,85,.96), rgba(16,42,85,.74), rgba(16,42,85,.35)),
    url('assets/gulfcoast.jpg') center/cover no-repeat;
}
.hero-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 24px 110px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 900;
  font-size: 13px;
}
.hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -1.8px;
}
.hero-text {
  max-width: 800px;
  font-size: 21px;
  color: #e8f0ff;
  margin: 28px 0 34px;
}
.hero-actions, .actions { display: flex; gap: 16px; flex-wrap: wrap; }
.button {
  display: inline-block;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.35);
}
.button.primary { background: var(--teal); color: #08263a; border: none; }
.button.secondary { color: var(--white); background: rgba(255,255,255,.12); }
.button.dark { color: var(--white); background: var(--navy); border: none; }
.button.outline { color: var(--navy); background: var(--white); border: 1px solid var(--line); }

.section { max-width: 1180px; margin: 0 auto; padding: 78px 24px; }
.section.compact { padding-top: 46px; padding-bottom: 46px; }
.section-header { max-width: 860px; margin-bottom: 32px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
h2 { margin: 0 0 18px; color: var(--navy); font-size: clamp(30px, 4vw, 46px); line-height: 1.12; letter-spacing: -.8px; }
h3 { margin: 0 0 10px; font-size: 22px; color: var(--navy); }
p { margin-top: 0; }
.lead { color: var(--muted); font-size: 19px; max-width: 920px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(16,42,85,.08);
}
.card.dark { background: var(--navy); color: var(--white); border: none; }
.card.dark h3 { color: var(--white); }
.card p, .muted { color: var(--muted); }
.card.dark p { color: #dfeaff; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: var(--sky); color: var(--blue); font-weight: 900; font-size: 13px; }
.icon { font-size: 30px; margin-bottom: 10px; }

.problem-card ul, .check-list { padding-left: 18px; margin: 12px 0 0; color: var(--muted); }
.problem-card li, .check-list li { margin: 7px 0; }

.value-chain {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(16,42,85,.08);
}
.callout {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  border-radius: 24px;
  padding: 34px;
}
.callout h2, .callout h3 { color: var(--white); }
.callout p { color: #dfeaff; }

.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
}
.page-hero .section { padding-top: 68px; padding-bottom: 68px; }
.page-hero h1 { margin: 0 0 18px; font-size: clamp(38px,5vw,60px); line-height: 1.08; }
.page-hero p { color: #e8f0ff; max-width: 860px; font-size: 20px; }

.agent-card { min-height: 210px; }
.agent-card .icon { color: var(--blue); }
.screenshot-card { padding: 14px; }
.screenshot-card img { border-radius: 14px; border: 1px solid var(--line); }
.caption { font-size: 13px; color: var(--muted); margin-top: 10px; }
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.report-grid img { border-radius: 14px; border: 1px solid var(--line); }
.founder-wrap { display: grid; grid-template-columns: 360px 1fr; gap: 42px; align-items: center; }
.founder-photo { border-radius: 24px; overflow: hidden; box-shadow: 0 18px 45px rgba(16,42,85,.16); }
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 18px; font-weight: 900; color: var(--navy); }
.stat span { display: block; font-weight: 400; color: var(--muted); font-size: 14px; margin-top: 6px; }
.contact-box { max-width: 800px; margin: 0 auto; text-align: center; }
footer { text-align: center; color: var(--muted); padding: 34px 24px; border-top: 1px solid var(--line); }

@media (max-width: 980px) {
  .nav, .nav.light { align-items: flex-start; flex-direction: column; padding-left: 24px; padding-right: 24px; }
  .nav-links { flex-wrap: wrap; color: rgba(255,255,255,.92); }
  .grid-2, .grid-3, .grid-5, .report-grid, .founder-wrap, .stat-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding-top: 70px; }
}
