:root {
  --navy: #061f3e;
  --blue: #005ba6;
  --blue-2: #0a75bd;
  --yellow: #ffc425;
  --ink: #12233e;
  --muted: #65758a;
  --line: #d9e6f2;
  --soft: #f4f8fc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
}

a {
  color: inherit;
}

.site-header {
  height: 78px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(6, 31, 62, 0.98);
  color: white;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 25px;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--yellow), #ffdf70);
  color: var(--navy);
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-weight: 700;
  font-size: 15px;
}

.main-nav a,
.nav-cta {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--yellow);
}

.nav-cta {
  background: var(--yellow);
  color: var(--navy);
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 800;
}

.hero {
  min-height: 760px;
  padding: 72px 6%;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 48px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(255,196,37,0.18), transparent 30%),
    linear-gradient(135deg, #061f3e 0%, #073a72 100%);
  color: white;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  font-weight: 900;
}

.hero h1,
.section h2,
.ai-band h2,
.industries h2,
.cta h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
}

.hero-text {
  margin: 28px 0 34px;
  font-size: 22px;
  line-height: 1.55;
  color: #dcecf8;
  max-width: 690px;
}

.hero-actions,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.button.primary {
  background: var(--yellow);
  color: var(--navy);
}

.button.secondary {
  background: white;
  color: var(--navy);
}

.button.large {
  min-height: 60px;
  padding: 0 34px;
  font-size: 18px;
}

.proof-row {
  margin-top: 32px;
}

.proof-row span {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: #eef6ff;
}

.hero-visual {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,0.36);
  transform: rotate(0deg);
}

.hero-visual img {
  width: 100%;
  display: block;
}

.stats {
  margin: -48px auto 0;
  max-width: 1180px;
  width: 88%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 22px 48px rgba(6,31,62,0.16);
  position: relative;
  z-index: 2;
}

.stats div {
  padding: 30px;
  background: white;
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  margin-bottom: 8px;
}

.stats span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 92px 6%;
}

.section.compact {
  padding-top: 78px;
}

.section-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 46px;
}

.section-heading h2,
.ai-band h2,
.industries h2,
.cta h2 {
  font-size: clamp(36px, 4vw, 58px);
}

.section-heading p:not(.eyebrow),
.ai-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1220px;
  margin: 0 auto;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 0 16px 44px rgba(6,31,62,0.10);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  display: block;
}

.feature-card div {
  padding: 26px;
}

.feature-card h3,
.benefit-grid h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.feature-card p,
.benefit-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 17px;
}

.ai-band {
  margin: 0 6%;
  padding: 48px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 40px;
  background:
    radial-gradient(circle at top left, rgba(255,196,37,0.18), transparent 30%),
    linear-gradient(135deg, var(--navy), #064f8d);
  border-radius: 34px;
  color: white;
}

.ai-copy p:not(.eyebrow) {
  color: #dcecf8;
}

.ai-band img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 54px rgba(0,0,0,0.28);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.benefit-grid div {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}

.industries {
  padding: 86px 6%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
  background: var(--soft);
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.industry-list span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 800;
  color: var(--blue);
}

.cta {
  padding: 94px 6%;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(6,31,62,0.9), rgba(6,31,62,0.9)),
    url("assets/homepage-hero.jpg") center / cover no-repeat;
}

.cta h2 {
  max-width: 900px;
  margin: 0 auto 30px;
}

.footer {
  padding: 28px 6%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: white;
  background: #04172f;
}

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

  .hero,
  .ai-band,
  .industries {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    transform: none;
  }

  .feature-grid,
  .benefit-grid,
  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .section,
  .ai-band,
  .industries,
  .cta {
    padding-left: 22px;
    padding-right: 22px;
  }

  .ai-band {
    margin: 0 22px;
    padding: 30px;
  }

  .footer {
    flex-direction: column;
  }
}
