:root {
  --ink: oklch(0.22 0.04 275);
  --ink-soft: oklch(0.38 0.03 275);
  --paper: oklch(0.97 0.012 85);
  --paper-2: oklch(0.94 0.02 80);
  --violet: oklch(0.48 0.22 285);
  --violet-bright: oklch(0.55 0.24 285);
  --indigo: oklch(0.32 0.14 275);
  --line: oklch(0.82 0.03 275);
  --ok: oklch(0.52 0.12 155);
  --max: 1120px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, oklch(0.72 0.12 285 / 0.18), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, oklch(0.7 0.1 250 / 0.12), transparent 50%),
    var(--paper);
  font-family: Outfit, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

a {
  color: var(--violet);
}

img {
  max-width: 100%;
  height: auto;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--indigo);
  color: var(--paper);
  padding: 8px 12px;
  z-index: 20;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

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

.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--violet);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 72px;
  width: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--solid {
  background: var(--violet);
  color: oklch(0.98 0.01 285);
}

.btn--ghost {
  background: transparent;
  color: var(--indigo);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 28px 0 72px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--violet);
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--violet);
}

h1,
h2,
.display {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 12px 0 16px;
  color: var(--indigo);
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 52ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-panel {
  position: relative;
  background: linear-gradient(160deg, var(--indigo), var(--violet-bright));
  color: oklch(0.97 0.02 285);
  padding: 36px 32px;
  border-radius: 28px 8px 28px 8px;
  min-height: 320px;
}

.hero-panel h2 {
  margin: 0 0 18px;
  font-size: 1.6rem;
  color: inherit;
}

.hero-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-panel li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  font-size: 0.98rem;
}

.mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid oklch(0.92 0.04 285);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
}

section {
  padding: 56px 0;
}

.section-head {
  max-width: 62ch;
  margin-bottom: 36px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 10px;
  color: var(--indigo);
}

.roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: oklch(0.99 0.008 85);
}

.role {
  padding: 32px 28px;
}

.role + .role {
  border-left: 1px solid var(--line);
}

.role h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.5rem;
  margin: 0 0 8px;
}

.role ul {
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.steps {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 28px;
}

.rail {
  position: relative;
}

.rail::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  border-left: 3px dashed oklch(0.62 0.16 285 / 0.45);
}

.step {
  padding-bottom: 28px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
}

.guidelines {
  counter-reset: g;
  display: grid;
  gap: 10px;
}

.guidelines li {
  list-style: none;
  counter-increment: g;
  background: oklch(0.99 0.008 85);
  border: 1px solid var(--line);
  padding: 14px 16px 14px 56px;
  position: relative;
  border-radius: 12px;
}

.guidelines li::before {
  content: counter(g);
  position: absolute;
  left: 14px;
  top: 12px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--violet);
  color: oklch(0.98 0.01 285);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.band {
  background: var(--indigo);
  color: oklch(0.96 0.02 285);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.band h2 {
  color: inherit;
  margin: 0 0 8px;
}

.band p {
  margin: 0;
  max-width: 48ch;
  opacity: 0.9;
}

footer {
  padding: 40px 0 56px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 840px) {
  .hero,
  .roles {
    grid-template-columns: 1fr;
  }

  .role + .role {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}
