:root {
  --ink: #151318;
  --paper: #f3efe7;
  --paper-deep: #e8e1d6;
  --muted: #716b70;
  --line: rgba(21, 19, 24, 0.16);
  --red: #d93f44;
  --red-dark: #a9232b;
  --gold: #efc56f;
  --night: #111014;
  --white: #fffdf8;
  --max-width: 1240px;
  --radius: 22px;
  --shadow: 0 32px 80px rgba(14, 11, 16, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--night);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 90px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(217, 63, 68, 0.14);
}

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

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 0.9rem;
}

.site-header nav a {
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  opacity: 1;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.projects-pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.projects-pill {
  border-color: rgba(217, 63, 68, 0.55);
  color: rgba(255, 255, 255, 0.86);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.projects-pill:hover,
.projects-pill:focus-visible,
.projects-pill.is-active {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
  transform: translateY(-1px);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #89e89d;
  box-shadow: 0 0 0 4px rgba(137, 232, 157, 0.12);
}

.status-dot-amber {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(239, 197, 111, 0.12);
}

.hero {
  position: relative;
  min-height: 860px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(32px, 5vw, 90px);
  padding: 150px max(24px, calc((100vw - var(--max-width)) / 2)) 86px;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 24%, rgba(217, 63, 68, 0.22), transparent 30%),
    linear-gradient(135deg, #0d0c10 0%, #171419 55%, #100f13 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.closing h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 750px;
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.hero h1 span,
.closing h2 span {
  color: var(--gold);
}

.hero-intro {
  max-width: 610px;
  margin: 32px 0 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.presence-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 24px;
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.presence-line span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.presence-line span:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #eb4b50;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
  min-height: 590px;
  display: grid;
  place-items: center;
}

.raven-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  z-index: 2;
  width: min(440px, 86%);
  padding: 26px 26px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(28, 25, 31, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotateZ(2deg);
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1), border-color 300ms ease;
}

.raven-card:hover {
  border-color: rgba(239, 197, 111, 0.24);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotateZ(0deg) translateY(-6px);
}

.portrait-frame {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #1b1b1d;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 68%, rgba(10, 9, 12, 0.7)),
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 22%);
  pointer-events: none;
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 500ms ease;
}

.raven-card:hover .portrait-frame img {
  filter: contrast(1.04) brightness(1.03);
  transform: scale(1.025);
}

.portrait-scan {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 8%;
  width: 84%;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(239, 197, 111, 0.8), transparent);
  box-shadow: 0 0 12px rgba(239, 197, 111, 0.5);
}

.raven-card:hover .portrait-scan {
  animation: portrait-scan 1.8s ease-in-out;
}

.portrait-id {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

@keyframes portrait-scan {
  0% { top: 4%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 0.7; }
  100% { top: 92%; opacity: 0; }
}

.visual-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

.caption-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.caption-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #89e89d;
  box-shadow: 0 0 0 3px rgba(137, 232, 157, 0.1);
}

.moon {
  position: absolute;
  top: 6%;
  right: 1%;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 100px rgba(239, 197, 111, 0.36);
}

.moon::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 35px;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #171419;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.orbit-one {
  width: 530px;
  height: 530px;
}

.orbit-two {
  width: 660px;
  height: 380px;
  transform: rotate(-24deg);
}

.section-pad {
  padding: clamp(90px, 12vw, 170px) max(24px, calc((100vw - var(--max-width)) / 2));
}

.manifesto {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: clamp(40px, 7vw, 120px);
}

.section-label {
  display: flex;
  gap: 18px;
  align-items: baseline;
  height: max-content;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label p {
  margin: 0;
}

.section-label span {
  color: var(--red);
  font-weight: 700;
}

.large-copy {
  max-width: 980px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4.3vw, 4.4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.two-column-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 5vw, 80px);
  margin-top: 72px;
  color: var(--muted);
}

.two-column-copy p {
  margin: 0;
}

.capabilities {
  color: var(--white);
  background: var(--night);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.42fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.closing h2 {
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.section-heading > p {
  max-width: 410px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.55);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.capability-card {
  position: relative;
  min-height: 320px;
  padding: clamp(28px, 4vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 200ms ease;
}

.capability-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.capability-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.capability-card:hover::after {
  transform: scaleX(1);
}

.card-number {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}

.card-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 44px 0 28px;
  border: 1px solid rgba(217, 63, 68, 0.32);
  border-radius: 50%;
  color: var(--red);
  font-size: 1.65rem;
  line-height: 1;
}

.card-icon span {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: transform 300ms ease;
}

.capability-card:hover .card-icon span {
  transform: rotate(45deg) scale(1.08);
}

.capability-card h3,
.principle h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.03em;
}

.capability-card p {
  max-width: 450px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
}

.principles {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: clamp(40px, 7vw, 120px);
}

.principle {
  display: grid;
  grid-template-columns: 60px minmax(220px, 0.6fr) 1fr;
  gap: 26px;
  align-items: baseline;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.principle:last-child {
  border-bottom: 1px solid var(--line);
}

.principle > span {
  color: var(--red);
  font-size: 0.75rem;
}

.principle h3,
.principle p {
  margin: 0;
}

.principle p {
  color: var(--muted);
}

.closing {
  position: relative;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  background: #171419;
  overflow: hidden;
}

.closing-orb {
  position: absolute;
  top: -310px;
  left: 50%;
  width: min(780px, 92vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: inset 0 -80px 120px rgba(217, 63, 68, 0.12);
  transform: translateX(-50%);
}

.closing > *:not(.closing-orb) {
  position: relative;
  z-index: 1;
}

.closing-copy {
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.55);
}

.projects-hero {
  position: relative;
  min-height: 920px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(50px, 7vw, 120px);
  padding: 150px max(24px, calc((100vw - var(--max-width)) / 2)) 100px;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 35%, rgba(217, 63, 68, 0.2), transparent 28%),
    radial-gradient(circle at 82% 68%, rgba(239, 197, 111, 0.08), transparent 23%),
    linear-gradient(135deg, #0d0c10 0%, #171419 58%, #100f13 100%);
  overflow: hidden;
}

.projects-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.projects-copy,
.workbench {
  position: relative;
  z-index: 1;
}

.projects-copy h1,
.projects-coming h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.projects-copy h1 {
  font-size: clamp(3.8rem, 6.7vw, 7rem);
}

.projects-copy h1 span,
.projects-coming h2 span {
  color: var(--gold);
}

.projects-intro {
  max-width: 610px;
  margin: 32px 0 0;
  color: rgba(255, 253, 248, 0.66);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.workbench {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(24, 22, 27, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transform: rotate(1.2deg);
}

.workbench-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.workbench-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.workbench-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(239, 197, 111, 0.1);
}

.workbench-core {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.core-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.core-ring-one {
  width: 220px;
  height: 220px;
}

.core-ring-two {
  width: 310px;
  height: 170px;
  transform: rotate(-24deg);
}

.core-mark {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 70px rgba(217, 63, 68, 0.22);
}

.core-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.workbench-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.workbench-list > div {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.workbench-list span,
.workbench-list em {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.64rem;
  font-style: normal;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.workbench-list strong {
  font-size: 0.9rem;
}

.workbench-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.75rem;
  text-align: right;
}

.projects-coming {
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 63, 68, 0.16), transparent 34%),
    var(--night);
}

.projects-coming h2 {
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.projects-coming > p:not(.eyebrow) {
  max-width: 570px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, 0.53);
}

footer {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px max(24px, calc((100vw - var(--max-width)) / 2));
  color: rgba(255, 255, 255, 0.5);
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

footer .brand {
  color: var(--white);
}

footer p {
  margin: 0;
}

footer p:last-child {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .projects-hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .projects-copy {
    max-width: 760px;
  }

  .workbench {
    max-width: 620px;
    justify-self: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .presence-line {
    justify-content: center;
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .principle {
    grid-template-columns: 46px 1fr;
  }

  .principle p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 32px);
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-actions {
    gap: 7px;
  }

  .projects-pill,
  .status-pill {
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .header-actions .status-pill {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 126px 20px 72px;
  }

  .projects-hero {
    min-height: auto;
    padding: 126px 20px 72px;
    text-align: center;
  }

  .projects-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .projects-copy h1 {
    width: 100%;
    font-size: clamp(2.8rem, 13vw, 3.45rem);
  }

  .projects-intro {
    margin-top: 24px;
    font-size: 1rem;
  }

  .workbench {
    margin-top: 26px;
    padding: 16px;
    border-radius: 20px;
    text-align: left;
    transform: none;
  }

  .workbench-topline {
    font-size: 0.56rem;
  }

  .workbench-core {
    min-height: 230px;
  }

  .core-mark {
    width: 96px;
    height: 96px;
  }

  .workbench-list > div {
    grid-template-columns: 28px 1fr;
  }

  .workbench-list em {
    grid-column: 2;
  }

  .workbench-note {
    text-align: left;
  }

  .projects-coming {
    min-height: 580px;
  }

  .projects-coming h2 {
    font-size: 3.15rem;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.7rem, 12.4vw, 3.3rem);
    letter-spacing: -0.06em;
    overflow-wrap: normal;
  }

  .hero-intro {
    width: 100%;
    max-width: 340px;
    margin-top: 24px;
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
    max-width: 350px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 400px;
    margin-top: 14px;
  }

  .raven-card {
    width: min(92%, 390px);
    padding: 16px 16px 12px;
    border-radius: 20px;
  }

  .presence-line {
    max-width: 340px;
    gap: 7px 12px;
  }

  .presence-line span {
    gap: 12px;
  }

  .moon {
    width: 100px;
  }

  .moon::after {
    left: 25px;
    width: 100px;
  }

  .orbit-one {
    width: 360px;
    height: 360px;
  }

  .orbit-two {
    width: 430px;
    height: 260px;
  }

  .section-pad {
    padding: 88px 20px;
  }

  .large-copy {
    font-size: 2.15rem;
  }

  .two-column-copy {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 46px;
  }

  .section-heading h2,
  .closing h2 {
    font-size: 3.2rem;
  }

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

  .capability-card {
    min-height: 270px;
  }

  .principle {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .closing {
    min-height: 600px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 36px;
    text-align: center;
  }

  footer p:last-child {
    justify-self: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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