:root {
  --bg: #f5f5f5;
  --ink: #0a0a0a;
  --accent: #171717;
  --surface: #ffffff;
  --muted: #454b50;
  --line: #b9c2c3;
  --action: #0a0a0a;
  --action-ink: #ffffff;
  --radius: 16px;
  --button-radius: 6px;
}
@font-face {
  font-family: Display;
  src: url("fonts/roboto-slab.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Body;
  src: url("fonts/atkinson-hyperlegible.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  min-width: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    18px/1.65 Body,
    Arial,
    sans-serif;
}
body,
input,
button,
textarea,
select {
  font-family: Body, Arial, sans-serif;
}
h1,
h2,
h3,
h4 {
  font-family: Display, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.3rem, 5.1vw, 4.6rem);
  margin: 0 0 24px;
  max-width: 22ch;
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0 0 22px;
}
h3 {
  font-size: 1.5rem;
  margin: 0 0 16px;
}
p {
  margin: 0 0 20px;
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:hover {
  text-decoration-thickness: 2px;
}
button,
input,
textarea,
select {
  font-size: 1rem;
}
button,
a,
input,
textarea,
select {
  touch-action: manipulation;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
figcaption {
  font-size: 0.76rem;
  line-height: 1.55;
  margin-top: 12px;
  color: var(--muted);
  overflow-wrap: anywhere;
}
ul,
ol {
  padding-left: 1.3em;
}
li {
  margin-bottom: 10px;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  font-weight: 600;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
select:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
}
button {
  color: inherit;
}
input,
textarea,
select {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
}
textarea {
  min-height: 160px;
  resize: vertical;
}
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex: none;
  accent-color: var(--ink);
}
label {
  display: block;
  font-size: 0.94rem;
  margin-bottom: 7px;
}
form > div {
  margin: 18px 0;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
.se-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}
.se-consent input {
  margin-top: 4px;
}
.se-wrap {
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
}
.se-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-200%);
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  padding: 12px;
}
.se-skip:focus {
  transform: none;
}
.se-masthead {
  border-bottom: 1px solid var(--line);
}
.se-brand {
  font:
    600 28px/1.1 Display,
    sans-serif;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}
.se-brand svg {
  width: 32px;
  height: 32px;
  flex: none;
}
.se-navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 25px;
}
.se-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.87rem;
}
.se-navigation a {
  text-decoration: none;
}
.se-navigation a[aria-current="page"] {
  text-decoration: underline;
}
.se-navigation .se-action {
  padding: 10px 18px;
  font-size: 0.85rem;
}
.se-strap {
  font-size: 0.79rem;
  letter-spacing: 0.04em;
  margin: 0;
}
.band {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.band .se-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.se-menu-button {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
}
.se-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 23px;
  background: var(--action);
  color: var(--action-ink);
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.4;
}
.se-action:hover {
  filter: brightness(0.94);
}
.se-textlink {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
}
.se-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.se-lead {
  font-size: 1.2rem;
  line-height: 1.65;
  max-width: 65ch;
}
.se-section {
  padding-block: 80px;
  border-bottom: 1px solid var(--line);
}
.se-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
}
.se-section-heading > p {
  max-width: 45ch;
}
.se-hero {
  padding-block: 72px;
}
.se-hero-copy {
  max-width: 790px;
}
.se-hero .se-photo {
  margin: 0;
}
.se-photo img {
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius);
}
.se-hero .se-photo img {
  aspect-ratio: 16/10;
}
.se-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}
.se-hero .se-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.se-hero-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.se-hero-note ul {
  margin-bottom: 0;
}
.se-stories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.se-story {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.se-story figure {
  margin-bottom: 26px;
}
.se-story .se-photo img {
  aspect-ratio: 16/10;
}
.se-story > p {
  font-size: 1rem;
}
.se-story h3 a {
  text-decoration: none;
}
.se-story h3 a:hover {
  text-decoration: underline;
}
.se-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.se-note {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
}
.se-note p {
  font-size: 1rem;
}
.se-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.reading {
  max-width: 740px;
}
.se-small {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
}
.se-notice {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.86rem;
  line-height: 1.6;
}
.se-form-panel {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.se-form-result {
  margin-top: 18px;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.se-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.se-plan {
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: var(--radius);
  background: var(--surface);
}
.se-plan.se-featured {
  border: 2px solid var(--ink);
}
.se-plan h3 {
  font-size: 1.5rem;
}
.se-price {
  font-family: Display, sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 24px 0;
}
.se-price small {
  font:
    400 0.9rem/1.4 Body,
    sans-serif;
  white-space: nowrap;
}
.se-plan li {
  font-size: 0.94rem;
}
.se-plan .se-action {
  margin-top: 15px;
}
.badge {
  display: inline-block;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 0.75rem;
  margin-bottom: 20px;
}
.se-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
summary {
  font-size: 1.12rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.5;
}
details p {
  padding-top: 15px;
  font-size: 1rem;
}
.se-breadcrumbs {
  font-size: 0.82rem;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-block: 26px;
  margin: 0;
  list-style: none;
}
.se-breadcrumbs li {
  margin: 0;
}
.se-page-title {
  padding-block: 44px 60px;
}
.se-page-title h1 {
  max-width: 25ch;
}
.se-prose-grid {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(0, 1fr);
  gap: 70px;
}
.se-prose section {
  margin-bottom: 44px;
}
.se-prose section:last-child {
  margin-bottom: 0;
}
.se-prose h2 {
  font-size: 1.8rem;
}
.se-prose p {
  max-width: 70ch;
}
.se-toc {
  position: sticky;
  top: 30px;
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius);
}
.se-toc ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.se-toc li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}
.se-article-photo {
  margin-bottom: 48px;
}
.se-article-photo img {
  max-height: 560px;
}
.se-recap {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 45px;
  background: var(--surface);
}
.se-sources {
  margin-top: 30px;
  font-size: 0.95rem;
}
.se-sources ul {
  display: flex;
  gap: 16px 28px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.source-note {
  margin-top: 20px;
}
.se-institution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.se-institution section {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.se-institution section h2 {
  font-size: 1.8rem;
}
.se-institution section p {
  font-size: 1.05rem;
}
.se-credits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.se-credit {
  overflow-wrap: anywhere;
}
.se-credit h2 {
  font-size: 1.4rem;
  margin-top: 24px;
}
.se-credit p {
  font-size: 0.88rem;
}
.se-credit img {
  aspect-ratio: 3/2;
  object-fit: cover;
}
.se-site-footer {
  padding: 50px 0;
}
.se-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 40px;
}
.se-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
}
.se-footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}
.se-footer-brand .se-brand {
  margin-bottom: 20px;
}
.se-footer-brand > p {
  max-width: 38ch;
  font-size: 0.92rem;
}
.table-scroll {
  overflow: auto;
}
.table-scroll th {
  font-size: 0.9rem;
}
.table-scroll .se-price {
  font-size: 1.6rem;
}
.se-plan summary {
  font-family: Display, sans-serif;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.se-plan summary .se-price {
  margin: 0;
}
.se-standalone-letter {
  max-width: 800px;
  margin: auto;
}
.se-related {
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid var(--line);
}
.se-plain-list {
  list-style: none;
  padding: 0;
}
.se-plain-list li {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.pill-list li {
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 0.9rem;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[hidden] {
  display: none !important;
}
@media (max-width: 1000px) {
  .se-navigation {
    gap: 12px;
    font-size: 0.8rem;
  }
  .se-brand {
    font-size: 26px;
  }
  .se-navrow {
    gap: 16px;
  }
  .se-hero-layout {
    gap: 30px;
  }
  .se-columns {
    grid-template-columns: 1fr 1fr;
  }
  .se-prose-grid {
    gap: 35px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.4fr);
  }
  .se-plan {
    padding: 22px;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 17px;
  }
  .se-wrap {
    width: calc(100% - 36px);
  }
  h1 {
    font-size: clamp(2.05rem, 8.2vw, 3.3rem);
    max-width: none;
  }
  h2 {
    font-size: 1.85rem;
  }
  h3 {
    font-size: 1.42rem;
  }
  .se-section {
    padding-block: 46px;
  }
  .se-hero {
    padding-block: 45px;
  }
  .se-hero-layout,
  .se-split,
  .se-prose-grid,
  .se-institution,
  .se-credits,
  .se-columns,
  .se-stories,
  .se-plans,
  .se-faq,
  .se-footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .se-hero-layout,
  .se-split {
    gap: 30px;
  }
  .se-section-heading {
    display: block;
  }
  .se-section-heading > p {
    margin-top: 16px;
  }
  .se-story,
  .se-note,
  .se-plan,
  .se-form-panel,
  .se-institution section {
    padding: 23px;
  }
  .se-lead {
    font-size: 1.09rem;
  }
  .se-js .se-menu-button {
    display: block;
  }
  .se-navrow {
    flex-wrap: wrap;
    padding-block: 20px;
  }
  .se-js .se-navigation {
    display: none;
  }
  .se-js .se-navigation.se-open {
    display: flex;
  }
  .se-navigation {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
  }
  .se-navigation a {
    padding: 12px;
    font-size: 1rem;
  }
  .se-navigation .se-action {
    margin-top: 12px;
  }
  .se-strap {
    font-size: 0.7rem;
  }
  .band .se-wrap {
    flex-wrap: wrap;
    gap: 6px;
  }
  .se-toc {
    position: static;
  }
  .se-page-title {
    padding-block: 24px 35px;
  }
  .se-page-title h1 {
    max-width: none;
  }
  .se-prose-grid .se-toc {
    order: -1;
  }
  .se-prose h2 {
    font-size: 1.55rem;
  }
  .se-price {
    font-size: 2.2rem;
  }
  .se-plan summary .se-price {
    font-size: 1.8rem;
  }
  .se-photo img,
  .se-hero .se-photo img {
    aspect-ratio: 4/3;
  }
  .se-article-photo {
    margin-bottom: 28px;
  }
  .se-footer-grid {
    gap: 30px;
  }
  .se-site-footer {
    padding: 38px 0;
  }
  .se-footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 22px;
  }
  th,
  td {
    padding: 12px;
    font-size: 0.85rem;
  }
  .table-scroll table {
    min-width: 620px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 1100px) {
  .se-masthead {
    position: fixed;
    left: 0;
    top: 0;
    width: 230px;
    height: 100vh;
    border-right: 1px solid var(--line);
    z-index: 10;
    background: var(--bg);
  }
  .se-masthead .se-wrap {
    width: calc(100% - 32px);
  }
  .se-masthead .se-navrow,
  .se-masthead .se-navigation {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .se-masthead .se-brand {
    font-size: 25px;
  }
  .se-masthead .se-navigation a {
    padding: 12px 0;
  }
  .se-masthead .se-strap {
    margin-top: 28px;
  }
  main,
  .se-site-footer {
    margin-left: 230px;
  }
  .se-hero-layout {
    grid-template-columns: 1fr;
  }
  .se-hero h1 {
    max-width: 23ch;
  }
}
.se-hero-note {
  background: white;
}
.se-hero-note li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.se-stories {
  gap: 18px;
}
.se-story {
  border-radius: 4px;
}
.se-plans {
  display: block;
}
.se-plan {
  margin-bottom: 18px;
}
.se-institution {
  grid-template-columns: 1fr;
}
.se-institution section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
}
.se-footer-grid {
  grid-template-columns: 1fr 1fr;
}
.se-footer-brand {
  grid-column: 1/-1;
}
@media (min-width: 761px) and (max-width: 1099px) {
  .se-masthead .se-navrow {
    flex-wrap: wrap;
  }
  .se-masthead .se-strap {
    width: 100%;
  }
  .se-masthead .se-navigation {
    flex: 1;
  }
  .se-masthead .se-brand {
    flex-shrink: 0;
  }
}
@media (max-width: 760px) {
  .se-hero-copy,
  .se-hero-layout,
  .hero-observations,
  .se-stories,
  .se-story,
  .se-story:first-child,
  .se-story:nth-child(even),
  .se-plans,
  .se-plan,
  .se-plan:last-child,
  .se-institution,
  .se-institution section,
  .se-prose-grid,
  .se-footer-grid {
    display: block;
    grid-template-columns: none;
  }
  .se-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.3rem);
    max-width: none;
  }
  .se-hero-copy h1 {
    margin-bottom: 22px;
  }
  .se-hero .se-photo,
  .se-hero-note {
    margin-top: 26px;
  }
  .hero-photo-first .se-photo {
    margin-top: 0;
  }
  .se-hero-copy .se-actions {
    margin-top: 24px;
  }
  .se-story,
  .se-story:nth-child(even) {
    padding: 24px 0;
    margin-bottom: 30px;
  }
  .se-story {
    padding: 24px;
  }
  .se-story figure {
    margin: 0 0 25px;
  }
  .se-story:nth-child(even) figure,
  .se-story:nth-child(even) .se-story-copy,
  .se-story figure,
  .se-story .se-story-copy {
    grid-column: auto;
    grid-row: auto;
  }
  .se-plan,
  .se-plan:nth-child(2),
  .se-plan:nth-child(3),
  .se-plan:last-child {
    width: 100%;
    margin: 0 0 22px;
    padding: 24px;
  }
  .se-plan .se-price,
  .se-plan summary .se-price {
    font-size: 2rem;
    margin: 22px 0;
    text-align: left;
  }
  .se-plan summary {
    display: block;
  }
  .se-institution section,
  .se-institution section:nth-child(even) {
    width: 100%;
    margin: 0 0 22px;
    padding: 24px;
  }
  .se-institution section h2 {
    font-size: 1.7rem;
  }
  .se-institution section:nth-child(even) {
    padding-top: 24px;
  }
  .se-toc ul {
    columns: 1;
  }
  .se-prose-grid .se-prose,
  .se-prose-grid .se-toc {
    grid-column: auto;
    grid-row: auto;
  }
  .se-prose-grid .se-toc {
    margin-bottom: 35px;
  }
  .se-hero .se-photo img,
  .hero-panorama .se-photo img,
  .hero-photo-first img {
    aspect-ratio: 4/3;
    max-height: none;
  }
  .se-footer-grid > * {
    margin-bottom: 28px;
  }
  .se-site-footer .se-brand {
    font-size: 28px;
  }
  .hero-observations {
    margin-top: 25px;
  }
  .hero-observations .se-photo {
    margin-top: 24px;
  }
  .table-scroll {
    display: none;
  }
  .se-mobile-price-list {
    display: block;
  }
  .se-section-heading h2 {
    max-width: none;
  }
  .hero-panorama {
    margin-top: 28px;
  }
  .se-hero .se-hero-note h2 {
    font-size: 1.6rem;
  }
}
@media (min-width: 761px) {
  .se-mobile-price-list {
    display: none;
  }
}
