:root {
  --bg: #02191b;
  --bg-deep: #001012;
  --panel: rgba(2, 31, 34, 0.78);
  --panel-border: rgba(77, 221, 211, 0.25);
  --text: #f7fbfb;
  --muted: #c3d1d2;
  --teal: #25d2c6;
  --teal-light: #55e8dc;
  --teal-dark: #0e7f7b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 72% 22%, rgba(21, 160, 151, 0.34), transparent 33%),
    radial-gradient(circle at 30% 70%, rgba(1, 91, 87, 0.2), transparent 35%),
    linear-gradient(135deg, #001417 0%, #03282a 55%, #001113 100%);
}

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

.page-glow {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.24;
  pointer-events: none;
}

.page-glow-one {
  width: 420px;
  height: 420px;
  top: 80px;
  right: 10%;
  background: #17c9be;
}

.page-glow-two {
  width: 320px;
  height: 320px;
  bottom: 4%;
  left: 5%;
  background: #087b74;
}

.site-header {
  width: min(94%, 1440px);
  height: 84px;
  margin: 18px auto 0;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: rgba(0, 14, 17, 0.78);
  border: 1px solid var(--panel-border);
  border-radius: 34px;
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.35rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 54px);
  height: 100%;
}

.site-nav a {
  height: 100%;
  display: flex;
  align-items: center;
  color: #edf5f5;
  font-size: 0.98rem;
  font-weight: 500;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: var(--teal);
  transition: width 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--teal-light);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-cta {
  min-width: 190px;
  padding: 15px 22px;
  color: #001719;
  background: linear-gradient(135deg, #56e5dc, #24c7be);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(37, 210, 198, 0.26);
}

.header-cta svg,
.button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(37, 210, 198, 0.34);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: white;
}

main {
  width: min(92%, 1400px);
  margin: 0 auto;
}

.hero {
  min-height: 745px;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  gap: 20px;
  padding: 48px 12px 26px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 18px;
  margin-bottom: 24px;
  color: #f3ffff;
  border: 1px solid rgba(56, 223, 211, 0.48);
  border-radius: 999px;
  background: rgba(4, 39, 42, 0.42);
  font-size: 0.93rem;
  font-weight: 600;
}

.sparkle {
  color: var(--teal);
  font-size: 1.25rem;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.15rem, 5.1vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

h1 span,
h1 strong {
  display: block;
}

h1 strong {
  color: var(--teal);
}

.hero-description {
  max-width: 610px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.75;
}

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

.button {
  min-height: 64px;
  padding: 0 34px;
  border-radius: 999px;
}

.button-primary {
  color: #001718;
  background: linear-gradient(135deg, #3ce0d5, #21c8be);
  box-shadow: 0 12px 35px rgba(37, 210, 198, 0.2);
}

.button-secondary {
  color: white;
  border: 1px solid rgba(69, 219, 208, 0.48);
  background: rgba(4, 32, 35, 0.35);
}

.button-secondary:hover {
  transform: translateY(-3px);
  background: rgba(20, 97, 96, 0.32);
}

.benefits {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 18px;
  max-width: 630px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #eaf6f6;
  font-size: 0.86rem;
  line-height: 1.45;
}

.benefit-icon,
.stat-icon {
  color: var(--teal);
  font-size: 1.65rem;
}

.hero-visual {
  min-height: 610px;
  position: relative;
}

.visual-orbit {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 115px;
  left: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(29, 197, 187, 0.24), rgba(2, 56, 59, 0.02));
  border: 1px solid rgba(42, 224, 211, 0.26);
}

.laptop {
    position: absolute;
    width: min(650px, 100%);
    right: 8%;
    bottom: 52px;

    transform:
        perspective(900px)
        rotateY(-5deg)
        rotateX(1deg);

    z-index: 3;
}

.laptop img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    object-fit: contain;

    transform: translateY(-5px);
}

.camera {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #313738;
  z-index: 2;
}

.screen-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 9px;
  background: #04090a;
}

.screen-content img,
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laptop-base {
  height: 28px;
  width: 112%;
  margin-left: -6%;
  border-radius: 4px 4px 22px 22px;
  background: linear-gradient(#b8b9b9, #595d5e 48%, #2b3031);
  position: relative;
}

.trackpad {
  position: absolute;
  width: 110px;
  height: 7px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #7c8182;
  border-radius: 0 0 8px 8px;
}

.phone {
  position: absolute;
  z-index: 5;
  width: 190px;
  height: 405px;
  right: -12px;
  bottom: 38px;
  padding: 10px;
  border: 4px solid #777;
  border-radius: 38px;
  background: #050809;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  width: 65px;
  height: 18px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: black;
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #030708;
}

.floating-card {
  position: absolute;
  z-index: 8;
  background: rgba(2, 43, 46, 0.88);
  border: 1px solid rgba(67, 224, 212, 0.38);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.traffic-card {
  width: 275px;
  top: 20px;
  right: 120px;
  padding: 20px;
  border-radius: 20px;
  transform: rotate(5deg);
}

.traffic-card span,
.traffic-card small {
  display: block;
}

.traffic-card strong {
  display: block;
  margin: 7px 0 2px;
  font-size: 2rem;
}

.traffic-card small {
  color: var(--muted);
}

.chart {
  position: absolute;
  right: 16px;
  bottom: 17px;
  width: 120px;
  height: 42px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.3;
}

.speed-card {
  left: 35px;
  bottom: 62px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 18px;
}

.score-ring {
  width: 67px;
  height: 67px;
  display: grid;
  place-items: center;
  border: 6px solid #52dc3c;
  border-radius: 50%;
  color: #7ff56c;
  font-size: 1.2rem;
  font-weight: 800;
}

.speed-card small,
.speed-card strong,
.speed-card span {
  display: block;
}

.speed-card strong {
  margin: 3px 0;
  color: #62e94d;
  font-size: 1.1rem;
}

.speed-card span {
  color: var(--muted);
  font-size: 0.66rem;
}

.trust-bar {
  min-height: 145px;
  margin: -8px 0 34px;
  padding: 22px 30px;
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  align-items: center;
  background: rgba(2, 35, 38, 0.88);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.trust-intro {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 28px;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 48px;
  height: 48px;
  margin-left: -10px;
  display: grid;
  place-items: center;
  border: 3px solid #d8f5f2;
  border-radius: 50%;
  color: #062a2c;
  background: linear-gradient(135deg, #d8f5f2, #5ca7a2);
  font-weight: 800;
}

.avatars span:first-child {
  margin-left: 0;
}

.stars {
  color: #ffb51d;
  letter-spacing: 2px;
}

.trust-intro p {
  margin: 8px 0 0;
  line-height: 1.5;
}

.stat {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(196, 239, 235, 0.22);
  text-align: center;
}

.stat strong {
  margin: 4px 0;
  font-size: 1.85rem;
}

.stat small {
  color: var(--muted);
}



@media (max-width: 1180px) {
  .site-nav {
    gap: 24px;
  }

  .site-nav a:nth-child(5) {
    display: none;
  }

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

  .hero-copy {
    padding-top: 30px;
  }

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

  .trust-bar {
    grid-template-columns: 1.6fr repeat(2, 1fr);
  }

  .stat:nth-of-type(4),
  .stat:nth-of-type(5) {
    margin-top: 22px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    height: 74px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    height: auto;
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 20px;
    background: #03272a;
    border: 1px solid var(--panel-border);
    border-radius: 22px;
  }

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

  .site-nav a {
    height: auto;
  }

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

  

  .phone {
    width: 150px;
    height: 330px;
  }

  .traffic-card {
    right: 30px;
  }

  .trust-bar {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .trust-intro {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 24px);
    padding: 0 18px;
    border-radius: 24px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  main {
    width: min(94%, 1400px);
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

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

  

  .phone {
    width: 105px;
    height: 235px;
    right: -4px;
    bottom: 28px;
    border-radius: 25px;
  }

  .phone-screen {
    border-radius: 17px;
  }

  .traffic-card {
    width: 205px;
    top: 2px;
    right: 5px;
    padding: 14px;
  }

  .traffic-card strong {
    font-size: 1.45rem;
  }

  .chart {
    width: 80px;
  }

  .speed-card {
    left: 0;
    bottom: 26px;
    transform: scale(0.8);
    transform-origin: left bottom;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .trust-intro {
    flex-direction: column;
    padding-right: 0;
    text-align: center;
  }

  .stat {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(196, 239, 235, 0.22);
  }
}

@media (max-width: 1180px) {

    .laptop {
        width: min(650px, 84%);
        right: 8%;
    }

    .laptop img {
        width: 100%;
        height: auto;
    }
}


/* =========================
   SMALL TABLET
========================= */

@media (max-width: 900px) {

    .laptop {
        width: 84%;
        right: 8%;
    }

    .laptop img {
        width: 100%;
        height: auto;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 620px) {

    .laptop {
        width: 95%;
        right: 2%;
        bottom: 38px;
    }

    .laptop img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}


/* =========================
   VERY SMALL PHONES
========================= */

@media (max-width: 400px) {

    .laptop {
        width: 98%;
        right: 1%;
    }

    .laptop img {
        width: 100%;
        height: auto;
    }
}
