:root {
  --color-bg: #050b12;
  --color-surface: #0b1520;
  --color-surface-soft: #101c2a;
  --color-text: #f8fafc;
  --color-muted: #a7b0be;
  --color-border: rgba(29, 237, 232, 0.18);
  --color-accent: #1dede8;
  --color-accent-soft: rgba(29, 237, 232, 0.12);
  --color-accent-glow: rgba(29, 237, 232, 0.35);
  --radius: 22px;
  --shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.45;
  overflow-x: hidden;
}

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

.shell {
  width: min(1160px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.section {
  padding: 4.6rem 0;
  position: relative;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-gradient {
  position: absolute;
  inset: -14% -16%;
  background:
    radial-gradient(circle at 18% 24%, rgba(29, 237, 232, 0.2), transparent 40%),
    radial-gradient(circle at 84% 20%, rgba(29, 237, 232, 0.12), transparent 36%),
    radial-gradient(circle at 58% 88%, rgba(29, 237, 232, 0.1), transparent 42%),
    linear-gradient(162deg, #02060b 0%, #050b12 44%, #081320 100%);
  animation: gradientShift 14s ease-in-out infinite alternate;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 237, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 237, 232, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.84), transparent 90%);
  opacity: 0.34;
}

.bg-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 37%, rgba(29, 237, 232, 0.18) 50%, transparent 64%);
  transform: translateX(-100%);
  animation: shimmer 12s linear infinite;
}

.bg-beam {
  position: absolute;
  width: 40vw;
  height: 80vh;
  filter: blur(52px);
  opacity: 0.4;
}

.beam-left {
  left: -12vw;
  top: 4vh;
  background: linear-gradient(120deg, rgba(29, 237, 232, 0.26), transparent 62%);
  transform: rotate(-14deg);
}

.beam-right {
  right: -10vw;
  top: 28vh;
  background: linear-gradient(220deg, rgba(29, 237, 232, 0.22), transparent 60%);
  transform: rotate(14deg);
}

.cursor-halo {
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 237, 232, 0.26), rgba(29, 237, 232, 0.08), transparent 70%);
  filter: blur(12px);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 200ms ease;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 25;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(5, 11, 18, 0.95), rgba(5, 11, 18, 0.66));
  border-bottom: 1px solid var(--color-border);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--color-border);
  box-shadow: 0 0 18px rgba(29, 237, 232, 0.22);
}

.brand-text {
  letter-spacing: 0.01em;
}

.menu-toggle {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.16rem;
}

.nav-links > a {
  color: #d7e2f0;
  font-size: 0.94rem;
  position: relative;
}

.nav-links > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.42rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1.2rem;
  font-size: 0.94rem;
  font-weight: 650;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease;
}

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

.btn-solid {
  background: linear-gradient(120deg, rgba(29, 237, 232, 0.42), rgba(29, 237, 232, 0.26));
  color: #f5feff;
  border-color: rgba(29, 237, 232, 0.52);
  box-shadow: 0 10px 24px rgba(29, 237, 232, 0.17);
}

.btn-solid:hover {
  background: linear-gradient(120deg, rgba(29, 237, 232, 0.52), rgba(29, 237, 232, 0.32));
  box-shadow: 0 14px 30px rgba(29, 237, 232, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.btn-outline {
  border-color: rgba(29, 237, 232, 0.42);
  color: var(--color-text);
  background: rgba(9, 16, 25, 0.5);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(29, 237, 232, 0.5), 0 10px 20px rgba(5, 22, 28, 0.6);
}

.hero {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(520px, 72vw);
  height: min(520px, 72vw);
  right: 6%;
  top: 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 237, 232, 0.22), rgba(29, 237, 232, 0.08) 44%, transparent 72%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8cadc;
}

.hero h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4.3vw, 4rem);
  line-height: 1.04;
  max-width: 18ch;
}

.sub {
  margin: 1rem 0 0;
  color: var(--color-muted);
  max-width: 64ch;
}

.hero-cta {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.status-strip {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.status-chip {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: #d7fefd;
  padding: 0.42rem 0.68rem;
  font-size: 0.8rem;
}

.glass {
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(14, 24, 36, 0.72), rgba(8, 15, 24, 0.72));
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.lift {
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.lift:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 237, 232, 0.42);
  box-shadow: 0 25px 54px rgba(0, 0, 0, 0.5);
}

.hero-ui {
  padding: 1rem;
}

.hero-ui-top {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-ui-top p {
  margin: 0;
  font-size: 0.9rem;
  color: #d5e1ef;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0 rgba(29, 237, 232, 0.65);
  animation: pulse 2.2s ease-in-out infinite;
}

.soon-badge {
  margin-left: auto;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.3rem 0.56rem;
  font-size: 0.74rem;
  color: #d0f7f6;
  background: var(--color-accent-soft);
}

.hero-question {
  margin: 1rem 0 0.8rem;
  font-size: 1rem;
  color: #cad9ea;
}

.pack-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.34rem;
  color: #d6e8f8;
  font-size: 0.9rem;
}

.pack-list li::marker,
.starter-features li::marker,
.pack-features li::marker {
  color: var(--color-accent);
}

.hero-actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(29, 237, 232, 0.24);
  padding: 0.45rem 0.72rem;
  font-size: 0.78rem;
  color: #cde3f8;
  background: rgba(255, 255, 255, 0.03);
}

.mini-btn-accent {
  background: var(--color-accent-soft);
}

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

.section-head h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3.3vw, 2.7rem);
}

.section-head p {
  margin: 0.76rem 0 0;
  max-width: 62ch;
  color: var(--color-muted);
}

.compact-head {
  margin-bottom: 1rem;
}

.signup-wrap {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 0.9rem;
  padding: 1rem;
}

.signup-copy {
  padding: 0.9rem 1rem;
}

.signup-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.signup-copy p {
  margin: 0.72rem 0 0;
  color: var(--color-muted);
}

.inline-note {
  margin-top: 0.7rem;
  color: #d2e2f5;
  font-size: 0.92rem;
}

.starter-features {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: #d4e4f6;
  font-size: 0.92rem;
}

.signup-form {
  margin-top: 1.05rem;
  display: flex;
  gap: 0.46rem;
}

.signup-form input {
  flex: 1;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(29, 237, 232, 0.34);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  padding: 0 0.95rem;
  outline: none;
}

.signup-form input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(29, 237, 232, 0.14);
}

.form-message {
  min-height: 1.2rem;
  margin: 0.65rem 0 0;
  color: #cdfdfa;
  font-size: 0.86rem;
}

.form-message.success {
  color: #c4fff7;
}

.form-message.error {
  color: #ffd0d0;
}

.signup-copy small {
  display: inline-block;
  margin-top: 0.72rem;
  color: #afbbcf;
}

.signup-side {
  display: grid;
  place-items: center;
  border: 1px solid rgba(29, 237, 232, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 18%, rgba(29, 237, 232, 0.22), transparent 48%),
    linear-gradient(155deg, rgba(9, 16, 27, 0.92), rgba(12, 21, 34, 0.82));
  padding: 1rem;
}

.signup-side img {
  width: min(260px, 74%);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 0 34px rgba(29, 237, 232, 0.25);
}

.signup-chip {
  margin-top: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  color: #d5fbfa;
  background: rgba(29, 237, 232, 0.12);
  font-size: 0.8rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.shop-card {
  overflow: hidden;
  position: relative;
}

.pack-badge {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  border: 1px solid rgba(29, 237, 232, 0.38);
  border-radius: 999px;
  padding: 0.22rem 0.52rem;
  font-size: 0.73rem;
  color: #d5fcfb;
  background: rgba(9, 28, 35, 0.8);
}

.concept-visual {
  height: 160px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--color-border);
  background:
    radial-gradient(circle at 30% 30%, rgba(29, 237, 232, 0.24), transparent 42%),
    linear-gradient(145deg, rgba(6, 14, 22, 0.95), rgba(9, 18, 29, 0.95));
}

.concept-visual span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29, 237, 232, 0.38);
  color: var(--color-accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.shop-content {
  padding: 0.95rem;
}

.shop-content h3 {
  margin: 0;
  font-size: 1.04rem;
}

.pack-subtitle {
  margin-top: 0.5rem;
  color: #e6f5ff;
  font-size: 0.9rem;
}

.pack-features {
  margin: 0.7rem 0 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.26rem;
  color: #b7c9de;
  font-size: 0.85rem;
}

.pack-card-cta {
  margin-top: 0.9rem;
  width: 100%;
  text-align: center;
}

.section-note {
  margin: 0.95rem 0 0;
  color: #b8c7db;
  font-size: 0.9rem;
}

.leaderboard-cta {
  margin-bottom: 0.9rem;
}

.leaderboard-card {
  padding: 1rem;
}

.leaderboard-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.head-note {
  color: #a9b5c8;
  font-size: 0.84rem;
}

.board-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 1fr 1fr;
  gap: 0.56rem;
  align-items: center;
  padding: 0.62rem 0.45rem;
  border-radius: 12px;
}

.board-grid-head {
  border: 1px solid rgba(29, 237, 232, 0.22);
  color: #d9ecff;
  font-size: 0.84rem;
}

.board-grid-row {
  margin-top: 0.44rem;
  border: 1px solid rgba(29, 237, 232, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.skeleton-line {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 237, 232, 0.11), rgba(29, 237, 232, 0.22), rgba(29, 237, 232, 0.11));
  background-size: 220% 100%;
  animation: skeleton 2s linear infinite;
}

.about-card {
  padding: 1rem;
  display: grid;
  gap: 1.15rem;
}

.about-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.about-card p {
  margin: 0.7rem 0 0;
  color: var(--color-muted);
  max-width: 70ch;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
}

.trust-item {
  border: 1px solid rgba(29, 237, 232, 0.14);
  border-radius: 16px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 220ms ease, background-color 220ms ease;
}

.trust-item:hover {
  border-color: rgba(29, 237, 232, 0.4);
  background: rgba(29, 237, 232, 0.05);
}

.trust-item h3 {
  margin: 0;
}

.trust-item p {
  margin-top: 0.48rem;
  font-size: 0.9rem;
}

.footer {
  padding: 1.5rem 0 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem;
}

.footer-brand p {
  color: var(--color-muted);
  margin: 0.75rem 0;
}

.footer-brand .brand {
  align-items: flex-start;
}

.footer-brand .brand-logo {
  transform: translateY(7px);
}

.social-heading {
  margin: 0.7rem 0 0;
  color: #eaf6ff;
  font-size: 0.9rem;
  font-weight: 650;
}

.social-links {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.62rem;
  align-items: center;
  justify-content: flex-start;
}

.social-icon-only-link {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: transform 200ms ease, opacity 200ms ease;
}

.social-icon-only-link:hover {
  transform: translateY(-1px) scale(1.06);
  opacity: 0.95;
}

.social-icon-only {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.social-icon-img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(87%) sepia(33%) saturate(640%) hue-rotate(122deg) brightness(102%) contrast(96%);
}

.footer-grid h4 {
  margin: 0 0 0.62rem;
  color: #e6f3ff;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.38rem;
  color: #b2c0d5;
  font-size: 0.91rem;
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(29, 237, 232, 0.32);
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  color: #dcfafd;
  background: rgba(29, 237, 232, 0.12);
}

.footer-cta-link:hover {
  border-color: rgba(29, 237, 232, 0.6);
  background: rgba(29, 237, 232, 0.2);
}

.footer-bottom {
  margin-top: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  color: #95a6be;
  font-size: 0.83rem;
}

.footer-mini-links {
  display: flex;
  gap: 0.72rem;
}

.footer-mini-links a {
  color: #adbed5;
}

.proximity {
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(680px) rotateX(var(--rx)) rotateY(var(--ry));
}

.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;
}

@keyframes gradientShift {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-0.9%, 1.1%); }
}

@keyframes shimmer {
  to { transform: translateX(112%); }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(29, 237, 232, 0.5);
  }
  80% {
    box-shadow: 0 0 0 10px rgba(29, 237, 232, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(29, 237, 232, 0);
  }
}

@keyframes skeleton {
  to {
    background-position: -220% 0;
  }
}

@media (max-width: 1080px) {
  .hero,
  .signup-wrap {
    grid-template-columns: 1fr;
  }

  .hero::before {
    right: 50%;
    transform: translateX(50%);
    width: min(420px, 86vw);
    height: min(420px, 86vw);
    top: 2%;
  }

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

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

@media (max-width: 760px) {
  .shell {
    width: min(1160px, calc(100% - 1.25rem));
  }

  .section {
    padding: 3.4rem 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #e9f9ff;
    padding: 0.44rem 0.72rem;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.58rem;
    padding: 0.84rem 0.92rem;
    background: rgba(5, 11, 18, 0.98);
    border-bottom: 1px solid var(--color-border);
  }

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

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

  .hero::before {
    width: min(360px, 94vw);
    height: min(360px, 94vw);
    top: -6%;
    opacity: 0.82;
  }

  .hero-copy .sub {
    margin-top: 0.82rem;
  }

  .hero-cta {
    gap: 0.58rem;
    margin-top: 1.05rem;
  }

  .hero-cta .btn,
  .signup-form .btn,
  .pack-card-cta {
    width: 100%;
  }

  .status-strip {
    margin-top: 0.86rem;
    gap: 0.44rem;
  }

  .status-chip {
    font-size: 0.75rem;
    padding: 0.36rem 0.58rem;
  }

  .hero-ui {
    padding: 0.88rem;
  }

  .hero-question {
    margin: 0.76rem 0 0.65rem;
    font-size: 0.98rem;
  }

  .shop-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .signup-form {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
