:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fff6fb;
  --text: #222222;
  --muted: #6a6a6a;
  --line: #ece7eb;
  --pink: #ff5fab;
  --pink-dark: #e54895;
  --pink-soft: #ffe4f1;
  --shadow: rgba(0, 0, 0, 0.02) 0 0 0 1px, rgba(0, 0, 0, 0.04) 0 2px 6px, rgba(0, 0, 0, 0.10) 0 4px 8px;
  --shadow-hover: rgba(255, 95, 171, 0.20) 0 18px 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 12% 10%, #ffeaf4 0, transparent 28%), var(--bg);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(236, 231, 235, 0.8);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.4px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff8cc7);
  box-shadow: 0 10px 28px rgba(255, 95, 171, 0.32);
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  color: #fff !important;
  background: var(--text);
  border-radius: 999px;
  padding: 12px 18px;
}

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0 88px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -3.4px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -2px;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.6px;
}

.hero-text,
.pricing-copy p,
.step-card p,
.price-card li,
.footer {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 610px;
  font-size: 20px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff83c1);
  box-shadow: 0 14px 30px rgba(255, 95, 171, 0.28);
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--pink-dark), var(--pink));
  box-shadow: var(--shadow-hover);
}

.button.secondary {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.button.full {
  width: 100%;
}

.hero-card {
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 228, 241, 0.8));
  box-shadow: var(--shadow);
}

.chat-window {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 22px;
  background: #fff;
  box-shadow: rgba(255, 95, 171, 0.16) 0 24px 80px;
}

.chat-window::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--pink-soft);
}

.chat-header,
.match-profile,
.bot-message {
  position: relative;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 28px;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #35c87a;
  box-shadow: 0 0 0 6px rgba(53, 200, 122, 0.14);
}

.match-profile {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.avatar {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #ff5fab, #ffb1d6);
  font-size: 22px;
  font-weight: 900;
}

.avatar.alt {
  background: linear-gradient(135deg, #7c5cff, #ff8ac8);
}

.match-profile strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.match-profile p,
.bot-message {
  margin: 0;
  color: var(--muted);
}

.connection-line {
  display: grid;
  place-items: center;
  min-height: 70px;
  color: var(--pink-dark);
  font-size: 14px;
  font-weight: 900;
}

.connection-line span {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--pink-soft);
}

.bot-message {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: #f7f7f8;
  font-weight: 700;
}

.how,
.pricing {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.step-card,
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.step-card {
  padding: 30px;
}

.step-number,
.price-badge {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--pink-dark);
  background: var(--pink-soft);
  font-size: 13px;
  font-weight: 900;
}

.step-number {
  padding: 9px 12px;
}

.pricing {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 58px;
  align-items: center;
}

.price-card {
  padding: 34px;
  border-color: rgba(255, 95, 171, 0.22);
  background: linear-gradient(180deg, #fff, #fff8fc);
}

.price-badge {
  padding: 9px 14px;
}

.price-card h3 {
  margin-bottom: 24px;
  font-size: 52px;
  letter-spacing: -2px;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 18px;
  letter-spacing: 0;
}

.price-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 30px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink-dark);
  font-weight: 900;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  text-align: center;
}

@media (max-width: 860px) {
  .nav {
    min-height: 68px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero,
  .pricing {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    padding: 56px 0 70px;
  }

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

  h1 {
    letter-spacing: -2.3px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0;
  }

  .nav-cta {
    padding: 11px 14px;
  }

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

  .hero-card,
  .chat-window,
  .step-card,
  .price-card {
    border-radius: 22px;
  }

  .price-card h3 {
    font-size: 42px;
  }
}
