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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #ffffff;
  color: #0f172a;
  line-height: 1.6;
}

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

.container {
  width: min(90%, 1180px);
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.header-container {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.25);
}

.brand h1 {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -1px;
}

.brand p {
  font-size: 14px;
  color: #475569;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 500;
}

.nav a {
  color: #0f172a;
}

.nav a:hover {
  color: #5b21b6;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 36px;
  background:
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.16), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  font-weight: 800;
  color: #5b21b6;
  margin-bottom: 14px;
}

.hero h2 {
  max-width: 560px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero-text {
  max-width: 590px;
  font-size: 18px;
  color: #475569;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6d28d9, #4f46e5);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.35);
}

.hero-visual {
  position: relative;
  height: 500px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 40px 0 20px 40px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(168, 85, 247, 0.16));
  border-radius: 50%;
  filter: blur(2px);
}

.phone-card {
  position: absolute;
  width: 230px;
  height: 430px;
  background: #080812;
  border: 8px solid #111827;
  border-radius: 36px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}

.phone-card-one {
  left: 90px;
  top: 10px;
  transform: rotate(-3deg);
  z-index: 2;
}

.phone-card-two {
  right: 40px;
  top: 55px;
  transform: rotate(5deg);
  background: #f8fafc;
  color: #0f172a;
  padding: 22px 18px;
  z-index: 1;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  padding: 18px 16px 8px;
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.video-preview {
  margin: 10px 14px;
  height: 320px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.82)),
    linear-gradient(135deg, #312e81, #f97316);
  position: relative;
  padding: 16px;
  color: white;
}

.location-pill {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.14);
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
}

.video-title {
  position: absolute;
  bottom: 24px;
  left: 16px;
  font-weight: 700;
}

.score {
  position: absolute;
  right: 12px;
  bottom: 18px;
  text-align: center;
  background: black;
  border-radius: 12px;
  padding: 8px;
  font-size: 10px;
}

.score strong {
  font-size: 24px;
  color: #facc15;
}

.phone-nav {
  color: white;
  display: flex;
  justify-content: space-around;
  font-size: 18px;
}

.wallet-title {
  font-weight: 800;
  margin-bottom: 18px;
}

.wallet-balance {
  background: linear-gradient(135deg, #312e81, #6d28d9);
  color: white;
  border-radius: 18px;
  padding: 24px 18px;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.phone-card-two button {
  width: 100%;
  border: 0;
  padding: 12px;
  border-radius: 12px;
  background: #4f46e5;
  color: white;
  font-weight: 700;
  margin-bottom: 18px;
}

.wallet-list {
  display: grid;
  gap: 12px;
}

.wallet-list p {
  display: flex;
  justify-content: space-between;
  background: white;
  border-radius: 12px;
  padding: 12px;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.features {
  padding: 34px 0 70px;
}

.features .container {
  background: #f8f8ff;
  border-radius: 18px;
  padding: 34px;
  border: 1px solid #eef2ff;
}

.features h3 {
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

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

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px 22px;
  min-height: 200px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.icon {
  width: 42px;
  height: 42px;
  background: #ede9fe;
  color: #5b21b6;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.card h4 {
  font-size: 17px;
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: #475569;
}

.company {
  padding: 10px 0 36px;
}

.company-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 38px;
  align-items: center;
}

.company-logo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
}

.company h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.company p {
  margin-bottom: 10px;
  color: #334155;
}

.company strong,
.company a {
  color: #5b21b6;
  font-weight: 800;
}

footer {
  border-top: 1px solid #e5e7eb;
  padding: 20px 0;
  text-align: center;
  color: #475569;
  font-size: 14px;
}

@media (max-width: 980px) {
  .header-container {
    flex-direction: column;
    padding: 18px 0;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

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

  .hero-visual {
    display: none;
  }

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

  .company-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .company-logo {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .brand h1 {
    font-size: 28px;
  }

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

  .hero {
    padding-top: 48px;
  }

  .hero h2 {
    font-size: 40px;
  }

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

  .features .container {
    padding: 24px;
  }
}


.page {
  padding: 60px 0;
  background: #f8fafc;
}

.page-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 42px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.page-card h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.page-card h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.page-card p {
  margin-bottom: 14px;
  color: #334155;
}

.page-card a,
.page-card strong {
  color: #5b21b6;
  font-weight: 800;
}

.contact-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-box {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
}

.contact-box h3 {
  margin-bottom: 16px;
}

.contact-box p {
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.policy-list {
  margin: 16px 0 24px 22px;
  color: #334155;
}

.policy-list li {
  margin-bottom: 10px;
}