:root {
  --navy: #0a1630;
  --navy-soft: #132448;
  --blue: #2f69c9;
  --sky: #83aeea;
  --gold: #cfaa5d;
  --ink: #172033;
  --muted: #5f6878;
  --line: #dfe4ec;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --max: 1180px;
  --shadow: 0 18px 55px rgba(15, 31, 63, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-alt { background: var(--soft); }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 9999; background: #fff; padding: 10px 14px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(7, 17, 38, 0.91);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; color: #fff; line-height: 1; }
.brand-kicker { display: block; margin-bottom: 7px; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: #bdc8dd; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; letter-spacing: -0.04em; }
.brand-name span, .footer-brand span { font-weight: 400; color: #c5d7f7; }
.site-nav { display: flex; align-items: center; gap: 27px; }
.site-nav a { text-decoration: none; color: #e9eef8; font-size: 0.94rem; }
.site-nav a:hover { color: #fff; }
.site-nav .nav-cta { padding: 10px 16px; border: 1px solid rgba(255,255,255,0.45); border-radius: 999px; }
.menu-button { display: none; background: transparent; color: white; border: 1px solid rgba(255,255,255,.4); border-radius: 6px; padding: 8px 11px; }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--navy) url('assets/hero-port.jpg') center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,15,34,.97) 0%, rgba(6,15,34,.84) 46%, rgba(6,15,34,.38) 100%); }
.hero-content { position: relative; z-index: 1; padding-top: 92px; }
.eyebrow, .section-label { margin: 0 0 18px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--blue); }
.hero .eyebrow { color: #bcd3fa; }
.hero h1 { max-width: 880px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 6.4vw, 5.7rem); line-height: 1.02; font-weight: 500; letter-spacing: -0.055em; }
.hero-copy { max-width: 735px; margin: 28px 0 0; font-size: 1.2rem; line-height: 1.65; color: #e1e8f3; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 23px; border-radius: 4px; text-decoration: none; font-weight: 700; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: #fff; }
.button-primary:hover { background: #2659ad; }
.button-secondary { border: 1px solid rgba(255,255,255,.6); color: #fff; }
.hero-points { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.24); max-width: 680px; }
.hero-points span { position: relative; padding-left: 17px; font-size: 0.92rem; color: #d9e2f0; }
.hero-points span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); position: absolute; left: 0; top: .62em; }

.split-intro { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; }
h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.35rem, 4.8vw, 4.25rem); line-height: 1.08; font-weight: 500; letter-spacing: -0.045em; }
.intro-copy { font-size: 1.13rem; color: var(--muted); }
.intro-copy p:first-child { margin-top: 4px; }

.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading > p:last-child { max-width: 700px; font-size: 1.08rem; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); padding: 30px; min-height: 285px; box-shadow: 0 1px 0 rgba(10,22,48,.03); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-number { color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.card h3 { margin: 45px 0 13px; font-size: 1.34rem; line-height: 1.25; }
.card p { margin: 0; color: var(--muted); }

.sectors-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start; }
.sticky-heading { position: sticky; top: 120px; margin-bottom: 0; }
.sector-list { border-top: 1px solid var(--line); }
.sector-item { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.sector-item > span { color: var(--blue); font-size: .78rem; font-weight: 800; }
.sector-item h3 { margin: 0 0 5px; font-size: 1.25rem; }
.sector-item p { margin: 0; color: var(--muted); }

.dark-section { background: var(--navy); color: #fff; }
.light-heading .section-label { color: #8fb8fb; }
.light-heading { max-width: 900px; }
.process-grid { list-style: none; padding: 0; margin: 58px 0 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.process-grid li { min-height: 270px; padding: 25px 20px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.035); }
.process-grid span { color: var(--gold); font-size: .8rem; font-weight: 800; }
.process-grid h3 { margin: 52px 0 12px; font-size: 1.17rem; }
.process-grid p { margin: 0; font-size: .93rem; color: #c5cfdf; }

.fortexai-section { background: linear-gradient(135deg, #eef4fd 0%, #fff 70%); }
.fortexai-layout { display: grid; grid-template-columns: 250px 1fr; gap: 70px; align-items: start; }
.fortexai-badge { display: grid; place-items: center; height: 250px; border-radius: 50%; background: var(--navy); color: #fff; font-family: Georgia, serif; font-size: 2rem; box-shadow: 0 24px 65px rgba(10,22,48,.22); }
.fortexai-layout p:not(.section-label) { max-width: 760px; color: var(--muted); font-size: 1.08rem; }
.text-link { display: inline-block; margin-top: 12px; color: var(--blue); font-weight: 800; text-decoration: none; }

.submission-section { background: #f7f4ed; }
.submission-layout { display: grid; grid-template-columns: 1fr .78fr; gap: 70px; align-items: start; }
.submission-layout > div:first-child > p:last-child { max-width: 700px; color: var(--muted); }
.contact-panel { background: #fff; padding: 34px; box-shadow: var(--shadow); }
.contact-label { margin: 0 0 8px; color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.contact-email { display: inline-block; margin-bottom: 18px; color: var(--navy); font-family: Georgia, serif; font-size: clamp(1.25rem, 2.6vw, 1.9rem); text-decoration: none; overflow-wrap: anywhere; }
.contact-panel p { color: var(--muted); }
.full-button { width: 100%; margin-top: 12px; }

.site-footer { background: #071126; color: #c9d2e1; padding: 62px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr; gap: 50px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-brand { font-family: Georgia, serif; font-size: 1.7rem; color: #fff; }
.footer-grid p { max-width: 390px; margin: 8px 0 0; }
.footer-heading { color: #fff; font-weight: 800; margin: 0 0 8px !important; }
.footer-grid a { color: #c9d2e1; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); font-size: .82rem; color: #97a5bb; }
.footer-bottom p { margin: 0; }

.legal-page { background: var(--soft); min-height: 100vh; }
.legal-wrap { max-width: 900px; padding: 140px 0 80px; }
.legal-wrap h1 { font-family: Georgia, serif; font-size: clamp(2.5rem, 5vw, 4.6rem); font-weight: 500; letter-spacing: -.04em; }
.legal-wrap h2 { margin-top: 42px; font-size: 1.8rem; }
.legal-wrap p, .legal-wrap li { color: var(--muted); }
.back-link { display: inline-block; margin-top: 40px; color: var(--blue); font-weight: 800; }

@media (max-width: 940px) {
  .menu-button { display: inline-block; }
  .site-nav { display: none; position: absolute; top: 82px; left: 0; right: 0; padding: 24px 20px; flex-direction: column; align-items: flex-start; background: #071126; }
  .site-nav.is-open { display: flex; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .split-intro, .sectors-layout, .fortexai-layout, .submission-layout { grid-template-columns: 1fr; gap: 40px; }
  .sticky-heading { position: static; }
  .fortexai-badge { width: 210px; height: 210px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 68px 0; }
  .hero { min-height: 720px; }
  .hero h1 { font-size: 3.1rem; }
  .hero-copy { font-size: 1.05rem; }
  .hero-points { gap: 12px 22px; }
  .card-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .process-grid li { min-height: 220px; }
  .footer-bottom { flex-direction: column; }
}
