:root {
  --page-bg: #232342;
  --canvas-bg: #f6f8fc;
  --hero-bg: #b9e9fb;
  --hero-bg-2: #a8def3;
  --ink: #121826;
  --text: #2d3443;
  --muted: #606b7e;
  --line: #e4e9f2;
  --accent: #4a43d9;
  --accent-dark: #352fb8;
  --accent-soft: #dfe2ff;
  --mint: #2ac58e;
  --warn: #ff8f5a;
  --shadow-sm: 0 8px 18px rgba(16, 29, 55, 0.08);
  --shadow-md: 0 18px 38px rgba(16, 29, 55, 0.14);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --font-heading: "Sora", "Trebuchet MS", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--canvas-bg);
}

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

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

.landing-body,
.signup-body {
  padding: 0;
}

.page-shell {
  width: 100%;
  margin: 0;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}

.container-wide {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(74, 67, 217, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 14px 24px rgba(74, 67, 217, 0.35);
}

.btn-text {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(18, 24, 38, 0.12);
  color: var(--ink);
}

.hero-wrap {
  position: relative;
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--hero-bg-2) 100%);
  overflow: hidden;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(74, 67, 217, 0.5), rgba(74, 67, 217, 0));
  border-radius: 50%;
  right: -80px;
  bottom: -80px;
}

.hero-wrap::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  border: 2px dashed rgba(18, 24, 38, 0.2);
  left: -40px;
  bottom: 50px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.2), transparent 42%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.22), transparent 35%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.15), transparent 40%);
  pointer-events: none;
}

.site-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(140deg, #4a43d9, #2a7af8);
  box-shadow: 0 8px 16px rgba(74, 67, 217, 0.35);
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
  color: #384154;
}

.nav-links a {
  opacity: 0.92;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 26px 0 42px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.6vw, 4.15rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 580px;
}

.hero-copy p {
  margin: 0;
  max-width: 520px;
  color: #4e5a6b;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #45506a;
  font-weight: 700;
}

.play-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2ac58e;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  box-shadow: 0 8px 14px rgba(42, 197, 142, 0.28);
}

.hero-checks {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #52607a;
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-checks li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #fff 15%, #4a43d9 16%);
  box-shadow: inset 0 0 0 3px rgba(74, 67, 217, 0.24);
}

.hero-art {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.orbit-label {
  position: absolute;
  top: 84px;
  right: 88px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px dashed rgba(74, 67, 217, 0.45);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  color: rgba(74, 67, 217, 0.55);
  display: grid;
  place-items: center;
  text-align: center;
  letter-spacing: 0.09em;
}

.orbit-core {
  position: absolute;
  top: 145px;
  right: 142px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #49516a;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.04);
}

.orbit-core::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 45deg, #ff9a5f, #f2533a, #ff9a5f);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.hand {
  position: absolute;
  width: 156px;
  height: 340px;
  border-radius: 80px;
  transform-origin: bottom center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 26px;
}

.hand-left {
  left: 118px;
  top: 100px;
  background: linear-gradient(180deg, #d9a67d 0%, #ba7b55 80%);
  transform: rotate(-22deg);
}

.hand-right {
  right: 82px;
  top: 152px;
  background: linear-gradient(180deg, #f3cfb0 0%, #c79a78 85%);
  transform: rotate(18deg);
}

.reward-card {
  width: 120px;
  padding: 12px 10px;
  border-radius: 12px;
  background: linear-gradient(145deg, #274ea8 0%, #16326d 100%);
  color: #c8e3ff;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 24px rgba(24, 50, 109, 0.35);
}

.chip {
  position: absolute;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.82);
  color: #334059;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.chip-a {
  left: 58px;
  top: 98px;
}

.chip-b {
  left: 44px;
  top: 170px;
}

.chip-c {
  right: 38px;
  top: 70px;
}

.section-block {
  padding: 74px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: start;
}

.section-copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-copy p {
  margin: 16px 0 0;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.card-index {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #1e2430;
}

.card-swatch {
  width: 44px;
  height: 10px;
  border-radius: 3px;
  margin: 16px 0 22px;
}

.feature-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--ink);
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.data-visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ddf2ff 0%, #f5fbff 100%);
  border: 1px solid #d6e8f4;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.data-visual::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(74, 67, 217, 0.16);
  left: -40px;
  top: 126px;
}

.data-visual::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(74, 67, 217, 0.1);
  right: -58px;
  bottom: -72px;
}

.payment-card {
  position: absolute;
  width: 220px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: #3f4a61;
  font-size: 0.82rem;
}

.payment-card strong {
  display: block;
  font-size: 0.92rem;
  color: #273146;
  margin-top: 4px;
}

.payment-card.first {
  top: 58px;
  left: 48px;
}

.payment-card.second {
  top: 124px;
  left: 92px;
}

.payment-card.third {
  top: 190px;
  left: 28px;
}

.balance-card {
  position: absolute;
  right: 42px;
  bottom: 34px;
  width: 205px;
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.bar-row {
  margin-top: 12px;
  height: 64px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bar-row span {
  display: block;
  width: 16px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #4a43d9, #2b89ff);
}

.bar-row span:nth-child(1) {
  height: 36%;
}

.bar-row span:nth-child(2) {
  height: 58%;
}

.bar-row span:nth-child(3) {
  height: 44%;
}

.bar-row span:nth-child(4) {
  height: 84%;
}

.bar-row span:nth-child(5) {
  height: 68%;
}

.split-copy small {
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #77839a;
  font-weight: 700;
  font-size: 0.72rem;
}

.split-copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.split-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.72;
  max-width: 500px;
}

.blue-band {
  background: #d8f1ff;
}

.blue-band .section-copy p {
  max-width: 620px;
}

.mini-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  border-radius: 12px;
  background: #fff;
  border: 1px solid #c8def0;
  padding: 14px;
  min-height: 132px;
}

.mini-card .swatch {
  width: 28px;
  height: 6px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.mini-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.14rem;
  line-height: 1.2;
  color: var(--ink);
}

.mini-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #384459;
}

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

.testimonial {
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.testimonial p {
  margin: 0;
  color: #39445a;
  line-height: 1.58;
}

.testimonial strong {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
}

.cta-ribbon {
  background: linear-gradient(145deg, #4a43d9, #3452d7 50%, #2b89ff);
  padding: 58px 0;
  color: #fff;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-content h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
}

.site-footer {
  padding: 28px 0 34px;
  border-top: 1px solid rgba(74, 67, 217, 0.16);
  font-size: 0.9rem;
  color: #637089;
}



.fade-up {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-up.delay-1 {
  animation-delay: 0.12s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chip,
.payment-card {
  animation: floatY 5.2s ease-in-out infinite;
}

.chip-b,
.payment-card.second {
  animation-delay: 0.3s;
}

.chip-c,
.payment-card.third {
  animation-delay: 0.62s;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1120px) {
  .hero-main,
  .split-block,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 420px;
  }

  .feature-cards,
  .mini-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .landing-body {
    padding: 0;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
    gap: 16px;
    font-size: 0.85rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 12vw, 3rem);
  }

  .hero-art {
    min-height: 340px;
  }

  .hand {
    width: 112px;
    height: 244px;
  }

  .hand-left {
    left: 80px;
    top: 94px;
  }

  .hand-right {
    right: 42px;
    top: 130px;
  }

  .reward-card {
    width: 94px;
    font-size: 0.74rem;
  }

  .orbit-label {
    width: 132px;
    height: 132px;
    top: 56px;
    right: 68px;
    font-size: 0.68rem;
  }

  .orbit-core {
    top: 92px;
    right: 104px;
    width: 44px;
    height: 44px;
  }

  .chip {
    font-size: 0.72rem;
    padding: 8px 10px;
  }

  .feature-cards,
  .mini-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feature-card h3 {
    font-size: 1.5rem;
  }

  .cta-content {
    align-items: flex-start;
  }
}
