:root {
  --primary: #6e4b5b;
  --primary-container: #ffd8e6;
  --on-primary-container: #29151f;
  --background: #fffbff;
  --surface: #ffffff;
  --text: #201a1d;
  --text-muted: #50434a;
  --border: #f1dde4;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(41, 21, 31, 0.08);
  --page-gutter: clamp(1.5rem, 5vw, 3rem);
}

* {
  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: var(--background);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1080px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 251, 255, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
}

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

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
}

.hero {
  padding: 5.5rem 0 4.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy .badge {
  margin-bottom: 1.25rem;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.hero-copy p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 0 1rem;
}

.hero-note {
  font-weight: 500;
  color: var(--on-primary-container) !important;
  margin-bottom: 2rem !important;
}

.hero-card {
  background: linear-gradient(180deg, var(--primary-container), #fff7fa);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-card img {
  width: min(280px, 70%);
  margin: 0 auto 1.5rem;
  display: block;
}

.hero-card p {
  margin: 0;
  color: var(--text-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  border: none;
}

.button.secondary {
  background: var(--primary-container);
  color: var(--on-primary-container);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.section {
  padding: 4.5rem 0;
}

.section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.section-intro {
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 0 2.75rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
}

.privacy-callout {
  background: var(--primary-container);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--border);
}

.privacy-callout h2 {
  margin-top: 0;
}

.privacy-callout p:last-child {
  margin-bottom: 0;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.screenshot {
  margin: 0;
  text-align: center;
}

.screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.screenshot figcaption {
  margin-top: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 3.5rem;
  color: var(--text-muted);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
}

.legal-page {
  padding: 4.5rem 0;
}

.legal-page h1 {
  margin-top: 0;
}

.legal-page h2 {
  margin-top: 2.25rem;
}

.legal-page ul {
  padding-left: 1.25rem;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3.5rem 0 3rem;
    gap: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .section {
    padding: 3.5rem 0;
  }

  .feature-grid,
  .screenshot-grid {
    gap: 1.25rem;
  }
}
