:root {
  --bg: #010102;
  --bg-2: #05060a;
  --ink: #f7f8fc;
  --muted: #b5bcc8;
  --line: #2a2f38;
  --line-soft: #3a414c;
  --accent: #0a84ff;
  --accent-strong: #0072e6;
  --grid-minor: rgba(255, 255, 255, 0.043);
  --grid-major: rgba(255, 255, 255, 0.082);
  --section-gap: clamp(1.7rem, 4.8vw, 3.5rem);
  --surface-gap: clamp(0.9rem, 2vw, 1.35rem);
  --card-gap: clamp(1rem, 2.4vw, 1.7rem);
  --focus-ring: rgba(245, 245, 248, 0.96);
  --pill-radius: 999px;
  --motion-fast: 140ms cubic-bezier(0.22, 0.8, 0.2, 1);
  --motion-standard: 220ms cubic-bezier(0.22, 0.8, 0.2, 1);
  --motion-reveal: 520ms cubic-bezier(0.22, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.35;
  background:
    radial-gradient(circle at 80% 9%, rgba(136, 136, 144, 0.08), transparent 45%),
    radial-gradient(circle at 18% 90%, rgba(168, 168, 176, 0.05), transparent 40%),
    linear-gradient(170deg, var(--bg), var(--bg-2) 58%, #07080c);
  overflow-x: hidden;
}

.blueprint-grid,
.blueprint-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blueprint-grid {
  opacity: 0.3;
  background-image:
    linear-gradient(var(--grid-minor) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-minor) 1px, transparent 1px),
    linear-gradient(var(--grid-major) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-major) 1px, transparent 1px);
  background-size:
    48px 48px,
    48px 48px,
    240px 240px,
    240px 240px;
  background-position:
    0 0,
    0 0,
    -1px -1px,
    -1px -1px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.96) 120px, transparent 94%);
}

.blueprint-glow {
  background:
    radial-gradient(circle at 78% 15%, rgba(146, 150, 160, 0.12), transparent 36%),
    radial-gradient(circle at 20% 68%, rgba(178, 182, 190, 0.07), transparent 41%);
}

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

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

h1,
h2,
p,
figure {
  margin: 0;
}

.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 2.4rem));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: max(0.9rem, env(safe-area-inset-top)) 0 0.55rem;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.66rem;
  min-width: 0;
  font-size: 1.02rem;
  font-weight: 780;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand img {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.68rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.34);
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 2.3rem;
  padding: 0.62rem 1.08rem;
  border-radius: var(--pill-radius);
  font-size: 0.81rem;
  font-weight: 760;
  color: #f4f7ff;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform var(--motion-fast),
    box-shadow var(--motion-standard),
    border-color var(--motion-standard),
    background var(--motion-standard),
    color var(--motion-standard);
}

.header-link:hover {
  transform: translateY(-1px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 30px rgba(0, 0, 0, 0.4);
}

.header-link-subtle {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border-color: rgba(255, 255, 255, 0.2);
  color: #d8deea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.28);
}

main {
  padding-top: 1.15rem;
  padding-bottom: 2.4rem;
}

.hero {
  min-height: calc(80vh - 6.4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  align-items: center;
  gap: clamp(1.3rem, 4.2vw, 3rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  right: clamp(-6rem, -4.6vw, -2.4rem);
  top: clamp(-3.2rem, -2vw, -1.2rem);
  width: min(67vw, 52rem);
  height: min(42vw, 30rem);
  border-radius: 999px;
  background: radial-gradient(circle at 38% 50%, rgba(164, 170, 182, 0.16), rgba(76, 81, 94, 0.08) 44%, transparent 70%);
  filter: blur(10px);
  opacity: 0.56;
}

.hero::after {
  display: none;
}

.hero-modal-backdrop {
  --squircle-x: clamp(2.2rem, 4vw, 3.2rem);
  --squircle-y: clamp(1.6rem, 2.9vw, 2.2rem);
  --ipad-bezel: clamp(0.34rem, 0.54vw, 0.44rem);
  --screen-inset: clamp(0.5rem, 0.82vw, 0.72rem);
  --screen-content-inset: clamp(0rem, 0.04vw, 0.04rem);
  position: absolute;
  top: clamp(0.7rem, 1.45vw, 1.14rem);
  right: clamp(1.25rem, 3vw, 2.65rem);
  left: auto;
  width: min(53vw, 42.8rem);
  aspect-ratio: 3390 / 2156;
  margin: 0;
  padding: var(--ipad-bezel);
  border-radius: var(--squircle-x) / var(--squircle-y);
  background:
    linear-gradient(180deg, rgba(118, 121, 132, 0.26) 0%, rgba(52, 56, 65, 0.34) 43%, rgba(14, 16, 20, 0.62) 100%),
    rgba(14, 15, 18, 0.92);
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
  z-index: 1;
  box-shadow:
    0 30px 58px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.hero-modal-screen {
  position: absolute;
  inset:
    calc(var(--ipad-bezel) + var(--screen-inset) + 0.02rem)
    calc(var(--ipad-bezel) + var(--screen-inset) + 0.02rem)
    calc(var(--ipad-bezel) + var(--screen-inset) + 0.02rem)
    calc(var(--ipad-bezel) + var(--screen-inset) + 0.02rem);
  padding:
    calc(var(--screen-content-inset) + 0.02rem)
    calc(var(--screen-content-inset) + 0.02rem)
    calc(var(--screen-content-inset) + 0.02rem)
    calc(var(--screen-content-inset) + 0.02rem);
  border-radius: calc(var(--squircle-x) - (var(--ipad-bezel) + var(--screen-inset)) - 0.11rem) / calc(var(--squircle-y) - ((var(--ipad-bezel) + var(--screen-inset)) * 0.72) - 0.05rem);
  overflow: hidden;
  background: #0a0c11;
  box-shadow:
    0 0 0 1px rgba(9, 12, 16, 0.86),
    0 0 0 2px rgba(255, 255, 255, 0.025),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.hero-modal-backdrop img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  border-radius: clamp(0.3rem, 0.46vw, 0.44rem);
  transform: translateX(-56px);
  filter: saturate(1) contrast(1.02) brightness(1.01);
}

.hero-modal-backdrop::before,
.hero-modal-backdrop::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-modal-backdrop::before {
  display: none;
}

.hero-modal-backdrop::after {
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.075), transparent 36%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  z-index: 3;
}

.hero-copy,
.hero-capture,
.scroll-cue {
  position: relative;
  z-index: 3;
}

.hero-copy {
  z-index: 4;
  max-width: clamp(18rem, 42vw, 31rem);
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  font-weight: 760;
  color: #cdd3de;
}

h1 {
  margin-top: 0.7rem;
  max-width: 10.2ch;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2.3rem, 6.4vw, 4.5rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.42);
}

.subhead {
  margin-top: 0.86rem;
  max-width: 30ch;
  font-size: clamp(0.96rem, 1.32vw, 1.08rem);
  color: #bfc6d2;
}

.actions {
  margin-top: 1.02rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--pill-radius);
  min-height: 2.4rem;
  padding: 0.76rem 1.18rem;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(145deg, #0a84ff, #0a74df);
  box-shadow: 0 10px 22px rgba(10, 56, 118, 0.3);
  transition: transform var(--motion-fast), box-shadow var(--motion-standard), filter var(--motion-standard), background var(--motion-standard);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(10, 56, 118, 0.4);
}

.button:active,
.header-link:active {
  transform: translateY(0);
  filter: saturate(1.04);
}

.text-link {
  font-size: 0.83rem;
  font-weight: 740;
  color: #d2d9e5;
}

.scroll-cue {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: clamp(0.2rem, 0.9vw, 0.6rem);
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.52rem 0.92rem;
  border-radius: var(--pill-radius);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: #dde2ec;
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.03em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition:
    transform var(--motion-fast),
    background var(--motion-standard),
    border-color var(--motion-standard),
    color var(--motion-standard);
}

.scroll-cue::after {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  animation: cue-bob 1.9s ease-in-out infinite;
}

@media (hover: hover) and (pointer: fine) {
  .scroll-cue:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.11);
    color: #f0f5ff;
  }
}


.button:focus-visible,
.header-link:focus-visible,
.text-link:focus-visible,
.scroll-cue:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.hero-capture,
.step-shot {
  position: relative;
  margin: 0;
  padding: 0.36rem;
  border-radius: 2.5rem;
  background: linear-gradient(180deg, #4d4f57 0%, #1b1d22 38%, #0b0d11 100%);
  border: 1px solid rgba(214, 214, 222, 0.3);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hero-capture {
  width: min(100%, 20.8rem);
  justify-self: end;
}

.step-shot {
  width: min(100%, 17.3rem);
  justify-self: end;
}

.hero-capture::before,
.step-shot::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  max-width: 6.4rem;
  height: 1rem;
  border-radius: 999px;
  background: #05060a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 4;
}

.hero-capture::before {
  top: 0.44rem;
  width: 58%;
  max-width: 10.2rem;
  height: 1.22rem;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.36);
}

.hero-capture::after {
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.98) 0 2.08rem, rgba(5, 6, 10, 0.38) 2.42rem, transparent 2.96rem);
}

.hero-capture::after,
.step-shot::after {
  content: "";
  position: absolute;
  inset: 0.36rem;
  border-radius: 2.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 3;
}

.hero-capture img,
.step-shot img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1179 / 2556;
  object-fit: cover;
  border-radius: 2.15rem;
}

.hero-capture img {
  filter: saturate(0.92) contrast(1.03) brightness(0.98);
}

.parallax-layer {
  --sy: 0px;
  transform: translateY(var(--sy));
  transition: transform 140ms ease;
  will-change: transform;
}

.flow-surface {
  position: relative;
  margin-top: var(--section-gap);
  display: grid;
  gap: var(--surface-gap);
  padding: clamp(1.08rem, 2.4vw, 1.55rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.12rem;
  background: linear-gradient(168deg, rgba(14, 15, 17, 0.9), rgba(8, 9, 10, 0.94));
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.flow-surface::before,
.flow-surface::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.flow-surface::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.26;
  z-index: 0;
}

.flow-surface::after {
  top: -10rem;
  left: 50%;
  width: 40rem;
  height: 24rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(176, 180, 190, 0.1), transparent 72%);
  z-index: 0;
}

.flow-surface > * {
  position: relative;
  z-index: 1;
}

.role-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.role-strip p {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.48rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #edf2fa;
  font-size: 0.76rem;
  font-weight: 720;
  text-align: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.story-step {
  --step-accent: rgba(244, 244, 248, 0.33);
  --step-glow: rgba(232, 232, 238, 0.12);
  --step-surface-a: rgba(20, 21, 24, 0.88);
  --step-surface-b: rgba(12, 13, 15, 0.86);
  --step-pattern-opacity: 0.28;
  --step-border: rgba(236, 236, 242, 0.24);
  --step-chip-bg: rgba(255, 255, 255, 0.1);
  --step-chip-border: rgba(255, 255, 255, 0.32);
  --step-copy-tint: rgba(238, 238, 242, 0.1);
  margin-top: 0;
  padding: clamp(1.02rem, 2.2vw, 1.28rem);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: var(--card-gap);
  border: 1px solid var(--step-border);
  border-radius: 1.08rem;
  background:
    radial-gradient(140% 100% at 0% 0%, rgba(255, 255, 255, 0.08), transparent 58%),
    linear-gradient(160deg, var(--step-surface-a), var(--step-surface-b));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 240ms ease, border-color 220ms ease;
}

.story-step::before,
.story-step::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.story-step::before {
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, var(--step-glow), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 62%);
  box-shadow:
    inset 0 2px 0 var(--step-accent),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.story-step::after {
  inset: 0;
  opacity: var(--step-pattern-opacity);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.22));
  transform: translateZ(0);
  mix-blend-mode: screen;
  z-index: 0;
}

.story-step.reverse::after {
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.22));
}

@media (hover: hover) and (pointer: fine) {
  .story-step:hover {
    transform: translateY(-3px);
    border-color: var(--step-accent);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 22px 42px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.14);
  }
}

.story-step > * {
  position: relative;
  z-index: 1;
}

.story-step.step-capture {
  --step-accent: rgba(244, 244, 248, 0.33);
  --step-glow: rgba(232, 232, 238, 0.12);
  --step-surface-a: rgba(21, 22, 25, 0.9);
  --step-surface-b: rgba(12, 13, 16, 0.86);
  --step-border: rgba(236, 236, 242, 0.24);
  --step-pattern-opacity: 0.28;
  --step-chip-bg: rgba(255, 255, 255, 0.1);
  --step-chip-border: rgba(255, 255, 255, 0.32);
  --step-copy-tint: rgba(238, 238, 242, 0.1);
}

.story-step.step-capture::after {
  background-image:
    linear-gradient(rgba(240, 240, 246, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 240, 246, 0.22) 1px, transparent 1px),
    radial-gradient(circle at 88% 16%, rgba(236, 236, 244, 0.18), transparent 32%);
  background-size: 24px 24px, 24px 24px, auto;
}

.story-step.step-match {
  --step-accent: rgba(244, 244, 248, 0.33);
  --step-glow: rgba(232, 232, 238, 0.12);
  --step-surface-a: rgba(21, 20, 24, 0.9);
  --step-surface-b: rgba(12, 12, 15, 0.86);
  --step-border: rgba(236, 236, 242, 0.24);
  --step-pattern-opacity: 0.28;
  --step-chip-bg: rgba(255, 255, 255, 0.1);
  --step-chip-border: rgba(255, 255, 255, 0.32);
  --step-copy-tint: rgba(238, 238, 242, 0.1);
}

.story-step.step-match::after {
  background-image:
    radial-gradient(circle at 2px 2px, rgba(241, 241, 246, 0.22) 1.2px, transparent 0),
    radial-gradient(circle at 12px 12px, rgba(235, 235, 242, 0.16) 1px, transparent 0),
    repeating-linear-gradient(135deg, rgba(236, 236, 244, 0.1) 0 1px, transparent 1px 10px);
  background-size: 20px 20px, 20px 20px, auto;
}

.story-step.step-edit {
  --step-accent: rgba(244, 244, 248, 0.33);
  --step-glow: rgba(232, 232, 238, 0.12);
  --step-surface-a: rgba(19, 22, 23, 0.9);
  --step-surface-b: rgba(11, 13, 14, 0.86);
  --step-border: rgba(236, 236, 242, 0.24);
  --step-pattern-opacity: 0.28;
  --step-chip-bg: rgba(255, 255, 255, 0.1);
  --step-chip-border: rgba(255, 255, 255, 0.32);
  --step-copy-tint: rgba(238, 238, 242, 0.1);
}

.story-step.step-edit::after {
  background-image:
    repeating-linear-gradient(0deg, rgba(236, 236, 244, 0.17) 0 1px, transparent 1px 11px),
    repeating-linear-gradient(90deg, rgba(228, 228, 236, 0.13) 0 1px, transparent 1px 34px),
    linear-gradient(90deg, rgba(226, 226, 234, 0.1), transparent 72%);
  background-size: auto, 34px 34px, auto;
}

.story-step.step-track {
  --step-accent: rgba(244, 244, 248, 0.33);
  --step-glow: rgba(232, 232, 238, 0.12);
  --step-surface-a: rgba(20, 22, 21, 0.9);
  --step-surface-b: rgba(12, 13, 12, 0.86);
  --step-border: rgba(236, 236, 242, 0.24);
  --step-pattern-opacity: 0.28;
  --step-chip-bg: rgba(255, 255, 255, 0.1);
  --step-chip-border: rgba(255, 255, 255, 0.32);
  --step-copy-tint: rgba(238, 238, 242, 0.1);
}

.story-step.step-track::after {
  background-image:
    linear-gradient(90deg, rgba(239, 239, 246, 0.22) 0 42%, transparent 42%),
    linear-gradient(90deg, rgba(232, 232, 240, 0.18) 0 62%, transparent 62%),
    linear-gradient(90deg, rgba(225, 225, 233, 0.14) 0 78%, transparent 78%),
    repeating-linear-gradient(0deg, rgba(230, 230, 238, 0.1) 0 1px, transparent 1px 9px);
  background-size: 100% 2px, 100% 2px, 100% 2px, auto;
  background-position: 0 24%, 0 45%, 0 66%, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
}

.story-step .section-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--step-chip-border);
  background: var(--step-chip-bg);
  color: #f7f9fd;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.story-step.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.story-step.reverse .step-copy {
  order: 2;
  justify-self: end;
}

.story-step.reverse .step-shot {
  order: 1;
  justify-self: start;
}

.step-copy {
  --copy-pad-x: clamp(1.1rem, 2.05vw, 1.36rem);
  --copy-pad-y: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 36ch;
  width: min(100%, 36ch);
  position: relative;
  align-self: start;
  justify-self: start;
  padding: calc(var(--copy-pad-y) + 0.14rem) var(--copy-pad-x) calc(var(--copy-pad-y) + 0.06rem);
}

.step-copy::before {
  content: "";
  position: absolute;
  top: calc(var(--copy-pad-y) - 0.42rem);
  left: var(--copy-pad-x);
  width: 2.84rem;
  height: 2px;
  border-radius: 999px;
  background: var(--step-accent);
}

.step-copy .section-label {
  margin-top: 0.08rem;
}


.step-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.04rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background:
    linear-gradient(156deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08) 72%),
    linear-gradient(156deg, var(--step-copy-tint), transparent 78%),
    rgba(12, 14, 18, 0.16);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  opacity: 0.94;
  z-index: -1;
}

.step-copy h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.28rem, 2.7vw, 1.9rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

.step-copy p:last-child {
  margin-top: 0.64rem;
  font-size: 0.93rem;
  color: var(--muted);
}

.native-signals {
  position: relative;
  margin-top: 0;
  padding: clamp(1rem, 2.1vw, 1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.04rem;
  background: linear-gradient(165deg, rgba(18, 19, 22, 0.9), rgba(10, 11, 13, 0.92));
  overflow: hidden;
  isolation: isolate;
}

.native-signals::before,
.native-signals::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.native-signals::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.053) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.053) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
  z-index: 0;
}

.native-signals::after {
  top: -6rem;
  right: -4rem;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(176, 180, 190, 0.12), transparent 72%);
  z-index: 0;
}

.native-signals > * {
  position: relative;
  z-index: 1;
}

.native-signals h2 {
  margin-top: 0.5rem;
  max-width: 27ch;
  font-size: clamp(1.18rem, 2.6vw, 1.74rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.signals-intro {
  margin-top: 0.5rem;
  font-size: 0.89rem;
  color: #c3c9d4;
}

.signal-grid {
  margin-top: 0.82rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem;
}

.signal-grid p {
  position: relative;
  min-height: 2.45rem;
  display: flex;
  align-items: center;
  padding: 0.6rem 0.72rem 0.6rem 1.45rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  color: #eff4fb;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.signal-grid p::before {
  content: "";
  position: absolute;
  left: 0.62rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(230, 230, 236, 0.88);
}

.contact {
  margin-top: calc(var(--section-gap) * 0.92);
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact h2 {
  font-size: clamp(1.02rem, 2.3vw, 1.55rem);
  letter-spacing: -0.02em;
}

.contact p {
  margin-top: 0.35rem;
  font-size: 0.87rem;
  color: var(--muted);
}

.site-footer {
  padding-bottom: calc(1.1rem + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.79rem;
  color: #9ca5b5;
}

.site-footer a {
  font-weight: 700;
  color: #d8d8df;
}

.services-main {
  display: grid;
  gap: var(--section-gap);
}

.integration-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1rem, 2.8vw, 1.5rem);
  align-items: stretch;
}

.integration-copy,
.integration-hero-card,
.integration-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.04rem;
  background: linear-gradient(164deg, rgba(12, 13, 16, 0.9), rgba(6, 7, 9, 0.96));
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.integration-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2.4vw, 1.4rem);
  background:
    radial-gradient(130% 100% at 0% 0%, rgba(255, 255, 255, 0.11), transparent 58%),
    linear-gradient(180deg, rgba(14, 15, 18, 0.95) 0%, rgba(7, 8, 10, 0.98) 64%, rgba(4, 5, 7, 0.99) 100%);
}

.integration-copy::before,
.integration-copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.integration-copy::before {
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), transparent 78%);
}

.integration-copy::after {
  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: 34px 34px;
  opacity: 0.26;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 88%);
}

.integration-copy > * {
  position: relative;
  z-index: 1;
}

.integration-copy h1 {
  margin-top: 0.7rem;
  max-width: 12.2ch;
}

.integration-copy .subhead + .subhead {
  margin-top: 0.38rem;
}

.integration-copy .subhead code {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.9em;
  font-weight: 700;
  color: #ecf2ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.48rem;
  padding: 0.14rem 0.36rem;
}

.integration-hero-card {
  padding: clamp(1rem, 2.2vw, 1.28rem);
  display: grid;
  gap: 0.9rem;
}

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.54rem;
}

.flow-list li {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  font-size: 0.86rem;
  color: #e8edf7;
}

.flow-list li span {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.flow-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.flow-badges p {
  margin: 0;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  color: #d6deed;
}

.integration-surface {
  display: grid;
  gap: 0.95rem;
  padding: clamp(1rem, 2.2vw, 1.3rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.08rem;
  background: linear-gradient(168deg, rgba(14, 15, 17, 0.9), rgba(8, 9, 10, 0.94));
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.builder-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.78rem 0.86rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.88rem;
  background: rgba(255, 255, 255, 0.03);
}

.builder-toolbar .helper-note {
  margin-top: 0.34rem;
  margin-bottom: 0;
  max-width: 44ch;
}

.builder-toolbar .form-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.integration-grid-tight {
  grid-template-columns: 1.06fr 0.94fr;
}

.integration-panel {
  padding: clamp(0.9rem, 2vw, 1.1rem);
  overflow: hidden;
}

.panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.panel-head h2 {
  font-size: clamp(0.98rem, 1.7vw, 1.2rem);
  letter-spacing: -0.02em;
}

.panel-head p {
  font-size: 0.76rem;
  color: #b5bdcc;
}

.panel-head-preview {
  margin-top: 0.88rem;
  margin-bottom: 0.5rem;
}

.integration-form {
  margin-top: 0.84rem;
  display: grid;
  gap: 0.66rem;
}

.admin-advanced {
  margin-top: 0.14rem;
  padding: 0.64rem;
  border-radius: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.admin-advanced summary {
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 760;
  color: #d2d9e6;
}

.admin-advanced[open] summary {
  margin-bottom: 0.62rem;
}

.form-section-title {
  margin: 0.5rem 0 0.04rem;
  padding-top: 0.58rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
  font-weight: 780;
  color: #ccd3df;
}

.integration-form .form-section-title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.integration-form label,
.search-field {
  display: grid;
  gap: 0.32rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #dbe1ec;
}

.integration-form input:not([type="checkbox"]),
.integration-form select,
.integration-form textarea,
.search-field input {
  width: 100%;
  min-height: 2.3rem;
  padding: 0.58rem 0.72rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #f2f5fb;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  transition: border-color var(--motion-standard), background var(--motion-standard);
}

.integration-form textarea {
  resize: vertical;
}

.integration-form input:not([type="checkbox"]):focus-visible,
.integration-form select:focus-visible,
.integration-form textarea:focus-visible,
.search-field input:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.integration-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(236, 243, 255, 0.86) 50%),
    linear-gradient(135deg, rgba(236, 243, 255, 0.86) 50%, transparent 50%);
  background-position:
    calc(100% - 1rem) calc(50% - 1px),
    calc(100% - 0.74rem) calc(50% - 1px);
  background-size:
    0.32rem 0.32rem,
    0.32rem 0.32rem;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.62rem;
}

.form-actions {
  margin-top: 0.16rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #d8deeb;
  min-height: 2.28rem;
  padding: 0.62rem 0.9rem;
  border-radius: var(--pill-radius);
  font-size: 0.79rem;
  font-weight: 750;
}

.ghost-button:disabled {
  opacity: 0.46;
}

.helper-note {
  margin-top: 0.64rem;
  font-size: 0.73rem;
  color: #9ba5b7;
}

.helper-note code {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.9em;
  font-weight: 700;
  color: #e4ebf7;
}

.checkbox-grid {
  margin-top: 0.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.46rem 0.56rem;
}

.checkbox-item {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  min-height: 2.05rem;
  padding: 0.44rem 0.58rem;
  border-radius: 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.74rem;
  font-weight: 700;
  color: #dbe2ef;
}

.checkbox-item input[type="checkbox"] {
  margin: 0;
  width: 0.92rem;
  height: 0.92rem;
  accent-color: #0a84ff;
}

.services-table-wrap {
  margin-top: 0.7rem;
  border-radius: 0.84rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: auto;
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 30rem;
  background: rgba(255, 255, 255, 0.03);
}

.services-table th,
.services-table td {
  text-align: left;
  padding: 0.58rem 0.62rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.77rem;
}

.services-table th {
  color: #b2bbca;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.services-table td:last-child,
.services-table th:last-child {
  text-align: right;
}

.table-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.36rem;
}

.placeholder-row {
  color: #8f99ac;
}

.selected-services {
  margin: 0.74rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.selected-services li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.62rem;
  padding: 0.58rem 0.62rem;
  border-radius: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.selected-services li.included-service-row {
  border-color: rgba(126, 219, 155, 0.34);
  background: linear-gradient(160deg, rgba(24, 58, 36, 0.32), rgba(14, 28, 20, 0.3));
}

.selected-services .placeholder-row {
  display: block;
  text-align: left;
  color: #94a0b3;
}

.selected-services strong {
  font-size: 0.8rem;
  color: #edf2fb;
}

.selected-services p {
  font-size: 0.72rem;
  color: #a8b2c5;
}

.payload-preview,
.event-log {
  margin: 0;
  border-radius: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 9, 14, 0.86);
  color: #dce3f4;
  font-size: 0.74rem;
  line-height: 1.42;
  overflow: auto;
}

.payload-preview {
  padding: 0.72rem;
  min-height: 16rem;
}

.context-preview {
  min-height: 11rem;
}

.event-log {
  margin-top: 0.72rem;
  padding: 0.72rem;
  min-height: 9rem;
  max-height: 16rem;
}

#apiStatus[data-tone=\"success\"] {
  color: #7edb9b;
}

#apiStatus[data-tone=\"error\"] {
  color: #ff8b8b;
}

#apiStatus[data-tone=\"working\"] {
  color: #90bcff;
}

#webhookStatus[data-tone=\"success\"] {
  color: #7edb9b;
}

#webhookStatus[data-tone=\"error\"] {
  color: #ff8b8b;
}

#webhookStatus[data-tone=\"working\"] {
  color: #90bcff;
}

#toggleAdminTools[aria-pressed="true"] {
  border-color: rgba(10, 132, 255, 0.58);
  background: rgba(10, 132, 255, 0.15);
  color: #e7f0ff;
}

.services-main[data-admin-open="false"] .admin-tools,
.services-main[data-admin-open="false"] .admin-action {
  display: none !important;
}

.services-main[data-admin-open="false"] .integration-grid-primary {
  grid-template-columns: 1fr;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.988);
  filter: blur(5px);
  transition:
    opacity var(--motion-reveal),
    transform calc(var(--motion-reveal) + 70ms),
    filter var(--motion-reveal);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (max-width: 1040px) {
  .flow-surface {
    gap: 0.9rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-modal-backdrop {
    display: none;
  }

  h1 {
    max-width: 11.5ch;
  }

  .hero-capture {
    justify-self: center;
    width: min(100%, 19.5rem);
  }

  .role-strip {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .story-step,
  .story-step.reverse {
    grid-template-columns: 1fr;
    gap: 1.08rem;
    padding: clamp(0.98rem, 2.8vw, 1.18rem);
  }

  .story-step.reverse .step-copy,
  .story-step.reverse .step-shot {
    order: initial;
  }

  .step-shot,
  .story-step.reverse .step-shot {
    justify-self: center;
    width: min(100%, 15.5rem);
  }

  .step-copy,
  .story-step.reverse .step-copy {
    --copy-pad-x: 1rem;
    --copy-pad-y: 0.88rem;
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }

  .step-copy::after {
    opacity: 0.84;
  }

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

@media (max-width: 760px) {
  .scroll-cue {
    margin-top: 0.16rem;
    padding: 0.5rem 0.82rem;
    font-size: 0.72rem;
  }

  .site-header,
  main,
  .site-footer {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .site-header {
    padding-top: max(0.82rem, env(safe-area-inset-top));
    padding-bottom: 0.48rem;
  }

  main {
    padding-top: 0.92rem;
    padding-bottom: 2.15rem;
  }

  .brand span {
    font-size: 0.94rem;
  }

  .header-link {
    min-height: 2.16rem;
    padding: 0.52rem 0.88rem;
    font-size: 0.72rem;
  }

  .hero {
    gap: 1.08rem;
  }

  .hero-modal-backdrop {
    display: none;
  }

  h1 {
    font-size: clamp(2rem, 10.5vw, 2.8rem);
  }

  .subhead {
    font-size: 0.94rem;
    max-width: 32ch;
  }

  .text-link {
    display: none;
  }

  .hero-capture {
    width: min(100%, 15.8rem);
  }

  .flow-surface {
    gap: 0.88rem;
    padding: 1rem;
  }

  .step-shot,
  .story-step.reverse .step-shot {
    width: min(100%, 14rem);
  }

  .role-strip p {
    font-size: 0.75rem;
    min-height: 2.28rem;
  }

  .story-step,
  .story-step.reverse {
    padding: 0.98rem;
    gap: 0.9rem;
  }

  .step-copy h2 {
    font-size: clamp(1.22rem, 6.4vw, 1.55rem);
    line-height: 1.08;
  }

  .step-copy p:last-child {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .native-signals {
    padding: 0.96rem;
  }

  .signal-grid p {
    min-height: 2.62rem;
  }

  .contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.38rem;
  }

  .parallax-layer {
    transform: none;
    transition: none;
    will-change: auto;
  }
}

@media (max-width: 520px) {
  .site-header,
  main,
  .site-footer {
    width: min(1120px, calc(100% - 1.7rem));
  }

  h1 {
    font-size: clamp(1.86rem, 11.6vw, 2.4rem);
    line-height: 0.95;
  }

  .subhead {
    font-size: 0.9rem;
  }

  .hero-capture {
    width: min(100%, 14.9rem);
  }

  .hero-modal-backdrop {
    display: none;
  }

  .flow-surface {
    padding: 0.9rem;
    border-radius: 1.02rem;
  }

  .story-step,
  .story-step.reverse {
    padding: 0.9rem;
    border-radius: 1rem;
  }

  .step-copy,
  .story-step.reverse .step-copy {
    --copy-pad-x: 0.88rem;
    --copy-pad-y: 0.74rem;
  }

  .step-copy::before {
    width: 2.52rem;
  }

  .step-shot,
  .story-step.reverse .step-shot {
    width: min(100%, 13.35rem);
  }

  .signal-grid {
    gap: 0.5rem;
  }
}

@media (max-width: 1040px) {
  .integration-hero,
  .integration-grid,
  .integration-grid-tight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-actions {
    gap: 0.35rem;
  }

  .header-link {
    min-height: 2.16rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.72rem;
  }

  .integration-copy,
  .integration-hero-card,
  .integration-panel,
  .integration-surface {
    border-radius: 0.96rem;
  }

  .builder-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .builder-toolbar .form-actions {
    justify-content: flex-start;
  }

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

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

  .services-table {
    min-width: 24rem;
  }

  .payload-preview {
    min-height: 12rem;
  }
}

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

  .button,
  .header-link,
  .parallax-layer,
  .reveal,
  .scroll-cue,
  .scroll-cue::after {
    transition: none;
    animation: none;
  }

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

@keyframes cue-bob {
  0%,
  100% {
    transform: rotate(45deg) translateY(-1px);
  }

  50% {
    transform: rotate(45deg) translateY(3px);
  }
}
