:root{
  --navy:#011D51;
  --electric:#005AFC;
  --turquoise:#02A7B7;
  --cyan:#03CED7;
  --midblue:#003382;
  --ink:#071529;
  --white:#ffffff;
  --soft:#f3f8fb;
  --line:#dce7ee;
  --muted:#647487;
  --shadow:0 18px 50px rgba(1,29,81,.14);
  --radius:22px;
  --display:"Eurostile Extended","Microgramma D Extended","Exo 2","Arial Narrow",Arial,sans-serif;
  --body:Inter,Segoe UI,Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
section[id]{scroll-margin-top:150px}
body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  background:#fff;
}
a{color:inherit;text-decoration:none}
button{font:inherit}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid rgba(1,29,81,.08);
  backdrop-filter:blur(16px);
}

.header-inner{
  width:min(1440px,96%);
  min-height:132px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
}

.brand img{
  display:block;
  width:min(600px,46vw);
  max-height:108px;
  object-fit:contain;
  object-position:left center;
}

.main-nav{
  display:flex;
  flex:1;
  align-items:center;
  justify-content:flex-end;
  gap:clamp(24px,2.4vw,40px);
  font-family:var(--display);
  font-size:15px;
  font-weight:800;
  letter-spacing:.35px;
  text-transform:uppercase;
}

.main-nav a{
  transition:.2s ease;
}
.main-nav a:hover{color:var(--turquoise)}

.nav-cta{
  padding:16px 22px;
  border-radius:9px;
  color:#fff!important;
  background:linear-gradient(135deg,var(--electric),var(--turquoise));
  box-shadow:0 10px 24px rgba(0,90,252,.18);
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  padding:10px;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  height:2px;
  margin:6px 0;
  background:var(--navy);
}

.hero{
  position:relative;
  min-height:calc(100vh - 132px);
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy);
  color:#fff;
  isolation:isolate;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  z-index:-3;
}

.hero-shade{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,rgba(1,14,37,.93) 0%,rgba(1,20,53,.79) 42%,rgba(1,29,81,.32) 72%,rgba(1,29,81,.55) 100%),
    linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.22));
}

.hero-content{
  width:min(1240px,92%);
  margin:auto;
  padding:118px 0 90px;
}

.site-notice{
  position:absolute;
  top:24px;
  left:50%;
  transform:translateX(-50%);
  padding:10px 18px;
  border:1px solid rgba(255,214,74,.7);
  border-radius:999px;
  color:#201900;
  background:#ffd64a;
  box-shadow:0 10px 26px rgba(0,0,0,.22);
  font-family:var(--display);
  font-size:12px;
  font-weight:950;
  letter-spacing:1.4px;
  text-transform:uppercase;
  white-space:nowrap;
}

.eyebrow,
.section-kicker{
  margin:0 0 16px;
  color:var(--cyan);
  text-transform:uppercase;
  letter-spacing:2.2px;
  font-size:12px;
  font-weight:900;
}

.hero-title{
  margin:0;
  max-width:880px;
  font-family:var(--display);
  font-size:clamp(50px,7.5vw,100px);
  font-weight:950;
  line-height:.93;
  letter-spacing:-3px;
  text-transform:uppercase;
  text-shadow:0 7px 28px rgba(0,0,0,.32);
}

.hero-title span{display:block}
.hero-title .accent{
  color:var(--cyan);
  text-shadow:0 0 28px rgba(3,206,215,.22);
}

.hero-rotation{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:30px;
  margin:22px 0 0;
  color:#fff;
  font-size:15px;
  line-height:1.4;
}

.rotation-label{
  padding:6px 9px;
  border:1px solid rgba(3,206,215,.48);
  border-radius:6px;
  color:var(--cyan);
  font-size:10px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  white-space:nowrap;
}

#serviceCycle{
  transition:opacity .28s ease,transform .28s ease;
}

#serviceCycle.changing{
  opacity:0;
  transform:translateY(5px);
}

.hero-summary{
  max-width:720px;
  margin:30px 0 0;
  font-size:clamp(18px,2vw,24px);
  font-weight:600;
  line-height:1.55;
  color:#f2f8fb;
}

.operator-note{
  max-width:720px;
  margin:13px 0 0;
  font-size:13px;
  line-height:1.55;
  color:#c5dbe6;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:34px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:170px;
  min-height:54px;
  padding:14px 22px;
  border-radius:10px;
  font-family:var(--display);
  font-size:13px;
  font-weight:900;
  letter-spacing:.45px;
  text-transform:uppercase;
  transition:.2s ease;
}

.btn:hover{transform:translateY(-2px)}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--electric),var(--turquoise));
  box-shadow:0 12px 30px rgba(0,90,252,.25);
}

.btn-secondary{
  color:#fff;
  border:2px solid rgba(255,255,255,.68);
  background:rgba(0,0,0,.18);
  backdrop-filter:blur(10px);
}

.btn-secondary:hover{
  background:#fff;
  color:var(--navy);
}

.scroll-cue{
  position:absolute;
  bottom:24px;
  left:50%;
  width:28px;
  height:45px;
  border:2px solid rgba(255,255,255,.55);
  border-radius:18px;
  transform:translateX(-50%);
}

.scroll-cue span{
  position:absolute;
  top:8px;
  left:50%;
  width:4px;
  height:8px;
  border-radius:8px;
  background:var(--cyan);
  transform:translateX(-50%);
  animation:scrollCue 1.8s infinite;
}

@keyframes scrollCue{
  0%{opacity:0;transform:translate(-50%,0)}
  25%{opacity:1}
  100%{opacity:0;transform:translate(-50%,17px)}
}

.section{
  width:min(1240px,92%);
  margin:auto;
  padding:96px 0;
}

.section-heading{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  column-gap:70px;
  align-items:end;
}

.section-heading .section-kicker{
  grid-column:1/-1;
}

.section-heading h2,
.about-copy h2,
.contact h2{
  margin:0;
  font-family:var(--display);
  color:var(--navy);
  font-size:clamp(36px,4.6vw,62px);
  line-height:1.02;
  letter-spacing:-1.8px;
}

.section-heading h2 span{color:var(--turquoise)}

.section-heading>p:last-child,
.about-copy>p,
.contact-panel p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:16px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:48px;
}

.service-card{
  position:relative;
  min-height:360px;
  padding:28px 25px 25px;
  text-align:left;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 10px 34px rgba(1,29,81,.07);
  cursor:pointer;
  overflow:hidden;
  transition:.25s ease;
}

.service-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:5px;
  background:linear-gradient(var(--electric),var(--turquoise));
  opacity:.85;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:rgba(2,167,183,.38);
}

.service-status{
  display:inline-flex;
  padding:7px 10px;
  border-radius:99px;
  color:#04626b;
  background:#e5fbfc;
  font-size:10px;
  font-weight:900;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.service-status.coming{
  color:#526176;
  background:#edf2f6;
}

.service-number{
  display:block;
  margin-top:30px;
  font-family:var(--display);
  font-size:13px;
  font-weight:900;
  color:var(--electric);
}

.service-card h3{
  margin:10px 0 12px;
  font-family:var(--display);
  color:var(--navy);
  font-size:23px;
  line-height:1.08;
}

.service-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}

.service-link{
  position:absolute;
  left:25px;
  bottom:25px;
  color:var(--turquoise);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.about{
  padding-top:36px;
}

.about-grid{
  display:grid;
  grid-template-columns:.68fr 1.32fr;
  gap:70px;
  align-items:center;
  padding:66px;
  border-radius:32px;
  background:linear-gradient(90deg,#fff 0%,#f5fbfd 27%,#0b3b70 48%,#011d51 100%);
  color:#fff;
  box-shadow:0 25px 70px rgba(1,29,81,.2);
}

.about-mark{
  display:flex;
  justify-content:center;
  align-items:center;
}

.about-mark img{
  width:min(330px,100%);
  filter:drop-shadow(0 18px 35px rgba(1,29,81,.18));
}

.about-copy h2{color:#fff}

.about-copy>p{
  margin-top:22px;
  color:#d6e4ed;
  max-width:760px;
}

.construction{
  background:#f2f7fa;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.construction-inner{
  width:min(1240px,92%);
  margin:auto;
  min-height:240px;
  display:flex;
  align-items:center;
  gap:34px;
  padding:46px 0;
}

.construction img{
  width:118px;
  height:118px;
  object-fit:contain;
}

.construction p{
  margin:0 0 6px;
  color:var(--turquoise);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
}

.construction h2{
  margin:0;
  font-family:var(--display);
  color:var(--navy);
  font-size:clamp(38px,6vw,74px);
  line-height:.95;
  text-transform:uppercase;
  letter-spacing:-2px;
}

.construction span{
  display:block;
  max-width:760px;
  margin-top:13px;
  color:var(--muted);
  line-height:1.6;
}

.contact{
  padding-bottom:100px;
}

.contact-panel{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:70px;
  align-items:center;
  padding:55px;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:0 14px 45px rgba(1,29,81,.08);
}

.contact-panel p{margin-top:18px}

.contact-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:18px;
}

.email-link span{
  display:block;
  margin-bottom:5px;
  color:var(--muted);
  font-size:11px;
  font-weight:900;
  letter-spacing:1.5px;
  text-transform:uppercase;
}

.email-link strong{
  color:var(--navy);
  font-family:var(--display);
  font-size:clamp(20px,2vw,28px);
}

.site-footer{
  color:#d7e7ee;
  background:linear-gradient(90deg,#fff 0%,#eef9fb 22%,#031329 48%,#031329 100%);
}

.footer-inner{
  width:min(1240px,92%);
  min-height:112px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:15px;
  padding:10px 16px 10px 10px;
  border-radius:16px;
  color:var(--navy);
  background:rgba(255,255,255,.9);
}

.footer-brand img{
  width:68px;
  height:68px;
  object-fit:contain;
}

.footer-brand span{
  font-family:var(--display);
  font-size:13px;
  font-weight:800;
  letter-spacing:.4px;
}

.footer-meta{
  display:flex;
  align-items:center;
  gap:20px;
  color:#9bb1c0;
  font-size:12px;
}

.footer-meta a:hover{color:var(--cyan)}

.modal{
  position:fixed;
  inset:0;
  z-index:200;
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
}

.modal.open{display:flex}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,13,32,.72);
  backdrop-filter:blur(5px);
}

.modal-card{
  position:relative;
  z-index:1;
  width:min(500px,100%);
  padding:40px;
  border-radius:26px;
  background:#fff;
  box-shadow:0 30px 90px rgba(0,0,0,.28);
}

.modal-card img{
  width:80px;
  height:80px;
  object-fit:contain;
  margin-bottom:16px;
}

.modal-card h2{
  margin:0;
  color:var(--navy);
  font-family:var(--display);
  font-size:36px;
}

.modal-card>p:not(.section-kicker){
  color:var(--muted);
  line-height:1.65;
  margin:15px 0 25px;
}

.modal-close{
  position:absolute;
  right:18px;
  top:14px;
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  color:var(--navy);
  background:#edf3f6;
  font-size:25px;
  cursor:pointer;
}

@media (max-width:1000px){
  section[id]{scroll-margin-top:124px}
  .main-nav{
    position:absolute;
    top:108px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:18px 4% 24px;
    background:#fff;
    border-top:1px solid var(--line);
    box-shadow:0 18px 30px rgba(1,29,81,.12);
  }
  .header-inner{min-height:108px}
  .main-nav.open{display:flex}
  .main-nav a{padding:14px 8px}
  .nav-cta{text-align:center;margin-top:8px}
  .menu-toggle{display:block}
  .brand img{width:min(440px,68vw);max-height:84px}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .section-heading,
  .contact-panel{grid-template-columns:1fr;gap:25px}
  .about-grid{grid-template-columns:1fr;padding:48px}
  .about-mark img{width:240px}
}

@media (max-width:620px){
  section[id]{scroll-margin-top:100px}
  .header-inner{min-height:88px}
  .brand img{width:min(285px,73vw);max-height:64px}
  .main-nav{top:88px}

  .hero{
    min-height:calc(100svh - 88px);
  }
  .hero-video{
    /* Temporary mobile behaviour until a dedicated 9:16 hero is supplied. */
    object-position:center center;
  }
  .hero-shade{
    background:
      linear-gradient(180deg,rgba(1,14,37,.56) 0%,rgba(1,20,53,.72) 40%,rgba(1,19,48,.94) 100%);
  }
  .hero-content{
    padding:106px 0 84px;
    align-self:flex-end;
  }
  .site-notice{top:20px;font-size:10px;padding:8px 13px}
  .hero-rotation{align-items:flex-start;flex-direction:column;gap:9px;font-size:14px}
  .hero-title{
    font-size:clamp(42px,13.3vw,64px);
    letter-spacing:-1.7px;
  }
  .hero-summary{
    font-size:17px;
    line-height:1.5;
  }
  .operator-note{font-size:12px}
  .hero-actions{gap:10px}
  .btn{width:100%}

  .section{padding:72px 0}
  .section-heading h2,
  .about-copy h2,
  .contact h2{font-size:38px}
  .service-grid{grid-template-columns:1fr}
  .service-card{min-height:320px}
  .about-grid{
    padding:35px 26px;
    gap:32px;
    background:linear-gradient(180deg,#fff 0%,#f5fbfd 31%,#0b3b70 48%,#011d51 100%);
  }
  .about-mark img{width:180px}

  .construction-inner{
    align-items:flex-start;
    flex-direction:column;
    gap:18px;
  }
  .construction img{width:80px;height:80px}
  .construction h2{font-size:42px}

  .contact-panel{padding:34px 26px}
  .email-link strong{font-size:20px}

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
    padding:30px 0;
  }
  .site-footer{background:linear-gradient(180deg,#fff 0%,#eef9fb 38%,#031329 58%,#031329 100%)}
  .footer-meta{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
}

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