:root {
  --ink: #172126;
  --muted: #5e6c72;
  --line: #dce5e8;
  --panel: #ffffff;
  --soft: #f4f8f8;
  --green: #00a878;
  --green-dark: #04724d;
  --cyan: #16a3c7;
  --navy: #16344a;
  --gold: #f1b84b;
  --shadow: 0 20px 55px rgba(22, 52, 74, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfd;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid #cfe7df;
  border-radius: 8px;
  background: linear-gradient(145deg, #f5fffb, #e6f7f2);
  color: var(--green-dark);
}

.icon-badge svg,
.button svg,
.check-list svg,
.pill-row svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge.large {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: var(--navy);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 248, 244, 0.96)),
    radial-gradient(circle at 74% 24%, rgba(241, 184, 75, 0.34), transparent 34%);
}

.icon-badge.large svg {
  width: 27px;
  height: 27px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 229, 232, 0.8);
  background: rgba(251, 253, 253, 0.92);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 178px;
  height: auto;
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 6px;
  color: #2c3e45;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #edf6f4;
  color: var(--green-dark);
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--green);
  color: #fff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--green-dark);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px) 48px;
  background:
    linear-gradient(120deg, rgba(0, 168, 120, 0.09), rgba(22, 163, 199, 0.04) 44%, rgba(241, 184, 75, 0.08)),
    #fbfdfd;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 30px;
  color: #34464e;
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(2px);
}

.button.primary {
  background: var(--green);
  color: #fff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green-dark);
}

.button.secondary {
  border-color: #b8c9ce;
  background: #fff;
  color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--green);
  color: var(--green-dark);
}

.hero-visual {
  min-width: 0;
}

.network-panel {
  position: relative;
  min-height: 570px;
  border: 1px solid #d7e2e5;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(236, 247, 245, 0.82)),
    repeating-linear-gradient(0deg, rgba(22, 52, 74, 0.04), rgba(22, 52, 74, 0.04) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(22, 52, 74, 0.04), rgba(22, 52, 74, 0.04) 1px, transparent 1px, transparent 40px);
  box-shadow: var(--shadow);
}

.network-panel::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(0, 168, 120, 0.35);
  border-radius: 999px;
  animation: pulse 4.6s ease-in-out infinite;
}

.network-panel::after {
  content: "";
  position: absolute;
  inset: 23%;
  border: 1px dashed rgba(22, 163, 199, 0.36);
  border-radius: 999px;
  animation: pulse 5.8s ease-in-out infinite 0.4s;
}

.network-panel .map {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(64%, 360px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 28px rgba(22, 52, 74, 0.16));
}

.signal-card {
  position: absolute;
  z-index: 3;
  width: 172px;
  padding: 14px;
  border: 1px solid rgba(220, 229, 232, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(22, 52, 74, 0.13);
}

.signal-card span {
  display: block;
  color: var(--green-dark);
  font-size: 1.7rem;
  font-weight: 950;
}

.signal-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.signal-one {
  top: 36px;
  left: 36px;
}

.signal-two {
  right: 32px;
  top: 42%;
}

.signal-three {
  left: 44px;
  bottom: 44px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.proof-strip div {
  padding: 24px clamp(20px, 4vw, 48px);
  background: #fff;
}

.proof-strip .icon-badge {
  margin-bottom: 14px;
}

.proof-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1rem;
}

.proof-strip div > span:not(.icon-badge) {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(72px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.section-copy p,
.section-heading p,
.contact-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #32464e;
  font-weight: 700;
}

.check-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.15em;
  color: var(--green-dark);
}

.connectivity-visual {
  display: grid;
  gap: 26px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.connectivity-visual > img {
  width: 250px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metric-grid div {
  min-height: 130px;
  padding: 22px;
  background: #fbfdfd;
}

.metric-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: 2rem;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.device-band {
  background: #eff6f5;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 960px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 860px;
}

.device-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.device-image {
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 1px solid #d7e6e7;
  border-radius: 8px;
  background: #fff;
}

.device-image img {
  width: min(82%, 430px);
}

.device-list {
  display: grid;
  gap: 14px;
}

.device-list article,
.solution-grid article,
.timeline article,
.news-grid article,
.quote {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.device-list article {
  padding: 22px;
}

.device-list .icon-badge {
  margin-bottom: 16px;
}

.device-list article > span:not(.icon-badge),
.news-grid div > span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 0.77rem;
  font-weight: 950;
  text-transform: uppercase;
}

.device-list p,
.solution-grid p,
.timeline p,
.news-grid p,
.quote span,
.site-footer p {
  color: var(--muted);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.solution-grid article {
  min-height: 260px;
  padding: 24px;
}

.ecosystem {
  background: #fff;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid #cfe1dd;
  border-radius: 999px;
  background: #f4fbf8;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.pill-row svg {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
}

.ecosystem-visual {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(140deg, #fff, #eef8f5);
}

.ecosystem-visual img {
  width: min(100%, 520px);
  margin: auto;
}

.momentum {
  background: var(--navy);
  color: #fff;
}

.momentum .eyebrow,
.momentum .timeline span {
  color: #8be2c6;
}

.momentum .section-heading p,
.momentum .timeline p {
  color: #d1dde0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.timeline article {
  min-height: 240px;
  padding: 24px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
}

.timeline span {
  display: block;
  margin-bottom: 14px;
  font-weight: 950;
}

.news-band {
  background: #f7f5ef;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-grid article {
  overflow: hidden;
}

.news-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.news-grid div {
  padding: 22px;
}

.news-grid a {
  display: inline-flex;
  margin-top: 6px;
  color: var(--green-dark);
  font-weight: 900;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: #fff;
}

.quote {
  padding: 26px;
}

.quote p {
  margin-bottom: 18px;
  color: #253942;
  font-size: 1.08rem;
  font-weight: 750;
}

.quote span {
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(72px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: linear-gradient(120deg, #eef8f4, #fbfdfd 60%, #f8f2e4);
}

.contact-copy address {
  margin-top: 28px;
  color: #34464e;
  font-style: normal;
  font-weight: 700;
}

.contact-copy a {
  color: var(--green-dark);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #33474e;
  font-size: 0.88rem;
  font-weight: 850;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cbd8dc;
  border-radius: 6px;
  color: var(--ink);
  background: #fbfdfd;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(0, 168, 120, 0.18);
  border-color: var(--green);
}

.site-footer {
  display: grid;
  gap: 20px;
  padding: 40px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer img {
  width: 220px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #34464e;
  font-weight: 850;
}

.site-footer p {
  max-width: 840px;
  margin: 0;
  font-size: 0.9rem;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.62;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 1060px) {
  .hero,
  .split,
  .device-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .network-panel {
    min-height: 520px;
  }

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

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

@media (max-width: 820px) {
  .site-header {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .brand img {
    width: 154px;
  }

  h1 {
    font-size: clamp(2.72rem, 13vw, 4.2rem);
  }

  .hero {
    padding-top: 42px;
  }

  .proof-strip,
  .solution-grid,
  .news-grid,
  .testimonials,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .network-panel {
    min-height: 470px;
  }

  .signal-card {
    width: 148px;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .network-panel {
    min-height: 430px;
  }

  .network-panel .map {
    width: 72%;
  }

  .signal-card {
    width: 132px;
    padding: 12px;
  }

  .signal-card span {
    font-size: 1.32rem;
  }

  .signal-one {
    top: 18px;
    left: 16px;
  }

  .signal-two {
    right: 14px;
  }

  .signal-three {
    left: 18px;
    bottom: 18px;
  }

  .metric-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .device-image {
    min-height: 310px;
  }

  .section,
  .contact-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
