:root {
  color-scheme: light;
  --ink: #1f2433;
  --muted: #6f7484;
  --paper: #f7f8ff;
  --panel: #ffffff;
  --line: #e6e8f4;
  --primary: #5954cb;
  --primary-dark: #403aa8;
  --blue: #2787f5;
  --cyan: #39f8d2;
  --amber: #ffb703;
  --rose: #ff6b8a;
  --shadow: 0 24px 70px rgba(53, 62, 129, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Nunito, "Trebuchet MS", Verdana, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(89, 84, 203, 0.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(57, 248, 210, 0.15), transparent 24%),
    linear-gradient(180deg, #fbfcff 0%, var(--paper) 48%, #ffffff 100%);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(89, 84, 203, 0.1);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.launch-strip,
.proof-band,
.tech-stack {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  border-radius: 12px;
  font-size: 13px;
  box-shadow: 0 10px 22px rgba(89, 84, 203, 0.24);
}

.nav-links {
  gap: 26px;
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--primary);
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 12px 26px rgba(89, 84, 203, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  min-height: calc(100vh - 75px);
  padding: clamp(42px, 6vw, 86px) clamp(18px, 5vw, 72px) 42px;
  align-items: center;
  overflow: hidden;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.72;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 24px;
}

.btn {
  min-width: 176px;
  padding: 0 22px;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(89, 84, 203, 0.26);
}

.btn.secondary {
  color: var(--primary-dark);
  background: #fff;
}

.launch-strip {
  flex-wrap: wrap;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
}

.launch-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(89, 84, 203, 0.14);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.82);
}

.product-stage {
  position: relative;
  min-height: 650px;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 44px 0 34px 58px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(89, 84, 203, 0.18), rgba(57, 248, 210, 0.2));
  filter: blur(1px);
}

.phone-shot {
  position: absolute;
  width: min(255px, 44vw);
  margin: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.phone-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.shot-main {
  top: 8px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
}

.shot-left {
  top: 92px;
  left: 0;
  z-index: 2;
  transform: rotate(-6deg);
}

.shot-right {
  top: 112px;
  right: 0;
  z-index: 1;
  transform: rotate(6deg);
}

.floating-note {
  position: absolute;
  right: 22px;
  bottom: 28px;
  z-index: 4;
  max-width: 250px;
  padding: 18px 20px;
  border: 1px solid rgba(89, 84, 203, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 54px rgba(53, 62, 129, 0.16);
}

.floating-note b {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.floating-note span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 18px 48px rgba(53, 62, 129, 0.08);
}

.proof-band div {
  padding: 26px;
  background: #fff;
}

.proof-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 38px;
  line-height: 1;
}

.proof-band span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 990px;
}

.section-heading p,
.monetize-copy p,
.delivery-grid p,
.tech-copy p,
.faq-list p,
.contact p,
.module-card p,
.flow-step p {
  color: var(--muted);
  line-height: 1.68;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.module-card,
.delivery-grid article,
.flow-step,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(53, 62, 129, 0.07);
}

.module-card {
  padding: 28px;
  min-height: 260px;
}

.icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 16px;
  background: rgba(89, 84, 203, 0.1);
}

.icon::after {
  content: "";
  width: 22px;
  height: 22px;
  border: 3px solid var(--primary);
  border-radius: 50%;
}

.icon.coin {
  background: rgba(255, 183, 3, 0.15);
}

.icon.coin::after {
  border-color: var(--amber);
}

.icon.shield {
  background: rgba(39, 135, 245, 0.12);
}

.icon.shield::after {
  border-color: var(--blue);
}

.icon.chart {
  background: rgba(255, 107, 138, 0.12);
}

.icon.chart::after {
  border-color: var(--rose);
  border-radius: 4px;
}

.icon.game {
  background: rgba(57, 248, 210, 0.16);
}

.icon.game::after {
  border-color: #14b99f;
}

.icon.admin {
  background: rgba(89, 84, 203, 0.16);
}

.monetize {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(57, 248, 210, 0.16), transparent 32%),
    linear-gradient(135deg, #343099 0%, #5954cb 52%, #2787f5 100%);
}

.monetize .section-kicker,
.monetize-copy p,
.flow-step p {
  color: rgba(255, 255, 255, 0.78);
}

.flow-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.flow-step {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.flow-step span {
  display: block;
  margin-bottom: 28px;
  color: var(--cyan);
  font-weight: 900;
}

.flow-step b {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.delivery-grid article {
  padding: 28px;
}

.delivery-grid .featured {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  border-color: transparent;
  transform: translateY(-14px);
}

.delivery-grid .featured p,
.delivery-grid .featured ul {
  color: rgba(255, 255, 255, 0.84);
}

.delivery-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.screenshots {
  background: linear-gradient(180deg, #ffffff 0%, #f2f5ff 100%);
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 18px;
  align-items: start;
}

.screen-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.screen-gallery img:nth-child(even) {
  margin-top: 34px;
}

.tech {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: center;
  background: #ffffff;
}

.tech-stack {
  flex-wrap: wrap;
  gap: 12px;
}

.tech-stack span {
  padding: 14px 16px;
  border: 1px solid rgba(89, 84, 203, 0.16);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(89, 84, 203, 0.07);
  font-weight: 900;
}

.faq-list {
  display: grid;
  max-width: 980px;
  gap: 12px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  padding: 22px 0;
  font-size: 21px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin-bottom: 22px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.7fr);
  gap: 42px;
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(57, 248, 210, 0.18), transparent 26%),
    linear-gradient(135deg, #252061, #5954cb);
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-card {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.contact-item {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.contact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item a {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.15;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 6vw, 84px);
  min-height: calc(100vh - 75px);
  padding: clamp(58px, 8vw, 118px) clamp(18px, 5vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 82% 16%, rgba(57, 248, 210, 0.18), transparent 28%),
    linear-gradient(135deg, #fbfcff 0%, #eef2ff 58%, #e9fbff 100%);
}

.home-hero h1 {
  max-width: 860px;
}

.home-panel {
  position: relative;
  min-height: 430px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(89, 84, 203, 0.2), rgba(39, 135, 245, 0.2)),
    #fff;
  box-shadow: var(--shadow);
}

.home-panel::before,
.home-panel::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 44px rgba(53, 62, 129, 0.1);
}

.home-panel::before {
  width: 56%;
  height: 46%;
  left: 28px;
  top: 36px;
}

.home-panel::after {
  width: 44%;
  height: 38%;
  right: 28px;
  bottom: 38px;
}

.home-panel-card {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(330px, calc(100% - 44px));
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.home-panel-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(89, 84, 203, 0.09);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-panel-card h2 {
  font-size: 34px;
}

.home-panel-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 900;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(53, 62, 129, 0.07);
}

.solution-grid p,
.process-list {
  color: var(--muted);
  line-height: 1.68;
}

.home-process {
  background: #fff;
}

.home-process h2 {
  max-width: 840px;
}

.process-list {
  display: grid;
  max-width: 900px;
  gap: 12px;
  margin-top: 28px;
}

.process-list span {
  padding: 18px 20px;
  border: 1px solid rgba(89, 84, 203, 0.14);
  border-radius: 8px;
  background: rgba(89, 84, 203, 0.06);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .screen-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .home-hero,
  .section-heading,
  .monetize,
  .tech,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .product-stage {
    min-height: 610px;
  }

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

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

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

  .delivery-grid .featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero {
    padding-top: 34px;
  }

  .product-stage {
    min-height: 520px;
  }

  .phone-shot {
    width: 46%;
    border-radius: 18px;
  }

  .phone-shot img {
    border-radius: 18px;
  }

  .shot-main {
    width: 55%;
  }

  .shot-left {
    top: 86px;
    left: 0;
  }

  .shot-right {
    top: 96px;
    right: 0;
  }

  .floating-note {
    left: 18px;
    right: 18px;
    bottom: 0;
    max-width: none;
  }

  .proof-band,
  .module-grid,
  .delivery-grid,
  .flow-board,
  .screen-gallery {
    grid-template-columns: 1fr;
  }

  .screen-gallery img:nth-child(even) {
    margin-top: 0;
  }

  .proof-band div,
  .module-card,
  .delivery-grid article,
  .flow-step {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
  }

  .home-panel {
    min-height: 360px;
  }
}
