:root {
  --navy: #202b46;
  --navy-deep: #121829;
  --navy-mid: #1a2338;
  --blue: #007aff;
  --blue-deep: #1e5493;
  --blue-soft: #5d87ff;
  --teal: #00c7be;
  --red: #d62025;
  --red-deep: #a51418;
  --red-soft: #e85a5e;
  --gold: #ddb67c;
  --gold-ink: #b8893f;
  --gold-soft: rgba(221, 182, 124, 0.28);
  --bg: #f5f8fc;
  --bg-elevated: #ffffff;
  --text: #202b46;
  --text-muted: #5a6a85;
  --line: rgba(32, 43, 70, 0.12);
  --surface: #eef3f9;
  --font-display: "Spectral", "Source Sans 3", serif;
  --font-body: "Source Sans 3", sans-serif;
  --shell: min(1120px, calc(100% - 3rem));
  --header-h: 4.25rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  background:
    radial-gradient(1000px 520px at 90% -5%, rgba(0, 122, 255, 0.08), transparent 55%),
    radial-gradient(820px 440px at -8% 18%, rgba(214, 32, 37, 0.12), transparent 52%),
    radial-gradient(800px 420px at 12% 70%, rgba(221, 182, 124, 0.16), transparent 50%),
    radial-gradient(720px 420px at 58% 6%, rgba(214, 32, 37, 0.1), transparent 48%),
    radial-gradient(700px 400px at 78% 100%, rgba(214, 32, 37, 0.08), transparent 45%),
    var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.ambient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  animation: drift 18s var(--ease-out) infinite alternate;
}

.ambient__glow--blue {
  width: 42vw;
  height: 42vw;
  top: -12vw;
  right: -8vw;
  background: rgba(0, 122, 255, 0.16);
}

.ambient__glow--gold {
  width: 28vw;
  height: 28vw;
  bottom: 10vh;
  left: -8vw;
  background: rgba(221, 182, 124, 0.28);
  animation-delay: -6s;
}

.ambient__glow--red {
  width: 34vw;
  height: 34vw;
  top: 28vh;
  right: 12vw;
  background: rgba(214, 32, 37, 0.22);
  animation-delay: -10s;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 84, 147, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 84, 147, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 15%, transparent 72%);
  opacity: 0.55;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(3%, 4%, 0) scale(1.08);
  }
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 max(1.5rem, calc((100% - 1120px) / 2));
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
    backdrop-filter 0.35s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(245, 248, 252, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.brand img {
  width: 148px;
  height: auto;
}

.nav {
  display: flex;
  gap: 1.35rem;
  margin-left: auto;
}

.nav a,
.link-quiet {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover,
.link-quiet:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
  transition: transform 0.25s var(--ease-out);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto;
  z-index: 40;
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  color: var(--text);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease-out), background 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.btn--sm {
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.92rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 55%, #8f1014 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(214, 32, 37, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 14px 36px rgba(214, 32, 37, 0.4);
}

.btn--ghost {
  border-color: rgba(214, 32, 37, 0.35);
  background: rgba(255, 255, 255, 0.72);
  color: var(--red-deep);
}

.btn--ghost:hover {
  border-color: var(--red);
  color: var(--red);
  background: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: calc(var(--header-h) + 3.25rem) max(1.75rem, calc((100% - 1120px) / 2)) 4.5rem;
  overflow: clip;
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.08);
  filter: saturate(0.85) contrast(0.95);
  opacity: 0.45;
  animation: hero-zoom 18s var(--ease-out) infinite alternate;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-1.5%, -1%, 0);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 248, 252, 0.88) 0%, rgba(245, 248, 252, 0.92) 42%, rgba(245, 248, 252, 0.98) 78%, var(--bg) 100%),
    radial-gradient(ellipse at 50% 18%, rgba(245, 248, 252, 0.7), transparent 55%),
    linear-gradient(135deg, rgba(214, 32, 37, 0.07), transparent 42%),
    linear-gradient(225deg, rgba(0, 122, 255, 0.06), transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 42rem;
  padding: 0;
  text-align: center;
  justify-self: center;
}

.brand-mark {
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 7.2vw, 5.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--navy);
  position: relative;
  display: inline-block;
}

.brand-mark::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 0.28rem;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.brand-mark--sm {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1.25rem;
}

.hero .brand-mark {
  margin: 0 auto 1.75rem;
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.hero .brand-mark::after {
  width: 4rem;
  margin: 1rem auto 0;
}

.hero__title {
  margin: 0 auto 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.28;
  color: var(--navy);
  max-width: 18em;
}

.hero__lede {
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 32rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.15rem;
}

.hero__audience {
  margin: 1.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero__product {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  margin: 2.25rem auto 0;
  padding-bottom: 0;
}

.shot-frame--hero {
  box-shadow:
    0 4px 16px rgba(32, 43, 70, 0.06),
    0 28px 70px rgba(32, 43, 70, 0.18);
  border-radius: 0;
}

.hero__proof {
  list-style: none;
  margin: 0;
  padding: 1.1rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.25rem;
}

@media (min-width: 720px) {
  .hero__proof {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-top: 1.35rem;
  }
}

.hero__proof li {
  display: grid;
  gap: 0.15rem;
  padding-top: 0.75rem;
  border-top: 2px solid var(--red);
}

.hero__proof strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.hero__proof span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero__scroll {
  position: absolute;
  right: max(1.5rem, calc((100% - 1120px) / 2));
  bottom: 3.25rem;
  z-index: 1;
  writing-mode: vertical-rl;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero__scroll span {
  animation: pulse-fade 2.4s ease-in-out infinite;
}

@keyframes pulse-fade {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

.mission {
  padding-top: 5rem;
}

/* Sections */
.section {
  padding: 6.5rem 0;
  position: relative;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--accent {
  color: var(--red-deep);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.28;
  max-width: none;
  color: var(--navy);
}

.section-lede {
  margin: 1.35rem 0 0;
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 42rem;
}

.section-head {
  width: 100%;
  max-width: 75%;
  margin-bottom: 3.25rem;
}

.is-centered {
  text-align: center;
}

.is-centered.section-head,
.section-head.is-centered {
  margin-left: auto;
  margin-right: auto;
}

.is-centered .section-title,
.is-centered .section-lede,
.is-centered .brand-mark {
  margin-left: auto;
  margin-right: auto;
}

.is-centered .section-title {
  max-width: none;
}

.is-centered .section-lede {
  max-width: 42rem;
}

.is-centered .brand-mark::after {
  margin-left: auto;
  margin-right: auto;
}

.is-end {
  text-align: right;
}

.is-end .section-title,
.is-end .section-lede,
.is-end .check-list,
.is-end .text-link {
  margin-left: auto;
}

.section-head.is-end {
  margin-left: auto;
  margin-right: 0;
}

.is-start {
  text-align: left;
}

.is-start .section-title,
.is-start .section-lede {
  margin-left: 0;
  margin-right: auto;
}

.section-head.is-start {
  margin-left: 0;
  margin-right: auto;
}

.is-end .section-title,
.is-start .section-title {
  max-width: none;
}

.is-end .section-lede,
.is-start .section-lede {
  max-width: 42rem;
}

.is-end .check-list li {
  padding-left: 0;
  padding-right: 1.4rem;
}

.is-end .check-list li::before {
  left: auto;
  right: 0;
}

.product .section-head {
  max-width: 75%;
  margin-bottom: 2.5rem;
}

.product .section-title {
  max-width: none;
  line-height: 1.28;
}

.product .is-centered .section-title {
  max-width: none;
}

.product .section-lede {
  max-width: 42rem;
}

.product-caption {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}

.mission {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 122, 255, 0.05), transparent 60%);
}

.mission > .shell {
  max-width: var(--shell);
}

.mission > .shell.is-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mission > .shell.is-centered > * {
  width: 100%;
  max-width: 75%;
}

.mission .section-title {
  max-width: none;
}

.mission.is-centered .section-title,
.mission .is-centered .section-title {
  max-width: none;
}

/* Story */
.story {
  border-top: 1px solid var(--line);
  background: var(--bg-elevated);
}

.story__inner {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.story__inner--centered {
  justify-items: center;
  text-align: center;
}

.story__inner--centered .story__copy {
  width: 100%;
  max-width: 46rem;
}

.story__inner--centered .story__body {
  margin-left: auto;
  margin-right: auto;
}

.story__inner--centered .story__aside {
  width: 100%;
  max-width: 40rem;
  text-align: left;
}

.story__inner--centered .story__aside-label {
  text-align: center;
}

@media (min-width: 900px) {
  .story__inner:not(.story__inner--centered) {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 3.5rem;
  }

  .story__inner--flip:not(.story__inner--centered) {
    grid-template-columns: 0.85fr 1.35fr;
  }

  .story__inner--flip:not(.story__inner--centered) .story__aside {
    order: -1;
  }

  .story__inner--flip .story__copy.is-end .section-title {
    max-width: none;
    margin-left: auto;
  }
}

.story .section-title {
  max-width: none;
}

.story__body {
  margin: 1.15rem 0 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 40rem;
}

.story__aside {
  border: 1px solid var(--line);
  padding: 1.5rem;
  background:
    linear-gradient(160deg, rgba(214, 32, 37, 0.07), transparent 50%),
    #fff;
}

.story__aside-label {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story__aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.story__aside li {
  color: var(--text-muted);
  line-height: 1.45;
  padding-left: 0.9rem;
  border-left: 2px solid var(--gold);
}

.story__aside strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

/* Year one objectives */
.objectives {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(214, 32, 37, 0.05), transparent 40%),
    var(--bg-elevated);
}

.objectives-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .objectives-grid {
    grid-template-columns: 1fr 1fr;
  }

  .objective:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 1.75rem;
  }

  .objective:nth-child(even) {
    padding-left: 1.75rem;
  }

  .objective:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

.objective {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 800px) {
  .objective {
    border-bottom: 0;
  }
}

.objective__stat {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--red);
}

.objective h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.objective p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 36rem;
}

.metrics-strip {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  justify-content: center;
}

.metrics-strip li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.metrics-strip strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  margin-right: 0.25rem;
}

/* Four executive questions */
.questions {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(214, 32, 37, 0.05), transparent 45%);
}

.questions-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  counter-reset: none;
}

@media (min-width: 800px) {
  .questions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .questions-grid li:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 1.75rem;
  }

  .questions-grid li:nth-child(even) {
    padding-left: 1.75rem;
  }

  .questions-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

.questions-grid li {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.45rem;
  text-align: center;
  justify-items: center;
}

@media (min-width: 800px) {
  .questions-grid li {
    border-bottom: 0;
  }
}

.questions-grid span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
}

.questions-grid strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.25;
}

.questions-grid p {
  margin: 0;
  color: var(--text-muted);
}

.question-link {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--blue-deep);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(30, 84, 147, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.question-link:hover {
  color: var(--red);
  border-bottom-color: rgba(214, 32, 37, 0.45);
}

/* Strategy pillars */
.pillars {
  border-top: 1px solid var(--line);
  background: var(--bg-elevated);
}

.pillars-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.pillar {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.pillar > span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
}

.pillar h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.pillar p {
  margin: 0;
  color: var(--text-muted);
  max-width: 52rem;
  line-height: 1.6;
}

/* Markets */
.markets {
  border-top: 1px solid var(--line);
}

.markets-grid {
  display: grid;
  gap: 1.5rem;
}

.markets-grid--centered .market-block {
  text-align: center;
}

.markets-grid--centered .market-block li {
  padding-left: 0;
}

.markets-grid--centered .market-block li::before {
  display: none;
}

@media (min-width: 800px) {
  .markets-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .markets-grid--centered {
    grid-template-columns: repeat(2, minmax(0, 22rem));
    justify-content: center;
  }
}

.market-block {
  padding: 1.5rem 0 0;
  border-top: 2px solid var(--red);
}

.market-block h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.market-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.market-block li {
  color: var(--text-muted);
  padding-left: 0.9rem;
  position: relative;
}

.market-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--gold-ink);
}

/* Customer journey flow */
.customer-journey {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 122, 255, 0.04), transparent 40%);
}

.journey-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  counter-reset: step;
}

.journey-flow li {
  counter-increment: step;
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0 1rem 3rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.journey-flow li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
  font-size: 0.9rem;
}

.journey-flow strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}

.journey-flow span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .journey-flow {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
    max-width: 52rem;
    margin-inline: auto;
  }
}

/* Five capability pillars */
@media (min-width: 1000px) {
  .feature-grid--five {
    grid-template-columns: repeat(5, 1fr);
  }

  .feature-grid--five .feature-pillar {
    border-right: 1px solid var(--line);
    border-bottom: 0;
    padding: 1.75rem 1rem;
  }

  .feature-grid--five .feature-pillar:nth-child(odd),
  .feature-grid--five .feature-pillar:nth-child(even) {
    padding-left: 1rem;
    padding-right: 1rem;
    border-left: 0;
  }

  .feature-grid--five .feature-pillar:first-child {
    padding-left: 0;
  }

  .feature-grid--five .feature-pillar:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .feature-grid--five .feature-pillar:nth-child(-n + 2) {
    border-bottom: 0;
  }
}

/* Capabilities — 2-column grid */
.capabilities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .capabilities {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
    row-gap: 0;
  }

  .capability:nth-child(odd) {
    padding-right: 0.5rem;
  }

  .capability:nth-child(even) {
    padding-left: 0.5rem;
    border-left: 1px solid var(--line);
  }
}

.capability {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0.35rem 1rem;
  align-content: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}

.capability:hover {
  background: linear-gradient(90deg, rgba(214, 32, 37, 0.07), transparent 55%);
}

.capability__index {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1.2;
  padding-top: 0.15rem;
}

.capability h3 {
  grid-column: 2;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.capability p {
  grid-column: 2;
  margin: 0.3rem 0 0;
  color: var(--text-muted);
  max-width: none;
  font-size: 1rem;
  line-height: 1.55;
}

.product-stage {
  margin: 0 0 2.75rem;
}

.product-stage__frame {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 960px) {
  .product-stage__frame {
    grid-template-columns: 1.55fr 0.85fr;
    gap: 1.75rem;
    align-items: stretch;
  }
}

.domain-rail {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.domain-rail li {
  margin: 0;
}

.domain-rail button {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.domain-rail button:hover {
  color: var(--navy);
  border-color: rgba(32, 43, 70, 0.28);
}

.domain-rail li.is-active button {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.exec-callouts {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: var(--navy);
  color: #fff;
  display: grid;
  align-content: start;
  gap: 1.15rem;
}

.exec-callouts__label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.exec-callouts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.exec-callouts li {
  display: grid;
  gap: 0.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.exec-callouts li:first-child {
  padding-top: 0;
  border-top: 0;
}

.exec-callouts strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.exec-callouts span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

.shot-frame {
  margin: 0;
  border: 1px solid rgba(157, 180, 206, 0.35);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(32, 43, 70, 0.14);
}

.shot-frame__chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(90deg, var(--red-deep), var(--blue-deep));
  color: #fff;
}

.shot-frame__chrome span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.shot-frame__chrome span:nth-child(1) {
  background: #d62025;
}
.shot-frame__chrome span:nth-child(2) {
  background: #ddb67c;
}
.shot-frame__chrome span:nth-child(3) {
  background: #00c7be;
}

.shot-frame__chrome p {
  margin: 0 0 0 0.6rem;
  font-size: 0.78rem;
  opacity: 0.95;
}

.shot-frame img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.shot-frame--side {
  align-self: center;
}

.shot-caption {
  margin: 0;
  padding: 0.75rem 0.9rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Capabilities feature grid */
.feature-caps {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(214, 32, 37, 0.04), transparent 35%),
    var(--bg-elevated);
}

.feature-caps .section-title {
  max-width: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-pillar:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .feature-pillar:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

.feature-pillar {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 800px) {
  .feature-pillar {
    border-bottom: 0;
  }

  .feature-pillar:nth-child(odd) {
    padding-right: 1.75rem;
  }

  .feature-pillar:nth-child(even) {
    padding-left: 1.75rem;
  }
}

.feature-caps .feature-pillar {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-pillar h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.feature-pillar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
  width: 100%;
}

.feature-caps .feature-pillar ul {
  max-width: 16rem;
}

.feature-pillar li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-muted);
  line-height: 1.45;
  text-align: left;
}

.feature-caps .feature-pillar li {
  padding-left: 0;
  text-align: center;
}

.feature-pillar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--gold-ink);
}

.feature-caps .feature-pillar li::before {
  display: none;
}

.feature-caps .feature-pillar li::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.45rem auto 0;
  background: var(--gold);
  opacity: 0.7;
}

.feature-caps .feature-pillar li:last-child::after {
  display: none;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 122, 255, 0.04), transparent 40%);
}

.faq__inner {
  max-width: none;
}

.faq .section-head {
  max-width: 75%;
}

.faq .section-head {
  margin-bottom: 2.25rem;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.2rem;
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item summary:hover {
  color: var(--red-deep);
}

.faq-item p {
  margin: 0 0 1.35rem;
  color: var(--text-muted);
  max-width: 42rem;
  line-height: 1.65;
}

.faq-item a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-caption {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.app-frame {
  border: 1px solid rgba(157, 180, 206, 0.28);
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
  color: #2a3547;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.app-frame__chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(90deg, var(--red-deep), var(--blue-deep));
  color: #fff;
}

.app-frame__chrome span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.app-frame__chrome span:nth-child(1) {
  background: #d62025;
}
.app-frame__chrome span:nth-child(2) {
  background: #ddb67c;
}
.app-frame__chrome span:nth-child(3) {
  background: #00c7be;
}

.app-frame__chrome p {
  margin: 0 0 0 0.6rem;
  font-size: 0.78rem;
  opacity: 0.9;
}

.app-shell {
  display: grid;
  grid-template-columns: 4.25rem 1fr;
  min-height: 320px;
}

.app-sidebar {
  background: #202b46;
  padding: 0.85rem 0.65rem;
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.app-sidebar__mark {
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 auto 0.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.45rem;
  background: linear-gradient(135deg, #007aff, #1e5493);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
}

.app-sidebar__item {
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.app-sidebar__item.is-active {
  background: #00c7be;
}

.app-main {
  padding: 1rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 122, 255, 0.08), transparent 40%),
    #f8fafc;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.app-topbar strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.app-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0c7a5a;
  background: rgba(0, 199, 190, 0.16);
  padding: 0.3rem 0.55rem;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.app-metric,
.app-panel {
  background: #fff;
  border: 1px solid #e5eaef;
  padding: 0.85rem;
}

.app-metric span,
.app-panel__head span,
.student-mock__label {
  display: block;
  font-size: 0.75rem;
  color: #5a6a85;
  font-weight: 600;
}

.app-metric strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: #1e5493;
}

.app-metric small {
  color: #7c8fac;
  font-size: 0.75rem;
}

.app-panel--wide {
  grid-column: 1 / 3;
}

.app-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.app-panel__head span {
  color: #007aff;
}

.app-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 0.4rem;
  height: 6.5rem;
}

.app-bars div {
  height: var(--h);
  background: linear-gradient(180deg, #5d87ff, #1e5493);
}

.app-panel ul {
  margin: 0.65rem 0 0;
  padding-left: 1rem;
  color: #5a6a85;
  font-size: 0.88rem;
}

.app-panel li + li {
  margin-top: 0.35rem;
}

.app-frame--compact .flow-mock {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.45rem;
  align-items: center;
  padding: 1.25rem;
  background: #f4f7fb;
}

.flow-node {
  background: #fff;
  border: 1px solid #dfe5ef;
  padding: 0.85rem 0.7rem;
  min-height: 5.5rem;
}

.flow-node strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.flow-node span {
  color: #5a6a85;
  font-size: 0.8rem;
}

.flow-node.is-ai {
  border-color: #007aff;
  box-shadow: inset 0 0 0 1px rgba(0, 122, 255, 0.15);
}

.flow-node.is-value {
  border-color: #ddb67c;
  background: linear-gradient(180deg, #fff, #fff8ec);
}

.flow-arrow {
  width: 1.1rem;
  height: 2px;
  background: #1e5493;
  position: relative;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  border: 4px solid transparent;
  border-left-color: #1e5493;
}

/* Partnership */
.partnership {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(221, 182, 124, 0.18), transparent 42%),
    var(--bg-elevated);
}

.partnership__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .partnership__inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
  }

  .partnership__inner--flip {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .partnership__inner--flip .partner-badge {
    order: -1;
  }
}

@media (max-width: 899px) {
  .is-end,
  .story__copy.is-end,
  .section-head.is-end {
    text-align: center;
  }

  .is-end .section-title,
  .is-end .section-lede,
  .is-end .check-list,
  .is-end .text-link {
    margin-left: auto;
    margin-right: auto;
  }

  .is-end .check-list li {
    padding-right: 0;
    padding-left: 1.4rem;
    text-align: left;
  }

  .is-end .check-list li::before {
    left: 0;
    right: auto;
  }
}

.check-list {
  margin: 1.5rem 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--red);
}

.text-link {
  color: var(--red);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--red-deep);
}

.partner-badge {
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
  background:
    linear-gradient(160deg, rgba(214, 32, 37, 0.08), transparent 50%),
    linear-gradient(180deg, #fff, #f7fafc);
  box-shadow: 0 18px 40px rgba(32, 43, 70, 0.08);
}

.partner-badge__kicker {
  margin: 0;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-badge__title {
  margin: 0.55rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.partner-badge__body {
  margin: 0;
  color: var(--text-muted);
}

.partner-badge__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.partner-badge__meta span {
  border: 1px solid rgba(184, 137, 63, 0.45);
  color: var(--gold-ink);
  background: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
}

/* Workflows */
.workflows {
  background: linear-gradient(180deg, rgba(0, 122, 255, 0.05), transparent 50%);
}

.split-feature {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .split-feature {
    grid-template-columns: 1.25fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
  }

  .split-feature--flip {
    grid-template-columns: 0.9fr 1.25fr;
  }

  .split-feature--flip .shot-frame {
    order: 2;
  }

  .split-feature--flip .feature-points {
    order: 1;
  }
}

.feature-points {
  display: grid;
  gap: 1.35rem;
  align-content: start;
}

.feature-points .btn {
  justify-self: start;
  margin-top: 0.5rem;
}

.feature-point {
  padding-left: 1rem;
  border-left: 2px solid var(--red);
}

.feature-point h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.feature-point p {
  margin: 0;
  color: var(--text-muted);
}

/* Students */
.students {
  position: relative;
  overflow: clip;
  border-block: 1px solid var(--line);
}

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

.students__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.9);
}

.students__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 248, 252, 0.96), rgba(245, 248, 252, 0.88) 50%, rgba(245, 248, 252, 0.92)),
    linear-gradient(180deg, rgba(0, 122, 255, 0.08), transparent 45%);
}

.students .shell,
.students__inner {
  position: relative;
  z-index: 1;
}

.students__inner {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 900px) {
  .students__inner {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .students__inner .students__copy.is-centered {
    max-width: 44rem;
    margin-inline: auto;
  }

  .students__inner .journey {
    max-width: 52rem;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
  }
}

.journey {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: journey;
  display: grid;
  gap: 1rem;
}

.journey li {
  counter-increment: journey;
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0 1rem 3rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.journey li::before {
  content: counter(journey, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
}

.journey strong {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.journey span {
  color: var(--text-muted);
}

.app-frame--student {
  margin-bottom: 0.5rem;
}

.student-mock {
  background: #f7f9fc;
  color: #2a3547;
}

.student-mock__progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  padding: 0.85rem;
  background: #e8eef6;
}

.student-step {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.35rem;
  background: #fff;
  color: #7c8fac;
  border: 1px solid #dfe5ef;
}

.student-step.is-done {
  color: #1e5493;
  border-color: #5d87ff;
}

.student-step.is-current {
  color: #fff;
  background: linear-gradient(135deg, #007aff, #1e5493);
  border-color: transparent;
}

.student-mock__body {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

@media (min-width: 700px) {
  .student-mock__body {
    grid-template-columns: 1.4fr 0.7fr;
  }
}

.student-mock__body h3 {
  margin: 0.35rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.student-mock__body p {
  margin: 0;
  color: #5a6a85;
}

.student-mock__aside {
  background: #202b46;
  color: #fff;
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: 0.25rem;
}

.student-mock__aside p {
  margin: 0;
  color: #9aadc2;
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.student-mock__aside strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  color: #ddb67c;
}

.student-mock__aside span {
  color: #9aadc2;
  font-size: 0.85rem;
}

/* Differentiators */
.difference {
  background:
    linear-gradient(180deg, transparent, rgba(214, 32, 37, 0.04) 40%, transparent),
    var(--bg-elevated);
  border-block: 1px solid var(--line);
}

.difference .section-head.is-centered .section-title {
  max-width: none;
}

.diff-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  max-width: 56rem;
  margin-inline: auto;
}

.diff-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0 1.35rem 1.25rem;
  border-left: 3px solid var(--red);
  background: linear-gradient(90deg, rgba(214, 32, 37, 0.08), var(--gold-soft) 40%, transparent 70%);
}

.diff-list strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.diff-list span {
  color: var(--text-muted);
  max-width: 48ch;
}

@media (min-width: 800px) {
  .diff-list {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
  }
}

/* CTA / contact */
.cta-band {
  padding-bottom: 7rem;
}

.cta-band__shot {
  margin: 1.75rem 0 0;
  border: 1px solid rgba(157, 180, 206, 0.35);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(32, 43, 70, 0.12);
  max-width: 28rem;
}

.cta-band__shot img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-band__inner {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .cta-band__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .cta-band__copy.is-centered {
    text-align: left;
  }

  .cta-band__copy.is-centered .section-title,
  .cta-band__copy.is-centered .section-lede,
  .cta-band__copy.is-centered .brand-mark {
    margin-left: 0;
    margin-right: 0;
  }

  .cta-band__copy.is-centered .brand-mark::after {
    margin-left: 0;
  }
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(0, 122, 255, 0.06), transparent 45%),
    var(--bg-elevated);
  box-shadow: 0 18px 40px rgba(32, 43, 70, 0.06);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--text);
  padding: 0.85rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214, 32, 37, 0.14);
}

.contact-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.25rem;
}

.contact-form .btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.contact-form__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.form-status--success {
  color: #1e5493;
}

.form-status--error {
  color: var(--red-deep);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.form-note a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
  background: #fff;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-logo {
  width: 132px;
  margin-bottom: 0.85rem;
}

.site-footer p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-top: 0.45rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--red);
}

.footer-bar {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero .reveal:nth-child(1) {
  transition-delay: 0.05s;
}
.hero .reveal:nth-child(2) {
  transition-delay: 0.14s;
}
.hero .reveal:nth-child(3) {
  transition-delay: 0.24s;
}
.hero .reveal:nth-child(4) {
  transition-delay: 0.34s;
}
.hero .reveal:nth-child(5) {
  transition-delay: 0.44s;
}
.hero__product.reveal {
  transition-delay: 0.5s;
}

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

  .ambient__glow,
  .hero__media img,
  .hero__scroll span {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 860px) {
  .nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .hero__title {
    max-width: none;
  }

  .hero__scroll {
    display: none;
  }

  .hero__product {
    margin-top: 2.25rem;
  }

  .capability {
    grid-template-columns: 3rem 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .app-shell {
    grid-template-columns: 3.25rem 1fr;
  }

  .app-grid {
    grid-template-columns: 1fr 1fr;
  }

  .app-panel--wide {
    grid-column: 1 / -1;
  }

  .app-frame--compact .flow-mock {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    width: 2px;
    height: 1rem;
    margin-inline: auto;
  }

  .flow-arrow::after {
    right: -3px;
    top: auto;
    bottom: -1px;
    border-left-color: transparent;
    border-top-color: #1e5493;
  }

  .student-mock__progress {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .section-head,
  .mission > .shell.is-centered > *,
  .faq .section-head {
    max-width: 100%;
  }
}
