@font-face {
  font-family: "NewYork";
  src: url("assets/fonts/NewYork-Semibold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Variable.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url("assets/fonts/OpenSans-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #030113;
  --bg-soft: #0a0424;
  --surface: rgba(16, 9, 44, 0.75);
  --surface-strong: rgba(23, 15, 57, 0.94);
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --text-muted: #c2b6e4;
  --primary: #8333e3;
  --primary-soft: #b17cff;
  --accent: #2fd6ff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(11, 2, 32, 0.65);
  --container: min(1160px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "OpenSans", "Satoshi", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(131, 51, 227, 0.28), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(47, 214, 255, 0.16), transparent 36%),
    var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.background-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(620px circle at 8% 16%, rgba(125, 53, 230, 0.24), transparent 60%),
    radial-gradient(460px circle at 86% 22%, rgba(53, 102, 255, 0.17), transparent 62%),
    radial-gradient(580px circle at 50% 100%, rgba(131, 51, 227, 0.15), transparent 58%);
}

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

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 3, 22, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 44px rgba(2, 1, 10, 0.5);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 172px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  font-family: "Satoshi", "OpenSans", sans-serif;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.22s ease;
}

.site-nav a:hover {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(31, 17, 72, 0.55);
  color: #fff;
  padding: 8px 14px;
  font-family: "Satoshi", "OpenSans", sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid rgba(165, 115, 255, 0.9);
  font-family: "Satoshi", "OpenSans", sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  background: linear-gradient(135deg, #8030df 0%, #4f26ca 54%, #203cd8 100%);
  box-shadow: 0 18px 34px rgba(93, 53, 201, 0.38);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(109, 69, 232, 0.46);
}

.btn-sm {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.btn-ghost {
  background: rgba(20, 13, 48, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.btn-ghost:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 130px 0 70px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(3, 1, 17, 0.82) 0%, rgba(7, 3, 24, 0.6) 45%, rgba(7, 3, 24, 0.74) 100%),
    radial-gradient(circle at 10% 20%, rgba(123, 70, 255, 0.3), transparent 40%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: end;
}

.hero-copy h1 {
  margin: 0 0 16px;
  max-width: 18ch;
  font-family: "NewYork", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.hero-copy > p {
  margin: 0;
  max-width: 60ch;
  color: rgba(238, 232, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.eyebrow {
  margin: 0 0 12px;
  font-family: "Satoshi", "OpenSans", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--primary-soft);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metrics {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-metrics li {
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(13, 7, 35, 0.7);
  backdrop-filter: blur(5px);
}

.hero-metrics strong {
  display: block;
  font-family: "Satoshi", "OpenSans", sans-serif;
  font-size: 0.96rem;
}

.hero-metrics span {
  display: block;
  margin-top: 4px;
  color: rgba(233, 226, 255, 0.78);
  font-size: 0.88rem;
}

.hero-side {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: min(100%, 480px);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(26, 11, 63, 0.88), rgba(10, 8, 34, 0.88)),
    url("assets/images/onboardingBG.png") center / cover;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin: 0;
  font-family: "NewYork", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.hero-card p {
  margin: 12px 0 0;
  color: var(--text-muted);
}

.chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.84rem;
  color: #f8f4ff;
  background: rgba(131, 51, 227, 0.2);
}

.platform-strip {
  padding: 18px 0 22px;
}

.platform-strip .container {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 18px;
}

.platform-strip p {
  margin: 0;
  text-align: center;
  font-family: "Satoshi", "OpenSans", sans-serif;
  font-size: 0.86rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platforms {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.platforms img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  padding: 86px 0;
}

.section-head h2 {
  margin: 0;
  max-width: 16ch;
  font-family: "NewYork", serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.1;
}

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

.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: 0 14px 30px rgba(6, 2, 20, 0.45);
}

.feature-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
}

.feature-card h3 {
  margin: 14px 16px 8px;
  font-family: "Satoshi", "OpenSans", sans-serif;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0 16px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.split-copy h2 {
  margin: 0;
  max-width: 18ch;
  font-family: "NewYork", serif;
  font-size: clamp(1.75rem, 3.4vw, 2.85rem);
  line-height: 1.14;
}

.split-copy p {
  margin: 12px 0 0;
  max-width: 56ch;
  color: var(--text-muted);
}

.benefits {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.benefits li {
  position: relative;
  padding-left: 22px;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a54ff, #3ed7ff);
  box-shadow: 0 0 15px rgba(139, 84, 255, 0.72);
}

.media-showcase {
  position: relative;
  min-height: 560px;
}

.main-media {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid var(--border);
}

.floating-card {
  position: absolute;
  width: 40%;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 24px rgba(2, 1, 14, 0.42);
}

.floating-top {
  top: -24px;
  right: -14px;
}

.floating-bottom {
  left: -14px;
  bottom: -28px;
}

.timeline {
  background: linear-gradient(180deg, rgba(16, 9, 44, 0.28), rgba(3, 1, 17, 0));
}

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

.step {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(15, 8, 40, 0.82);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-family: "Satoshi", "OpenSans", sans-serif;
  background: rgba(131, 51, 227, 0.25);
  border: 1px solid rgba(172, 127, 255, 0.5);
}

.step h3 {
  margin: 14px 0 8px;
  font-family: "Satoshi", "OpenSans", sans-serif;
}

.step p {
  margin: 0;
  color: var(--text-muted);
}

.testimonials {
  padding-top: 30px;
}

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

.testimonial {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(17, 11, 46, 0.8);
}

.testimonial img {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  object-fit: cover;
}

.testimonial p {
  margin: 14px 0 8px;
  color: var(--text-muted);
}

.testimonial h3 {
  margin: 0;
  font-family: "Satoshi", "OpenSans", sans-serif;
}

.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(17, 10, 45, 0.82);
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-family: "Satoshi", "OpenSans", sans-serif;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--text-muted);
}

.final-cta {
  padding-top: 34px;
}

.cta-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(189, 162, 255, 0.45);
  background:
    linear-gradient(135deg, rgba(114, 48, 205, 0.34), rgba(23, 18, 67, 0.95)),
    url("assets/images/background.png") center / cover;
  padding: clamp(28px, 5vw, 50px);
  box-shadow: 0 22px 46px rgba(15, 8, 38, 0.58);
}

.cta-card h2 {
  margin: 0;
  font-family: "NewYork", serif;
  font-size: clamp(1.7rem, 3.3vw, 2.8rem);
  line-height: 1.1;
}

.cta-card p {
  margin: 12px 0 0;
  max-width: 68ch;
  color: rgba(236, 231, 251, 0.88);
}

.site-footer {
  margin-top: 30px;
  padding: 28px 24px 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
  color: rgba(221, 212, 247, 0.75);
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  color: rgba(241, 236, 255, 0.8);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.72, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-side {
    justify-content: flex-start;
  }

  .split-layout,
  .steps,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .media-showcase {
    min-height: 460px;
  }

  .main-media {
    height: 460px;
  }

  .floating-top {
    right: 6px;
    top: -12px;
  }

  .floating-bottom {
    left: 6px;
    bottom: -14px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(1160px, calc(100% - 30px));
  }

  .site-header {
    top: 10px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .brand img {
    width: 144px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    flex-direction: column;
    align-items: stretch;
    min-width: 210px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(8, 4, 24, 0.96);
    box-shadow: 0 20px 36px rgba(1, 1, 8, 0.48);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-nav a {
    padding: 8px 10px;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  body.menu-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero {
    min-height: 92svh;
    padding-top: 112px;
    padding-bottom: 46px;
  }

  .hero-copy h1 {
    max-width: none;
  }

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

  .section {
    padding: 68px 0;
  }
}

@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card img,
  .testimonial img {
    height: 190px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-card {
    width: 45%;
  }
}
