* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #5b4bff;
  --primary-dark: #4031db;
  --dark: #101226;
  --text: #4c5268;
  --light: #f7f8fc;
  --border: #e7e9f2;
  --white: #ffffff;
  --success: #19a974;
  --shadow: 0 20px 60px rgba(28, 30, 74, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231,233,242,.9);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.12rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #8d55ff);
  color: white;
  box-shadow: 0 10px 24px rgba(91,75,255,.28);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  font-weight: 600;
  color: #35394d;
  font-size: .95rem;
}

nav a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 11px 18px;
  color: white !important;
  background: var(--primary);
  border-radius: 10px;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  cursor: pointer;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(123, 87, 255, .18), transparent 26%),
    radial-gradient(circle at 10% 80%, rgba(48, 197, 255, .15), transparent 24%),
    linear-gradient(180deg, #fbfbff 0%, #ffffff 100%);
  padding: 92px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin-bottom: 24px;
}

.hero-copy > p {
  max-width: 670px;
  color: var(--text);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 26px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 12px;
  font-weight: 700;
  transition: .2s ease;
}

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

.btn.primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 30px rgba(91,75,255,.25);
}

.btn.primary:hover {
  background: var(--primary-dark);
}

.btn.secondary {
  border: 1px solid var(--border);
  background: white;
}

.btn.white {
  background: white;
  color: var(--primary-dark);
  white-space: nowrap;
}

.btn.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #35394d;
  font-size: .9rem;
  font-weight: 600;
}

.trust-row span::first-letter {
  color: var(--success);
}

.hero-card {
  display: flex;
  justify-content: center;
}

.phone {
  width: 320px;
  padding: 12px;
  border-radius: 42px;
  background: #17182a;
  box-shadow: 0 35px 80px rgba(37, 30, 95, .28);
  transform: rotate(3deg);
}

.phone-top {
  width: 115px;
  height: 24px;
  margin: 0 auto -12px;
  position: relative;
  z-index: 2;
  border-radius: 0 0 14px 14px;
  background: #17182a;
}

.screen {
  min-height: 610px;
  padding: 78px 22px 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,246,255,.96)),
    linear-gradient(135deg, #efeaff, #ffffff);
}

.app-badge {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 8px;
  background: #edeaff;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
}

.screen h3 {
  font-size: 1.75rem;
  line-height: 1.15;
  margin: 20px 0 27px;
}

.mock-card {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
  padding: 16px;
  border: 1px solid #eceefa;
  border-radius: 14px;
  background: white;
  box-shadow: 0 10px 22px rgba(42,44,87,.06);
  font-size: .83rem;
}

.mock-card strong {
  color: var(--success);
}

.screen button {
  width: 100%;
  margin-top: 22px;
  padding: 15px;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  font-weight: 800;
}

.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 26px 20px;
  text-align: center;
}

.stats-grid div + div {
  border-left: 1px solid var(--border);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  font-size: 1.2rem;
}

.stats-grid span {
  color: var(--text);
  font-size: .88rem;
}

.section {
  padding: 95px 0;
}

.section.alt {
  background: var(--light);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  margin-bottom: 15px;
}

.section-heading p {
  color: var(--text);
}

.cards {
  display: grid;
  gap: 22px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  transition: .2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
  border-radius: 14px;
  background: #f0eeff;
  font-size: 1.45rem;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.card p {
  color: var(--text);
  font-size: .94rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  padding: 28px 24px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--border);
}

.step > span {
  display: inline-block;
  margin-bottom: 45px;
  color: var(--primary);
  font-size: .84rem;
  font-weight: 800;
}

.step h3 {
  margin-bottom: 9px;
  font-size: 1.05rem;
}

.step p {
  color: var(--text);
  font-size: .9rem;
}

.cards.pricing {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white;
}

.price-card.featured {
  border: 2px solid var(--primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.popular {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}

.price {
  margin: 14px 0 22px;
  font-size: 1.75rem;
  font-weight: 800;
}

.price-card ul {
  list-style: none;
  margin-bottom: 28px;
}

.price-card li {
  padding: 9px 0;
  color: var(--text);
  border-bottom: 1px dashed #eceef5;
  font-size: .93rem;
}

.price-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--success);
  font-weight: 800;
}

.faq-wrap {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
}

.faq-list details {
  margin-bottom: 14px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  padding-top: 13px;
  color: var(--text);
  font-size: .94rem;
}

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

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 48px;
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,.18), transparent 22%),
    linear-gradient(135deg, #4c3ee7, #7c4df3);
  box-shadow: 0 25px 60px rgba(76,62,231,.25);
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 10px;
}

.cta-box p {
  max-width: 700px;
  color: rgba(255,255,255,.82);
}

.eyebrow.light {
  color: #dcd8ff;
}

footer {
  padding: 70px 0 25px;
  background: #0e1020;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid p,
.footer-grid a {
  color: #aeb2c4;
  font-size: .9rem;
}

.footer-grid h4 {
  margin-bottom: 15px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #8d92a7;
  font-size: .82rem;
}

.disclaimer {
  text-align: right;
}

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .cards.three,
  .cards.pricing,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }

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

  .stats-grid div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .stats-grid div:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .menu-btn {
    display: block;
  }

  nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    box-shadow: var(--shadow);
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 12px;
  }

  .hero {
    padding-top: 70px;
  }

  .phone {
    width: min(320px, 90vw);
  }

  .cards.three,
  .cards.pricing,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 75px 0;
  }

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

  .disclaimer {
    text-align: left;
  }
}

/* ================= READY LIVE APPS ================= */

.dfs-ready-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, .18), transparent 31%),
    radial-gradient(circle at 90% 92%, rgba(250, 204, 21, .10), transparent 30%),
    #0f172a;
}

.dfs-ready-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

.dfs-ready-section .container {
  position: relative;
  z-index: 1;
}

.dfs-ready-heading {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.dfs-ready-kicker {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 7px 13px;
  border: 1px solid rgba(250,204,21,.28);
  border-radius: 999px;
  color: #facc15;
  background: rgba(250,204,21,.08);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.dfs-ready-heading h2 {
  margin: 0 0 13px;
  color: #fff;
  font-size: clamp(2.15rem, 5vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.dfs-ready-heading p {
  color: #a8b2c7;
}

.dfs-ready-summary {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.dfs-ready-count {
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(255,255,255,.05);
  font-size: .85rem;
}

.dfs-ready-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.dfs-app-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 15px;
  background: #172033;
  box-shadow: 0 22px 52px rgba(0,0,0,.23);
  transition: transform .22s ease, border-color .22s ease;
}

.dfs-app-card:hover {
  transform: translateY(-5px);
  border-color: rgba(250,204,21,.34);
}

.dfs-app-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb, #111827);
}

.dfs-app-image::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(15,23,42,.86));
}

.dfs-app-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.dfs-app-card:hover .dfs-app-image img {
  transform: scale(1.045);
}

.dfs-app-image.no-image::before {
  content: "🚀";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3.1rem;
}

.dfs-app-live-badge,
.dfs-app-age-tag,
.dfs-app-price-tag {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 800;
  backdrop-filter: blur(9px);
}

.dfs-app-live-badge {
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  color: #fff;
  background: rgba(15,23,42,.86);
  font-size: .67rem;
}

.dfs-app-live-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.18);
}

.dfs-app-age-tag {
  right: 12px;
  top: 12px;
  padding: 6px 9px;
  color: #e2e8f0;
  background: rgba(15,23,42,.86);
  font-size: .65rem;
}

.dfs-app-price-tag {
  left: 12px;
  bottom: 12px;
  padding: 7px 11px;
  color: #111827;
  background: #facc15;
  font-size: .78rem;
  box-shadow: 0 8px 20px rgba(250,204,21,.22);
}

.dfs-app-content {
  padding: 18px;
}

.dfs-app-content h3 {
  overflow: hidden;
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dfs-app-content > p {
  min-height: 62px;
  margin: 0 0 16px;
  color: #94a3b8;
  font-size: .82rem;
  line-height: 1.55;
}

.dfs-app-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dfs-app-actions a,
.dfs-app-actions span {
  min-height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 800;
  text-align: center;
}

.dfs-play-btn {
  border: 1px solid rgba(255,255,255,.12);
  color: #e2e8f0;
  background: rgba(255,255,255,.06);
}

.dfs-play-btn:hover {
  color: #fff;
  background: rgba(255,255,255,.11);
}

.dfs-play-btn.disabled {
  opacity: .5;
}

.dfs-buy-btn {
  color: #111827;
  background: #facc15;
  box-shadow: 0 10px 22px rgba(250,204,21,.20);
}

.dfs-buy-btn:hover {
  background: #fde047;
  transform: translateY(-1px);
}

.dfs-ready-empty {
  grid-column: 1 / -1;
  padding: 50px 20px;
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 14px;
  color: #94a3b8;
  text-align: center;
}

.dfs-ready-empty strong,
.dfs-ready-empty span {
  display: block;
}

@media (max-width: 1050px) {
  .dfs-ready-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 520px) {
  .dfs-ready-section {
    padding: 72px 0;
  }

  .dfs-ready-grid {
    grid-template-columns: 1fr;
  }

  .dfs-app-image {
    height: 215px;
  }
}
