:root {
  --color-ink: #1e1830;
  --color-muted: #6b627c;
  --color-surface: #ffffff;
  --color-soft: #f7f4fb;
  --color-line: #e5ddec;
  --color-violet: #4e2279;
  --color-purple: #7631a7;
  --color-pink: #d8338f;
  --color-rose: #fff0f8;
  --color-gold: #c59b46;
  --shadow-soft: 0 18px 45px rgba(45, 27, 73, 0.12);
  --shadow-lifted: 0 22px 55px rgba(45, 27, 73, 0.18);
  --radius-small: 8px;
  --radius-pill: 999px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-surface);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.site-header {
  position: relative;
  z-index: 10;
  background: var(--color-surface);
  border-bottom: 1px solid rgba(229, 221, 236, 0.85);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.brand-name {
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.brand-subtitle {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(78, 34, 121, 0.96), rgba(118, 49, 167, 0.92) 45%, rgba(216, 51, 143, 0.9)),
    #6f2ea0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  width: 76vw;
  height: 260px;
  right: -26vw;
  top: 58px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 44px;
  transform: rotate(-19deg);
}

.hero::after {
  width: 94vw;
  height: 320px;
  left: -44vw;
  bottom: -118px;
  background: rgba(31, 18, 58, 0.24);
  border-radius: 54px;
  transform: rotate(-15deg);
}

.hero-inner {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 84px 0 110px;
}

.hero-content {
  width: min(100%, 720px);
  color: #ffffff;
}

.eyebrow,
.section-kicker,
.document-date {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: #ffe2f3;
}

.hero h1 {
  max-width: 820px;
  margin: 14px 0 20px;
  font-size: clamp(2.35rem, 10vw, 5.9rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
}

.hero-shape {
  position: absolute;
  z-index: -1;
  border-radius: 36px;
  transform: rotate(-18deg);
  pointer-events: none;
}

.hero-shape-one {
  width: 190px;
  height: 190px;
  right: 10%;
  top: 108px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-shape-two {
  width: 112px;
  height: 112px;
  right: 28%;
  bottom: 92px;
  background: rgba(255, 219, 124, 0.24);
}

.hero-shape-three {
  width: 240px;
  height: 96px;
  right: -38px;
  bottom: 182px;
  background: rgba(255, 255, 255, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:focus-visible {
  outline: 3px solid rgba(197, 155, 70, 0.55);
  outline-offset: 3px;
}

.button-primary {
  color: var(--color-ink);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 24, 48, 0.16);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(31, 24, 48, 0.22);
}

.documents-section {
  padding: 72px 0 86px;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--color-soft) 100%);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--color-purple);
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.documents-grid {
  display: grid;
  gap: 18px;
}

.document-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 100%;
  padding: 22px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.document-card:hover,
.document-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(118, 49, 167, 0.34);
  box-shadow: var(--shadow-lifted);
}

.document-marker {
  width: 58px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, var(--color-violet), var(--color-pink));
  border-radius: 8px 8px 8px 20px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 26px rgba(118, 49, 167, 0.26);
}

.document-body {
  min-width: 0;
}

.document-date {
  color: var(--color-gold);
}

.document-body h3 {
  margin: 6px 0 8px;
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.document-body p:last-child {
  margin: 0;
  color: var(--color-muted);
}

.button-secondary {
  grid-column: 1 / -1;
  width: 100%;
  color: var(--color-purple);
  background: var(--color-rose);
  border-color: rgba(118, 49, 167, 0.18);
}

.button-secondary:hover {
  color: #ffffff;
  background: var(--color-purple);
  border-color: var(--color-purple);
  transform: translateY(-1px);
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.86);
  background: var(--color-ink);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (min-width: 640px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

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

  .document-card {
    grid-template-columns: 64px 1fr;
    padding: 26px;
  }

  .document-marker {
    width: 64px;
    height: 78px;
  }
}

@media (min-width: 940px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .hero {
    min-height: 640px;
  }

  .hero-inner {
    min-height: 640px;
    padding: 102px 0 128px;
  }

  .documents-section {
    padding: 96px 0 112px;
  }

  .documents-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .document-card {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .button-secondary {
    align-self: end;
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
