:root {
  --primary: #ef2f72;
  --primary-dark: #c81f5b;
  --secondary: #7d3cff;
  --ink: #201b2c;
  --muted: #6f687b;
  --surface: #ffffff;
  --soft: #fff5f8;
  --line: #eadfe5;
  --dark: #17111f;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(62, 22, 49, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(234,223,229,.8);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 24px rgba(239,47,114,.28);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .94rem;
  font-weight: 600;
}
.main-nav a:hover { color: var(--primary); }
.nav-cta {
  padding: 11px 18px;
  color: #fff !important;
  border-radius: 12px;
  background: var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}
.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 96px;
  background:
    radial-gradient(circle at 0% 0%, rgba(239,47,114,.12), transparent 32%),
    radial-gradient(circle at 100% 12%, rgba(125,60,255,.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff8fb 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}
.eyebrow, .section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.hero h1, .section h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.12;
}
.hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5.8vw, 5.25rem);
}
.hero-copy > p {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 14px;
  font-weight: 700;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ff5b95);
  box-shadow: 0 14px 35px rgba(239,47,114,.28);
}
.button-secondary {
  background: #fff;
  border: 1px solid var(--line);
}
.trust-row {
  display: flex;
  gap: 34px;
  margin-top: 42px;
}
.trust-row div { display: flex; flex-direction: column; }
.trust-row strong { font-size: 1.05rem; }
.trust-row span { color: var(--muted); font-size: .8rem; }

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}
.phone {
  width: 310px;
  padding: 12px;
  border: 8px solid #19151d;
  border-radius: 46px;
  background: #19151d;
  box-shadow: 0 45px 90px rgba(46,22,38,.22);
  transform: rotate(2deg);
}
.phone-top {
  width: 100px;
  height: 21px;
  margin: -3px auto 8px;
  border-radius: 0 0 14px 14px;
  background: #19151d;
}
.phone-screen {
  min-height: 520px;
  padding: 17px;
  border-radius: 32px;
  background: linear-gradient(180deg, #fff 0%, #fff3f7 100%);
}
.app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mini-logo { color: var(--primary); font-weight: 800; }
.online-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25c679;
  box-shadow: 0 0 0 5px rgba(37,198,121,.12);
}
.profile-card {
  overflow: hidden;
  margin-top: 24px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(70,35,56,.13);
}
.profile-photo {
  position: relative;
  height: 255px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.55), transparent 22%),
    linear-gradient(145deg, #ff8db5, #8d63ff);
}
.profile-initial {
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  border: 3px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.online-badge {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 6px 10px;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(17,17,17,.62);
}
.profile-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px;
}
.profile-info h3 { margin: 0; font-size: 1rem; }
.profile-info p { margin: 3px 0 0; color: var(--muted); font-size: .72rem; }
.verified {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: #fff;
  border-radius: 50%;
  background: #3a88ff;
}
.quick-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 22px 0;
}
.quick-actions button {
  width: 47px;
  height: 47px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 9px 25px rgba(65,38,54,.12);
  font-size: 1.2rem;
}
.quick-actions .heart {
  color: #fff;
  background: var(--primary);
  transform: scale(1.12);
}
.call-preview {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
}
.call-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 800;
}
.call-preview div:last-child { display: flex; flex-direction: column; }
.call-preview strong { font-size: .78rem; }
.call-preview span { color: var(--muted); font-size: .65rem; }

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 13px 17px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 50px rgba(71,36,58,.14);
  backdrop-filter: blur(12px);
  font-size: .8rem;
  font-weight: 700;
}
.floating-card-one { top: 70px; left: 0; }
.floating-card-two { right: -10px; bottom: 70px; }

.section { padding: 92px 0; }
.intro-strip { padding: 64px 0; border-bottom: 1px solid var(--line); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  align-items: end;
}
.section h2 { font-size: clamp(2.25rem, 4vw, 3.7rem); }
.intro-grid p, .section-heading p, .lead {
  color: var(--muted);
  font-size: 1.04rem;
}
.section-heading { max-width: 700px; margin-bottom: 48px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading p { max-width: 600px; margin: 17px auto 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  min-height: 235px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: .25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.feature-card.featured {
  color: #fff;
  border: 0;
  background: linear-gradient(145deg, var(--primary), var(--secondary));
}
.feature-card.featured p { color: rgba(255,255,255,.82); }
.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 15px;
  background: var(--soft);
  font-size: 1.35rem;
}
.featured .feature-icon { background: rgba(255,255,255,.18); }
.feature-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.soft-section { background: var(--soft); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
}
.step span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--primary);
  font-weight: 800;
}
.step h3 { margin: 0 0 9px; }
.step p { margin: 0; color: var(--muted); }

.safety-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.safety-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border-radius: 35px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.55), transparent 25%),
    linear-gradient(145deg, #ffd1e0, #d9ccff);
}
.shield {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  font-size: 4rem;
  border-radius: 42px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}
.safety-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  padding: 17px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.safety-card span { color: var(--muted); font-size: .76rem; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.check-list li {
  position: relative;
  padding-left: 31px;
  margin: 13px 0;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}
.text-link { color: var(--primary); font-weight: 800; }

.host-section { padding-top: 20px; }
.host-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 52px;
  color: #fff;
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.18), transparent 22%),
    linear-gradient(135deg, #e62469, #7439e8);
}
.host-card h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.host-card p { max-width: 650px; margin-bottom: 0; color: rgba(255,255,255,.82); }
.section-label.light { color: #fff; }
.button-light { min-width: 175px; background: #fff; color: var(--primary); }

.download-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}
.download-card h2 { max-width: 690px; font-size: clamp(2rem, 4vw, 3.2rem); }
.download-card p { color: var(--muted); }
.store-buttons { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  color: #fff;
  border-radius: 12px;
  background: var(--dark);
}
.store-button.muted { opacity: .7; }
.store-button span:last-child { display: flex; flex-direction: column; line-height: 1.1; }
.store-button small { font-size: .58rem; }
.store-button strong { font-size: 1rem; }

.site-footer {
  padding: 70px 0 25px;
  color: rgba(255,255,255,.75);
  background: var(--dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .8fr 1fr;
  gap: 50px;
}
.light-brand { color: #fff; }
.footer-brand p { max-width: 360px; }
.footer-grid h3 { margin-top: 0; color: #fff; font-size: .95rem; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a:hover { color: #fff; }
.contact a { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
}

@media (max-width: 900px) {
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero-grid, .intro-grid, .safety-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 600px; }
  .feature-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .download-card { flex-direction: column; align-items: flex-start; }
  .store-buttons { flex-direction: row; width: 100%; }
  .store-button { flex: 1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero { padding-top: 56px; }
  .hero h1 { font-size: 2.75rem; }
  .hero-actions, .trust-row, .host-card, .footer-bottom, .store-buttons {
    flex-direction: column;
  }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 14px; align-items: center; }
  .trust-row div { align-items: center; }
  .phone { width: 280px; }
  .floating-card-one { left: -5px; }
  .floating-card-two { right: -5px; }
  .section { padding: 70px 0; }
  .feature-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .host-card, .download-card { padding: 32px 24px; }
  .button-light, .store-button { width: 100%; }
}
