:root {
  --paper: #f9fafb;
  --paper-2: #eef1f5;
  --paper-3: #dde4ec;
  --ink: #171821;
  --ink-2: #525461;
  --ink-3: #858895;
  --line: rgba(23, 24, 33, 0.12);
  --line-soft: rgba(23, 24, 33, 0.07);
  --terra: #e85d3a;
  --terra-deep: #c2492f;
  --navy: #071226;
  --blue: #2f6bff;
  --green: #1e8a5b;
  --gold: #b88a2f;
  --white: #ffffff;
  --display: "Fraunces", Georgia, serif;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

::selection {
  background: rgba(232, 93, 58, 0.22);
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 248, 0.9);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px) saturate(1.2);
}

.nav.is-hero {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  color: var(--white);
}

.nav.solid {
  position: sticky;
  background: rgba(251, 250, 248, 0.92);
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}

.nav__inner {
  width: min(1280px, calc(100% - 40px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  transition: filter 180ms ease;
}

.nav.is-hero:not(.solid) .brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 1px 7px rgba(7, 18, 38, 0.36));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__links a,
.nav__signin {
  white-space: nowrap;
  padding: 9px 12px;
  border-radius: 8px;
  color: currentColor;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.72;
}

.nav__links a:hover,
.nav__links a.active,
.nav__signin:hover {
  background: rgba(23, 24, 33, 0.06);
  opacity: 1;
}

.nav.is-hero:not(.solid) .nav__links a:hover,
.nav.is-hero:not(.solid) .nav__signin:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav__toggle span,
.nav__toggle::before,
.nav__toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:active {
  transform: translateY(1px);
}

.button--primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 12px 28px -16px rgba(232, 93, 58, 0.75);
}

.button--primary:hover {
  background: var(--terra-deep);
  transform: translateY(-1px);
}

.button--ghost {
  border-color: var(--line);
}

.button--ghost:hover {
  border-color: rgba(23, 24, 33, 0.26);
}

.nav.is-hero:not(.solid) .button--ghost {
  border-color: rgba(255, 255, 255, 0.24);
}

.nav.is-hero:not(.solid) .button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--terra-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terra);
}

.section {
  padding: 96px 0;
}

.section--soft {
  background: var(--paper-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--line {
  border-top: 1px solid var(--line-soft);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h1,
.section-head h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.04;
}

.section-head h1 {
  font-size: 64px;
}

.section-head h2 {
  font-size: 52px;
}

.section-head em,
.home-hero em,
.big-line em,
.page-hero em {
  color: var(--terra);
  font-style: italic;
  font-weight: 400;
}

.section-head p {
  margin: 20px auto 0;
  color: var(--ink-2);
  font-size: 18px;
  max-width: 650px;
}

.section--dark .section-head p,
.section--dark .muted {
  color: rgba(255, 255, 255, 0.66);
}

.home-hero {
  position: relative;
  min-height: 88vh;
  padding: 118px 0 56px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: hidden;
}

.home-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% center;
  display: block;
}

.home-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 18, 38, 1) 0%, rgba(7, 18, 38, 0.86) 24%, rgba(7, 18, 38, 0.28) 62%, rgba(7, 18, 38, 0.02) 100%),
    linear-gradient(to left, rgba(7, 18, 38, 0.9) 0%, rgba(7, 18, 38, 0.72) 34%, rgba(7, 18, 38, 0.2) 64%, rgba(7, 18, 38, 0) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 48px;
  align-items: end;
}

.home-hero__copy {
  grid-column: 2;
}

.home-hero h1 {
  margin: 16px 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 68px;
  line-height: 1.04;
}

.home-hero h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
}

.home-hero p {
  margin: 24px 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 19px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.next-peek {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.purpose-strip {
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line-soft);
}

.hero-stat {
  width: min(1180px, calc(100% - 48px));
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
  z-index: 1;
}

.hero-stat div {
  min-height: 116px;
  padding: 22px;
  background: rgba(7, 18, 38, 0.72);
}

.hero-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
}

.hero-stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.purpose-strip div {
  padding: 10px 24px;
  border-left: 1px solid var(--line-soft);
}

.purpose-strip div:first-child {
  border-left: 0;
}

.purpose-strip strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.purpose-strip span {
  display: block;
  margin-top: 4px;
  color: var(--ink-2);
  font-size: 13px;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.person-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 20px 48px -42px rgba(23, 24, 33, 0.42);
}

.person-card__photo {
  height: 260px;
  background: var(--paper-2);
  overflow: hidden;
}

.person-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.person-card--teacher .person-card__photo img {
  object-position: 72% center;
}

.person-card--research .person-card__photo img {
  object-position: center 26%;
}

.person-card--leader .person-card__photo img {
  object-position: center 20%;
}

.person-card--business .person-card__photo img {
  object-position: 94% center;
}

.person-card__body {
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.kicker {
  color: var(--terra-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.person-card h3 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.08;
  font-weight: 500;
}

.person-card p {
  margin: 14px 0 0;
  color: var(--ink-2);
  font-size: 14px;
}

.card-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--terra-deep);
  font-weight: 800;
  font-size: 14px;
}

.story-slab {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.story-slab__line {
  margin: 0;
  font-family: var(--display);
  font-size: 56px;
  line-height: 1.04;
  font-weight: 500;
}

.story-slab__copy p {
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 18px;
}

.story-slab__copy p:last-child {
  margin-bottom: 0;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.promise {
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}

.promise__n {
  color: var(--terra-deep);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
}

.promise h3 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.12;
}

.promise p {
  margin: 10px 0 0;
  color: var(--ink-2);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.path-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  min-height: 520px;
  box-shadow: 0 22px 48px -42px rgba(23, 24, 33, 0.5);
}

.path-card__shot {
  height: 260px;
  background: #f5f6f8;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.path-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.path-card__body {
  padding: 24px;
}

.path-card h3 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.08;
}

.path-card p {
  margin: 14px 0 0;
  color: var(--ink-2);
}

.system-list {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.system-rail {
  position: sticky;
  top: 96px;
}

.system-rail h2 {
  margin: 16px 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 50px;
  line-height: 1.05;
}

.system-rail p {
  color: var(--ink-2);
  font-size: 18px;
}

.product-groups {
  display: grid;
  gap: 28px;
}

.product-group h3 {
  margin: 0 0 14px;
  color: var(--ink-3);
  font-size: 13px;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-tile {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  text-decoration: none;
}

.product-tile:hover {
  border-color: rgba(232, 93, 58, 0.35);
}

.product-tile img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
}

.product-tile strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
}

.product-tile span {
  display: block;
  margin-top: 3px;
  color: var(--ink-2);
  font-size: 13px;
}

.product-tile[data-status="soon"] {
  opacity: 0.72;
}

.product-catalog {
  display: grid;
  gap: 16px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink-2);
  font-family: var(--sans);
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.product-card {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  text-decoration: none;
}

.product-card.is-hidden {
  display: none;
}

.product-card img {
  width: 132px;
  height: 112px;
  box-sizing: border-box;
  border-radius: 8px;
  object-fit: contain;
  padding: 14px;
  background: linear-gradient(135deg, #fff 0%, var(--paper-2) 100%);
  border: 1px solid var(--line-soft);
}

.product-card.product-card--screen {
  grid-template-columns: 300px 1fr auto;
}

.product-card.product-card--screen img {
  width: 300px;
  height: 168px;
  padding: 0;
  object-fit: contain;
  background: #fff;
}

.product-card.product-card--photo {
  grid-template-columns: 220px 1fr auto;
}

.product-card.product-card--photo img {
  width: 220px;
  height: 136px;
  padding: 0;
  object-fit: cover;
  background: var(--paper-2);
}

.product-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
}

.product-card p {
  margin: 8px 0 0;
  color: var(--ink-2);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  padding: 5px 8px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
}

.arrow {
  color: var(--terra-deep);
  font-weight: 900;
}

.big-line {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.big-line h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 58px;
  font-weight: 500;
  line-height: 1.05;
}

.big-line p {
  margin: 20px auto 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.page-hero {
  padding: 118px 0 72px;
  text-align: center;
}

.page-hero h1 {
  margin: 18px auto 0;
  max-width: 850px;
  font-family: var(--display);
  font-size: 64px;
  font-weight: 500;
  line-height: 1.04;
}

.page-hero p {
  margin: 22px auto 0;
  max-width: 680px;
  color: var(--ink-2);
  font-size: 19px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.story-image {
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-2);
}

.story-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.story-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.08;
}

.story-copy p {
  color: var(--ink-2);
  font-size: 17px;
}

.audience-stack {
  display: grid;
  gap: 76px;
}

.audience-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) 1.14fr;
  gap: 44px;
  align-items: center;
}

.audience-row:nth-child(even) {
  grid-template-columns: 1.14fr minmax(280px, 0.86fr);
}

.audience-row:nth-child(even) .audience-media {
  grid-column: 2;
}

.audience-row:nth-child(even) .audience-copy {
  grid-column: 1;
  grid-row: 1;
}

.audience-media {
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-2);
}

.audience-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}

#educators .audience-media img {
  object-position: center center;
}

#business .audience-media img {
  object-position: center center;
}

.audience-copy h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: 44px;
  line-height: 1.06;
  font-weight: 500;
}

.audience-copy > p {
  color: var(--ink-2);
  font-size: 17px;
}

.quiet-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.quiet-list li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-2);
}

.quiet-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terra);
}

.method-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.method-step {
  min-height: 238px;
  padding: 24px;
  background: var(--paper);
}

.method-step span {
  color: var(--terra-deep);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.method-step h3 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.08;
}

.method-step p {
  color: var(--ink-2);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  text-decoration: none;
}

.feature strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
}

.feature p {
  margin: 8px 0 0;
  color: var(--ink-2);
}

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

.pricing-wrap {
  width: min(1320px, calc(100% - 48px));
}

.price-toggle {
  display: inline-flex;
  gap: 4px;
  margin-top: 28px;
  padding: 5px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  box-shadow: 0 18px 46px -38px rgba(23, 24, 33, 0.55);
}

.price-toggle button {
  min-height: 38px;
  padding: 8px 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink-2);
  font-family: var(--sans);
  font-weight: 800;
  cursor: pointer;
}

.price-toggle button.active {
  background: var(--ink);
  color: var(--white);
}

.price-toggle span {
  color: var(--terra);
  font-weight: 900;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.price-note {
  margin-top: 28px;
  color: var(--ink-3);
  text-align: center;
  font-size: 14px;
}

.price-card.featured {
  border-color: rgba(232, 93, 58, 0.42);
  box-shadow: 0 22px 50px -42px rgba(232, 93, 58, 0.75);
}

.price-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 600;
}

.price {
  margin-top: 16px;
  font-size: 38px;
  font-weight: 800;
  white-space: nowrap;
}

.price span {
  color: var(--ink-3);
  font-size: 15px;
  font-weight: 600;
}

.price-card p,
.price-card li {
  color: var(--ink-2);
}

.price-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  font-size: 13px;
  line-height: 1.45;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 12px;
  margin-right: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(42deg) translateY(-1px);
  color: var(--green);
  font-weight: 800;
}

.price-card li.dim {
  color: var(--ink-3);
}

.price-card .button {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding-inline: 14px;
  white-space: nowrap;
}

.analysis-depth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.analysis-depth-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.analysis-depth-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
}

.analysis-depth-card p {
  margin: 10px 0 0;
  color: var(--ink-2);
  font-weight: 700;
}

.analysis-depth-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.65;
}

.comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 58px -48px rgba(23, 24, 33, 0.55);
}

.compare-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.compare-table th {
  color: var(--ink);
  font-weight: 900;
}

.compare-table td:not(:first-child),
.compare-table th:not(:first-child) {
  text-align: center;
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table .group-row td {
  background: var(--paper);
  color: var(--terra-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.faq summary {
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-2);
}

.cta-band {
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  margin: 0 auto;
  max-width: 760px;
  font-family: var(--display);
  font-size: 56px;
  line-height: 1.05;
  font-weight: 500;
}

.cta-band p {
  max-width: 590px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.cta-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-band .button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 110px 0 70px;
}

.product-hero-grid h1 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: 62px;
  line-height: 1.04;
  font-weight: 500;
}

.product-hero-grid p {
  color: var(--ink-2);
  font-size: 18px;
}

.product-shot {
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 26px 60px -48px rgba(23, 24, 33, 0.62);
}

.product-shot img {
  width: 100%;
  display: block;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.role-hero {
  padding: 118px 0 88px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}

.role-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 54px;
  align-items: center;
}

.role-hero h1 {
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: 66px;
  line-height: 1.02;
  font-weight: 500;
}

.role-hero h1 em {
  color: var(--terra);
  font-style: italic;
  font-weight: 400;
}

.role-hero p {
  margin: 22px 0 0;
  max-width: 680px;
  color: var(--ink-2);
  font-size: 19px;
}

.role-hero-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-2);
}

.role-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.6;
  object-fit: cover;
}

.role-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.role-product-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}

.role-product-card:hover {
  border-color: rgba(232, 93, 58, 0.42);
}

.role-product-card img {
  width: 82px;
  height: 82px;
  box-sizing: border-box;
  padding: 10px;
  object-fit: contain;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, var(--paper-2) 100%);
  border: 1px solid var(--line-soft);
}

.role-product-card h3 {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.08;
}

.role-product-card p {
  margin: 9px 0 0;
  color: var(--ink-2);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.proof-number {
  margin: 0;
  font-family: var(--display);
  font-size: 102px;
  line-height: 0.92;
  font-weight: 500;
  color: var(--terra);
}

.proof-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 46px;
  line-height: 1.06;
  font-weight: 500;
}

.proof-copy p {
  color: var(--ink-2);
  font-size: 17px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.mini-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
}

.mini-card p {
  color: var(--ink-2);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.purpose-footer {
  padding: 78px 0 30px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.74);
}

.purpose-footer__inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.purpose-footer__grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.35fr) repeat(4, minmax(140px, 1fr));
  gap: 34px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.purpose-footer .brand-logo {
  height: 36px;
}

.purpose-footer__brand p {
  max-width: 300px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.purpose-footer__contact {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  font-size: 14px;
}

.purpose-footer__contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 700;
}

.purpose-footer__contact a:hover,
.purpose-footer__links a:hover {
  color: var(--white);
}

.purpose-footer__links h4 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purpose-footer__links ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.purpose-footer__links a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.purpose-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.legal-prose {
  max-width: 860px;
  margin: 0 auto;
}

.legal-prose h2 {
  margin: 34px 0 10px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose p,
.legal-prose li {
  color: var(--ink-2);
  font-size: 17px;
}

.legal-prose a {
  color: var(--terra-deep);
  font-weight: 800;
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  text-decoration: none;
}

.contact-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
}

.contact-card p {
  color: var(--ink-2);
}

.contact-card strong {
  margin-top: auto;
  color: var(--terra-deep);
  font-size: 14px;
}

@media (max-width: 980px) {
  .home-hero__content,
  .system-list,
  .two-col,
  .product-hero-grid,
  .role-hero-grid,
  .story-slab,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    grid-column: 1;
    max-width: 620px;
  }

  .people-grid,
  .promise-grid,
  .path-grid,
  .analysis-depth-grid,
  .contact-grid,
  .mini-grid,
  .role-products,
  .method-path {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .purpose-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .system-rail {
    position: static;
  }

  .audience-row,
  .audience-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .audience-row:nth-child(even) .audience-media,
  .audience-row:nth-child(even) .audience-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .product-card {
    grid-template-columns: 92px 1fr;
  }

  .product-card.product-card--screen {
    grid-template-columns: 220px 1fr;
  }

  .product-card.product-card--screen img {
    width: 220px;
    height: 132px;
  }

  .product-card.product-card--photo {
    grid-template-columns: 180px 1fr;
  }

  .product-card.product-card--photo img {
    width: 180px;
    height: 116px;
  }

  .product-card .arrow {
    display: none;
  }

  .pricing-wrap {
    width: min(100% - 32px, 1180px);
  }

  .pricing-grid {
    gap: 10px;
  }

  .price-card {
    padding: 20px 14px;
  }

  .price-card h3 {
    font-size: 24px;
  }

  .price-card p,
  .price-card li {
    font-size: 12px;
  }

  .price-card li::before {
    margin-right: 7px;
  }
}

@media (max-width: 1120px) {
  .nav__inner {
    gap: 12px;
  }

  .nav__links {
    gap: 1px;
  }

  .nav__links a,
  .nav__signin {
    padding: 8px 8px;
    font-size: 13px;
  }

  .nav__actions {
    gap: 6px;
  }

  .nav__actions .button {
    padding-inline: 16px;
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  .wrap,
  .home-hero__content,
  .nav__inner {
    width: min(100% - 32px, 1180px);
  }

  .nav__links,
  .nav__signin {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .nav.open {
    background: rgba(249, 250, 251, 0.96);
    color: var(--ink);
  }

  .nav.open .nav__links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 64px;
    display: grid;
    gap: 2px;
    padding: 12px;
    background: rgba(249, 250, 251, 0.98);
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    box-shadow: 0 22px 58px -42px rgba(23, 24, 33, 0.6);
  }

  .home-hero {
    min-height: 86vh;
    padding-top: 96px;
  }

  .home-hero h1,
  .section-head h1,
  .page-hero h1,
  .role-hero h1,
  .product-hero-grid h1 {
    font-size: 42px;
  }

  .section-head h2,
  .big-line h2,
  .cta-band h2,
  .system-rail h2 {
    font-size: 36px;
  }

  .section {
    padding: 72px 0;
  }

  .people-grid,
  .promise-grid,
  .path-grid,
    .product-grid,
    .pricing-grid,
    .analysis-depth-grid,
    .contact-grid,
    .mini-grid,
    .role-products,
    .purpose-strip,
    .hero-stat,
    .method-path {
    grid-template-columns: 1fr;
  }

  .purpose-footer__grid {
    grid-template-columns: 1fr;
  }

  .purpose-footer__bottom {
    display: grid;
  }

  .hero-stat {
    width: min(100% - 32px, 1180px);
  }

  .story-slab__line {
    font-size: 38px;
  }

  .audience-copy h2,
  .story-copy h2,
  .proof-copy h2 {
    font-size: 34px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card img {
    width: 132px;
    height: 124px;
    justify-self: start;
    aspect-ratio: auto;
  }

  .product-card.product-card--screen {
    grid-template-columns: 1fr;
  }

  .product-card.product-card--screen img {
    width: min(100%, 300px);
    height: 168px;
  }

  .product-card.product-card--photo {
    grid-template-columns: 1fr;
  }

  .product-card.product-card--photo img {
    width: 100%;
    height: 180px;
  }

  .role-hero {
    padding: 98px 0 70px;
  }

  .role-product-card {
    grid-template-columns: 76px 1fr;
  }

  .role-product-card img {
    width: 68px;
    height: 68px;
  }

  .footer-inner {
    width: min(100% - 32px, 1180px);
    align-items: flex-start;
    flex-direction: column;
  }

  .person-card {
    min-height: auto;
  }

  .purpose-strip div,
  .purpose-strip div:first-child {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .purpose-strip div:first-child {
    border-top: 0;
  }
}
