/* ============================================================
   POSTLY — ABOUT PAGE
   public/styling/about.css

   NAVBAR STYLING DOES NOT BELONG HERE.

   Shared navbar:
   public/styling/landing-navbar.css
============================================================ */

:root {
  --postly-black: #111111;
  --postly-charcoal: #252525;

  --postly-gray-900: #333333;
  --postly-gray-700: #555555;
  --postly-gray-600: #6b7280;
  --postly-gray-500: #7c7c7c;
  --postly-gray-300: #d8d8d8;
  --postly-gray-200: #e7e7e7;
  --postly-gray-100: #f3f3f3;
  --postly-gray-50: #f9f9f9;

  --white: #ffffff;

  --postly-yellow: #f4d03f;
  --postly-yellow-dark: #ad900d;
  --postly-yellow-soft: #fff9dc;
  --postly-yellow-softer: #fffdf2;

  --postly-blue: #0091ea;
  --postly-blue-dark: #006bb3;
  --postly-blue-soft: #edf8ff;

  --postly-green: #10b981;
  --postly-green-dark: #087a57;
  --postly-green-soft: #ecfdf5;

  --page-width: 1180px;

  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);

  --shadow-sm: 0 5px 16px rgba(0, 0, 0, 0.055);

  --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.08);

  --shadow-lg: 0 30px 72px rgba(0, 0, 0, 0.11);
}

/* ============================================================
   RESET
============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--white);

  color: var(--postly-black);

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;

  font-size: 16px;
  line-height: 1.65;

  -webkit-font-smoothing: antialiased;

  text-rendering: optimizeLegibility;
}

img {
  display: block;

  max-width: 100%;
}

a {
  color: inherit;

  text-decoration: none;
}

button,
input {
  font: inherit;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

/* ============================================================
   PRODUCT TYPOGRAPHY
============================================================ */

.eyebrow,
.button,
.system-item__number,
.system-item__description,
.principle-card__index,
.repeat-card__audience,
.audience-card__label,
.keyword-stack,
.evolution__item span,
.site-footer__heading {
  font-family:
    "Andale Mono", AndaleMono, ui-monospace, SFMono-Regular, Menlo, Monaco,
    Consolas, monospace;
}

/* ============================================================
   GLOBAL LAYOUT
============================================================ */

.page-container {
  width: min(calc(100% - 48px), var(--page-width));

  margin: 0 auto;
}

.content-section {
  position: relative;

  padding: 112px 0;
}

.content-section--bordered {
  border-top: 1px solid var(--postly-gray-200);
  border-bottom: 1px solid var(--postly-gray-200);
}

.content-section--soft {
  background: linear-gradient(180deg, #fbfbfb 0%, #f7f7f7 100%);
}

.content-section--dark {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(0, 145, 234, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(16, 185, 129, 0.06),
      transparent 30%
    ),
    var(--postly-black);

  color: var(--white);
}

.content-section--dark::before {
  position: absolute;

  top: 0;
  right: 0;
  left: 0;

  height: 4px;

  background: linear-gradient(
    90deg,
    var(--postly-yellow) 0%,
    var(--postly-yellow) 52%,
    var(--postly-blue) 52%,
    var(--postly-blue) 78%,
    var(--postly-green) 78%,
    var(--postly-green) 100%
  );

  content: "";
}

/* ============================================================
   TYPOGRAPHY
============================================================ */

.eyebrow {
  margin-bottom: 18px;

  color: var(--postly-yellow-dark);

  font-size: 12px;
  font-weight: 700;

  line-height: 1.4;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--postly-yellow);
}

h1,
h2,
h3 {
  color: var(--postly-black);

  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(48px, 6vw, 78px);

  line-height: 1.03;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);

  line-height: 1.1;
}

h3 {
  font-size: 22px;

  line-height: 1.3;
}

.section-heading {
  max-width: 770px;

  margin-bottom: 62px;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p:last-child {
  margin-bottom: 0;

  color: var(--postly-gray-700);

  font-size: 18px;

  line-height: 1.75;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;

  text-align: center;
}

/* ============================================================
   BUTTONS
============================================================ */

.button {
  min-height: 50px;

  padding: 13px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid transparent;
  border-radius: var(--radius-xs);

  font-size: 14px;
  font-weight: 700;

  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  border-color: var(--postly-yellow);

  background: var(--postly-yellow);

  color: var(--postly-black);

  box-shadow: 0 7px 20px rgba(244, 208, 63, 0.16);
}

.button--primary:hover {
  border-color: var(--postly-black);

  background: var(--postly-black);

  color: var(--white);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.13);
}

.button--secondary {
  border-color: #cccccc;

  background: var(--white);

  color: var(--postly-black);
}

.button--secondary:hover {
  border-color: var(--postly-blue);

  background: var(--postly-blue-soft);

  color: var(--postly-blue-dark);
}

.button--white {
  border-color: var(--white);

  background: var(--white);

  color: var(--postly-black);
}

.button--white:hover {
  border-color: var(--postly-yellow);

  background: var(--postly-yellow);

  color: var(--postly-black);
}

.button--dark-outline {
  border-color: #4d4d4d;

  background: transparent;

  color: var(--white);
}

.button--dark-outline:hover {
  border-color: var(--postly-green);

  color: var(--postly-green);
}

/* ============================================================
   HERO
============================================================ */

.about-hero {
  position: relative;

  overflow: hidden;

  padding: 128px 0 88px;

  background:
    radial-gradient(
      circle at 84% 22%,
      rgba(244, 208, 63, 0.17),
      transparent 27%
    ),
    radial-gradient(
      circle at 18% 84%,
      rgba(0, 145, 234, 0.055),
      transparent 22%
    ),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.about-hero::before {
  position: absolute;

  top: 96px;
  right: -80px;

  width: 220px;
  height: 220px;

  border: 1px solid rgba(244, 208, 63, 0.24);

  border-radius: 50%;

  background: rgba(244, 208, 63, 0.08);

  content: "";
}

.about-hero::after {
  position: absolute;

  bottom: 60px;
  left: -60px;

  width: 150px;
  height: 150px;

  border: 1px solid rgba(16, 185, 129, 0.12);

  border-radius: 50%;

  content: "";
}

.about-hero__inner {
  position: relative;

  z-index: 2;

  text-align: center;
}

.about-hero h1 {
  max-width: 1020px;

  margin: 0 auto 31px;
}

.about-hero h1 span {
  display: inline;

  background: linear-gradient(
    transparent 72%,
    rgba(244, 208, 63, 0.85) 72%,
    rgba(244, 208, 63, 0.85) 91%,
    transparent 91%
  );
}

.about-hero__lead {
  max-width: 830px;

  margin: 0 auto 38px;

  color: var(--postly-gray-700);

  font-size: 19px;

  line-height: 1.8;
}

.about-hero__actions {
  margin-bottom: 94px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;
}

/* ============================================================
   WORKFLOW
============================================================ */

.about-hero__system {
  max-width: 1000px;

  margin: 0 auto;

  padding: 28px 30px;

  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr
    auto
    1fr
    auto
    1fr;

  align-items: center;

  border: 1px solid var(--postly-gray-200);
  border-radius: var(--radius-sm);

  background: rgba(255, 255, 255, 0.96);

  box-shadow: var(--shadow-sm);

  text-align: left;
}

.system-item {
  display: flex;

  flex-direction: column;
}

.system-item__number {
  margin-bottom: 14px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.08em;
}

.system-item--yellow .system-item__number,
.system-item:nth-child(1) .system-item__number,
.system-item:nth-child(5) .system-item__number {
  color: var(--postly-yellow-dark);
}

.system-item--blue .system-item__number,
.system-item:nth-child(3) .system-item__number {
  color: var(--postly-blue);
}

.system-item--green .system-item__number,
.system-item:nth-child(7) .system-item__number {
  color: var(--postly-green-dark);
}

.system-item__label {
  margin-bottom: 4px;

  color: var(--postly-black);

  font-size: 16px;
  font-weight: 700;
}

.system-item__description {
  color: var(--postly-gray-500);

  font-size: 12px;
}

.system-arrow {
  padding: 0 18px;

  color: #c6c6c6;

  font-size: 20px;
  font-weight: 700;
}

/* ============================================================
   TWO COLUMN CONTENT
============================================================ */

.section-grid {
  display: grid;

  grid-template-columns:
    minmax(260px, 0.85fr)
    minmax(0, 1.35fr);

  gap: 100px;
}

.section-grid__heading {
  max-width: 470px;
}

.section-grid__heading h2 {
  margin-bottom: 0;
}

.section-grid__content {
  max-width: 690px;
}

.prose {
  color: var(--postly-gray-700);

  font-size: 17px;

  line-height: 1.86;
}

.prose p {
  margin-bottom: 24px;
}

.prose__emphasis {
  display: inline;

  color: var(--postly-black);

  font-size: 20px;
  font-weight: 700;

  line-height: 1.6;

  background: linear-gradient(transparent 65%, rgba(244, 208, 63, 0.58) 65%);
}

.prose blockquote {
  margin: 45px 0 0;

  padding: 24px 27px 24px 31px;

  border: 1px solid #efe5a6;
  border-left: 5px solid var(--postly-yellow);

  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;

  background: var(--postly-yellow-softer);

  color: var(--postly-black);

  font-size: 21px;
  font-weight: 650;

  line-height: 1.6;
}

/* ============================================================
   PRINCIPLE CARDS
============================================================ */

.principles-grid {
  display: grid;

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

  gap: 18px;
}

.principle-card {
  position: relative;

  overflow: hidden;

  min-height: 265px;

  padding: 32px;

  border: 1px solid var(--postly-gray-200);

  border-radius: var(--radius-sm);

  background: var(--white);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.principle-card::before {
  position: absolute;

  top: 0;
  right: 0;
  left: 0;

  height: 4px;

  background: var(--postly-yellow);

  content: "";
}

.principle-card--yellow::before {
  background: var(--postly-yellow);
}

.principle-card--blue::before,
.principle-card:nth-child(3n + 2)::before {
  background: var(--postly-blue);
}

.principle-card--green::before,
.principle-card:nth-child(3n)::before {
  background: var(--postly-green);
}

.principle-card:hover {
  transform: translateY(-5px);

  border-color: #cccccc;

  box-shadow: var(--shadow-md);
}

.principle-card__index {
  display: block;

  margin-bottom: 44px;

  color: var(--postly-yellow-dark);

  font-size: 11px;
  font-weight: 700;
}

.principle-card--blue .principle-card__index,
.principle-card:nth-child(3n + 2) .principle-card__index {
  color: var(--postly-blue);
}

.principle-card--green .principle-card__index,
.principle-card:nth-child(3n) .principle-card__index {
  color: var(--postly-green-dark);
}

.principle-card h3 {
  margin-bottom: 14px;
}

.principle-card p {
  margin-bottom: 0;

  color: var(--postly-gray-700);

  font-size: 15px;

  line-height: 1.75;
}

/* ============================================================
   DARK FEATURE
============================================================ */

.feature-split {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 100px;
}

.feature-split h2 {
  max-width: 550px;

  color: var(--white);
}

.feature-split__body {
  color: #c6c6c6;

  font-size: 17px;

  line-height: 1.86;
}

.feature-split__body p {
  margin-bottom: 24px;
}

.feature-split__statement {
  margin-top: 35px;

  padding: 22px 24px;

  border-left: 5px solid var(--postly-yellow);

  background: rgba(255, 255, 255, 0.05);

  color: var(--white);

  font-size: 20px;
  font-weight: 650;
}

/* ============================================================
   REPEATABLE WORK
============================================================ */

.repeat-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 16px;
}

.repeat-card {
  min-height: 300px;

  padding: 29px;

  border: 1px solid var(--postly-gray-200);

  border-top: 4px solid var(--postly-yellow);

  background: var(--white);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.repeat-card--blue,
.repeat-card:nth-child(2) {
  border-top-color: var(--postly-blue);
}

.repeat-card--green,
.repeat-card:nth-child(3) {
  border-top-color: var(--postly-green);
}

.repeat-card:hover {
  transform: translateY(-4px);

  box-shadow: var(--shadow-md);
}

.repeat-card__audience {
  margin-bottom: 45px;

  color: var(--postly-gray-500);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.repeat-card h3 {
  margin-bottom: 16px;
}

.repeat-card > p:last-child {
  margin-bottom: 0;

  color: var(--postly-gray-700);

  font-size: 14px;

  line-height: 1.75;
}

.repeat-conclusion {
  max-width: 720px;

  margin: 68px auto 0;

  text-align: center;
}

.repeat-conclusion p {
  margin-bottom: 14px;

  color: var(--postly-gray-700);

  font-size: 17px;
}

.repeat-conclusion strong {
  display: inline;

  color: var(--postly-black);

  font-size: 21px;

  background: linear-gradient(transparent 65%, rgba(244, 208, 63, 0.72) 65%);
}

/* ============================================================
   AUDIENCE
============================================================ */

.audience-grid {
  display: grid;

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

  gap: 18px;
}

.audience-card {
  position: relative;

  overflow: hidden;

  min-height: 375px;

  padding: 39px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  border: 1px solid var(--postly-gray-200);

  border-radius: var(--radius-sm);

  background: var(--white);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.audience-card::before {
  position: absolute;

  top: 0;
  bottom: 0;
  left: 0;

  width: 5px;

  background: var(--postly-yellow);

  content: "";
}

.audience-card--blue::before,
.audience-card:nth-child(2)::before {
  background: var(--postly-blue);
}

.audience-card--green::before,
.audience-card:nth-child(3)::before {
  background: var(--postly-green);
}

.audience-card:hover {
  transform: translateY(-5px);

  border-color: #cccccc;

  box-shadow: var(--shadow-lg);
}

.audience-card__label {
  margin-bottom: 48px;

  color: var(--postly-yellow-dark);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.07em;

  text-transform: uppercase;
}

.audience-card--blue .audience-card__label,
.audience-card:nth-child(2) .audience-card__label {
  color: var(--postly-blue);
}

.audience-card--green .audience-card__label,
.audience-card:nth-child(3) .audience-card__label {
  color: var(--postly-green-dark);
}

.audience-card h3 {
  max-width: 510px;

  margin-bottom: 18px;

  font-size: 24px;
}

.audience-card p:not(.audience-card__label) {
  max-width: 520px;

  margin-bottom: 0;

  color: var(--postly-gray-700);

  font-size: 15px;

  line-height: 1.75;
}

.audience-card__link {
  width: fit-content;

  margin-top: 38px;

  padding-bottom: 3px;

  display: inline-block;

  border-bottom: 3px solid transparent;

  color: var(--postly-black);

  font-size: 14px;
  font-weight: 700;
}

.audience-card--yellow:hover .audience-card__link,
.audience-card:nth-child(1):hover .audience-card__link,
.audience-card:nth-child(4):hover .audience-card__link {
  border-color: var(--postly-yellow);
}

.audience-card--blue:hover .audience-card__link,
.audience-card:nth-child(2):hover .audience-card__link {
  border-color: var(--postly-blue);
}

.audience-card--green:hover .audience-card__link,
.audience-card:nth-child(3):hover .audience-card__link {
  border-color: var(--postly-green);
}

.center-link {
  margin-top: 40px;

  text-align: center;
}

.center-link a {
  padding-bottom: 3px;

  display: inline-block;

  border-bottom: 3px solid var(--postly-yellow);

  color: var(--postly-black);

  font-size: 14px;
  font-weight: 700;
}

/* ============================================================
   KEYWORDS
============================================================ */

.keyword-stack {
  margin: 34px 0;

  display: flex;

  flex-wrap: wrap;

  gap: 9px;
}

.keyword-stack span {
  padding: 8px 14px;

  display: inline-flex;
  align-items: center;

  border: 1px solid #d2d2d2;
  border-radius: 999px;

  background: var(--white);

  color: var(--postly-black);

  font-size: 12px;
  font-weight: 700;
}

.keyword-stack span:nth-child(3n + 1) {
  border-color: rgba(244, 208, 63, 0.75);

  background: var(--postly-yellow-soft);
}

.keyword-stack span:nth-child(3n + 2) {
  border-color: rgba(0, 145, 234, 0.3);

  background: var(--postly-blue-soft);
}

.keyword-stack span:nth-child(3n) {
  border-color: rgba(16, 185, 129, 0.3);

  background: var(--postly-green-soft);
}

/* ============================================================
   POSITIONING
============================================================ */

.positioning {
  position: relative;

  z-index: 2;

  max-width: 910px;
}

.positioning h2 {
  margin-bottom: 35px;

  color: var(--white);
}

.positioning > p:not(.eyebrow) {
  max-width: 760px;

  color: #c6c6c6;

  font-size: 17px;

  line-height: 1.86;
}

.positioning__highlight {
  margin-top: 36px !important;

  padding: 11px 16px;

  display: inline-block;

  background: var(--postly-yellow);

  color: var(--postly-black) !important;

  font-size: 22px !important;
  font-weight: 700;
}

/* ============================================================
   EVOLUTION
============================================================ */

.evolution {
  max-width: 900px;

  margin: 35px auto 0;

  border-top: 1px solid var(--postly-gray-200);
}

.evolution__item {
  min-height: 108px;

  display: grid;

  grid-template-columns:
    80px
    1fr;

  align-items: center;

  border-bottom: 1px solid var(--postly-gray-200);

  transition:
    padding-left 0.2s ease,
    background-color 0.2s ease;
}

.evolution__item:hover {
  padding-left: 12px;

  background: rgba(255, 255, 255, 0.65);
}

.evolution__item span {
  color: var(--postly-yellow-dark);

  font-size: 11px;
  font-weight: 700;
}

.evolution__item--blue span,
.evolution__item:nth-child(2) span,
.evolution__item:nth-child(5) span {
  color: var(--postly-blue);
}

.evolution__item--green span,
.evolution__item:nth-child(3) span {
  color: var(--postly-green-dark);
}

.evolution__item p {
  margin: 0;

  color: var(--postly-black);

  font-size: clamp(20px, 2.4vw, 27px);

  font-weight: 650;

  letter-spacing: -0.025em;
}

.evolution__closing {
  max-width: 720px;

  margin: 56px auto 0;

  text-align: center;
}

.evolution__closing p {
  color: var(--postly-gray-700);

  font-size: 16px;

  line-height: 1.8;
}

/* ============================================================
   FINAL CTA
============================================================ */

.final-cta {
  position: relative;

  overflow: hidden;

  padding: 125px 0;

  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(244, 208, 63, 0.1),
      transparent 25%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(0, 145, 234, 0.08),
      transparent 28%
    ),
    var(--postly-black);

  color: var(--white);
}

.final-cta::before {
  position: absolute;

  top: 0;
  right: 0;
  left: 0;

  height: 6px;

  background: linear-gradient(
    90deg,
    var(--postly-yellow) 0%,
    var(--postly-yellow) 58%,
    var(--postly-blue) 58%,
    var(--postly-blue) 82%,
    var(--postly-green) 82%,
    var(--postly-green) 100%
  );

  content: "";
}

.final-cta::after {
  position: absolute;

  top: -160px;
  right: -150px;

  width: 390px;
  height: 390px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 50%;

  content: "";
}

.final-cta__inner {
  position: relative;

  z-index: 2;

  max-width: 870px;

  text-align: center;
}

.final-cta h2 {
  margin-bottom: 26px;

  color: var(--white);
}

.final-cta__inner > p:not(.eyebrow) {
  max-width: 730px;

  margin-right: auto;
  margin-left: auto;

  color: #c9c9c9;

  font-size: 18px;

  line-height: 1.8;
}

.final-cta__statement {
  display: inline;

  color: var(--white) !important;

  font-size: 23px !important;
  font-weight: 700;

  background: linear-gradient(transparent 62%, rgba(244, 208, 63, 0.86) 62%);
}

.final-cta__actions {
  margin-top: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;
}

/* ============================================================
   FOOTER
============================================================ */

.site-footer {
  padding: 72px 0 30px;

  border-top: 1px solid var(--postly-gray-200);

  background: var(--postly-gray-50);
}

.site-footer__inner {
  display: grid;

  grid-template-columns:
    1.4fr
    2fr;

  gap: 100px;
}

.site-footer__brand {
  margin-bottom: 14px;

  display: inline-block;

  color: var(--postly-black);

  font-size: 24px;
  font-weight: 800;

  letter-spacing: -0.045em;
}

.site-footer__intro p,
.site-footer__inner > div:first-child p {
  max-width: 390px;

  color: var(--postly-gray-700);

  font-size: 13px;

  line-height: 1.75;
}

.site-footer__links {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 40px;
}

.site-footer__links > div {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.site-footer__heading {
  margin-bottom: 7px;

  color: var(--postly-black);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.06em;

  text-transform: uppercase;
}

.site-footer__links a {
  width: fit-content;

  color: var(--postly-gray-700);

  font-size: 13px;
}

.site-footer__links a:hover {
  color: var(--postly-black);

  text-decoration: underline;

  text-decoration-color: var(--postly-yellow);

  text-decoration-thickness: 2px;

  text-underline-offset: 4px;
}

.site-footer__bottom {
  margin-top: 65px;

  padding-top: 24px;

  border-top: 1px solid var(--postly-gray-200);
}

.site-footer__bottom p {
  margin: 0;

  color: var(--postly-gray-500);

  font-size: 12px;
}

/* ============================================================
   ACCESSIBILITY
============================================================ */

main a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(244, 208, 63, 0.68);

  outline-offset: 4px;
}

/* ============================================================
   TABLET
============================================================ */

@media (max-width: 980px) {
  .about-hero__system {
    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
  }

  .system-arrow {
    display: none;
  }

  .section-grid,
  .feature-split {
    grid-template-columns: 1fr;

    gap: 48px;
  }

  .section-grid__heading {
    max-width: 650px;
  }

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

  .site-footer__inner {
    grid-template-columns: 1fr;

    gap: 50px;
  }
}

/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 760px) {
  .page-container {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .content-section {
    padding: 80px 0;
  }

  .about-hero {
    padding: 88px 0 68px;
  }

  .about-hero::before {
    right: -85px;

    width: 160px;
    height: 160px;
  }

  .about-hero::after {
    display: none;
  }

  .about-hero h1 {
    font-size: 43px;
  }

  .about-hero__lead {
    font-size: 16px;
  }

  .about-hero__actions,
  .final-cta__actions {
    flex-direction: column;
  }

  .about-hero__actions .button,
  .final-cta__actions .button {
    width: 100%;
  }

  .about-hero__system {
    grid-template-columns: 1fr;

    gap: 28px;

    padding: 24px;
  }

  .principles-grid,
  .repeat-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .principle-card,
  .repeat-card,
  .audience-card {
    min-height: auto;
  }

  .principle-card__index,
  .audience-card__label {
    margin-bottom: 30px;
  }

  .section-grid {
    gap: 34px;
  }

  .prose {
    font-size: 16px;
  }

  .prose__emphasis {
    font-size: 19px;
  }

  .prose blockquote {
    font-size: 18px;
  }

  .evolution__item {
    min-height: 94px;

    grid-template-columns:
      52px
      1fr;
  }

  .evolution__item:hover {
    padding-left: 0;
  }

  .evolution__item p {
    font-size: 18px;
  }

  .final-cta {
    padding: 92px 0;
  }

  .site-footer__links {
    grid-template-columns: repeat(2, 1fr);

    row-gap: 35px;
  }
}

/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 440px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .about-hero {
    padding-top: 72px;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;
  }
}
