:root {
  --bg: #090909;
  --cyan: #019bfd;
  --pink: #ff4fbf;
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.66);
  --soft: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 34px;
  --shell: min(1160px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(1, 155, 253, 0.18) 0 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.ambient {
  position: absolute;
  inset: 0;
  z-index: -3;
  height: 3700px;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  width: clamp(300px, 36vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(82px);
  opacity: 0.34;
  transform: translate3d(0, 0, 0);
  animation: drift 9s cubic-bezier(0.55, 0, 0.45, 1) infinite alternate;
}

.orb-cyan {
  background: var(--cyan);
}

.orb-pink {
  background: var(--pink);
}

.orb-one {
  top: 90px;
  right: -140px;
  animation-duration: 8s;
}

.orb-two {
  top: 460px;
  left: -180px;
  animation-duration: 10s;
}

.orb-three {
  top: 1240px;
  right: 4%;
  opacity: 0.27;
  animation-duration: 8.5s;
}

.orb-four {
  top: 1740px;
  left: 10%;
  opacity: 0.25;
  animation-duration: 11s;
}

.orb-five {
  top: 2380px;
  left: -130px;
  opacity: 0.23;
  animation-duration: 9.5s;
}

.orb-six {
  top: 2920px;
  right: -110px;
  opacity: 0.27;
  animation-duration: 10.5s;
}

@keyframes drift {
  0% {
    transform: translate3d(-36px, -42px, 0) scale(0.92);
  }

  45% {
    transform: translate3d(42px, -12px, 0) scale(1.08);
  }

  100% {
    transform: translate3d(12px, 56px, 0) scale(0.98);
  }
}

.site-header,
.glass-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(14, 14, 16, 0.58);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: var(--shell);
  margin: 18px auto 0;
  padding: 12px 14px 12px 18px;
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 760;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
  border-radius: 14px;
  color: var(--white);
  font-size: 12px;
  font-weight: 820;
  background:
    linear-gradient(135deg, rgba(1, 155, 253, 0.98), rgba(255, 79, 191, 0.9));
  box-shadow: 0 12px 28px rgba(1, 155, 253, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.58);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.login-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.login-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-size: 15px;
  font-weight: 720;
  background:
    linear-gradient(135deg, rgba(1, 155, 253, 1), rgba(255, 79, 191, 0.92));
  box-shadow:
    0 20px 46px rgba(1, 155, 253, 0.2),
    0 14px 42px rgba(255, 79, 191, 0.13);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 26px 58px rgba(1, 155, 253, 0.25),
    0 18px 50px rgba(255, 79, 191, 0.17);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

.menu-toggle span + span {
  margin-top: 5px;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.72fr);
  align-items: center;
  gap: 74px;
  min-height: 760px;
  padding: 98px 0 100px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(1, 155, 253, 0.94);
  font-size: 14px;
  font-weight: 760;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(62px, 9vw, 116px);
  line-height: 0.92;
  font-weight: 840;
  letter-spacing: 0;
}

.hero-slogan {
  max-width: 660px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(23px, 3vw, 36px);
  line-height: 1.12;
  font-weight: 740;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-stack {
  position: relative;
  min-height: 520px;
}

.hero-stack::before {
  content: "";
  position: absolute;
  inset: 50px 26px 40px 22px;
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(1, 155, 253, 0.18), rgba(255, 79, 191, 0.12));
  filter: blur(8px);
}

.hero-card {
  position: absolute;
  width: min(330px, 88%);
  min-height: 210px;
  padding: 26px;
  border-radius: var(--radius);
  cursor: pointer;
  transform: var(--card-transform);
  transform-origin: center;
  transition:
    transform 0.42s cubic-bezier(0.2, 0.9, 0.18, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    opacity 0.35s ease;
  will-change: transform;
}

.hero-stack:hover .hero-card {
  opacity: 0.8;
}

.hero-card:hover,
.hero-card.is-active,
.hero-card:focus-within {
  z-index: 8;
  opacity: 1 !important;
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07)),
    rgba(20, 20, 24, 0.72);
  box-shadow:
    0 34px 105px rgba(0, 0, 0, 0.52),
    0 20px 52px rgba(1, 155, 253, 0.16),
    0 16px 44px rgba(255, 79, 191, 0.12);
}

.hero-card h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.16;
}

.hero-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.hero-card-one {
  top: 18px;
  left: 26px;
  z-index: 3;
  --card-transform: rotate(-2deg);
}

.hero-card-one:hover,
.hero-card-one.is-active,
.hero-card-one:focus-within {
  transform: translate3d(-42px, -36px, 0) rotate(-5deg) scale(1.06);
}

.hero-card-two {
  top: 160px;
  right: 10px;
  z-index: 4;
  --card-transform: rotate(1.6deg);
}

.hero-card-two:hover,
.hero-card-two.is-active,
.hero-card-two:focus-within {
  transform: translate3d(46px, -8px, 0) rotate(4deg) scale(1.07);
}

.hero-card-three {
  right: 78px;
  bottom: 8px;
  z-index: 2;
  --card-transform: rotate(-1.2deg);
}

.hero-card-three:hover,
.hero-card-three.is-active,
.hero-card-three:focus-within {
  transform: translate3d(18px, 46px, 0) rotate(-4deg) scale(1.07);
}

.card-icon {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(1, 155, 253, 0.92), rgba(255, 79, 191, 0.76));
  box-shadow: 0 18px 38px rgba(1, 155, 253, 0.2);
}

.check-icon,
.delivery-icon,
.update-icon {
  position: relative;
}

.check-icon::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 13px;
  width: 17px;
  height: 9px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(-45deg);
}

.delivery-icon::before,
.delivery-icon::after,
.update-icon::before,
.update-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--white);
}

.delivery-icon::before {
  top: 10px;
  left: 16px;
  width: 16px;
  height: 25px;
  border-radius: 0;
  background: var(--white);
  clip-path: polygon(54% 0, 100% 0, 68% 39%, 100% 39%, 37% 100%, 48% 56%, 13% 56%);
}

.delivery-icon::after {
  top: 30px;
  left: 12px;
  width: 22px;
  height: 2px;
  opacity: 0.72;
  box-shadow: 0 -8px 0 rgba(255, 255, 255, 0.54);
}

.update-icon::before {
  inset: 13px;
  border: 2px solid var(--white);
  background: transparent;
}

.update-icon::after {
  top: 13px;
  right: 12px;
  width: 9px;
  height: 9px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.card-kicker {
  margin-bottom: 10px;
  color: rgba(255, 79, 191, 0.95) !important;
  font-size: 13px !important;
  font-weight: 760;
}

.content-section {
  padding: 80px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 820;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.tall-card-grid,
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tall-card,
.advantage-card {
  min-height: 390px;
  padding: 34px;
  border-radius: var(--radius);
}

.tall-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tall-card h3,
.advantage-card h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 28px;
  line-height: 1.14;
}

.tall-card p,
.advantage-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.tall-card a {
  align-self: flex-start;
  margin-top: 30px;
  color: var(--white);
  font-weight: 760;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 54px;
  border-radius: 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 780;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.featured-card {
  background:
    linear-gradient(150deg, rgba(1, 155, 253, 0.22), rgba(255, 79, 191, 0.11)),
    rgba(255, 255, 255, 0.07);
}

.advantage-card {
  min-height: 360px;
}

.reviews-section {
  padding: 100px 0;
}

.reviews-section .section-heading {
  margin-bottom: 26px;
}

.reviews-viewport {
  position: relative;
  overflow: hidden;
  padding: 20px 0 32px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: reviews-marquee 42s linear infinite;
}

.reviews-viewport:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviews-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 10px));
  }
}

.review-card {
  flex: 0 0 360px;
  min-height: 184px;
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(13, 13, 16, 0.78);
}

.review-card p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.review-card strong {
  color: var(--white);
  font-size: 14px;
}

.faq-section {
  padding-bottom: 90px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 28px;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 82px;
  padding: 0 28px;
  border: 0;
  color: var(--white);
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.faq-item button span:first-child {
  font-size: 19px;
  font-weight: 740;
}

.faq-plus {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.38s cubic-bezier(0.2, 0.85, 0.2, 1),
    opacity 0.24s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
  opacity: 1;
}

.faq-answer > p {
  margin: 0;
  padding: 0 28px 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer > p {
  padding: 0 28px 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(12, 12, 14, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.85, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-copy.reveal-item {
  transform: translate3d(-34px, 0, 0);
}

.hero-copy.reveal-item.is-visible {
  transform: translate3d(0, 0, 0);
}

.hero-card.reveal-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0) var(--card-transform);
}

.hero-card.reveal-item.is-visible {
  opacity: 1;
  transform: var(--card-transform);
}

.hero-card-one.reveal-item.is-visible:hover,
.hero-card-one.reveal-item.is-active {
  transform: translate3d(-42px, -36px, 0) rotate(-5deg) scale(1.06);
}

.hero-card-two.reveal-item.is-visible:hover,
.hero-card-two.reveal-item.is-active {
  transform: translate3d(46px, -8px, 0) rotate(4deg) scale(1.07);
}

.hero-card-three.reveal-item.is-visible:hover,
.hero-card-three.reveal-item.is-active {
  transform: translate3d(18px, 46px, 0) rotate(-4deg) scale(1.07);
}

.hero-stack:hover .hero-card.reveal-item.is-visible {
  opacity: 0.78;
}

.hero-stack .hero-card.reveal-item.is-visible:hover,
.hero-stack .hero-card.reveal-item.is-active {
  opacity: 1;
}

.glass-card:not(.hero-card) {
  transform-origin: center;
  transition-property: opacity, transform, box-shadow, border-color, background;
  transition-duration: 0.72s, 0.32s, 0.32s, 0.32s, 0.32s;
  transition-timing-function: ease, cubic-bezier(0.2, 0.9, 0.18, 1), ease, ease, ease;
  will-change: transform;
}

.glass-card:not(.hero-card):hover {
  transform: translate3d(0, -8px, 0) scale(1.025);
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(18, 18, 21, 0.72);
  box-shadow:
    0 36px 96px rgba(0, 0, 0, 0.52),
    0 18px 46px rgba(1, 155, 253, 0.1),
    0 14px 40px rgba(255, 79, 191, 0.08);
  transition-delay: 0ms;
}

.site-footer p {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 450px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    display: none;
    justify-content: stretch;
    border: 1px solid var(--border);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
      rgba(15, 15, 15, 0.84);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .main-nav {
    top: 88px;
    flex-direction: column;
    padding: 16px;
    border-radius: 28px 28px 18px 18px;
  }

  .header-actions {
    top: 252px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 18px 18px 28px 28px;
  }

  body.menu-open .main-nav,
  body.menu-open .header-actions {
    display: flex;
  }

  .main-nav a,
  .login-link,
  .header-actions .button {
    justify-content: center;
    width: 100%;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: 80px 0 70px;
  }

  .hero-stack {
    min-height: 600px;
  }

  .hero-card-one {
    left: 6%;
  }

  .hero-card-two {
    right: 5%;
  }

  .hero-card-three {
    right: 16%;
  }

  .tall-card-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(100% - 24px, 460px);
    --radius: 28px;
  }

  .site-header {
    top: 12px;
    margin-top: 12px;
    padding: 10px 10px 10px 12px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 13px;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(54px, 18vw, 72px);
  }

  .hero-slogan {
    font-size: 24px;
  }

  .hero-text,
  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .hero-stack {
    min-height: 720px;
  }

  .hero-card {
    width: min(340px, 94%);
    min-height: 220px;
  }

  .hero-card-one {
    left: 0;
  }

  .hero-card-two {
    top: 230px;
    right: 0;
  }

  .hero-card-three {
    right: 8px;
    bottom: 20px;
  }

  .content-section,
  .reviews-section {
    padding: 58px 0;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .tall-card,
  .advantage-card {
    min-height: 330px;
    padding: 28px;
  }

  .review-card {
    flex-basis: 300px;
  }

  .faq-item button {
    min-height: 76px;
    padding: 0 22px;
  }

  .faq-item button span:first-child {
    font-size: 17px;
  }

  .faq-item.is-open .faq-answer > p {
    padding: 0 22px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
