:root {
  --bg-main: #1e1a25;
  --bg-page: #05030a;
  --bg-surface: rgba(255, 255, 255, 0.06);
  --bg-surface-strong: rgba(255, 255, 255, 0.1);
  --text-main: #f2e7e6;
  --text-muted: #c8b6dd;
  --accent: #c8b6dd;
  --accent-soft: #e7a6b6;
  --border-subtle: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --transition-fast: 150ms ease-out;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top, #2c2336 0, #05030a 45%, #020008 100%);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 3, 10, 0.94),
    rgba(5, 3, 10, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(231, 166, 182, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: radial-gradient(
    circle at 30% 0%,
    rgba(231, 166, 182, 0.4),
    transparent
  );
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9);
}

.brand-text {
  color: var(--text-main);
}

.nav {
  display: none;
  gap: 1.25rem;
  font-size: 0.85rem;
}

.nav-link {
  color: var(--text-muted);
  opacity: 0.9;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
  opacity: 1;
}

.header-actions {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
  text-decoration: none;
}

.btn-small {
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
}

.btn-primary {
  background: linear-gradient(135deg, #e7a6b6, #c8b6dd);
  color: #1e1a25;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.85);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.95);
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

/* HERO */

.hero {
  padding: 3.25rem 0 2.5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: stretch;
}

.hero-copy {
  max-width: 520px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.18rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: radial-gradient(
    circle at 0% 0%,
    rgba(231, 166, 182, 0.28),
    rgba(255, 255, 255, 0.02)
  );
  margin-bottom: 1.1rem;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #e7a6b6;
  box-shadow: 0 0 0 4px rgba(231, 166, 182, 0.35);
}

.pill-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-main);
}

.hero-title {
  font-size: clamp(2.1rem, 6vw, 3rem);
  line-height: 1.08;
  margin: 0 0 0.9rem;
  color: var(--text-main);
}

.hero-subtitle {
  margin: 0 0 1.4rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.hero-footnote {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(200, 182, 221, 0.85);
}

.hero-card {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-card-inner {
  width: 100%;
  max-width: 360px;
  background: rgba(30, 26, 37, 0.94);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
  gap: 0.5rem;
}

.hero-chip,
.hero-chip-secondary {
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-chip {
  background: rgba(231, 166, 182, 0.2);
  color: #fbe9f0;
}

.hero-chip-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
}

.hero-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.activity-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  padding: 0.55rem 0.6rem;
  border-radius: var(--radius-md);
  background: rgba(5, 3, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.activity-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.activity-icon-partner {
  background: rgba(231, 166, 182, 0.16);
}

.activity-icon-solo {
  background: rgba(200, 182, 221, 0.16);
}

.activity-icon-intimate {
  background: rgba(255, 255, 255, 0.04);
}

.activity-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.activity-title {
  font-size: 0.85rem;
  font-weight: 600;
}

.activity-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.activity-meta-right {
  font-size: 0.7rem;
  color: rgba(200, 182, 221, 0.9);
  align-self: center;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-card-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.hero-card-stat-value {
  font-size: 0.85rem;
  font-weight: 600;
}

/* SECTIONS */

.section {
  padding: 2.5rem 0;
}

.section-inner {
  padding: 0 1.5rem;
}

.section-header {
  max-width: 600px;
  margin: 0 auto 1.8rem;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 0.6rem;
  font-size: 1.6rem;
  color: var(--text-main);
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

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

.feature-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.1rem 1rem;
  border: 1px solid var(--border-subtle);
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--text-main);
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-privacy {
  padding-top: 0.5rem;
}

.code-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-pill);
  background: rgba(5, 3, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78em;
  font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
}

.section-cta {
  padding: 3rem 0 3.5rem;
}

.section-inner-cta {
  display: flex;
  justify-content: center;
}

.cta-block {
  width: 100%;
  max-width: 640px;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(231, 166, 182, 0.18),
      transparent
    ),
    rgba(5, 3, 10, 0.94);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.cta-block h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}

.cta-block p {
  margin: 0 0 1.4rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

/* FOOTER */

.site-footer {
  margin-top: auto;
  padding: 1.4rem 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at bottom, #241c31 0, #05030a 50%);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.brand-mark-small {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(231, 166, 182, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-right: 0.45rem;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-text {
  color: var(--text-main);
}

.footer-right {
  max-width: 520px;
}

.footer-text-muted {
  color: var(--text-muted);
}

/* RESPONSIVE */

@media (min-width: 720px) {
  .nav {
    display: flex;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    justify-content: flex-end;
  }

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

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding-inline: 1rem;
  }

  .section-inner,
  .hero-inner,
  .footer-inner {
    padding-inline: 1rem;
  }

  .hero-card-inner {
    max-width: 100%;
  }
}
