:root {
  --bg: #07111f;
  --bg-soft: #0b1a2e;
  --card: #0d2138;
  --card-2: #102844;
  --surface: rgba(255, 255, 255, 0.06);
  --text: #e7eef8;
  --muted: #a8b6ca;
  --line: rgba(255, 255, 255, 0.12);
  --brand: #7dd3fc;
  --brand-2: #38bdf8;
  --accent: #93c5fd;
  --white: #fff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top right,
      rgba(56, 189, 248, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at left 20%,
      rgba(125, 211, 252, 0.08),
      transparent 25%
    ),
    linear-gradient(180deg, #08111f 0%, #09182b 45%, #07111f 100%);
  line-height: 1.6;
}

/* Fix for footer jumping to top */
main {
  min-height: 85vh;
  display: block;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section-sm {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  color: #d7e6f9;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.8);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin: 18px 0 16px;
  letter-spacing: -0.04em;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--muted);
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.card h3,
.card h4 {
  margin: 0 0 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(255, 255, 255, 0.04));
}

.brand-text {
  min-width: 0;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-tag {
  font-size: 0.77rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: #d8e6f6;
  font-weight: 600;
  font-size: 0.96rem;
  transition: 0.25s ease;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #04111f;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(125, 211, 252, 0.3);
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.mobile-nav {
  display: none;
}

.hero {
  padding: 84px 0 64px;
  overflow: hidden;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-panel {
  position: relative;
}

.hero-copy {
  padding: 36px;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(8, 18, 33, 0.72),
    rgba(8, 18, 33, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  min-height: 100%;
  box-shadow: var(--shadow);
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 18px 0;
}

.hero-copy p {
  font-size: 1.08rem;
  color: #c9d7e8;
  max-width: 720px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #06111f;
  box-shadow: 0 12px 30px rgba(125, 211, 252, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--white);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 17, 31, 0.1),
    rgba(7, 17, 31, 0.15) 30%,
    rgba(7, 17, 31, 0.82) 100%
  );
}

.hero-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(7, 17, 31, 0.52);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-badge strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.hero-badge span {
  color: #c9d7e8;
  font-size: 0.94rem;
}

.kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.kicker {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: #dbe8f8;
  font-weight: 600;
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #0c1d31;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 17, 31, 0.05),
    rgba(8, 17, 31, 0.35) 58%,
    rgba(8, 17, 31, 0.88) 100%
  );
}

.media-card .caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
}

.media-card .caption h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.media-card .caption p {
  margin: 0;
  color: #d0dcec;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    180deg,
    rgba(125, 211, 252, 0.2),
    rgba(125, 211, 252, 0.08)
  );
  border: 1px solid rgba(125, 211, 252, 0.28);
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #dce7f6;
}

.list li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  margin-top: 9px;
  flex: 0 0 auto;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.7);
}

.product-card,
.industry-card {
  padding: 0;
  overflow: hidden;
}

.product-image,
.industry-image {
  height: 220px;
  overflow: hidden;
}

.product-image img,
.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-content,
.industry-content {
  padding: 24px 24px 28px;
}

.quote-band {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(125, 211, 252, 0.16),
    rgba(147, 197, 253, 0.08)
  );
  border: 1px solid rgba(125, 211, 252, 0.26);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.quote-band p {
  margin: 0;
  color: #deebf9;
  font-size: 1.04rem;
}

.quote-band .btn {
  flex: 0 0 auto;
}

.page-hero {
  padding: 72px 0 40px;
}

.page-hero-box {
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  margin: 14px 0 12px;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.metric {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.metric strong {
  font-size: 2rem;
  display: block;
  letter-spacing: -0.05em;
}

.metric span {
  color: var(--muted);
}

.cta-panel {
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.15),
    rgba(147, 197, 253, 0.08)
  );
  border: 1px solid rgba(125, 211, 252, 0.22);
  box-shadow: var(--shadow);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.info-item {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.info-item h4 {
  margin: 0 0 8px;
}

.info-item p,
.info-item a {
  margin: 0;
  color: var(--muted);
}

.form-card form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(125, 211, 252, 0.7);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.12);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 31, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.floaty {
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1080px) {
  .hero-wrap,
  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }
}

@media (max-width: 840px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-nav {
    display: none;
    padding: 0 0 16px;
  }

  .mobile-nav.open {
    display: grid;
    gap: 10px;
  }

  .mobile-nav a {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    font-weight: 600;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy {
    padding: 26px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 42px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tag {
    display: none;
  }

  .quote-band,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 72px 0;
  }

  .container {
    width: min(100% - 22px, 1180px);
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .hero-visual {
    min-height: 350px;
  }

  .page-hero-box,
  .hero-copy,
  .card,
  .quote-band,
  .cta-panel {
    padding: 22px;
  }

  .section-title {
    font-size: 2rem;
  }
}
