@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg-main: #080311;
  --bg-soft: #12081f;
  --bg-card: rgba(17, 16, 34, 0.78);
  --line: rgba(67, 221, 255, 0.28);
  --line-strong: rgba(67, 221, 255, 0.76);
  --text-main: #f6f5ff;
  --text-soft: #aab3d1;
  --accent: #3edfff;
  --accent-2: #8bff6a;
  --accent-3: #2d6cff;
  --shadow: 0 0 28px rgba(49, 160, 255, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(45, 108, 255, 0.14), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(62, 223, 255, 0.1), transparent 22%),
    radial-gradient(circle at 90% 76%, rgba(45, 108, 255, 0.18), transparent 18%),
    linear-gradient(180deg, #06020e 0%, #090313 35%, #07020d 100%);
  color: var(--text-main);
  font-family: "Space Grotesk", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  border: 1px solid rgba(58, 174, 255, 0.14);
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -12rem;
  left: -8rem;
  width: 32rem;
  height: 32rem;
  box-shadow: 0 0 0 4rem rgba(30, 52, 89, 0.03), 0 0 0 8rem rgba(30, 52, 89, 0.02);
}

body::after {
  right: -10rem;
  top: 18rem;
  width: 24rem;
  height: 24rem;
  box-shadow: 0 0 0 3rem rgba(30, 52, 89, 0.03), 0 0 0 6rem rgba(30, 52, 89, 0.02);
}

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

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

button {
  font: inherit;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 1, 8, 0.86);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  width: min(92vw, 420px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 16, 33, 0.98), rgba(8, 6, 19, 0.98));
  box-shadow: var(--shadow);
  text-align: center;
}

.modal-content h2 {
  margin-bottom: 1.2rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1.25rem;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

#yesBtn,
#noBtn {
  min-width: 7rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--bg-main);
}

#yesBtn {
  background: var(--accent);
}

#noBtn {
  background: #ff5d7f;
}

.warn {
  position: relative;
  z-index: 2;
  padding: 0.8rem 1rem;
  text-align: center;
  color: #d2dcff;
  background: rgba(9, 10, 25, 0.92);
  border-bottom: 1px solid rgba(62, 223, 255, 0.18);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.site-header {
  position: relative;
  z-index: 3;
}

.header-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 1.35rem;
}

.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 1rem 1.25rem 1.1rem;
  border-bottom: 1px solid rgba(62, 223, 255, 0.16);
}

.brand-slot {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.brand-slot img,
.logo img {
  width: 94px;
  height: auto;
  object-fit: contain;
}

.nav-bar a,
.hamburger-content a {
  position: relative;
  font-size: 0.92rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}

.nav-bar a::after,
.hamburger-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-bar a:hover,
.nav-bar a.active,
.hamburger-content a:hover {
  color: var(--text-main);
}

.nav-bar a:hover::after,
.nav-bar a.active::after,
.hamburger-content a:hover::after {
  transform: scaleX(1);
}

.mobile-nav-bar {
  display: none;
}

.hamburger {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger .line {
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
  transition: 0.35s ease;
}

.hamburger.active .top {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active .middle {
  opacity: 0;
}

.hamburger.active .bottom {
  transform: translateY(-10px) rotate(-45deg);
}

.hamburger-content {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(9, 8, 20, 0.98);
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.hamburger-content.active {
  display: flex;
}

main,
footer {
  position: relative;
  z-index: 1;
}

.slider,
.signal-band,
.feature-split,
.products,
.desc,
.review-slider,
.payments,
footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.slider {
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
}

.slider-inner {
  display: flex;
  width: 100%;
  align-items: stretch;
  transition: transform 0.8s ease-in-out;
}

.slider-item {
  flex: 0 0 100%;
  min-width: 100%;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(280px, 480px) minmax(320px, 1fr);
  gap: 3.5rem;
  align-items: center;
  min-height: 620px;
  min-width: 0;
}

.hero-visual {
  position: relative;
  padding: 2rem;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(62, 223, 255, 0.12);
}

.hero-visual::before {
  width: 280px;
  height: 280px;
  left: -40px;
  top: 10px;
}

.hero-visual::after {
  width: 360px;
  height: 360px;
  right: -10px;
  bottom: -20px;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(62, 223, 255, 0.2);
  background: rgba(10, 7, 18, 0.94);
  box-shadow: var(--shadow);
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(62, 223, 255, 0.18);
  border-radius: 22px;
  pointer-events: none;
}

.hero-frame::after {
  inset: auto 24px 24px auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border-width: 6px;
  border-color: transparent var(--accent) var(--accent) transparent;
  transform: rotate(45deg);
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.mobile {
  display: none;
}

.slider-copy {
  max-width: 580px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.slider-copy h1,
.slider-copy h2,
.desc-title,
.payments h2,
.section-copy h2,
.footer-col h3 {
  font-family: "Orbitron", sans-serif;
}

.slider-copy h1,
.slider-copy h2 {
  margin-bottom: 1.2rem;
  color: #4ebdff;
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  line-height: 0.96;
}

.slider-copy p,
.section-copy p,
.desc-item p,
.product-item p,
.product-item span,
.rev-user p,
.section-subtitle,
.footer-brand p,
.footer-col p {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-points {
  margin: 1.6rem 0 1.9rem;
  display: grid;
  gap: 0.9rem;
}

.hero-points li {
  list-style: none;
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-main);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 14px rgba(139, 255, 106, 0.38);
}

.hero-actions,
.section-copy a,
.product-item a,
.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions a,
.section-copy a,
.product-item a,
.footer-button,
.desc button {
  min-height: 50px;
  padding: 0.85rem 1.3rem;
  border-radius: 10px;
  border: 1px solid rgba(62, 223, 255, 0.38);
  background: linear-gradient(180deg, #47ddff, #2398ff);
  color: #040816;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 1px rgba(8, 15, 33, 0.4), 0 14px 40px rgba(35, 152, 255, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-actions a:hover,
.section-copy a:hover,
.product-item a:hover,
.footer-button:hover,
.desc button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(62, 223, 255, 0.22);
}

.ghost-link {
  background: transparent !important;
  color: var(--text-main) !important;
}

.slider-arrow {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.slider-arrow div,
.dots .dot {
  border: 1px solid rgba(62, 223, 255, 0.28);
  background: rgba(14, 16, 32, 0.8);
}

.slider-arrow div {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--accent);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.slider-arrow div:hover {
  transform: translateY(-2px);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
}

.dots .active {
  background: var(--accent);
}

.signal-band {
  padding-top: 2rem;
}

.signal-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(14, 11, 26, 0.82);
  box-shadow: var(--shadow);
}

.signal-item strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text-main);
  font-size: 1.05rem;
}

.signal-item span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.feature-split {
  padding: 5.5rem 0 2rem;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: start;
}

.section-copy h2,
.desc-title,
.payments h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: var(--text-main);
}

.section-copy p {
  margin: 1.2rem 0 1.7rem;
}

.section-copy,
.mini-grid,
.mini-card {
  min-width: 0;
}

.mini-grid,
.productc-cont {
  display: grid;
  gap: 1.35rem;
}

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

.mini-card,
.product-item,
.desc-item,
.review-item,
.payment-icons svg,
.footer-grid,
.foot-cont-three {
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.mini-card,
.product-item,
.desc-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.mini-card::before,
.product-item::before,
.desc-item::before,
.review-item::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 26px;
  height: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  opacity: 0.65;
}

.mini-card img,
.product-item img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
}

.mini-card h3,
.product-item h3,
.desc-item h3,
.rev-user h3 {
  font-size: 1.18rem;
  color: var(--text-main);
}

.mini-card {
  padding-bottom: 1rem;
}

.mini-card h3,
.mini-card p {
  padding: 0 1rem;
}

.mini-card h3 {
  margin: 0.95rem 0 0.25rem;
}

.mini-card p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.products {
  padding-top: 5.5rem;
}

.center {
  text-align: center;
}

.products .section-kicker,
.review-slider .section-kicker,
.payments .section-kicker,
.desc .section-kicker {
  display: block;
  text-align: center;
}

.desc-title {
  text-align: center;
}

.section-subtitle {
  max-width: 620px;
  margin: 0.85rem auto 0;
  text-align: center;
}

.productc-cont {
  margin-top: 2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-item {
  padding-bottom: 1.2rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-item:hover,
.mini-card:hover,
.desc-item:hover,
.review-item:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.product-item p,
.product-item h3,
.product-item span,
.product-item a {
  margin-left: 1rem;
  margin-right: 1rem;
}

.product-item p {
  margin-top: 1rem;
  color: var(--accent);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-item h3 {
  margin-top: 0.45rem;
}

.product-item span {
  display: block;
  margin-top: 0.65rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.product-item a {
  width: calc(100% - 2rem);
}

.service-section .product-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-section .product-item a {
  margin-top: auto;
}

.desc {
  padding-top: 5.5rem;
}

.desc-cont {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.desc-item {
  display: none;
  padding: 1.5rem;
  min-height: 210px;
}

.desc-item:first-child,
.desc-item:nth-child(2),
.desc-item:nth-child(3) {
  display: block;
}

.desc.open .desc-item {
  display: block;
}

.desc button {
  margin: 1.5rem auto 0;
  display: block;
}

.faq-section .product-item {
  padding: 1.4rem;
}

.faq-section .product-item p,
.faq-section .product-item h3 {
  margin-left: 0;
  margin-right: 0;
}

.faq-section .product-item p {
  margin-top: 1rem;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text-soft);
}

.review-slider {
  padding-top: 5.5rem;
}

.section-head {
  margin-bottom: 2rem;
}

.review-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

.review-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 100%;
}

.review-img img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.rev-user {
  padding: 1rem 1rem 1.25rem;
}

.review-role {
  margin: 0.5rem 0 0.8rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.review-stars,
.prev-rev,
.next-rev {
  display: none !important;
}

.payments {
  padding-top: 5.5rem;
  padding-bottom: 5rem;
  text-align: center;
}

.payment-icons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.payment-icons svg {
  width: 120px;
  height: 60px;
  border-radius: 14px;
}

footer {
  margin-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.footer-brand img {
  width: 88px;
  margin-bottom: 1rem;
}

.footer-col h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col,
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col a {
  color: var(--text-soft);
}

.footer-col a:hover {
  color: var(--text-main);
}

.foot-cont-three {
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.city {
  width: 100%;
}

.city p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
  cursor: pointer;
}

.city p::after {
  content: "▼";
  font-size: 0.7rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.city p.active::after {
  transform: rotate(180deg);
}

.foot-cont-three a {
  display: none;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.foot-cont-three a:hover {
  color: var(--text-main);
}

.copyright {
  text-align: center;
  padding-top: 1.5rem;
  color: #7f86a5;
}

@media (max-width: 1100px) {
  .hero-stage,
  .feature-split {
    grid-template-columns: 1fr;
  }

  .slider-copy {
    max-width: 100%;
  }

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

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

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

@media (max-width: 767px) {
  .header-shell,
  .slider,
  .signal-band,
  .feature-split,
  .products,
  .desc,
  .review-slider,
  .payments,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .nav-bar {
    display: none;
  }

  .mobile-nav-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(9, 8, 20, 0.92);
  }

  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

  .hero-stage {
    gap: 1.5rem;
    min-height: auto;
  }

  .hero-visual {
    padding: 0.5rem;
  }

  .slider {
    padding-top: 2rem;
  }

  .feature-split {
    gap: 1.5rem;
    overflow-x: clip;
  }

  .section-copy h2 {
    overflow-wrap: anywhere;
  }

  .slider-copy h1,
  .slider-copy h2 {
    font-size: 1.95rem;
    line-height: 1.06;
  }

  .signal-card,
  .productc-cont,
  .desc-cont,
  .review-container,
  .footer-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .product-item a,
  .hero-actions a,
  .hero-actions .ghost-link {
    width: 100%;
  }

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

  .payments {
    padding-bottom: 4rem;
  }

  .payment-icons svg {
    width: calc(50% - 0.5rem);
  }

  .foot-cont-three {
    flex-direction: column;
  }
}
