/* ========== CV Rollers — Modern Redesign ========== */
:root {
  /* Palette from desktop wallpaper: CV Rollers Screen Saver 2 */
  --bg: #001234;
  --bg-elevated: #001a42;
  --bg-card: #001c4a;
  --bg-card-hover: #00255c;
  --surface: #002a66;
  --text: #ffffff;
  --text-muted: #a8c4dc;
  --text-dim: #6f8fad;
  --accent: #009fe3;
  --accent-hot: #33c0ff;
  --accent-soft: rgba(0, 159, 227, 0.16);
  --accent-glow: rgba(0, 159, 227, 0.42);
  --brand: #009fe3;
  --brand-bright: #33c0ff;
  --brand-soft: rgba(0, 159, 227, 0.18);
  --brand-glow: rgba(0, 159, 227, 0.4);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --success: #3dd68c;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 24px 60px rgba(0, 10, 30, 0.5);
  --font: "Inter", system-ui, sans-serif;
  --display: "Outfit", "Inter", system-ui, sans-serif;
  --header-h: 92px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Brighter custom pointer + ambient hue (desktop only) */
body.has-cursor-glow {
  cursor: none;
}

body.has-cursor-glow a,
body.has-cursor-glow button,
body.has-cursor-glow input,
body.has-cursor-glow select,
body.has-cursor-glow textarea,
body.has-cursor-glow label,
body.has-cursor-glow [role="button"] {
  cursor: none;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, #9ae4ff 0%, #33c0ff 45%, rgba(0, 159, 227, 0.2) 70%, transparent 100%);
  box-shadow:
    0 0 12px rgba(51, 192, 255, 0.75),
    0 0 28px rgba(0, 159, 227, 0.45);
  opacity: 0;
  transform: translate3d(-100px, -100px, 0) scale(1);
  transition:
    opacity 0.2s ease,
    width 0.2s var(--ease),
    height 0.2s var(--ease),
    margin 0.2s var(--ease),
    box-shadow 0.2s ease,
    background 0.2s ease;
  mix-blend-mode: screen;
  will-change: transform;
}

.cursor-glow.is-visible {
  opacity: 0.95;
}

.cursor-glow.is-active {
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  background: radial-gradient(circle, #ffffff 0%, #9ae4ff 35%, #33c0ff 65%, transparent 100%);
  box-shadow:
    0 0 16px rgba(154, 228, 255, 0.95),
    0 0 36px rgba(51, 192, 255, 0.65),
    0 0 60px rgba(0, 159, 227, 0.35);
}

.cursor-glow-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  border: 1.5px solid rgba(51, 192, 255, 0.45);
  box-shadow: 0 0 20px rgba(0, 159, 227, 0.2);
  opacity: 0;
  transform: translate3d(-100px, -100px, 0) scale(1);
  transition:
    opacity 0.25s ease,
    width 0.25s var(--ease),
    height 0.25s var(--ease),
    margin 0.25s var(--ease),
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  will-change: transform;
}

.cursor-glow-ring.is-visible {
  opacity: 0.7;
}

.cursor-glow-ring.is-active {
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-color: rgba(154, 228, 255, 0.75);
  box-shadow: 0 0 28px rgba(51, 192, 255, 0.4);
}

/* Soft page-wide hue wash that follows the pointer */
.cursor-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(
    520px circle at var(--cursor-x, 50%) var(--cursor-y, 50%),
    rgba(51, 192, 255, 0.1) 0%,
    rgba(0, 159, 227, 0.04) 35%,
    transparent 65%
  );
}

body.has-cursor-glow .cursor-ambient.is-on {
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  body.has-cursor-glow {
    cursor: auto;
  }

  .cursor-glow,
  .cursor-glow-ring,
  .cursor-ambient {
    display: none !important;
  }
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00b4f0 0%, #0090df 55%, #0077c2 100%);
  color: #fff;
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px var(--accent-glow);
  background: linear-gradient(135deg, var(--accent-hot) 0%, var(--accent) 100%);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand-bright);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.75rem;
  transition: gap 0.25s var(--ease), color 0.2s;
}

.text-link:hover {
  gap: 0.6rem;
  color: #7dd8ff;
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(0, 18, 52, 0.9);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 32px rgba(0, 10, 30, 0.45);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), filter 0.25s;
}

.logo:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #001234;
  border: 1px solid rgba(0, 160, 227, 0.45);
  box-shadow: 0 0 0 1px rgba(0, 160, 227, 0.12), 0 8px 24px rgba(0, 160, 227, 0.2);
  overflow: hidden;
  flex-shrink: 0;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1;
}

.logo-name {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-bright);
  white-space: nowrap;
}

.logo-footer .logo-mark {
  width: 52px;
  height: 52px;
}

.logo-footer .logo-name {
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a:not(.btn) {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  filter: brightness(1.08) contrast(1.08) saturate(1.1);
  animation: heroZoom 18s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.12); }
}

/* Lighter overall veil so the photo shows through; depth only where text sits */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Soft full-frame tint — keeps brand feel without hiding the image */
    linear-gradient(180deg, rgba(0, 18, 52, 0.28) 0%, rgba(0, 18, 52, 0.12) 40%, rgba(0, 18, 52, 0.55) 100%),
    /* Stronger scrim only on the left (text column) */
    linear-gradient(100deg, rgba(0, 12, 40, 0.82) 0%, rgba(0, 18, 52, 0.55) 38%, rgba(0, 18, 52, 0.12) 68%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  /* Local frosted panel so copy stays readable over a vivid photo */
  padding: 1.75rem 1.75rem 1.9rem;
  margin-left: -0.5rem;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(0, 14, 42, 0.72) 0%,
    rgba(0, 22, 58, 0.52) 55%,
    rgba(0, 28, 70, 0.28) 100%
  );
  border: 1px solid rgba(0, 159, 227, 0.22);
  box-shadow:
    0 20px 50px rgba(0, 8, 28, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
}

/* Large brand lockup in hero */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
  padding: 0.85rem 1.15rem 0.85rem 0.85rem;
  width: fit-content;
  max-width: 100%;
  background: rgba(0, 18, 52, 0.72);
  border: 1px solid rgba(0, 160, 227, 0.4);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 160, 227, 0.12);
}

.hero-logo-icon {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(0, 160, 227, 0.35);
}

.hero-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-company {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4.5vw, 2.55rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 160, 227, 0.35);
}

.hero-tagline {
  font-size: clamp(0.72rem, 1.6vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-bright);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid rgba(0, 160, 227, 0.4);
  color: var(--brand-bright);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0, 8, 28, 0.65),
    0 8px 28px rgba(0, 8, 28, 0.55);
}

.hero h1 .accent {
  background: linear-gradient(90deg, #9ae4ff, var(--brand-bright) 40%, #4ec8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 8, 28, 0.45));
}

.hero-lead {
  font-size: 1.1rem;
  color: #d6e8f6;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 8, 28, 0.7);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 8, 28, 0.5);
}

.stat span {
  font-size: 0.85rem;
  color: #b8d2e8;
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-hint span {
  width: 4px;
  height: 10px;
  background: var(--brand-bright);
  border-radius: 4px;
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(10px); }
}

/* ========== Trust strip ========== */
.trust-strip {
  background: var(--bg-elevated);
  border-block: 1px solid var(--line);
  padding: 1.1rem 0;
  overflow: hidden;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.trust-inner .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-bright);
  opacity: 0.8;
}

/* ========== Sections ========== */
.section {
  padding: 6.5rem 0;
}

.section-head {
  max-width: 620px;
  margin-bottom: 3.5rem;
}

.section-head.light h2,
.section-head.light .section-sub {
  color: var(--text);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: 0.75rem;
}

.section h2,
.feature-content h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ========== Products ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s, background 0.35s;
}

button.product-card {
  appearance: none;
  -webkit-appearance: none;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(0, 159, 227, 0.45);
  box-shadow: var(--shadow);
  background: var(--bg-card-hover);
  outline: none;
}

.product-card:focus-visible {
  outline: 2px solid var(--brand-bright);
  outline-offset: 2px;
}

.product-card .text-link {
  pointer-events: none;
}

.product-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.product-featured .product-media {
  min-height: 100%;
}

.product-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--surface);
}

.product-featured .product-media {
  aspect-ratio: auto;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.product-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.product-points {
  margin: 1rem 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-bright);
}

.product-cta-card {
  background: linear-gradient(145deg, #001c4a 0%, #001234 50%, #002a66 100%);
  border-color: rgba(0, 159, 227, 0.35);
  min-height: 280px;
  justify-content: center;
}

.product-cta-inner {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 1rem;
}

.product-cta-inner h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.product-cta-inner p {
  color: var(--text-muted);
}

/* ========== Industries ========== */
.industries {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 159, 227, 0.12), transparent 60%),
    var(--bg-elevated);
  border-block: 1px solid var(--line);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.industry-card:hover,
.industry-card:focus-visible {
  border-color: rgba(0, 159, 227, 0.55);
  background: rgba(0, 159, 227, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 10, 30, 0.35);
  outline: none;
}

.industry-card:focus-visible {
  outline: 2px solid var(--brand-bright);
  outline-offset: 2px;
}

.industry-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  filter: grayscale(0.2);
}

.industry-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.industry-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
}

.industry-more {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-bright);
  letter-spacing: 0.02em;
  transition: gap 0.25s, color 0.2s;
}

.industry-card:hover .industry-more {
  color: #7dd8ff;
}

/* ========== Industry info modal ========== */
.info-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.info-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.info-modal[hidden] {
  display: none;
}

.info-modal.is-open[hidden] {
  display: flex;
}

.info-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 8, 28, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.info-modal-panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 1100px);
  height: min(92vh, 900px);
  max-height: 92vh;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 159, 227, 0.14), transparent 55%),
    linear-gradient(165deg, #001a42 0%, #001234 55%, #000c24 100%);
  border: 1px solid rgba(0, 159, 227, 0.35);
  border-radius: 22px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s var(--ease);
}

.info-modal.is-open .info-modal-panel {
  transform: scale(1) translateY(0);
}

.info-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 18, 52, 0.85);
  color: #fff;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.info-modal-close span[aria-hidden="true"] {
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 400;
}

.info-modal-close:hover,
.info-modal-close:focus-visible {
  background: rgba(0, 159, 227, 0.25);
  border-color: var(--brand-bright);
  outline: none;
  transform: scale(1.03);
}

.info-modal-inner {
  flex: 1;
  overflow-y: auto;
  padding: 2.75rem 3rem 2.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 159, 227, 0.45) transparent;
}

.info-modal-hero {
  margin: -0.5rem -0.5rem 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 159, 227, 0.25);
  aspect-ratio: 16 / 8.5;
  max-height: 280px;
  background: #000c24;
}

.info-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.65rem;
  margin: 0 0 1.75rem;
  align-items: stretch;
}

.info-modal-gallery figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 159, 227, 0.22);
  background: #000c24;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-modal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s var(--ease);
}

.info-modal-gallery figure:hover img {
  transform: scale(1.03);
}

.info-modal-gallery figcaption {
  display: none;
}

.info-modal-icon {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.info-modal-icon:not([hidden]) {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--brand-bright);
}

.info-modal-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: 0.6rem;
}

.info-modal-inner h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 18ch;
}

.info-modal-lead {
  font-size: 1.15rem;
  color: #d6e8f6;
  line-height: 1.65;
  max-width: 62ch;
  margin-bottom: 2rem;
}

.info-modal-body {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2.25rem;
}

.info-modal-section h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.info-modal-section p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 70ch;
}

.info-modal-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-modal-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: #d6e8f6;
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-modal-list li::before {
  content: "✓";
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  color: var(--brand-bright);
  font-weight: 700;
}

.info-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

@media (max-width: 700px) {
  .info-modal {
    padding: 0.5rem;
  }

  .info-modal-panel {
    width: 100%;
    height: 96vh;
    max-height: 96vh;
    border-radius: 16px;
  }

  .info-modal-inner {
    padding: 4rem 1.25rem 1.75rem;
  }

  .info-modal-hero {
    margin: 0 0 1rem;
    max-height: 200px;
    aspect-ratio: 16 / 10;
  }

  .info-modal-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .info-modal-gallery figure {
    height: 180px;
  }

  .info-modal-actions {
    flex-direction: column;
  }

  .info-modal-actions .btn {
    width: 100%;
  }
}

/* ========== Feature split ========== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  min-height: 560px;
}

.feature-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  background: var(--bg);
}

.feature-content > p:not(.eyebrow) {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-bright);
  font-weight: 700;
}

/* ========== Capabilities ========== */
.capabilities {
  background: var(--bg);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-bottom: 3rem;
}

.cap-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
}

.cap-card:hover,
.cap-card:focus-visible {
  border-color: rgba(0, 159, 227, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 10, 30, 0.35);
  background: var(--bg-card-hover);
  outline: none;
}

.cap-card:focus-visible {
  outline: 2px solid var(--brand-bright);
  outline-offset: 2px;
}

.cap-num {
  display: block;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-bright);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.cap-card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.cap-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
}

.cap-more {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-bright);
  letter-spacing: 0.02em;
}

.cap-card:hover .cap-more {
  color: #7dd8ff;
}

.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.showcase-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border: 1px solid var(--line);
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.showcase-img:hover img {
  transform: scale(1.05);
}

/* ========== CTA Banner ========== */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 18, 52, 0.94), rgba(0, 40, 90, 0.88));
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.cta-content h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

/* ========== Contact ========== */
.contact {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info .section-sub,
.contact-info > p:not(.eyebrow) {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 420px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s;
}

a.contact-item:hover {
  border-color: rgba(0, 159, 227, 0.5);
}

.ci-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ci-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%239aa3b5' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}

/* ========== Footer ========== */
.site-footer {
  background: #000c24;
  border-top: 1px solid var(--line);
  padding: 4rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links h4 {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand-bright);
}

.footer-addr {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ========== Reveal animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-featured {
    grid-column: span 2;
  }

  .cap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(0, 18, 52, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    background: rgba(0, 18, 52, 0.98);
  }

  .nav-links a:not(.btn) {
    font-size: 1.35rem;
    color: var(--text);
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .product-featured {
    grid-template-columns: 1fr;
    grid-column: span 1;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .feature-split {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 320px;
  }

  .feature-content {
    padding: 3rem 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: center;
    padding-bottom: 4rem;
  }

  .hero-content {
    margin-left: 0;
    padding: 1.25rem 1.15rem 1.4rem;
    background: linear-gradient(
      160deg,
      rgba(0, 14, 42, 0.82) 0%,
      rgba(0, 22, 58, 0.68) 100%
    );
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 18, 52, 0.35) 0%, rgba(0, 18, 52, 0.2) 35%, rgba(0, 18, 52, 0.65) 100%),
      linear-gradient(100deg, rgba(0, 12, 40, 0.7) 0%, rgba(0, 18, 52, 0.35) 55%, transparent 100%);
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .industry-grid,
  .cap-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .logo-name {
    font-size: 1.15rem;
    letter-spacing: 0.04em;
  }

  .logo-tagline {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .hero-brand {
    gap: 0.85rem;
    padding: 0.7rem;
  }

  .hero-logo-icon {
    width: 56px;
    height: 56px;
  }
}
