@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=IBM+Plex+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #edf4ff;
  --paper: rgba(246, 250, 255, 0.78);
  --paper-strong: #f8fbff;
  --ink: #0b1328;
  --muted: #56657f;
  --accent: #0b8cff;
  --accent-deep: #0457c8;
  --forest: #11346f;
  --gold: #31d1ff;
  --border: rgba(11, 19, 40, 0.12);
  --shadow: 0 28px 90px rgba(17, 43, 92, 0.14);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1120px, calc(100% - 2rem));
  --container-wide: min(1240px, calc(100% - 2rem));
  --serif: "Space Grotesk", sans-serif;
  --sans: "IBM Plex Sans", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(11, 140, 255, 0.18), transparent 26%),
    radial-gradient(circle at 88% 22%, rgba(49, 209, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(17, 52, 111, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 52, 111, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  pointer-events: none;
  opacity: 0.42;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-aura {
  position: fixed;
  z-index: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
}

.page-aura--one {
  top: -8rem;
  left: -8rem;
  background: rgba(11, 140, 255, 0.24);
}

.page-aura--two {
  right: -10rem;
  bottom: -10rem;
  background: rgba(49, 209, 255, 0.16);
}

.site-shell {
  position: relative;
  z-index: 1;
}

.site-header,
.site-footer,
.page-section {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  color: #f3f8ff;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
}

.brand-lockup {
  display: grid;
}

.brand-lockup strong {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-lockup small,
.meta-label,
.eyebrow,
.service-card__index,
.tag-list span,
.meta-grid span,
.case-summary__facts span,
.timeline-item span {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-lockup small,
.meta-label,
.eyebrow,
.service-card__index,
.tag-list span,
.meta-grid span,
.case-summary__facts span,
.timeline-item span {
  color: rgba(23, 20, 18, 0.58);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  font-size: 0.92rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--forest) 100%);
  color: #f3f8ff;
  border: 1px solid rgba(11, 140, 255, 0.18);
  box-shadow: 0 18px 38px rgba(11, 140, 255, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--accent-deep) 0%, #0f2758 100%);
  box-shadow: 0 22px 44px rgba(11, 140, 255, 0.22);
}

.button--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
  box-shadow: none;
}

.button--ghost:hover {
  background: rgba(11, 140, 255, 0.08);
  border-color: rgba(11, 140, 255, 0.18);
}

.button--small {
  min-height: 2.7rem;
  padding: 0.7rem 1rem;
}

.site-main {
  padding-bottom: 5rem;
}

.page-section {
  position: relative;
  padding: 0 0 5.5rem;
}

.hero {
  padding-top: 5rem;
}

.hero__grid,
.split-block,
.contact-grid,
.case-hero,
.article-hero,
.project-overview,
.about-grid,
.stack-systems__layout,
.cta-panel {
  display: grid;
  gap: 2rem;
}

.hero__grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  align-items: end;
}

.hero h1,
.page-hero h1,
.case-hero h1,
.article-hero h1,
.not-found h1 {
  margin: 0.4rem 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 9.3vw, 7.5rem);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.page-hero h1,
.case-hero h1,
.article-hero h1 {
  font-size: clamp(3.4rem, 8vw, 6.1rem);
}

.lead,
.section-intro p,
.split-block__lead p,
.page-hero p,
.case-hero__copy p,
.article-hero__copy p,
.contact-card p,
.content-flow p,
.site-footer__lead p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero__copy > .lead {
  max-width: 35rem;
  font-size: 1.18rem;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.35rem;
  color: rgba(11, 19, 40, 0.54);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 2.8rem;
  height: 1px;
  background: rgba(11, 140, 255, 0.18);
  overflow: hidden;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: -1px auto -1px 0;
  width: 0.85rem;
  border-radius: 999px;
  background: var(--accent);
  animation: scroll-cue 1.8s infinite cubic-bezier(0.76, 0, 0.24, 1);
}

.hero-panel,
.service-card,
.contact-card,
.principle-card,
.team-card,
.timeline-item,
.note-panel,
.cta-panel,
.case-summary,
.project-card,
.journal-card,
.metric-card,
.not-found {
  background: var(--paper);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-panel,
.contact-card,
.note-panel,
.case-summary,
.not-found {
  padding: 1.7rem;
  border-radius: var(--radius-lg);
}

.mini-meta,
.site-footer__meta,
.hero-stats,
.meta-grid,
.metric-grid,
.team-grid,
.principles-grid,
.timeline,
.services-grid,
.stack-grid,
.ops-grid,
.journal-grid,
.project-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.mini-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.mini-meta span,
.case-summary__facts span,
.meta-grid span {
  display: block;
  margin-bottom: 0.3rem;
}

.mini-meta strong,
.case-summary__facts strong,
.metric-card strong {
  display: block;
  font-size: 1rem;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2.3rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-stats li {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.hero-stats strong,
.metric-card strong {
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1;
}

.hero-stats span,
.metric-card span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-intro,
.split-block__lead,
.page-hero,
.contact-intro,
.about-intro,
.journal-intro {
  max-width: 44rem;
}

.stack-systems__layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.section-intro h2,
.split-block__lead h2,
.site-footer__lead h2,
.contact-intro h1,
.about-intro h1,
.journal-intro h1,
.case-summary__intro h2,
.not-found h1 {
  margin: 0.25rem 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  line-height: 0.98;
}

.hero-panel h2,
.motion-card h3 {
  margin: 0.25rem 0 0;
  font-family: var(--serif);
  line-height: 0.95;
}

.hero-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.brand-ribbon {
  overflow: hidden;
}

.brand-ribbon__viewport {
  overflow: hidden;
}

.brand-ribbon__track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.brand-ribbon--marquee .brand-ribbon__viewport {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-ribbon--marquee .brand-ribbon__track {
  flex-wrap: nowrap;
  width: max-content;
  animation: ribbon-scroll 24s linear infinite;
}

.brand-ribbon--marquee:hover .brand-ribbon__track {
  animation-play-state: paused;
}

.brand-ribbon__track span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(240, 247, 255, 0.76);
}

.brand-ribbon__track span {
  white-space: nowrap;
}

.hero-panel--kinetic {
  overflow: hidden;
}

.hero-orbit {
  position: relative;
  min-height: 13rem;
  margin-top: 1.35rem;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 1px solid rgba(11, 19, 40, 0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(11, 140, 255, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(248, 251, 255, 0.34), rgba(17, 52, 111, 0.05));
}

.hero-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 12px rgba(11, 140, 255, 0.12);
}

.hero-orbit span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(11, 19, 40, 0.12);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: orbit-pulse 5.8s infinite ease-in-out;
}

.hero-orbit span:nth-child(1) {
  width: 5rem;
  height: 5rem;
}

.hero-orbit span:nth-child(2) {
  width: 10rem;
  height: 10rem;
  animation-delay: 0.35s;
}

.hero-orbit span:nth-child(3) {
  width: 15rem;
  height: 15rem;
  animation-delay: 0.7s;
}

.motion-stage {
  padding-bottom: 7rem;
}

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

.stack-card,
.ops-card,
.ops-panel {
  background: var(--paper);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stack-card,
.ops-card {
  min-height: 100%;
  padding: 1.35rem;
  border-radius: var(--radius-md);
}

.stack-card {
  display: grid;
  gap: 0.55rem;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.94), rgba(229, 240, 255, 0.78));
}

.stack-card__prefix {
  display: inline-flex;
  width: fit-content;
  min-width: 3.3rem;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  background: rgba(11, 140, 255, 0.1);
  color: var(--accent-deep);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stack-card strong,
.ops-card strong {
  font-family: var(--serif);
}

.stack-card strong {
  font-size: 1.45rem;
  line-height: 1;
}

.stack-card small,
.ops-card span,
.project-card__ops {
  color: var(--muted);
}

.stack-card small,
.project-card__ops {
  font-size: 0.9rem;
}

.ops-panel {
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(10, 21, 45, 0.94), rgba(8, 16, 34, 0.98));
  color: #edf5ff;
}

.ops-panel p {
  color: rgba(237, 245, 255, 0.76);
}

.ops-panel h2 {
  margin: 0.25rem 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.98;
}

.ops-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

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

.ops-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 2rem;
  line-height: 1;
  color: #f3f8ff;
}

.ops-card span {
  font-size: 0.92rem;
  color: rgba(237, 245, 255, 0.72);
}

.motion-stage__stack {
  display: grid;
  gap: 1.1rem;
}

.motion-card {
  position: relative;
  display: grid;
  gap: 1.5rem;
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.motion-card::before {
  content: "";
  position: absolute;
  inset: 1.1rem auto auto 1.1rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: var(--motion-accent, rgba(11, 140, 255, 0.16));
  filter: blur(42px);
  opacity: 0.7;
  pointer-events: none;
}

.motion-card--diagnose {
  --motion-accent: rgba(11, 140, 255, 0.2);
}

.motion-card--system {
  --motion-accent: rgba(49, 209, 255, 0.16);
}

.motion-card--launch {
  --motion-accent: rgba(17, 52, 111, 0.18);
}

.motion-card__copy,
.motion-card__visual {
  position: relative;
  z-index: 1;
}

.motion-card__copy {
  display: grid;
  align-content: end;
  gap: 0.85rem;
}

.motion-card h3 {
  font-size: clamp(2.5rem, 5vw, 4.1rem);
}

.motion-card__copy p:last-of-type {
  margin: 0;
  max-width: 24rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.motion-card__visual {
  min-height: 18rem;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, rgba(248, 251, 255, 0.26), rgba(17, 52, 111, 0.08));
}

.motion-card__visual span {
  position: absolute;
}

.motion-card__visual--bars span {
  left: 12%;
  height: 2px;
  border-radius: 999px;
  background: rgba(17, 52, 111, 0.22);
}

.motion-card__visual--bars span:nth-child(1) {
  top: 28%;
  width: 48%;
}

.motion-card__visual--bars span:nth-child(2) {
  top: 46%;
  width: 72%;
}

.motion-card__visual--bars span:nth-child(3) {
  top: 64%;
  width: 38%;
  background: var(--accent);
}

.motion-card__visual--rings span {
  top: 50%;
  left: 50%;
  border: 1px solid rgba(11, 140, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.motion-card__visual--rings span:nth-child(1) {
  width: 7rem;
  height: 7rem;
  background: rgba(49, 209, 255, 0.16);
}

.motion-card__visual--rings span:nth-child(2) {
  width: 14rem;
  height: 14rem;
}

.motion-card__visual--rings span:nth-child(3) {
  width: 21rem;
  height: 21rem;
}

.motion-card__visual--steps span {
  bottom: 16%;
  width: 14%;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, rgba(49, 209, 255, 0.82), rgba(11, 140, 255, 0.74));
}

.motion-card__visual--steps span:nth-child(1) {
  left: 12%;
  height: 20%;
}

.motion-card__visual--steps span:nth-child(2) {
  left: 31%;
  height: 34%;
}

.motion-card__visual--steps span:nth-child(3) {
  left: 50%;
  height: 48%;
}

.motion-card__visual--steps span:nth-child(4) {
  left: 69%;
  height: 66%;
}

.split-block {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.services-grid,
.project-grid,
.journal-grid,
.team-grid,
.principles-grid,
.timeline,
.meta-grid,
.metric-grid,
.gallery-grid,
.site-footer__meta,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.team-card,
.principle-card,
.timeline-item,
.metric-card,
.journal-card,
.project-card {
  padding: 1.45rem;
  border-radius: var(--radius-md);
}

.service-card {
  min-height: 100%;
}

.services-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card--compact {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.88), rgba(233, 243, 255, 0.74));
}

.service-card--compact h3 {
  font-size: 1.5rem;
}

.service-card--compact p {
  font-size: 0.98rem;
}

.service-card--compact small {
  font-family: var(--mono);
  letter-spacing: 0.04em;
  text-transform: none;
}

.service-card h3,
.team-card h3,
.principle-card h3,
.journal-card h3,
.project-card h3,
.contact-card h3 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.service-card p,
.team-card p,
.principle-card p,
.journal-card p,
.project-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.project-card p,
.journal-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.project-card__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.project-card__tech span {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(11, 140, 255, 0.08);
  border: 1px solid rgba(11, 140, 255, 0.12);
  color: var(--accent-deep);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card small,
.project-card__footer,
.journal-card__meta,
.team-card small {
  display: block;
  margin-top: 1rem;
  color: rgba(23, 20, 18, 0.68);
}

.project-grid--featured {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: stretch;
}

.project-card {
  transition: transform 180ms ease, border-color 180ms ease;
}

.project-card:hover,
.journal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 140, 255, 0.24);
}

.project-card__link,
.journal-card__link {
  display: grid;
  gap: 1.2rem;
}

.project-card__visual,
.journal-card__visual,
.case-hero__visual,
.article-hero__visual,
.gallery-grid figure {
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 4px);
  background: linear-gradient(135deg, rgba(248, 251, 255, 0.44), rgba(17, 52, 111, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.project-card__visual img,
.journal-card__visual img,
.case-hero__visual img,
.article-hero__visual img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__visual,
.journal-card__visual {
  aspect-ratio: 4 / 3;
}

.project-card__meta,
.journal-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(23, 20, 18, 0.58);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.project-card__ops {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-hero,
.contact-intro,
.about-intro,
.journal-intro {
  padding-top: 4.4rem;
}

.page-hero p,
.journal-intro p,
.about-intro p,
.contact-intro p {
  max-width: 38rem;
}

.project-overview {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
}

.project-overview__aside,
.contact-card--dark,
.note-panel {
  background: linear-gradient(180deg, rgba(10, 21, 45, 0.94), rgba(8, 16, 34, 0.98));
  color: #edf5ff;
}

.project-overview__aside p,
.contact-card--dark p,
.note-panel p,
.contact-card--dark li,
.note-panel li {
  color: rgba(237, 245, 255, 0.76);
}

.project-overview__aside {
  padding: 1.65rem;
  border-radius: var(--radius-lg);
}

.team-card strong,
.timeline-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.principle-card h3,
.timeline-item strong,
.contact-card h3,
.metric-card strong {
  color: var(--ink);
}

.timeline-item {
  min-height: 100%;
}

.contact-grid {
  align-items: start;
}

.contact-card ul,
.note-panel ul,
.content-flow ul {
  padding-left: 1.1rem;
  margin: 0.8rem 0 0;
}

.contact-card li,
.note-panel li,
.content-flow li {
  margin-bottom: 0.55rem;
}

.contact-card--dark {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-meta {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-meta strong {
  display: block;
  margin-top: 0.2rem;
}

.case-hero,
.article-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: end;
  padding-top: 4.5rem;
}

.case-hero__visual,
.article-hero__visual {
  min-height: 24rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.case-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 1.4rem;
}

.case-summary__facts {
  display: grid;
  gap: 1rem;
}

.tag-list--tech {
  margin-top: 0.9rem;
}

.tag-list--tech span {
  background: rgba(11, 140, 255, 0.08);
  border-color: rgba(11, 140, 255, 0.14);
  color: var(--accent-deep);
  font-family: var(--mono);
}

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

.metric-card {
  text-align: left;
}

.content-flow {
  width: min(100%, 760px);
}

.content-flow h2,
.content-flow h3 {
  margin: 2.4rem 0 0.8rem;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.02;
}

.content-flow p + p {
  margin-top: 1rem;
}

.content-flow blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.44);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.15;
}

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

.gallery-grid figure {
  margin: 0;
  aspect-ratio: 4 / 5;
}

.note-panel {
  width: min(100%, 760px);
}

.cta-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
}

.site-footer {
  display: grid;
  gap: 2rem;
  padding: 0 0 3rem;
}

.site-footer__meta {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.footer-nav {
  display: grid;
  gap: 0.35rem;
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: rgba(23, 20, 18, 0.58);
  font-size: 0.86rem;
}

.not-found {
  width: min(100%, 820px);
}

[data-reveal] {
  --parallax-shift: 0px;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, calc(24px + var(--parallax-shift)), 0) scale(0.985);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1), filter 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, var(--parallax-shift), 0) scale(1);
}

.project-grid > *:nth-child(2),
.journal-grid > *:nth-child(2),
.team-grid > *:nth-child(2),
.timeline > *:nth-child(2) {
  transition-delay: 90ms;
}

.project-grid > *:nth-child(3),
.journal-grid > *:nth-child(3),
.team-grid > *:nth-child(3),
.timeline > *:nth-child(3) {
  transition-delay: 150ms;
}

.motion-ready .motion-stage {
  min-height: 265vh;
}

.motion-ready .motion-stage__sticky {
  position: sticky;
  top: 6rem;
  min-height: calc(100vh - 6rem);
  display: grid;
  align-items: center;
}

.motion-ready .motion-stage__stack {
  position: relative;
  min-height: min(72vh, 42rem);
  display: block;
}

.motion-ready .motion-card {
  position: absolute;
  inset: 0;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  opacity: var(--card-opacity, 1);
  transform: translate3d(0, var(--card-translate, 0px), 0) scale(var(--card-scale, 1)) rotate(var(--card-rotate, 0deg));
  transform-origin: center top;
  transition: transform 220ms ease-out, opacity 220ms ease-out, border-color 220ms ease-out;
  will-change: transform, opacity;
}

@keyframes scroll-cue {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(320%);
  }
}

@keyframes orbit-pulse {
  0%,
  100% {
    opacity: 0.52;
    transform: translate(-50%, -50%) scale(0.98);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes ribbon-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .project-grid--featured,
  .stack-grid,
  .metric-grid,
  .gallery-grid,
  .hero-stats,
  .services-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid,
  .split-block,
  .project-overview,
  .case-hero,
  .article-hero,
  .contact-grid,
  .stack-systems__layout,
  .case-summary,
  .cta-panel,
  .motion-card {
    grid-template-columns: 1fr;
  }

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

  .motion-ready .motion-stage {
    min-height: auto;
  }

  .motion-ready .motion-stage__sticky {
    position: static;
    min-height: auto;
  }

  .motion-ready .motion-stage__stack {
    min-height: auto;
    display: grid;
    gap: 1.1rem;
  }

  .motion-ready .motion-card {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
    padding-top: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 0 0.2rem;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .nav-cta {
    margin-top: 0.4rem;
  }

  .page-section,
  .site-header,
  .site-footer {
    width: min(calc(100% - 1.2rem), 100%);
  }

  .hero,
  .page-hero,
  .about-intro,
  .contact-intro,
  .journal-intro,
  .case-hero,
  .article-hero {
    padding-top: 3rem;
  }

  .hero h1,
  .page-hero h1,
  .case-hero h1,
  .article-hero h1,
  .not-found h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .services-grid,
  .services-grid--compact,
  .stack-grid,
  .ops-grid,
  .project-grid,
  .journal-grid,
  .team-grid,
  .principles-grid,
  .timeline,
  .site-footer__meta,
  .contact-grid,
  .hero-stats,
  .metric-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__legal {
    flex-direction: column;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .scroll-cue {
    display: none;
  }

  .hero-orbit {
    min-height: 10rem;
  }
}

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

  .brand-ribbon--marquee .brand-ribbon__track,
  .scroll-cue i::after,
  .hero-orbit span {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}
/* ============================================================
   Design v2 — visual polish layer
   Verändert nur Optik (Farben, Gradient, Glas, Schatten, Typo)
   Markup/JS bleiben unangetastet.
   ============================================================ */

:root {
  --v2-ink: #07112a;
  --v2-ink-soft: #1c2748;
  --v2-mist: #6b7796;
  --v2-line: rgba(7, 17, 42, 0.10);
  --v2-line-soft: rgba(7, 17, 42, 0.06);
  --v2-glass: rgba(255, 255, 255, 0.62);
  --v2-glass-strong: rgba(255, 255, 255, 0.82);
  --v2-accent: #2f6bff;
  --v2-accent-2: #16c6ff;
  --v2-accent-3: #7a5cff;
  --v2-grad: linear-gradient(135deg, #2f6bff 0%, #7a5cff 55%, #16c6ff 100%);
  --v2-shadow-sm: 0 6px 18px rgba(15, 30, 80, 0.06);
  --v2-shadow-md: 0 24px 60px rgba(15, 30, 80, 0.10);
  --v2-shadow-lg: 0 40px 110px rgba(15, 30, 80, 0.16);
}

/* Hintergrund mit weichem Mesh + feinem Grid */
body {
  background:
    radial-gradient(1100px 700px at 8% -10%, rgba(47, 107, 255, 0.18), transparent 60%),
    radial-gradient(900px 600px at 95% 0%, rgba(122, 92, 255, 0.14), transparent 60%),
    radial-gradient(900px 700px at 50% 110%, rgba(22, 198, 255, 0.10), transparent 60%),
    linear-gradient(180deg, #f6f9ff 0%, #eaf1ff 100%);
  color: var(--v2-ink);
}

body::before {
  background-image:
    linear-gradient(rgba(7, 17, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 42, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
}

/* Sticky Glass-Header */
.site-header {
  position: sticky;
  top: 0.6rem;
  z-index: 50;
  padding: 0.9rem 1.1rem;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border: 1px solid var(--v2-line);
  box-shadow: var(--v2-shadow-sm);
}

.brand-mark {
  background: var(--v2-grad);
  box-shadow: 0 8px 22px rgba(47, 107, 255, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.brand-lockup strong { letter-spacing: 0.22em; }

.site-nav a { color: var(--v2-ink-soft); font-weight: 500; }
.site-nav a::after { background: var(--v2-accent); height: 2px; bottom: -0.5rem; border-radius: 2px; }

/* Buttons – sauber, mit Glow */
.button {
  border: 0;
  background: var(--v2-grad);
  background-size: 180% 180%;
  background-position: 0% 50%;
  box-shadow: 0 14px 30px rgba(47, 107, 255, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 200ms ease, background-position 400ms ease, box-shadow 200ms ease;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.button:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(47, 107, 255, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.button--ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--v2-ink);
  border: 1px solid var(--v2-line);
  box-shadow: var(--v2-shadow-sm);
}
.button--ghost:hover {
  background: #fff;
  border-color: rgba(47, 107, 255, 0.35);
  box-shadow: 0 12px 28px rgba(47, 107, 255, 0.14);
}

/* Hero – großzügig, mit Gradient-Highlight */
.hero { padding-top: 4rem; }
.hero h1,
.page-hero h1,
.case-hero h1,
.article-hero h1 {
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--v2-ink);
}

.hero h1 .accent,
.hero h1 em {
  background: var(--v2-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-style: normal;
}

.lead, .section-intro p { color: var(--v2-mist); }

.eyebrow,
.brand-lockup small,
.meta-label,
.service-card__index,
.tag-list span,
.meta-grid span,
.case-summary__facts span,
.timeline-item span {
  color: var(--v2-accent);
  letter-spacing: 0.22em;
}

/* Hero stats – feiner Trenner mit Akzent */
.hero-stats li { border-top: 1px solid var(--v2-line); position: relative; }
.hero-stats li::before {
  content: ""; position: absolute; top: -1px; left: 0;
  width: 28px; height: 2px; border-radius: 2px; background: var(--v2-grad);
}
.hero-stats strong { font-weight: 600; }

/* Hero Panel – Glas mit innerem Glow */
.hero-panel {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(47, 107, 255, 0.10), transparent 55%),
    var(--v2-glass-strong);
  border: 1px solid var(--v2-line);
  box-shadow: var(--v2-shadow-lg);
}

/* Section Rhythmus */
.page-section { padding-bottom: 6.5rem; }

/* Karten – einheitliches Glas + sanftes Heben */
.hero-panel,
.service-card,
.contact-card,
.principle-card,
.team-card,
.timeline-item,
.note-panel,
.case-summary,
.project-card,
.journal-card,
.metric-card,
.stack-card,
.ops-card,
.ops-panel,
.motion-card,
.not-found,
.cta-panel {
  background: var(--v2-glass-strong);
  border: 1px solid var(--v2-line);
  box-shadow: var(--v2-shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.project-card,
.journal-card,
.service-card,
.principle-card,
.team-card,
.timeline-item,
.metric-card,
.stack-card {
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.project-card:hover,
.journal-card:hover,
.service-card:hover,
.metric-card:hover,
.stack-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 107, 255, 0.28);
  box-shadow: var(--v2-shadow-lg);
}

/* Tags – fein, mono, mit dezentem Glow */
.tag-list span {
  background: rgba(47, 107, 255, 0.08);
  border: 1px solid rgba(47, 107, 255, 0.16);
  color: #1f3fa8;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}
.project-card__tech span {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(232,239,255,0.9));
  border: 1px solid rgba(47, 107, 255, 0.20);
  color: #1f3fa8;
}

/* Stack Cards mit kleinem oberen Akzent */
.stack-card { position: relative; overflow: hidden; }
.stack-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--v2-grad);
  opacity: 0.85;
}
.stack-card__prefix {
  background: rgba(47, 107, 255, 0.12);
  color: #1f3fa8;
}

/* Ops-Panel – tiefes Nachtblau mit Glow */
.ops-panel,
.project-overview__aside,
.contact-card--dark,
.note-panel {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(122, 92, 255, 0.25), transparent 55%),
    radial-gradient(120% 90% at 0% 100%, rgba(22, 198, 255, 0.18), transparent 55%),
    linear-gradient(180deg, #0a1330 0%, #060b1f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eaf0ff;
  box-shadow: 0 40px 100px rgba(5, 12, 35, 0.45);
}
.ops-panel p,
.project-overview__aside p,
.contact-card--dark p,
.note-panel p,
.contact-card--dark li,
.note-panel li {
  color: rgba(234, 240, 255, 0.78);
}
.ops-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ops-card strong { color: #ffffff; }

/* Brand-Ribbon – ruhiger Marquee mit feinem Maskenrand */
.brand-ribbon__track span {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--v2-line);
  color: var(--v2-ink-soft);
  font-family: var(--mono);
  letter-spacing: 0.14em;
}

/* Project Cards – sauberer Footer und Cover */
.project-card__visual,
.journal-card__visual {
  background:
    linear-gradient(135deg, rgba(47, 107, 255, 0.12), rgba(122, 92, 255, 0.10));
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.project-card__meta,
.journal-card__meta {
  color: var(--v2-mist);
}

/* Motion Cards – stärkere Tiefe */
.motion-card { box-shadow: var(--v2-shadow-lg); }
.motion-card::before { filter: blur(60px); opacity: 0.55; }

/* CTA – großer Akzentblock */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 2.4rem;
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(122, 92, 255, 0.28), transparent 55%),
    radial-gradient(80% 120% at 100% 100%, rgba(22, 198, 255, 0.22), transparent 55%),
    linear-gradient(180deg, #0b1736 0%, #060b1f 100%);
  color: #f3f7ff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 50px 120px rgba(5, 12, 35, 0.45);
}
.cta-panel::after {
  content: ""; position: absolute; inset: 0;
  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: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
  pointer-events: none;
}
.cta-panel .eyebrow { color: rgba(255, 255, 255, 0.7); }
.cta-panel h2 { color: #ffffff; }
.cta-panel .button { background: #ffffff; color: var(--v2-ink); box-shadow: 0 12px 30px rgba(0,0,0,0.18); }
.cta-panel .button:hover { background: #f1f4ff; color: var(--v2-ink); }

/* Footer – etwas mehr Atmung und Akzentlinie */
.site-footer__lead h2 { color: var(--v2-ink); }
.site-footer { padding-bottom: 2.4rem; }
.site-footer__meta { padding-top: 1.4rem; border-top: 1px solid var(--v2-line); }
.site-footer__legal {
  padding-top: 1.2rem;
  border-top: 1px solid var(--v2-line);
  color: var(--v2-mist);
}

/* Sanfte Verfeinerung der Hover-Akzente in der Hauptnav */
.site-nav a[aria-current="page"] { color: var(--v2-accent); }

/* Reveal-Animation etwas eleganter */
[data-reveal] {
  transform: translate3d(0, calc(28px + var(--parallax-shift)), 0) scale(0.99);
  filter: blur(6px);
}

/* Schöner Auswahltext */
::selection { background: rgba(47, 107, 255, 0.20); color: var(--v2-ink); }

/* Scroll-Akzent für Cue */
.scroll-cue i::after { background: var(--v2-accent); }

/* Code/Mono in Content */
.content-flow code {
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  background: rgba(47, 107, 255, 0.10);
  color: #1f3fa8;
  font-family: var(--mono);
  font-size: 0.92em;
}

/* Fix: Project-Card Footer darf nicht aus der Karte ueberlaufen */
.project-card__footer {
  flex-wrap: wrap;
  align-items: flex-start;
  row-gap: 0.6rem;
}
.project-card__footer .tag-list {
  flex: 1 1 auto;
  min-width: 0;
}
.project-card__ops {
  white-space: normal;
  word-break: break-word;
  flex: 0 1 auto;
  max-width: 100%;
  text-align: right;
}

/* Motion v3 - mehr sichtbare Bewegung auf bestehenden Hooks */
html.motion-ready .page-aura {
  will-change: transform, opacity;
  animation: aura-drift 20s ease-in-out infinite alternate;
}

html.motion-ready .page-aura--two {
  animation-duration: 24s;
  animation-direction: alternate-reverse;
}

html.motion-ready .site-header {
  overflow: hidden;
  isolation: isolate;
}

html.motion-ready .site-header::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.58) 48%, transparent 72%);
  transform: translateX(-120%);
  opacity: 0.7;
  pointer-events: none;
  animation: header-sheen 10s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

html.motion-ready .site-header > * {
  position: relative;
  z-index: 1;
}

html.motion-ready .button,
html.motion-ready .hero-panel--kinetic,
html.motion-ready .service-card--compact,
html.motion-ready .stack-card,
html.motion-ready .cta-panel {
  isolation: isolate;
}

html.motion-ready .button,
html.motion-ready .hero-panel--kinetic,
html.motion-ready .service-card--compact {
  position: relative;
  overflow: hidden;
}

html.motion-ready .button {
  animation: button-breathe 7s ease-in-out infinite;
}

html.motion-ready .button::after,
html.motion-ready .service-card--compact::after,
html.motion-ready .stack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.42) 48%, transparent 74%);
  transform: translateX(-135%);
  opacity: 0.65;
  pointer-events: none;
  animation: sheen-sweep 9s ease-in-out infinite;
}

html.motion-ready .button--ghost {
  animation-duration: 9s;
}

html.motion-ready .button:hover,
html.motion-ready .button:focus-visible {
  animation-play-state: paused;
}

html.motion-ready .button:hover::after,
html.motion-ready .button:focus-visible::after {
  animation-duration: 1.1s;
}

html.motion-ready .button > *,
html.motion-ready .hero-panel--kinetic > *,
html.motion-ready .service-card--compact > *,
html.motion-ready .stack-card > *,
html.motion-ready .cta-panel > * {
  position: relative;
  z-index: 1;
}

html.motion-ready .scroll-cue {
  animation: cue-float 4.4s ease-in-out infinite;
}

html.motion-ready .hero__copy.is-visible .hero-stats li {
  animation: stat-float 6.8s ease-in-out infinite;
}

html.motion-ready .hero__copy.is-visible .hero-stats li:nth-child(2) {
  animation-delay: 0.45s;
}

html.motion-ready .hero__copy.is-visible .hero-stats li:nth-child(3) {
  animation-delay: 0.9s;
}

html.motion-ready .hero__aside.is-visible .hero-panel--kinetic {
  animation: panel-float 9s ease-in-out infinite;
}

html.motion-ready .hero__aside.is-visible .hero-panel--kinetic::before {
  content: "";
  position: absolute;
  inset: -32%;
  border-radius: 50%;
  background: conic-gradient(from 180deg, rgba(47, 107, 255, 0), rgba(47, 107, 255, 0.18), rgba(122, 92, 255, 0.2), rgba(22, 198, 255, 0.16), rgba(47, 107, 255, 0));
  filter: blur(18px);
  opacity: 0.65;
  pointer-events: none;
  animation: halo-spin 14s linear infinite;
}

html.motion-ready .service-card--compact:nth-child(2n)::after,
html.motion-ready .stack-card:nth-child(2n)::after {
  animation-delay: 1.6s;
}

html.motion-ready .service-card--compact:nth-child(3n)::after,
html.motion-ready .stack-card:nth-child(3n)::after {
  animation-delay: 3.2s;
}

html.motion-ready .motion-card__visual--bars span {
  transform-origin: center left;
  animation: bars-beat 3.6s ease-in-out infinite;
}

html.motion-ready .motion-card__visual--bars span:nth-child(2) {
  animation-delay: 0.25s;
}

html.motion-ready .motion-card__visual--bars span:nth-child(3) {
  animation-delay: 0.5s;
}

html.motion-ready .motion-card__visual--rings span {
  animation: ring-breathe 5s ease-in-out infinite;
}

html.motion-ready .motion-card__visual--rings span:nth-child(2) {
  animation-delay: 0.45s;
}

html.motion-ready .motion-card__visual--rings span:nth-child(3) {
  animation-delay: 0.9s;
}

html.motion-ready .motion-card__visual--steps span {
  transform-origin: center bottom;
  animation: steps-climb 4.8s ease-in-out infinite;
}

html.motion-ready .motion-card__visual--steps span:nth-child(2) {
  animation-delay: 0.22s;
}

html.motion-ready .motion-card__visual--steps span:nth-child(3) {
  animation-delay: 0.44s;
}

html.motion-ready .motion-card__visual--steps span:nth-child(4) {
  animation-delay: 0.66s;
}

html.motion-ready .cta-panel::before {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  top: -9rem;
  right: -7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 68%);
  filter: blur(6px);
  opacity: 0.8;
  pointer-events: none;
  animation: cta-orbit 15s ease-in-out infinite;
}

html.motion-ready .cta-panel::after {
  animation: grid-drift 18s linear infinite;
}

@keyframes aura-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.22;
  }

  50% {
    transform: translate3d(1.4rem, -1.1rem, 0) scale(1.08);
    opacity: 0.34;
  }

  100% {
    transform: translate3d(-1rem, 1.8rem, 0) scale(0.96);
    opacity: 0.26;
  }
}

@keyframes header-sheen {
  0%,
  72%,
  100% {
    transform: translateX(-120%);
  }

  84% {
    transform: translateX(120%);
  }
}

@keyframes button-breathe {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(47, 107, 255, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  }

  50% {
    box-shadow: 0 20px 38px rgba(47, 107, 255, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  }
}

@keyframes sheen-sweep {
  0%,
  78%,
  100% {
    transform: translateX(-135%);
  }

  90% {
    transform: translateX(135%);
  }
}

@keyframes cue-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(0.4rem);
  }
}

@keyframes stat-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.3rem);
  }
}

@keyframes panel-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -0.5rem, 0);
  }
}

@keyframes halo-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes bars-beat {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.46;
  }

  50% {
    transform: scaleX(1.12);
    opacity: 0.88;
  }
}

@keyframes ring-breathe {
  0%,
  100% {
    opacity: 0.46;
    filter: blur(0);
    box-shadow: 0 0 0 rgba(47, 107, 255, 0);
  }

  50% {
    opacity: 0.9;
    filter: blur(1px);
    box-shadow: 0 0 36px rgba(47, 107, 255, 0.14);
  }
}

@keyframes steps-climb {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
    opacity: 0.84;
  }

  50% {
    transform: translateY(-0.35rem) scaleY(1.06);
    opacity: 1;
  }
}

@keyframes cta-orbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-1.8rem, 1.2rem, 0) scale(1.08);
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 36px 36px, -36px -36px;
  }
}
