:root {
  --navy-950: #03111d;
  --navy-900: #061a2a;
  --navy-800: #0a2639;
  --cyan: #00a9ce;
  --cyan-light: #37d5ec;
  --gold: #d5ad3f;
  --ice: #e8f3f7;
  --muted: #9fb4bf;
  --white: #f8fcfd;
  --page: #edf5f7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy-950);
  color: var(--white);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 86px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  padding: 0 5vw;
  background: rgba(3, 17, 29, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}
.brand { width: 190px; height: 58px; display: flex; align-items: center; overflow: hidden; border-radius: 9px; background: white; }
.brand img { width: 190px; height: 58px; object-fit: cover; object-position: center; filter: drop-shadow(0 5px 10px rgba(0,0,0,.18)); }
footer img { width: 176px; height: 58px; object-fit: cover; object-position: center; border-radius: 8px; background: white; filter: drop-shadow(0 5px 10px rgba(0,0,0,.35)); }
.nav-links { display: flex; justify-content: center; gap: clamp(24px, 3vw, 50px); }
.nav-links a { font-size: 13px; font-weight: 650; letter-spacing: .08em; color: #c8d8df; }
.nav-links a:hover { color: var(--cyan-light); }
.header-actions { display: flex; align-items: center; gap: 24px; }
.language-switch { display: flex; gap: 6px; align-items: center; color: #78929f; font-size: 12px; }
.language-switch button { border: 0; padding: 4px; background: transparent; color: inherit; cursor: pointer; }
.language-switch button.active { color: white; font-weight: 800; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--cyan);
  background: var(--cyan);
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: .25s ease;
}
.button:hover { background: var(--cyan-light); transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 19px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 900px;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 7vw 80px;
  background: var(--navy-950);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(3,17,29,.98) 0%, rgba(3,17,29,.88) 42%, rgba(3,17,29,.24) 78%), linear-gradient(0deg, rgba(3,17,29,.8), transparent 55%), url('/assets/image11-2048x878.jpeg');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-grid {
  position: absolute; inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(0,169,206,.34) 1px, transparent 1px), linear-gradient(90deg, rgba(0,169,206,.34) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}
.hero-content { position: relative; z-index: 2; max-width: 790px; }
.eyebrow, .section-label { color: var(--cyan-light); font-weight: 800; font-size: 12px; letter-spacing: .18em; }
.eyebrow::before, .section-label::before { content: ""; display: inline-block; width: 38px; height: 2px; margin-right: 14px; background: var(--cyan); vertical-align: middle; }
.hero h1 {
  margin: 28px 0 24px;
  max-width: 770px;
  font-size: clamp(64px, 7.5vw, 116px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.hero-copy { max-width: 660px; color: #c6d6de; font-size: clamp(18px, 1.55vw, 24px); line-height: 1.55; }
.hero-actions { display: flex; gap: 34px; align-items: center; margin-top: 42px; }
.text-link { display: inline-flex; gap: 30px; font-size: 14px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.35); padding: 16px 0; }
.text-link:hover { color: var(--cyan-light); border-color: var(--cyan); }
.hero-status { position: absolute; z-index: 2; bottom: 38px; left: 7vw; right: 7vw; display: flex; gap: 30px; align-items: center; color: #91a8b3; font-size: 10px; font-weight: 750; letter-spacing: .15em; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }

.section { padding: 130px 7vw; }
.section-heading { max-width: 920px; margin-bottom: 70px; }
.section-heading h2, .lifecycle h2, .coverage h2, .contact h2 { margin: 18px 0 0; font-size: clamp(44px, 5.2vw, 78px); line-height: 1.02; letter-spacing: -.045em; }
.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .7fr); gap: 80px; align-items: end; }
.split-heading > p { color: #a9bec8; line-height: 1.75; font-size: 17px; }

.profile { color: var(--navy-950); background: var(--page); }
.profile .section-label { color: #007f9d; }
.profile-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1fr) 230px; gap: 70px; align-items: center; }
.brand-emblem { width: 230px; height: 190px; overflow: hidden; border: 1px solid #d7e4e8; border-radius: 18px; background: white; box-shadow: 0 24px 60px rgba(6, 26, 42, .12); }
.brand-emblem img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.profile-layout { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 600px; }
.profile-image { min-height: 580px; overflow: hidden; }
.profile-image img { width: 100%; height: 100%; object-fit: cover; }
.profile-copy { padding: 70px 0 0 7vw; }
.profile-copy > p { font-size: clamp(22px, 2.2vw, 34px); line-height: 1.45; letter-spacing: -.025em; }
.profile-copy blockquote { margin: 42px 0; padding: 0 0 0 28px; border-left: 3px solid var(--gold); color: #48616d; font-size: 18px; line-height: 1.55; }
.profile-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 36px; border-top: 1px solid #cbdadd; }
.profile-facts strong { display: block; color: #007f9d; font-size: 27px; }
.profile-facts span { display: block; margin-top: 7px; font-size: 11px; line-height: 1.35; text-transform: uppercase; letter-spacing: .06em; color: #5b7079; }

.section-dark { background: var(--navy-900); }
.capability-list { border-top: 1px solid rgba(255,255,255,.14); }
.capability-row { display: grid; grid-template-columns: 80px minmax(250px, .7fr) 1fr 30px; gap: 34px; align-items: center; min-height: 132px; border-bottom: 1px solid rgba(255,255,255,.14); transition: .25s ease; }
.capability-row:hover { padding: 0 22px; background: rgba(0,169,206,.08); }
.capability-number { color: var(--cyan); font-family: ui-monospace, monospace; font-size: 13px; }
.capability-row h3 { margin: 0; font-size: clamp(20px, 2vw, 29px); font-weight: 600; }
.capability-row p { margin: 0; color: #9fb4bf; line-height: 1.6; }
.capability-arrow { color: var(--cyan); font-size: 22px; }

.platforms { color: var(--navy-950); background: #f4f8f9; }
.platforms .section-label { color: #007f9d; }
.platform-grid { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 380px 380px; gap: 18px; }
.platform-card { position: relative; overflow: hidden; min-height: 380px; }
.platform-1 { grid-row: 1 / 3; }
.platform-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.platform-card:hover img { transform: scale(1.04); }
.platform-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,17,29,.95), transparent 68%); }
.platform-copy { position: absolute; inset: auto 38px 34px; color: white; }
.platform-copy span { color: var(--cyan-light); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.platform-copy h3 { margin: 10px 0 8px; font-size: 37px; }
.platform-copy p { margin: 0; max-width: 480px; color: #cfdee4; line-height: 1.5; }

.environments { background: #061a2a; }
.environment-grid { display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: 360px 360px; gap: 18px; }
.environment-feature, .environment-card { position: relative; overflow: hidden; }
.environment-feature { grid-row: 1 / 3; }
.environment-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.environment-grid article:hover img { transform: scale(1.035); }
.environment-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,17,29,.96), rgba(3,17,29,.08) 68%); }
.environment-copy { position: absolute; inset: auto 34px 30px; }
.environment-copy span { color: var(--cyan-light); font: 800 11px/1 ui-monospace, monospace; letter-spacing: .14em; }
.environment-copy h3 { margin: 11px 0 8px; font-size: clamp(26px, 2.5vw, 40px); }
.environment-copy p { margin: 0; max-width: 620px; color: #c5d6dd; line-height: 1.5; }
.environment-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 38px; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.environment-strip div { padding: 28px 32px; border-right: 1px solid rgba(255,255,255,.16); }
.environment-strip div:last-child { border-right: 0; }
.environment-strip strong, .environment-strip span { display: block; }
.environment-strip strong { color: white; font-size: 18px; }
.environment-strip span { margin-top: 7px; color: #8fa9b5; font-size: 13px; }
.concept-note { margin: 18px 0 0; color: #829ca8; font-size: 11px; line-height: 1.5; }

.lifecycle { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; background: var(--navy-950); }
.lifecycle-media { min-height: 690px; }
.lifecycle-media img { width: 100%; height: 100%; object-fit: cover; }
.lifecycle-content { padding: 26px 0; }
.lifecycle-content h2 { margin-bottom: 48px; }
.lifecycle-steps { border-top: 1px solid rgba(255,255,255,.15); }
.lifecycle-step { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.lifecycle-step > span { color: var(--gold); font-family: ui-monospace, monospace; }
.lifecycle-step h3 { margin: 0 0 8px; font-size: 22px; }
.lifecycle-step p { margin: 0; color: #9fb4bf; line-height: 1.55; }

.coverage { position: relative; min-height: 800px; display: flex; align-items: center; overflow: hidden; }
.coverage-background { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(3,17,29,.97), rgba(3,17,29,.62) 62%, rgba(3,17,29,.2)), url('/assets/image10-1000x562.jpeg'); background-size: cover; background-position: center; }
.coverage-content { position: relative; z-index: 1; max-width: 730px; }
.coverage-content > p:not(.section-label) { color: #c4d5dc; font-size: 20px; line-height: 1.65; }
.coverage-callout { margin-top: 46px; display: flex; align-items: center; gap: 28px; max-width: 620px; padding: 25px 28px; background: rgba(0,169,206,.14); border: 1px solid rgba(0,169,206,.45); backdrop-filter: blur(10px); }
.coverage-callout span { color: var(--cyan-light); font-size: 11px; font-weight: 900; letter-spacing: .17em; }
.coverage-callout strong { font-size: 17px; line-height: 1.45; }

.lang-en { display: none; }
html[lang="en"] .lang-es { display: none; }
html[lang="en"] .lang-en { display: inline; }
.alliances { position: relative; overflow: hidden; background: linear-gradient(135deg,#061726 0%,#0a2235 56%,#07131f 100%); }
.alliances::before { content: ""; position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(0,169,206,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(0,169,206,.12) 1px,transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg,transparent,#000 45%,#000); }
.alliances-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.48fr); gap: clamp(45px,8vw,120px); align-items: center; }
.alliances-copy > p:not(.section-label) { max-width: 730px; color: #afc5cf; font-size: 19px; line-height: 1.7; }
.partner-card { position: relative; width: 100%; max-width: 420px; min-height: 230px; justify-self: end; display: flex; flex-direction: column; justify-content: center; padding: clamp(24px,3vw,38px); background: rgba(255,255,255,.82); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); color: var(--navy-950); border: 1px solid rgba(255,255,255,.55); box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.partner-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: linear-gradient(90deg,#ed1c24 0 34%,#f58220 34% 67%,#7f3f98 67%); }
.partner-kicker { margin-bottom: 26px; color: #4b5e6a; font-size: 10px; font-weight: 900; letter-spacing: .17em; }
.partner-card a { display: block; max-width: 250px; }
.partner-card img { display: block; width: 100%; height: auto; }
.partner-card p { margin: 26px 0 0; color: #51636d; font-size: 14px; line-height: 1.55; }

.contact { position: relative; overflow: hidden; background: var(--cyan); color: var(--navy-950); }
.contact .section-label { color: var(--navy-950); }
.contact .section-label::before { background: var(--navy-950); }
.contact-content { position: relative; z-index: 2; max-width: 1240px; display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); gap: clamp(50px,7vw,110px); align-items: start; }
.contact h2 { max-width: 860px; }
.contact-intro > p:not(.section-label) { max-width: 580px; font-size: 20px; line-height: 1.6; }
.contact-promise { margin-top: 38px; display: flex; align-items: center; gap: 12px; padding: 18px 20px; border: 1px solid rgba(3,17,29,.3); background: rgba(255,255,255,.16); }
.contact-promise .status-dot { background: var(--navy-950); box-shadow: 0 0 0 6px rgba(3,17,29,.12); }
.contact-promise strong { font-size: 15px; letter-spacing: .02em; }
.contact-form { padding: clamp(28px,4vw,48px); background: rgba(3,17,29,.92); color: white; box-shadow: 0 30px 80px rgba(3,17,29,.22); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; }
.contact-form label { display: grid; gap: 9px; color: #a9c1cc; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input,.contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); border-radius: 0; padding: 12px 2px; background: transparent; color: white; font: inherit; font-size: 16px; outline: none; resize: vertical; }
.contact-form input:focus,.contact-form textarea:focus { border-color: var(--cyan-light); box-shadow: 0 1px 0 var(--cyan-light); }
.form-message { margin-top: 26px; }
.form-submit { margin-top: 26px; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border: 0; background: var(--cyan); color: var(--navy-950); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.form-submit:disabled { opacity: .55; cursor: wait; }
.form-status { display: none; margin: 16px 0 0; color: #b9ced7; font-size: 14px; line-height: 1.5; }
.form-status.is-visible { display: block; }
.form-status.is-success { color: #82f0c0; }
.form-status.is-error { color: #ffb5ad; }
.form-trap { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.contact-accent { position: absolute; right: -28px; bottom: -75px; font-size: 23vw; line-height: .7; font-weight: 900; letter-spacing: -.08em; color: rgba(3,17,29,.055); }

footer { display: grid; grid-template-columns: 1fr auto auto; gap: 50px; align-items: center; padding: 38px 7vw; background: #020b13; color: #8199a5; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .nav-links { position: fixed; top: 86px; left: 0; right: 0; display: none; flex-direction: column; padding: 34px 7vw; background: rgba(3,17,29,.98); }
  .nav-links.is-open { display: flex; }
  .menu-toggle { display: grid; gap: 6px; width: 42px; height: 42px; place-content: center; border: 0; background: transparent; }
  .menu-toggle span { display: block; width: 22px; height: 2px; background: white; }
  .split-heading, .profile-layout, .lifecycle, .contact-content, .alliances-grid { grid-template-columns: 1fr; }
  .profile-heading { grid-template-columns: 1fr 190px; gap: 32px; }
  .brand-emblem { width: 190px; height: 158px; }
  .profile-copy { padding: 55px 0 0; }
  .capability-row { grid-template-columns: 55px 1fr 28px; padding: 22px 0; }
  .capability-row p { grid-column: 2 / 4; }
  .platform-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 430px); }
  .platform-1 { grid-row: auto; }
  .environment-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 430px); }
  .environment-feature { grid-row: auto; }
  footer { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 640px) {
  .site-header { height: 72px; padding: 0 20px; }
  .brand, .brand img { width: 142px; height: 48px; }
  .header-actions .button { display: none; }
  .header-actions { gap: 10px; }
  .nav-links { top: 72px; }
  .hero { min-height: 760px; padding: 100px 22px 70px; }
  .hero h1 { font-size: clamp(52px, 16vw, 76px); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-status { left: 22px; right: 22px; gap: 14px; flex-wrap: wrap; }
  .section { padding: 90px 22px; }
  .section-heading { margin-bottom: 45px; }
  .split-heading { gap: 18px; }
  .profile-image, .lifecycle-media { min-height: 390px; }
  .profile-heading { grid-template-columns: 1fr; }
  .brand-emblem { width: 160px; height: 132px; }
  .profile-facts { grid-template-columns: 1fr; }
  .capability-row { grid-template-columns: 42px 1fr 20px; gap: 12px; }
  .capability-row p { font-size: 14px; }
  .platform-grid { grid-template-rows: repeat(3, 380px); }
  .environment-grid { grid-template-rows: repeat(3, 380px); }
  .environment-strip { grid-template-columns: 1fr; }
  .environment-strip div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .environment-strip div:last-child { border-bottom: 0; }
  .platform-copy { inset: auto 24px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  footer { padding: 34px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
