* {
  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;
}


.share-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 34px 16px;
  background:
    radial-gradient(circle at 80% 10%, rgba(249, 115, 22, 0.18), transparent 34%),
    radial-gradient(circle at 12% 20%, rgba(109, 40, 217, 0.18), transparent 32%),
    linear-gradient(180deg, #070713 0%, #111827 100%);
}

.share-card {
  width: min(100%, 430px);
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.share-card-error {
  padding: 34px 28px;
  text-align: center;
}

.share-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 14px;
}

.share-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.26);
}

.share-brand-title {
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.7px;
  color: #0f172a;
}

.share-brand-subtitle {
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.share-thumbnail-wrap {
  position: relative;
  margin: 0 18px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #111827, #312e81, #f97316);
  aspect-ratio: 9 / 14;
  max-height: 560px;
}

.share-thumbnail {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.share-thumbnail-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.share-play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font-size: 25px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.share-content {
  padding: 18px 20px 22px;
}

.share-content .eyebrow {
  margin-bottom: 8px;
  color: #f97316;
  font-size: 11px;
  letter-spacing: 1.1px;
}

.share-content h1,
.share-card-error h1 {
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 10px;
  color: #0f172a;
}

.share-description {
  color: #475569;
  font-size: 14px;
  margin-bottom: 12px;
}

.share-creator {
  color: #334155;
  font-size: 14px;
  margin-bottom: 14px;
}

.share-creator strong {
  color: #5b21b6;
  font-weight: 900;
}

.share-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.share-stats span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.share-open-button {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97316, #6d28d9);
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.28);
}

.share-help-text {
  margin-top: 12px;
  color: #64748b;
  font-size: 12px;
  text-align: center;
}

.share-card-error p {
  color: #475569;
  margin: 12px 0 20px;
}

@media (max-width: 480px) {
  .share-page {
    padding: 18px 12px;
    align-items: start;
  }

  .share-card {
    border-radius: 24px;
  }

  .share-thumbnail-wrap {
    position: relative;
    display: block;
  }

  .share-content {
    padding: 16px 16px 20px;
  }

  .share-content h1,
  .share-card-error h1 {
    font-size: 24px;
  }
}