/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111111;
  background: #f7ebff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(247, 235, 255, 0.9);
  border-bottom: 1px solid rgba(181, 34, 119, 0.08);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #d5a2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  color: #b52277;
}

.brand-subtitle {
  font-size: 11px;
  color: #555555;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #333333;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.nav-link:hover {
  background: rgba(181, 34, 119, 0.07);
  color: #b52277;
  transform: translateY(-1px);
}

.nav-link--active {
  background: #b52277;
  color: #ffffff;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 6px;
  border-radius: 999px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #111111;
  border-radius: 999px;
}

/* Hero / intro */
.hero {
  padding: 32px 0 12px;
}

.hero-grid {
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f6ebff;
  color: #b52277;
  font-size: 12px;
  margin-bottom: 16px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e0a200;
}

.hero-title {
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: #111111;
}

.hero-lead {
  margin: 0 0 18px;
  font-size: 15px;
  color: #333333;
  max-width: 560px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 12px;
  color: #666666;
}

.hero-card {
  border-radius: 24px;
  padding: 20px 18px;
  background: radial-gradient(circle at 0% 0%, #ffffff 0, #f6ebff 45%, #d5a2ff 100%);
  border: 1px solid rgba(181, 34, 119, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hero-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}

.hero-chip {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(224, 162, 0, 0.09);
  color: #9a7100;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.pill {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #444444;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.metric {
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
}

.metric-label {
  font-size: 11px;
  color: #666666;
  margin-bottom: 4px;
}

.metric-value {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}

.metric-tag {
  font-size: 10px;
  color: #b52277;
}

/* Layout sections */
.sections {
  padding: 8px 0 40px;
}

.content-grid {
  display: block;
}

.content-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.card {
  border-radius: 18px;
  padding: 16px 16px 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.card--highlight {
  border-color: rgba(181, 34, 119, 0.2);
  box-shadow: 0 16px 40px rgba(181, 34, 119, 0.12);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.card-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  color: #111111;
}

.card-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b52277;
}

.card-label {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f6ebff;
  color: #b52277;
}

.card-body p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #262626;
}

.card-body ul,
.card-body ol {
  margin: 6px 0 6px 18px;
  padding: 0;
}

.card-body li {
  margin: 4px 0;
  font-size: 14px;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.table th,
.table td {
  padding: 7px 8px;
  border-bottom: 1px solid #f0e2ff;
  text-align: left;
}

.table thead th {
  background: #f6ebff;
  font-weight: 600;
  color: #333333;
}

.table tbody tr:nth-child(even) {
  background: #fdf9ff;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f6ebff;
  color: #444444;
}

/* Buttons STA */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 4px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta--primary {
  background: linear-gradient(135deg, #b52277, #e0a200);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(181, 34, 119, 0.36);
}

.btn-cta--secondary {
  background: #ffffff;
  color: #b52277;
  border: 1px solid rgba(181, 34, 119, 0.25);
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.btn-cta-icon {
  margin-left: 6px;
  font-size: 14px;
}

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 14px;
  font-size: 12px;
  color: #555555;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-link {
  color: #555555;
}

.footer-link:hover {
  color: #b52277;
}

/* Page-specific helpers */
.page-kicker {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b52277;
  margin-bottom: 6px;
}

.page-title {
  font-size: 24px;
  margin: 0 0 6px;
}

.page-lead {
  margin: 0;
  font-size: 14px;
  color: #444444;
}

.legal-page {
  padding: 24px 0 40px;
}

.legal-card-title {
  font-size: 20px;
  margin: 0 0 4px;
}

.legal-meta {
  font-size: 12px;
  color: #888888;
  margin-bottom: 12px;
}

.legal-body p,
.legal-body li {
  font-size: 14px;
  line-height: 1.7;
  color: #262626;
}

.legal-body ul {
  margin: 8px 0 8px 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    padding-top: 22px;
  }
}

@media (max-width: 720px) {
  .site-header-inner {
    padding: 8px;
  }

  .nav {
    position: fixed;
    inset: 56px 12px auto 12px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(247, 235, 255, 0.96);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    transform-origin: top right;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 23px;
  }

  .hero-card {
    padding: 16px 14px;
  }

  .card {
    padding: 14px 14px 16px;
  }
}

