:root {
  --navy: #071f3d;
  --navy-2: #0a2d57;
  --blue: #2478e8;
  --blue-soft: #eaf3ff;
  --text: #152238;
  --muted: #5b6b82;
  --border: #d9e4f2;
  --card: #ffffff;
  --bg: #f6f9fd;
  --shadow: 0 12px 32px rgba(12, 38, 70, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
}

.nav {
  max-width: 1220px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: white;
  border-bottom-color: var(--blue);
}

.hero {
  min-height: 460px;
  background:
    linear-gradient(90deg, rgba(7, 31, 61, 0.96), rgba(7, 31, 61, 0.65)),
    radial-gradient(circle at top right, #6287a6, #152238 60%);
}

.hero-content {
  max-width: 1220px;
  margin: 0 auto;
  padding: 52px 24px;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 44px;
  align-items: center;
}

.hero-photo {
  background: white;
  padding: 8px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.hero-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  display: block;
}

.eyebrow {
  margin: 0 0 8px;
  color: #69b4ff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.83rem;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  margin: 0;
  color: white;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.subtitle {
  color: white;
  font-size: 1.42rem;
  font-weight: 800;
  margin: 18px 0 12px;
}

.hero-text p:not(.eyebrow):not(.subtitle) {
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
  font-size: 1.05rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

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

.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

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

.overview-card,
.card,
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.overview-card {
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(12, 38, 70, 0.12);
}

.overview-card span,
.section-line {
  display: block;
  width: 58px;
  height: 4px;
  background: var(--blue);
  border-radius: 999px;
  margin-bottom: 12px;
}

.overview-card h2,
.card h2,
.feature-card h2 {
  margin: 0 0 10px;
  color: #06246b;
  font-size: 1.4rem;
  line-height: 1.15;
}

.page-hero {
  max-width: 1220px;
  margin: 0 auto;
  padding: 60px 24px 24px;
}

.page-hero h1 {
  color: #06246b;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.14rem;
}

.content {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.two-column {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: start;
}

.portrait-small {
  background: white;
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow);
}

.portrait-small img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  display: block;
}

.callout {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, var(--blue-soft));
  border-radius: 12px;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  margin-bottom: 22px;
  align-items: start;
}

.feature-card figure {
  margin: 0;
}

.feature-card img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
}

figcaption {
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
  margin-top: 8px;
}

.pdf-frame {
  height: 280px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f0f3f8;
}

.pdf-frame iframe {
  width: 100%;
  height: 242px;
  border: 0;
}

.pdf-frame.tall {
  height: 340px;
}

.pdf-frame.tall iframe {
  height: 302px;
}

.inline-link,
.download-row a,
.contact-card a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.inline-link:hover,
.download-row a:hover,
.contact-card a:hover {
  text-decoration: underline;
}

.timeline {
  display: grid;
  gap: 22px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
}

.timeline-marker {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 900;
  margin-top: 5px;
}

.rotation-label {
  color: var(--blue);
  font-weight: 800;
  margin: 0 0 8px;
}

.values-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
}

th {
  background: var(--blue-soft);
  color: #06246b;
  text-align: left;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.goal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.goal-grid ul {
  margin: 0;
  padding-left: 20px;
}

.contact-card {
  max-width: 760px;
}

footer {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 24px;
}

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

  .nav-links {
    justify-content: flex-start;
  }

  .hero-content,
  .two-column,
  .feature-card,
  .values-layout,
  .goal-grid,
  .overview {
    grid-template-columns: 1fr;
  }

  .hero-photo,
  .portrait-small {
    max-width: 330px;
  }
}
