@font-face {
  font-family: "SN Pro";
  src: url("fonts/sn_pro/SNPro-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "SN Pro";
  src: url("fonts/sn_pro/SNPro-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "SN Pro";
  src: url("fonts/sn_pro/SNPro-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

:root {
  --bg: #ffffff;
  --soft: #fbf8ff;
  --soft-2: #f5efff;
  --purple: #9477d5;
  --purple-strong: #6b49b0;
  --ink: #262033;
  --heading: #302541;
  --muted: #6f6680;
  --line: #eadff8;
  --shadow: 0 26px 70px rgba(91, 50, 154, 0.12);
  font-family: "SN Pro", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 4%, rgba(240, 233, 255, 0.9) 0, rgba(240, 233, 255, 0.5) 18rem, transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(255, 229, 231, 0.42) 0, transparent 30rem),
    radial-gradient(circle at 12% 82%, rgba(245, 239, 255, 0.86) 0, transparent 32rem),
    linear-gradient(180deg, #fff 0%, #fdfbff 44%, #fbf8ff 100%);
  background-attachment: fixed;
}

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

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

.shell {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 600;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(148, 119, 213, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--heading);
  font-size: 0.94rem;
  font-weight: 500;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #bca4ee 0%, #9477d5 48%, #6b49b0 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(148, 119, 213, 0.24);
}

.hero {
  padding: clamp(56px, 8vw, 108px) 0 38px;
}

.hero-card {
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 0.98rem;
  font-weight: 600;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--heading);
  font-size: clamp(3.1rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.62;
}

.content {
  padding: 26px 0 clamp(70px, 8vw, 110px);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.doc {
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(91, 50, 154, 0.08);
}

.doc section + section {
  margin-top: 34px;
}

.doc h2 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  font-weight: 600;
  line-height: 1.15;
}

.doc p,
.doc li {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}

.doc p {
  margin: 0;
}

.doc p + p,
.doc ul + p,
.doc ol + p {
  margin-top: 14px;
}

.doc ul,
.doc ol {
  margin: 12px 0 0;
  padding-left: 22px;
}

.doc a {
  color: var(--purple-strong);
  font-weight: 600;
}

.side-card {
  position: sticky;
  top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 38px rgba(91, 50, 154, 0.08);
}

.side-card h2 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: 1.05rem;
  font-weight: 600;
}

.side-card a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-card {
  margin-top: 20px;
  padding: 18px;
  border-radius: 22px;
  background: var(--soft-2);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-card a {
  margin-top: 8px;
  color: var(--purple-strong);
  font-weight: 600;
}

footer {
  padding: 34px 0 44px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

@media (max-width: 880px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

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

  .side-card {
    position: static;
    order: -1;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 720px);
  }

  .brand {
    font-size: 1.04rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.78rem;
  }
}
