:root {
  --blue: #009de0;
  --blue-dark: #0b3f5a;
  --silver: #d9dde9;
  --graphite: #151513;
  --sand: #f4f4f4;
  --accent: #0f1f2b;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(10, 20, 30, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--graphite);
  background: radial-gradient(circle at top left, #e6f4fb 0%, #f5f7fb 45%, #eef1f6 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 0;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 8px 0;
}

.brand {
  display: flex;
  align-items: center;
}

.logo {
  display: grid;
  gap: 6px;
}

.logo-mark {
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--blue);
}

.logo-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  font-size: 14px;
}

.header-cta {
  justify-self: end;
}

.nav-title {
  display: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--blue-dark);
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  color: var(--graphite);
  font-weight: 600;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 8px 10px;
  cursor: pointer;
  gap: 6px;
  align-items: center;
}

.nav-toggle-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--blue-dark);
}

.nav-toggle-icon {
  display: inline-block;
  width: 22px;
  height: 14px;
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after,
.nav-toggle-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--graphite);
  border-radius: 4px;
}

.nav-toggle-icon::before {
  top: 0;
}

.nav-toggle-icon::after {
  bottom: 0;
}

.nav-toggle-icon span {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(0, 157, 224, 0.35);
}

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

.btn-ghost {
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.9);
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  margin: 18px 0 16px;
  color: var(--graphite);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: #3b434a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.hero-meta div {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
}

.meta-icon {
  font-size: 18px;
  color: var(--blue);
}

.meta-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6a7380;
}

.meta-value {
  font-weight: 700;
  font-size: 16px;
}

.hero-visual {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.can-stack {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.can {
  background: linear-gradient(135deg, #f4f4f4 0%, #c4cbd6 45%, #f7f8fb 70%, #9aa3af 100%);
  border-radius: 22px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6), 0 20px 60px rgba(20, 30, 40, 0.25);
  position: absolute;
}

.can.large {
  width: 240px;
  height: 240px;
  transform: translate(-30px, 10px);
}

.can.medium {
  width: 190px;
  height: 190px;
  transform: translate(80px, -40px);
}

.can.small {
  width: 130px;
  height: 130px;
  transform: translate(-90px, 80px);
}

.hero-card {
  background: var(--white);
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-illustration {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero-illustration svg {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}

.hero-icons {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  font-size: 20px;
}

.section {
  padding: 80px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.section-head {
  max-width: 700px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(26px, 3.4vw, 40px);
  margin-bottom: 14px;
}

.section-head p {
  font-size: 16px;
  line-height: 1.6;
  color: #47505c;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.about-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 157, 224, 0.12);
  color: var(--blue-dark);
  font-size: 20px;
  margin-bottom: 12px;
}

.products {
  background: linear-gradient(135deg, rgba(0, 157, 224, 0.08), rgba(255, 255, 255, 0.8));
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
}

.product-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(21, 21, 19, 0.06);
  color: var(--graphite);
  font-size: 18px;
  margin-bottom: 10px;
}

.specs {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.spec {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 16px;
}

.capabilities {
  background: #0f1f2b;
  color: var(--white);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.cap-list {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.cap-list li {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.cap-list li::before {
  content: "✦";
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 12px;
}

.cap-panel {
  position: relative;
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.panel-strip {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-80%);
  animation: sweep 6s ease-in-out infinite;
}

@keyframes sweep {
  0% { transform: translateX(-80%); }
  50% { transform: translateX(80%); }
  100% { transform: translateX(-80%); }
}

.industries {
  background: var(--sand);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-grid span {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.contacts {
  background: linear-gradient(120deg, rgba(0, 157, 224, 0.12), rgba(255, 255, 255, 0.9));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(300px, 1fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: stretch;
}

.contact-block {
  margin-top: 20px;
  display: grid;
  gap: 6px;
}

.contact-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #6a7380;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  background: var(--white);
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-map {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .contact-map {
    min-height: 320px;
  }

  .contact-map iframe {
    min-height: 320px;
  }
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
}

.form-note {
  font-size: 12px;
  color: #667080;
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-text {
  font-weight: 600;
  margin-left: 10px;
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    position: absolute;
    top: 56px;
    right: 0;
    min-width: 220px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-cta {
    order: 3;
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 4px;
  }

  .nav-title {
    display: block;
  }

  .nav a {
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(0, 157, 224, 0.06);
  }

  .btn.btn-primary {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    background: rgba(255, 255, 255, 0.92);
  }

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

  .logo {
    gap: 4px;
  }

  .logo-mark {
    font-size: 22px;
  }

  .logo-text {
    font-size: 10px;
    line-height: 1.2;
  }

  .nav-toggle-label {
    font-size: 10px;
  }

  .header-cta {
    margin: 0;
    padding: 8px 12px;
    font-size: 11px;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-toggle {
    flex: 0 0 auto;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .nav {
    top: 52px;
    right: 0;
    min-width: 200px;
  }

  .hero {
    padding-top: 60px;
  }

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

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

  .can-stack {
    min-height: 260px;
  }
}
