:root {
  --ink: #071927;
  --muted: #526671;
  --paper: #f5f9fc;
  --white: #fff;
  --navy: #061827;
  --cyan: #43d0ef;
  --aqua: #8de4f6;
  --blue: #0068d1;
  --blue-deep: #034f9f;
  --ice: #dff5fc;
  --line: rgba(7, 25, 39, .15);
  --shell: min(1180px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; padding: 12px 18px; background: #fff; color: #000; }
.skip-link:focus { top: 12px; }

.site-header { height: 88px; background: var(--navy); color: #fff; position: sticky; top: 0; z-index: 100; transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 12px 35px rgba(1, 12, 21, .24); }
.nav-shell { width: var(--shell); height: 100%; margin: auto; display: flex; align-items: center; gap: 44px; }
.brand { width: 230px; height: 34px; overflow: hidden; flex: none; }
.brand img { height: 34px; width: auto; max-width: none; }
.main-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; font-size: 14px; font-weight: 600; }
.main-nav a { position: relative; padding: 34px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 25px; width: 0; height: 2px; background: var(--cyan); transition: width .25s ease; }
.main-nav a:hover::after,.main-nav a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: inline-flex; align-items: center; gap: 18px; background: linear-gradient(135deg, var(--blue), #159de0); padding: 15px 19px; font-size: 14px; font-weight: 700; }
.nav-cta span { font-size: 17px; }
.menu-toggle { display: none; background: none; border: 0; width: 38px; height: 38px; padding: 8px; }
.menu-toggle span { display: block; height: 2px; background: white; margin: 7px 0; transition: transform .2s ease; }

.hero { min-height: 690px; background: #075da9; color: white; position: relative; overflow: hidden; display: flex; align-items: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 29, 46, .94) 0%, rgba(4, 40, 58, .82) 42%, rgba(0, 68, 83, .18) 77%); }
.hero-grid { position: absolute; inset: 0; display: grid; grid-template: repeat(4, 1fr) / repeat(6, 1fr); transform: translateX(43%); width: 72%; }
.tile { border: 1px solid rgba(255,255,255,.08); position: relative; }
.t1 { background: #0064d0; }.t2 { background: #43d3f1; }.t3 { background: #178fdb; }.t4 { background: #85dcf4; }.t5 { background: #0b78d8; }.t6 { background: #2ab3e8; }.t7 { background: #034f9f; }.t8 { background: #e6f7fc; }.t9 { background: #37c2ed; }.t10 { background: #a9e8f7; }.t11 { background: #0a67c3; }.t12 { background: #102f4d; }
.t1 { grid-area: 1/1/3/2; }.t2 { grid-area: 1/2/2/4; }.t3 { grid-area: 1/4/3/5; }.t4 { grid-area: 1/5/2/7; }.t5 { grid-area: 2/2/3/3; }.t6 { grid-area: 2/3/4/4; }.t7 { grid-area: 2/5/4/6; }.t8 { grid-area: 3/1/5/3; }.t9 { grid-area: 3/4/4/5; }.t10 { grid-area: 3/6/5/7; }.t11 { grid-area: 4/3/5/5; }.t12 { grid-area: 4/5/5/6; }
.dots::after,.gridmark::after,.lines::after { content:""; position:absolute; width:70px; height:70px; left:50%; top:50%; transform:translate(-50%,-50%); opacity:.75; }
.dots::after { background: radial-gradient(circle, #fff 3px, transparent 4px); background-size: 16px 16px; }
.gridmark::after { background: repeating-linear-gradient(90deg,rgba(255,255,255,.75) 0 4px,transparent 4px 12px),repeating-linear-gradient(0deg,rgba(255,255,255,.75) 0 4px,transparent 4px 12px); }
.lines::after { background: repeating-linear-gradient(135deg,#fff 0 4px,transparent 4px 12px); }
.hero-content { position: relative; z-index: 2; padding: 90px 0; }
.eyebrow { margin: 0 0 24px; color: #0068c9; font-size: 12px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.eyebrow.light { color: #78dff5; }
h1,h2,h3,blockquote { font-family: "Manrope", sans-serif; letter-spacing: -.045em; }
h1 { margin: 0; font-size: clamp(58px, 6.4vw, 94px); line-height: .98; max-width: 860px; }
h1 span { color: #5dd8f2; }
.hero h1 { max-width: none; font-size: clamp(58px, 6vw, 86px); white-space: nowrap; }
.hero-copy { max-width: 580px; font-size: 19px; line-height: 1.55; margin: 30px 0 36px; color: rgba(255,255,255,.8); }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; padding: 17px 20px; font-weight: 700; font-size: 15px; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.16); }
.button-light { background: #fff; color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.light-link { color: white; }

.section { padding: 120px 0; }
.intro { display: block; }
.section-heading h2 { margin: 0; font-size: clamp(42px, 5vw, 68px); line-height: 1.04; max-width: 650px; }
.intro .section-heading { margin-bottom: 58px; }
.intro .section-heading h2 { font-size: clamp(42px, 4.6vw, 62px); line-height: 1.08; max-width: 920px; }
.intro-content { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: stretch; }
.intro-visual { margin: 0; min-height: 390px; overflow: hidden; }
.intro-visual img { width: 100%; height: 100%; object-fit: cover; }
.intro-copy { padding: 38px 0 12px; border-top: 2px solid var(--blue); color: var(--muted); font-size: 17px; line-height: 1.65; }
.intro-copy .lead { font: 600 25px/1.45 "Manrope", sans-serif; color: var(--ink); margin-top: 0; letter-spacing: -.02em; }
.intro-copy .text-link { color: var(--ink); margin-top: 18px; }

.solutions { background: #eaf4f9; }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; margin-bottom: 64px; }
.split-heading > p { color: var(--muted); font-size: 17px; line-height: 1.6; margin: 0 0 6px; }
.desktop-line { display: block; white-space: nowrap; }
.solution-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; background: transparent; }
.solution-card { min-height: 500px; padding: 32px 36px 36px; display: flex; flex-direction: column; justify-content: space-between; background: #fff; color: var(--ink); border: 1px solid #d5e3eb; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; overflow: hidden; position: relative; }
.solution-card::before { content: ""; position: absolute; left: -1px; right: -1px; top: -1px; height: 3px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.solution-card:hover { transform: translateY(-4px); border-color: #b8d4e4; box-shadow: 0 16px 35px rgba(8, 63, 99, .08); }
.solution-card:hover::before { transform: scaleX(1); }
.card-label { color: #176f9e; font-size: 11px; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; margin: 0 0 14px; }
.solution-card h3 { font-size: 36px; line-height: 1.05; margin: 0 0 15px; }
.solution-card p:not(.card-label) { max-width: 490px; line-height: 1.5; margin: 0 0 24px; }
.solution-card ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #d5e3eb; }
.solution-card li { padding: 10px 8px 0 0; font-size: 14px; }
.home-solution-card { min-height: 0; padding: 0; justify-content: flex-start; }
.card-media { height: 210px; overflow: hidden; background: #dcecf4; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.home-solution-card:hover .card-media img { transform: scale(1.035); }
.card-body { flex: 1; display: flex; flex-direction: column; padding: 30px 36px 34px; }
.card-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; color: var(--blue); font-size: 14px; font-weight: 700; }
.home-solution-card .card-link { margin-top: 0; padding-top: 0; align-self: flex-start; }
.card-link span { transition: transform .2s ease; }
.card-link:hover span { transform: translateX(4px); }

.inner-hero { min-height: 610px; position: relative; overflow: hidden; display: flex; align-items: center; background: var(--navy); color: #fff; }
.inner-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,24,39,.98) 0%, rgba(6,24,39,.86) 55%, rgba(6,24,39,.3) 100%); }
.inner-hero-pattern { position: absolute; inset: 0 0 0 48%; display: grid; grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(2,1fr); transform: rotate(-8deg) scale(1.18); }
.inner-hero-pattern span:nth-child(1) { background: #0068d1; }.inner-hero-pattern span:nth-child(2) { background: #43d0ef; }.inner-hero-pattern span:nth-child(3) { background: #034f9f; }.inner-hero-pattern span:nth-child(4) { background: #a9e8f7; }
.inner-hero-content { position: relative; z-index: 2; padding: 78px 0; }
.inner-hero h1 { font-size: clamp(58px,6.4vw,92px); max-width: 900px; }
.inner-hero-content > p:last-child { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.75); font-size: 19px; line-height: 1.6; }
.page-kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 58px; color: rgba(255,255,255,.58); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.page-kicker a:hover { color: #fff; }

.about-overview { background: var(--paper); }
.about-overview-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 86px; align-items: center; }
.about-overview-copy h2 { max-width: 560px; margin: 0 0 32px; font-size: clamp(44px,4vw,52px); line-height: 1.1; }
.about-overview-copy > p:not(.eyebrow) { max-width: 520px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.about-overview-copy .about-lead { margin: 0 0 22px; color: var(--ink); font: 600 24px/1.48 "Manrope",sans-serif; letter-spacing: -.025em; }
.about-overview-image { height: 540px; margin: 0; position: relative; overflow: hidden; }
.about-overview-image img { width: 100%; height: 100%; object-fit: cover; }
.about-overview-image figcaption { position: absolute; left: 24px; bottom: 24px; padding: 10px 14px; background: rgba(6,24,39,.88); color: #fff; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.about-journey { background: #eaf4f9; }
.about-journey-heading { grid-template-columns: 1fr; gap: 24px; align-items: start; margin-bottom: 58px; }
.about-journey-heading .section-heading h2 { max-width: none; }
.about-journey-heading > p { max-width: 680px; margin: 0; }
.about-journey-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; align-items: stretch; }
.about-journey-card { display: flex; flex-direction: column; background: #fff; overflow: hidden; }
.about-journey-card > img { width: 100%; height: 265px; object-fit: cover; }
.about-journey-card > div { flex: 1; padding: 36px 38px 40px; }
.about-journey-card h3 { margin: 0 0 18px; font-size: 32px; line-height: 1.12; }
.about-journey-card > div > p:last-child { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.68; }
.about-statement { padding: 104px 0; background: var(--navy); color: #fff; }
.about-value-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 76px; align-items: center; }
.about-value-image { height: 520px; margin: 0; overflow: hidden; }
.about-value-image img { width: 100%; height: 100%; object-fit: cover; }
.about-value-copy h2 { max-width: 520px; margin: 0; font-size: clamp(38px,4vw,54px); line-height: 1.08; }
.about-value-intro { max-width: 500px; margin: 25px 0 30px; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.6; }
.about-value-pillars { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.about-value-pillars span { min-height: 72px; display: flex; align-items: center; padding: 17px 18px; background: rgba(67,208,239,.1); color: #fff; font-size: 14px; font-weight: 700; }
.about-value-outcome { max-width: 520px; margin: 30px 0 0; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.65; }
.about-advantages-heading { margin-bottom: 54px; }
.about-advantages-heading h2 { max-width: 1100px; }
.about-advantages-title span { display: block; white-space: nowrap; }
.about-advantages-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 18px; align-items: stretch; }
.about-advantages-image { height: 316px; min-height: 0; margin: 0; overflow: hidden; }
.about-advantages-image img { width: 100%; height: 100%; object-fit: cover; }
.about-advantages-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.about-advantage-card { min-height: 152px; padding: 28px 30px; display: flex; align-items: center; position: relative; border: 1px solid #d5e3eb; background: #fff; }
.about-advantage-card::before { content: ""; position: absolute; left: 30px; top: 28px; width: 28px; height: 3px; background: var(--blue); }
.about-advantage-card h3 { margin: 22px 0 0; font-size: 28px; line-height: 1.14; }
.about-advantage-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.capability-nav { position: sticky; top: 88px; z-index: 50; background: #fff; border-bottom: 1px solid #d5e3eb; }
.capability-nav .shell { display: grid; grid-template-columns: repeat(4,1fr); }
.capability-nav a { display: flex; align-items: center; justify-content: center; padding: 21px 18px; border-left: 1px solid #d5e3eb; font-size: 13px; font-weight: 700; text-align: center; }
.capability-nav a:last-child { border-right: 1px solid #d5e3eb; }
.capability-nav a:hover { background: #edf7fc; }
.solution-showcase { scroll-margin-top: 150px; background: #fff; }
.solution-showcase.alt { background: #eaf4f9; }
.solution-showcase-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 78px; align-items: center; }
.solution-showcase-grid.reverse { grid-template-columns: .96fr 1.04fr; }
.solution-showcase-grid.reverse .solution-showcase-media { order: 2; }
.solution-showcase-media { height: 560px; margin: 0; position: relative; overflow: hidden; }
.solution-showcase-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.solution-showcase-media:hover img { transform: scale(1.025); }
.solution-showcase-media figcaption { position: absolute; left: 24px; bottom: 24px; padding: 10px 13px; background: rgba(6,24,39,.88); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.solution-showcase-copy h2 { max-width: 540px; margin: 0 0 22px; font-size: clamp(42px,4.3vw,60px); line-height: 1.04; }
#maritime-intelligence .solution-showcase-copy h2 { font-size: clamp(38px,3.45vw,47px); white-space: nowrap; }
#cloud-infrastructure .solution-showcase-copy h2 { font-size: clamp(32px,3vw,42px); white-space: nowrap; }
.solution-showcase-copy > p:not(.eyebrow) { max-width: 520px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.solution-showcase-copy h3 { margin: 36px 0 18px; font-size: 20px; line-height: 1.35; letter-spacing: -.02em; }
.solution-feature-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; list-style: none; padding: 0; margin: 0; }
.solution-feature-grid li { min-height: 64px; display: flex; align-items: center; padding: 15px 17px; background: #eaf4f9; color: var(--ink); font-size: 14px; font-weight: 600; line-height: 1.35; }
.solution-showcase.alt .solution-feature-grid li { background: #fff; }
.solution-feature-grid li:last-child:nth-child(odd) { grid-column: 1 / -1; }

.page-cta { padding: 90px 0; background: linear-gradient(120deg,#0068d1,#099fdb); color: #fff; }
.page-cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.page-cta h2 { max-width: 760px; margin: 0; font-size: clamp(38px,4.3vw,60px); line-height: 1.07; }

.advantage { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.advantage-intro { position: sticky; top: 140px; align-self: start; }
.advantage-intro h2 { font-size: clamp(42px,5vw,68px); line-height: 1.04; margin: 0 0 30px; }
.advantage-intro > p:last-child { color: var(--muted); line-height: 1.65; font-size: 17px; }
.advantage-item { display: grid; grid-template-columns: 60px 1fr; gap: 25px; padding: 38px 0; border-top: 1px solid var(--line); }
.advantage-item:last-child { border-bottom: 1px solid var(--line); }
.advantage-item > span { color: var(--blue); font: 700 13px "Manrope",sans-serif; }
.advantage-item h3 { font-size: 30px; margin: -7px 0 10px; }.advantage-item p { margin: 0; color: var(--muted); line-height: 1.55; }

.statement { background: var(--navy); color: #fff; padding: 145px 0 155px; position: relative; overflow: hidden; }
.statement::after { content: ""; position: absolute; width: 420px; height: 420px; right: -90px; top: -120px; border: 80px solid #149fdf; border-radius: 50%; opacity: .35; }
.statement-inner { position: relative; z-index: 1; }
.statement-inner .eyebrow { margin: 0 0 42px; }
blockquote { font-size: clamp(38px,4.3vw,60px); line-height: 1.2; letter-spacing: -.035em; max-width: 1100px; margin: 0; }

.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-copy h2 { font-size: clamp(42px,4.2vw,58px); line-height: 1.07; margin: 0 0 25px; }.contact-copy > p:last-child { color: var(--muted); font-size: 17px; line-height: 1.6; max-width: 510px; }
.contact-card { background: linear-gradient(145deg, #4bcfee 0%, #a9e8f7 100%); padding: 42px; min-height: 410px; display: flex; flex-direction: column; }
.contact-card > p:first-child { margin: 0 0 22px; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700; }
.contact-card > a { display: flex; justify-content: space-between; align-items: center; font: 700 clamp(22px,2.4vw,34px) "Manrope",sans-serif; letter-spacing: -.04em; }
.contact-rule { height: 1px; background: rgba(7,25,39,.3); margin: 35px 0; }
.mission-label { text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800; margin: auto 0 14px; }
.contact-card h3 { font-size: 24px; line-height: 1.35; margin: 0; }

footer { background: var(--navy); color: white; padding: 60px 0 28px; }
.footer-main { display: grid; grid-template-columns: 1.25fr .65fr 1fr; gap: 78px; align-items: start; padding-bottom: 52px; }
.footer-brand { width: 264px; height: 39px; }.footer-brand img { height: 39px; }
.footer-identity > p { color: #67d8f2; margin: 24px 0 0; font: 400 clamp(14px,1.3vw,16px)/1.4 "DM Sans",sans-serif; white-space: nowrap; }
.footer-heading { display: block; margin-bottom: 20px; color: #67d8f2; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-link-list { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-link-list a { position: relative; width: max-content; color: rgba(255,255,255,.82); transition: color .2s ease; }
.footer-link-list a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px; background: var(--cyan); transition: width .2s ease; }
.footer-link-list a:hover,.footer-link-list a:focus-visible { color: #fff; }
.footer-link-list a:hover::after,.footer-link-list a:focus-visible::after { width: 100%; }
.footer-email { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #fff; font-weight: 700; }
.footer-email > span { color: var(--cyan); font-size: 20px; transition: transform .2s ease; }
.footer-email:hover > span,.footer-email:focus-visible > span { transform: translate(3px,-3px); }
.footer-contact > p { margin: 26px 0 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.55); font-size: 12px; }
.back-to-top { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.72); font-size: 14px; font-weight: 600; transition: color .2s ease; }
.back-to-top span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; transition: transform .2s ease, border-color .2s ease; }
.back-to-top:hover,.back-to-top:focus-visible { color: #fff; }
.back-to-top:hover span,.back-to-top:focus-visible span { transform: translateY(-3px); border-color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 40px, 720px); }
  .site-header { height: 76px; }
  .nav-shell { justify-content: space-between; }
  .brand { width: 196px; height: 30px; }.brand img { height: 30px; }
  .menu-toggle { display: block; order: 3; }
  .nav-cta { display: none; }
  .main-nav { position: fixed; inset: 76px 0 auto; background: var(--navy); padding: 18px 20px 32px; flex-direction: column; align-items: stretch; gap: 0; transform: translateY(-130%); transition: transform .3s ease; z-index: -1; }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { border-top: 1px solid rgba(255,255,255,.15); padding: 17px 0; font-size: 18px; }
  .hero { min-height: 680px; }.hero-grid { transform: translateX(55%); width: 100%; opacity: .75; }.hero::after { background: linear-gradient(90deg,rgba(4,29,46,.96),rgba(4,40,58,.75)); }
  .hero h1 { white-space: normal; }
  .advantage,.contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .intro-content { grid-template-columns: 1fr; gap: 35px; }
  .intro-visual { min-height: 360px; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .desktop-line { display: inline; white-space: normal; }
  .advantage-intro { position: static; }
  .solution-card { min-height: 540px; }
  .home-solution-card { min-height: 0; }
  .inner-hero { min-height: 570px; }
  .inner-hero-pattern { left: 35%; opacity: .72; }
  .solution-showcase-grid,.solution-showcase-grid.reverse { grid-template-columns: 1fr; gap: 46px; }
  .solution-showcase-grid.reverse .solution-showcase-media { order: initial; }
  .solution-showcase-media { height: 430px; }
  #maritime-intelligence .solution-showcase-copy h2 { white-space: normal; }
  #cloud-infrastructure .solution-showcase-copy h2 { white-space: normal; }
  .about-overview-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-overview-image { height: 430px; }
  .about-journey-grid { grid-template-columns: 1fr; }
  .about-value-grid { grid-template-columns: 1fr; gap: 46px; }
  .about-value-image { height: 420px; }
  .about-advantages-title span { display: inline; white-space: normal; }
  .about-advantages-layout { grid-template-columns: 1fr; }
  .about-advantages-image { height: 420px; min-height: 0; }
  .capability-nav { top: 76px; overflow-x: auto; }
  .capability-nav .shell { width: max-content; min-width: 760px; }
  .page-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 50px 70px; }
  .footer-identity { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 32px); }
  .section { padding: 84px 0; }
  .statement { padding: 100px 0 110px; }
  .hero { min-height: 620px; }
  .hero-content { padding: 76px 0; }
  h1 { font-size: clamp(46px,14vw,62px); }
  .hero-copy { font-size: 16px; }
  .intro .section-heading { margin-bottom: 40px; }
  .intro-visual { min-height: 260px; }
  .intro-copy { padding-top: 28px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 515px; padding: 28px; }
  .home-solution-card { min-height: 0; padding: 0; }
  .card-media { height: 190px; }
  .card-body { padding: 26px 28px 30px; }
  .solution-card h3 { font-size: 31px; }
  .contact-card { padding: 28px; min-height: 360px; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; padding-bottom: 50px; }
  .footer-identity { grid-column: auto; }
  .footer-email { max-width: 300px; }
  .footer-bottom { gap: 16px; flex-direction: column; }
  .inner-hero { min-height: 530px; }
  .inner-hero h1 { font-size: clamp(44px,13vw,60px); }
  .inner-hero-content > p:last-child { font-size: 16px; }
  .about-overview-image { height: 300px; }
  .about-overview-copy h2 { font-size: 42px; }
  .about-overview-copy .about-lead { font-size: 21px; }
  .about-journey-heading { margin-bottom: 42px; }
  .about-journey-card > img { height: 210px; }
  .about-journey-card > div { padding: 28px; }
  .about-journey-card h3 { font-size: 28px; }
  .about-statement { padding: 86px 0 92px; }
  .about-value-image { height: 280px; }
  .about-value-copy h2 { font-size: 38px; }
  .about-value-pillars { grid-template-columns: 1fr; }
  .about-value-pillars span { min-height: 58px; }
  .about-advantages-image { height: 290px; min-height: 0; }
  .about-advantages-grid { grid-template-columns: 1fr; }
  .about-advantage-card { min-height: 0; padding: 30px 28px; }
  .page-kicker { margin-bottom: 42px; }
  .solution-showcase-media { height: 280px; }
  .solution-showcase-copy h2 { font-size: 39px; }
  .solution-showcase-copy h3 { margin-top: 30px; }
  .solution-feature-grid { grid-template-columns: 1fr; }
  .solution-feature-grid li:last-child:nth-child(odd) { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
