:root {
  --brand: #e72e6c;
  --brand-dark: #b4164e;
  --brand-soft: #fff4f8;
  --ink: #241018;
  --muted: #5c3344;
  --border: #ece7ea;
  --bg: #ffffff;
  --surface: #fdf5f8;
  --green: #2f7d32;
  --green-soft: #eef8ef;
  --shadow: 0 14px 28px rgba(36, 16, 24, 0.08);
  --radius-lg: 24px;
  --radius-xl: 28px;
  --max: 1080px;
  --max-narrow: 760px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  padding: 16px 24px;
}

.site-nav {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.site-brand:hover {
  text-decoration: none;
}

.site-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: block;
}

.site-brand span {
  font-size: 1.05rem;
}

.site-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.site-links a:not(.button) {
  color: var(--muted);
  font-weight: 700;
}

.site-links a:not(.button):hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: white !important;
  text-decoration: none !important;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(231, 46, 108, 0.22);
  border: none;
  cursor: pointer;
}

.button:hover {
  text-decoration: none;
  filter: brightness(0.96);
}

.button.secondary {
  background: white;
  color: var(--brand-dark) !important;
  border: 1px solid #f3c0d2;
  box-shadow: none;
}

.button.small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.92rem;
}

main {
  overflow: hidden;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px;
}

.container.narrow {
  max-width: var(--max-narrow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid #f3c0d2;
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--ink);
}

.lead {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

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

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

.card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.card p,
.card li {
  margin: 0;
  color: var(--muted);
}

.card ul,
.card ol {
  margin: 0;
  padding-left: 1.2rem;
}

.card li + li {
  margin-top: 8px;
}

.hero-panel {
  padding: 28px;
  border: 1px solid #f3c0d2;
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.band {
  margin-top: 28px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: var(--brand-soft);
  border: 1px solid #f3c0d2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.band p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-box {
  margin-top: 18px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid #f3c0d2;
  background: white;
}

.contact-box a.email {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.15rem;
  font-weight: 900;
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  background: var(--surface);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer-inner p,
.footer-inner li {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-inner li + li {
  margin-top: 8px;
}

.footer-title {
  margin: 0 0 10px;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-dark);
}

.footer-bottom {
  max-width: var(--max);
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 14px;
  background: var(--ink);
  color: white !important;
  text-decoration: none !important;
  font-weight: 700;
}

.store-badge small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.82;
}

.store-badge span {
  font-size: 1rem;
  font-weight: 800;
}

.store-badge.disabled {
  background: #6b5560;
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 24px;
}

.phone-mock {
  min-height: 520px;
  border-radius: 42px;
  padding: 22px;
  background: linear-gradient(145deg, #2a1420, #e72e6c);
  box-shadow: 0 30px 70px rgba(36, 16, 24, 0.24);
}

.phone-screen {
  height: 100%;
  min-height: 476px;
  border-radius: 30px;
  background: white;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.phone-top {
  padding: 28px 22px 18px;
  background: #fff7fa;
}

.phone-search {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 20px;
  background: white;
  color: var(--muted);
  box-shadow: var(--shadow);
}

.store-preview {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  margin: 16px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: var(--shadow);
}

.store-preview-icon {
  border-radius: 18px;
  background: linear-gradient(135deg, #ffb0c8, #76b7ff);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
  min-height: 88px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .site-links {
    display: none;
  }

  .hero-split {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .grid-3,
  .grid-2,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
