/* Base variables */
:root {
  --color-primary: #b52277;
  --color-primary-light: #d5a2ff;
  --color-secondary: #e0a200;
  --color-bg: #f7ebff;
  --color-bg-alt: #f6ebff;
  --color-text: #111111;
  --color-text-muted: #444444;
  --color-border: rgba(0, 0, 0, 0.06);
  --color-black: #000000;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 14px 34px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, var(--color-primary-light) 0, #ffffff 52%, var(--color-bg) 100%);
  color: var(--color-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 0.85rem;
  color: var(--color-text-muted);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem;
  font-weight: 700;
  color: var(--color-black);
}

h1 {
  font-size: clamp(2.15rem, 2.4vw + 1.6rem, 2.8rem);
}

h2 {
  font-size: clamp(1.65rem, 1.9vw + 1.2rem, 2.1rem);
}

h3 {
  font-size: 1.25rem;
}

ul {
  padding-left: 1.2rem;
  margin-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

th,
td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

th {
  background: linear-gradient(90deg, #ffffff, var(--color-bg-alt));
  font-weight: 600;
}

/* Layout */
.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(245, 230, 255, 0.94));
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 82px;
  overflow: hidden;
}

.brand-text-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-text-sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 999px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-black);
  border-radius: 999px;
  position: relative;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -6px;
}

.nav-toggle-label span::after {
  top: 6px;
}

.nav-toggle:checked + .nav-toggle-label span {
  transform: rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::before {
  transform: rotate(-90deg);
  top: 0;
}

.nav-toggle:checked + .nav-toggle-label span::after {
  opacity: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.nav-link {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--color-text-muted);
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.nav-link:hover {
  border-color: rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-black);
}

.nav-link--primary {
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(181, 34, 119, 0.38);
}

.nav-link--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(181, 34, 119, 0.45);
}

.site-main {
  flex: 1 0 auto;
}

.page-hero {
  max-width: 1120px;
  margin: 1.7rem auto 0;
  padding: 0 1.25rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-copy {
  padding: 1.2rem 1rem 1.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 235, 255, 0.96));
  box-shadow: var(--shadow-soft);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.16rem 0.7rem;
  border-radius: 999px;
  background: rgba(213, 162, 255, 0.2);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.hero-eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, var(--color-primary));
}

.hero-title {
  margin-bottom: 0.55rem;
}

.hero-sub {
  font-size: 0.98rem;
  max-width: 36rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.hero-pill {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.hero-visual {
  position: relative;
  min-height: 220px;
}

.hero-card {
  position: relative;
  border-radius: 26px;
  padding: 1rem 1.1rem;
  background: radial-gradient(circle at 10% 0, #ffffff 0, #fdf4ff 32%, #f2e4ff 100%);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.hero-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  color: #ffffff;
  font-size: 0.7rem;
}

.hero-logo-wrap {
  width: 120px;
  margin-bottom: 0.6rem;
}

.hero-mesh {
  position: absolute;
  inset: auto -40% -40% -40%;
  background: radial-gradient(circle at 10% 0, rgba(181, 34, 119, 0.28), transparent 56%),
    radial-gradient(circle at 90% 10%, rgba(224, 162, 0, 0.35), transparent 55%),
    radial-gradient(circle at 50% 95%, rgba(213, 162, 255, 0.4), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.4rem;
  position: relative;
  z-index: 1;
}

.hero-stat {
  padding: 0.5rem 0.6rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  font-size: 0.7rem;
}

.hero-stat-label {
  color: var(--color-text-muted);
  margin-bottom: 0.15rem;
}

.hero-stat-value {
  font-weight: 700;
  color: var(--color-primary);
}

.hero-ribbon {
  margin-top: 0.7rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-ribbon-pill {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.86));
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-ribbon-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
}

/* Content layout */
.page-content {
  max-width: 1120px;
  margin: 1.8rem auto 2.6rem;
  padding: 0 1.25rem 2.2rem;
}

.content-grid {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  align-items: flex-start;
}

.content-main {
  width: 100%;
  padding: 1.4rem 1.4rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-card);
}

.content-main section + section {
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px dashed var(--color-border);
}

.content-aside {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
}

.aside-card {
  padding: 1.05rem 1.1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff, #f6ebff);
  box-shadow: var(--shadow-card);
  font-size: 0.9rem;
}

.aside-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.aside-list {
  list-style: none;
  padding: 0;
  margin: 0.1rem 0 0;
}

.aside-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.22rem 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.aside-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 0.35rem;
  background: radial-gradient(circle at 30% 30%, #ffffff, var(--color-primary));
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.chip {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* STA buttons (CTA) */
.cta-inline {
  margin: 1rem 0 0.4rem;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(181, 34, 119, 0.06), rgba(224, 162, 0, 0.06));
  border: 1px solid rgba(181, 34, 119, 0.18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.cta-inline-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.cta-inline-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.btn-sta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-transform: none;
  text-decoration: none;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, background 0.16s ease-out;
}

.btn-sta--primary {
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(181, 34, 119, 0.5);
}

.btn-sta--ghost {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  border: 1px solid rgba(181, 34, 119, 0.32);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.btn-sta-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-sta:hover {
  transform: translateY(-1px);
}

.btn-sta--primary:hover {
  box-shadow: 0 16px 32px rgba(181, 34, 119, 0.6);
}

.btn-sta--ghost:hover {
  background: #ffffff;
}

/* Utility */
.muted {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.tag {
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;

}

.page-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.section-lead {
  font-weight: 600;
  color: var(--color-black);
}

.table-caption {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: -0.4rem;
  margin-bottom: 0.3rem;
}

.page-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.96);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-style: dotted;
}

/* Policy pages */
.policy-hero {
  max-width: 1120px;
  margin: 1.8rem auto 0;
  padding: 0 1.25rem;
}

.policy-hero-card {
  width: 100%;
  padding: 1.3rem 1.3rem 1.1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 235, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.policy-content {
  max-width: 1120px;
  margin: 1.1rem auto 2.8rem;
  padding: 0 1.25rem 2.5rem;
}

.policy-card {
  width: 100%;
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.policy-card section + section {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--color-border);
}

/* Responsive */
@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding-top: 0.35rem;
  }

  .nav-toggle-label {
    display: block;
    margin-left: auto;
  }

  .nav-toggle:checked + .nav-toggle-label + .main-nav {
    display: flex;
  }

  .hero-copy {
    padding: 1rem 0.9rem 1.1rem;
  }

  .content-main {
    padding: 1.1rem 1rem 1.3rem;
  }

  .policy-card {
    padding: 1.1rem 1rem 1.3rem;
  }
}

