:root {
  --color-ink: #071a3a;
  --color-muted: #33435f;
  --color-subtle: #66748a;
  --color-navy: #062669;
  --color-blue: #0c45a3;
  --color-line: #d7e3f2;
  --color-soft: #f3f8ff;
  --color-soft-2: #edf5ff;
  --color-bg: #ffffff;
  --shadow-card: 0 18px 50px rgba(7, 26, 58, 0.06);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.9;
}

img {
  display: block;
  max-width: 100%;
}

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

.nowrap {
  white-space: nowrap;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 88px, var(--max-width));
  min-height: 92px;
  margin: 0 auto;
  gap: 32px;
}

.brand img {
  width: 136px;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 700;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 13px;
  background: var(--color-navy);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(6, 38, 105, 0.16);
}

.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 38%, #eef7ff 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(520px, 1.28fr);
  align-items: stretch;
  width: min(100% - 88px, var(--max-width));
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: 132px 0 42px;
  gap: 40px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0;
  color: var(--color-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.48;
}

.hero-lead {
  margin: 28px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 2.18;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 168px;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
}

.button span,
.text-link span {
  font-size: 24px;
  font-weight: 400;
  line-height: 0;
}

.button.primary {
  background: var(--color-navy);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(6, 38, 105, 0.18);
}

.button.secondary {
  border-color: #7d9ad1;
  background: #ffffff;
  color: var(--color-navy);
}

.hero-visual {
  position: relative;
  min-height: 0;
  margin-top: -34px;
  margin-bottom: -42px;
  margin-right: calc((50vw - (var(--max-width) / 2)) * -1 - 72px);
}

.hero-visual::before {
  position: absolute;
  inset: -110px -120px -92px -220px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.78) 30%, rgba(255, 255, 255, 0) 58%);
  content: "";
  pointer-events: none;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  transform: scale(1.08);
  transform-origin: center right;
  object-fit: cover;
  object-position: center right;
}

.section {
  padding: 88px 0;
}

.section-inner {
  width: min(100% - 88px, var(--max-width));
  margin: 0 auto;
}

.business-section {
  border-top: 1px solid #e5edf8;
  border-bottom: 1px solid #e5edf8;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.eyebrow,
.card-label {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.55;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.business-card {
  display: grid;
  grid-template-columns: 44% 1fr;
  align-items: stretch;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.business-media {
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: 26px;
}

.business-media img {
  width: 100%;
  max-width: 230px;
  height: auto;
  object-fit: contain;
}

.icon-media {
  background: radial-gradient(circle, #f1f5fb 0%, #f1f5fb 42%, transparent 43%);
}

.rocket-icon {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
}

.rocket-icon i {
  color: var(--color-blue);
  font-size: 72px;
  line-height: 1;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 34px 34px 0;
}

.card-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 2px 8px;
  border-radius: 6px;
  background: #eef5ff;
  color: var(--color-blue);
  font-size: 11px;
}

.card-content h3 {
  margin: 0 0 12px;
  color: var(--color-ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.card-content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 800;
}

.company-section {
  background: #ffffff;
}

.company-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.18fr 0.86fr;
  align-items: start;
  gap: 40px;
}

.company-copy h2 {
  position: relative;
  margin: 0 0 30px;
  color: var(--color-ink);
  font-size: 22px;
  font-weight: 800;
}

.company-copy h2::after {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--color-blue);
  content: "";
}

.company-copy p:last-of-type {
  margin: 0 0 36px;
  color: var(--color-ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.75;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid #dce4ef;
}

.company-table th,
.company-table td {
  padding: 15px 0;
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 32%;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 800;
}

.company-table td {
  color: #14233c;
  font-size: 14px;
  font-weight: 500;
}

.company-image {
  overflow: hidden;
  border-radius: 8px;
}

.company-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-cta {
  padding: 0 0 72px;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 88px, var(--max-width));
  margin: 0 auto;
  padding: 32px 88px;
  gap: 40px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f0f7ff 0%, #e9f4ff 100%);
}

.contact-message {
  display: flex;
  align-items: center;
  gap: 42px;
}

.mail-icon {
  display: grid;
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
}

.mail-icon i {
  color: var(--color-blue);
  font-size: 32px;
  line-height: 1;
}

.contact-inner p {
  margin: 0;
  color: var(--color-navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 2;
}

.site-footer {
  border-top: 1px solid #dce4ef;
  background: #ffffff;
  color: var(--color-ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  width: min(100% - 88px, var(--max-width));
  margin: 0 auto;
  padding: 34px 0 40px;
  gap: 72px;
}

.footer-brand img {
  width: 140px;
  height: auto;
}

.footer-brand p {
  max-width: 270px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.9;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

.footer-links h2 {
  margin: 0 0 18px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 800;
}

.footer-links a,
.footer-links p {
  display: block;
  margin: 0 0 8px;
  color: #263a59;
  font-size: 13px;
  font-weight: 500;
}

.copyright {
  width: min(100% - 88px, var(--max-width));
  margin: 0 auto;
  padding: 0 0 30px;
  color: #66748a;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 940px) {
  .hero {
    min-height: 620px;
    height: auto;
  }

  .site-header {
    position: relative;
    border-bottom: 1px solid #e5edf8;
  }

  .header-inner,
  .section-inner,
  .contact-inner,
  .footer-inner,
  .copyright {
    width: min(100% - 40px, var(--max-width));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    width: min(100% - 40px, var(--max-width));
    height: auto;
    min-height: 620px;
    padding: 88px 0 72px;
    gap: 0;
  }

  .hero-visual {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(72vw, 680px);
    min-height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    opacity: 0.78;
  }

  .hero-visual img {
    min-height: 100%;
    transform: scale(1.08);
  }

  .hero-visual::before {
    inset: 0 auto 0 -260px;
    width: 520px;
    height: auto;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 42%, rgba(255, 255, 255, 0) 100%);
  }

  .business-grid,
  .company-layout,
  .footer-inner,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    padding: 30px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 600px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 120px;
  }

  .header-nav {
    gap: 0;
  }

  .header-nav a:not(.nav-button) {
    display: none;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-inner {
    min-height: 600px;
    padding: 72px 0 64px;
  }

  .hero-visual {
    width: 92vw;
    opacity: 0.42;
  }

  .hero-lead br {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .business-card {
    grid-template-columns: 1fr;
  }

  .business-media {
    min-height: 180px;
  }

  .card-content {
    padding: 0 26px 28px;
  }

  .company-copy .button {
    width: auto;
  }

  .contact-inner,
  .contact-message {
    display: grid;
    justify-items: start;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table td {
    padding-top: 0;
  }
}
