@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #f7f5f1;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --ink: #24262e;
  --muted: #697180;
  --line: rgba(36, 38, 46, 0.1);
  --lilac: #d4cfff;
  --mint: #c4e8cd;
  --overlap: #a9b5cc;
  --shadow: 0 24px 80px rgba(36, 38, 46, 0.08);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 15%, rgba(212, 207, 255, 0.42), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(196, 232, 205, 0.45), transparent 30%),
    linear-gradient(180deg, #faf8f4 0%, #f2efe8 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 245, 241, 0.72);
  border-bottom: 1px solid rgba(36, 38, 46, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand span {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.hero {
  padding: 56px 0 28px;
}

.hero-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(255,255,255,0.65));
  border: 1px solid rgba(255,255,255,0.74);
  border-radius: 44px;
  box-shadow: var(--shadow);
  padding: 32px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 14px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero p,
.page-hero p,
.copy p,
.policy-intro p,
.footer {
  color: var(--muted);
  line-height: 1.75;
}

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

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 700;
}

.button {
  background: var(--ink);
  color: #fff;
}

.button-secondary {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-panel {
  background: linear-gradient(180deg, rgba(36,38,46,0.96), rgba(40,44,56,0.94));
  color: #fff;
  border-radius: 30px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.hero-panel::before,
.hero-panel::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
}

.hero-panel::before {
  width: 220px;
  height: 220px;
  background: rgba(212, 207, 255, 0.32);
  top: -30px;
  right: -50px;
}

.hero-panel::after {
  width: 190px;
  height: 190px;
  background: rgba(196, 232, 205, 0.28);
  bottom: -36px;
  left: -24px;
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.metric {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.metric strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.metric span {
  color: rgba(255,255,255,0.74);
  font-size: 14px;
  line-height: 1.6;
}

.section {
  padding: 18px 0 28px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section h2 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.05em;
}

.section-subtitle {
  max-width: 640px;
  color: var(--muted);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

.card,
.policy-card,
.feature-list li {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.card,
.policy-card {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.card h3,
.policy-card h2 {
  margin: 0 0 12px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.04em;
}

.card p,
.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.75;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  border-radius: var(--radius-lg);
  padding: 18px 18px 18px 54px;
  position: relative;
}

.feature-list li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lilac), var(--mint));
  position: absolute;
  left: 22px;
  top: 24px;
  box-shadow: 0 0 0 8px rgba(212, 207, 255, 0.18);
}

.cta {
  margin: 24px 0 48px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(212,207,255,0.7), rgba(196,232,205,0.7));
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: var(--shadow);
}

.cta h3 {
  margin: 0 0 10px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.04em;
}

.footer {
  padding: 12px 0 42px;
  font-size: 14px;
}

.page-hero {
  padding: 56px 0 14px;
}

.page-hero-card {
  padding: 28px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.72));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
}

.breadcrumbs {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.breadcrumbs a {
  text-decoration: none;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding-bottom: 42px;
}

.policy-nav {
  position: sticky;
  top: 88px;
  border-radius: 28px;
  padding: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
}

.policy-nav h3 {
  margin: 0 0 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.policy-nav a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--muted);
  border-radius: 14px;
  font-weight: 600;
}

.policy-nav a:hover {
  background: rgba(255,255,255,0.88);
  color: var(--ink);
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-card ul {
  padding-left: 18px;
  margin: 0;
}

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

.note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(36, 38, 46, 0.05);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-card,
  .page-hero-card,
  .card,
  .policy-card,
  .cta {
    padding: 20px;
    border-radius: 26px;
  }

  .brand span {
    font-size: 24px;
  }

  .hero-actions {
    width: 100%;
  }

  .button,
  .button-secondary {
    width: 100%;
  }
}
