:root {
  --ink: #151816;
  --paper: #f3f4ec;
  --paper-muted: #e4e6da;
  --line: #c7cbba;
  --lime: #dfff3f;
  --lime-dark: #aac71b;
  --coral: #ff755d;
  --cream: #fffef8;
  --muted: #697066;
  --mono: "SFMono-Regular", "Cascadia Mono", "PingFang SC", Consolas, monospace;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  padding-bottom: 36px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-120%);
}

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

.page-frame {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--cream);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 254, 248, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease-out;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 16px;
  color: var(--ink);
  background: var(--lime);
  transition: background-color 180ms ease-out, color 180ms ease-out;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--cream);
  background: var(--coral);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px 8px;
  border: 1px solid rgba(255, 254, 248, 0.4);
  border-radius: 0;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease-out;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(710px, calc(100svh - 62px));
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(rgba(223, 255, 63, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(223, 255, 63, 0.12) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, black 28%, black 76%, transparent);
}

.hero::after {
  position: absolute;
  right: -82px;
  bottom: -50px;
  width: 264px;
  height: 264px;
  border: 1px solid rgba(223, 255, 63, 0.46);
  border-radius: 50%;
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: 48px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 58px;
}

.hero-copy {
  padding: 16px 0;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--lime);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 117, 93, 0.18);
}

.hero h1,
.section-heading h2,
.workflow-intro h2,
.product-copy h2,
.download-copy h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.03;
}

.hero h1 {
  max-width: 620px;
  font-size: 66px;
}

.hero h1 span {
  display: block;
  margin-bottom: 14px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-lead {
  max-width: 545px;
  margin: 27px 0 0;
  color: rgba(255, 254, 248, 0.73);
  font-size: 18px;
  line-height: 1.85;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease-out, background-color 180ms ease-out, border-color 180ms ease-out;
}

.button-lime {
  color: var(--ink);
  background: var(--lime);
}

.button-lime:hover,
.button-lime:focus-visible {
  color: var(--cream);
  background: var(--coral);
}

.button-lime span {
  font-family: var(--mono);
  font-size: 20px;
}

.button-quiet {
  border-color: rgba(255, 254, 248, 0.46);
  color: var(--cream);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--lime);
  color: var(--lime);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 560px;
  margin: 46px 0 0;
}

.hero-proof div {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 254, 248, 0.27);
}

.hero-proof dt {
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof dd {
  margin: 5px 0 0;
  color: rgba(255, 254, 248, 0.57);
  font-size: 12px;
  line-height: 1.5;
}

.product-window {
  position: relative;
  margin: 0;
  border: 1px solid rgba(223, 255, 63, 0.56);
  background: #10120f;
  box-shadow: 20px 20px 0 var(--coral);
}

.product-window::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  left: -22px;
  width: 60%;
  height: 48%;
  border-top: 1px solid rgba(255, 254, 248, 0.32);
  border-left: 1px solid rgba(255, 254, 248, 0.32);
  content: "";
}

.window-topbar {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(223, 255, 63, 0.35);
  color: rgba(255, 254, 248, 0.7);
  font-family: var(--mono);
  font-size: 10px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cream);
}

.window-dots i:nth-child(2) {
  background: var(--coral);
}

.window-dots i:nth-child(3) {
  background: var(--lime);
}

.window-topbar b {
  margin-left: auto;
  color: var(--lime);
  font-size: 10px;
  font-weight: 500;
}

.window-canvas {
  position: relative;
  aspect-ratio: 1.775 / 1;
  overflow: hidden;
}

.window-canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.action-stamp {
  position: absolute;
  right: 26px;
  bottom: 22px;
  display: grid;
  gap: 3px;
  min-width: 176px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
}

.action-stamp span,
.action-stamp em {
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
}

.action-stamp strong {
  font-size: 15px;
  line-height: 1.35;
}

.action-stamp em {
  color: rgba(21, 24, 22, 0.68);
}

.product-window figcaption {
  padding: 10px 14px;
  color: rgba(255, 254, 248, 0.52);
  font-family: var(--mono);
  font-size: 10px;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 21px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 254, 248, 0.72);
  font-family: var(--mono);
  font-size: 10px;
}

.scroll-cue span {
  color: var(--lime);
  font-size: 18px;
}

.signal-band {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
}

.signal-track {
  display: flex;
  width: max-content;
  min-height: 70px;
  align-items: center;
  gap: 29px;
  padding: 0 32px;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.signal-track i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.section-pad {
  padding: 74px 0;
}

.capabilities {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.5fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 64px;
}

.section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--coral);
}

.section-heading h2,
.workflow-intro h2,
.product-copy h2,
.download-copy h2 {
  font-size: 52px;
}

.section-heading > p:last-child {
  max-width: 390px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.capability-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  padding: 25px 24px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--cream);
  transition: color 180ms ease-out, background-color 180ms ease-out;
}

.capability-card:hover {
  color: var(--cream);
  background: var(--ink);
}

.capability-card--accent {
  background: var(--coral);
}

.capability-card--accent:hover {
  color: var(--ink);
  background: var(--lime);
}

.card-index,
.card-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}

.card-index {
  color: var(--coral);
}

.capability-card--accent .card-index,
.capability-card--accent:hover .card-index {
  color: var(--ink);
}

.capability-card:hover .card-index {
  color: var(--lime);
}

.capability-card h3 {
  margin: auto 0 14px;
  font-size: 25px;
  line-height: 1.35;
}

.capability-card p {
  margin: 0;
  color: inherit;
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.76;
}

.card-tag {
  margin-top: 23px;
  opacity: 0.62;
}

.workflow {
  color: var(--cream);
  background: var(--ink);
}

.workflow-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
  gap: 84px;
}

.workflow .section-kicker {
  color: var(--lime);
}

.workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-step {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 82px;
  gap: 22px;
  padding: 27px 0 28px;
  border-top: 1px solid rgba(255, 254, 248, 0.32);
}

.workflow-step:last-child {
  border-bottom: 1px solid rgba(255, 254, 248, 0.32);
}

.step-number,
.step-note {
  padding-top: 5px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}

.step-number {
  color: var(--lime);
}

.step-note {
  color: rgba(255, 254, 248, 0.52);
  text-align: right;
}

.workflow-step h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.workflow-step p {
  max-width: 540px;
  margin: 11px 0 0;
  color: rgba(255, 254, 248, 0.65);
  font-size: 15px;
  line-height: 1.8;
}

.product-section {
  overflow: hidden;
  background: var(--paper-muted);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
  gap: 72px;
  align-items: center;
}

.product-copy .section-kicker,
.download-copy .section-kicker {
  color: var(--coral);
}

.product-copy > p:not(.section-kicker),
.download-copy > p:not(.section-kicker) {
  max-width: 455px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 600;
}

.check-list li::before {
  width: 11px;
  height: 11px;
  border: 2px solid var(--coral);
  content: "";
}

.product-shot {
  position: relative;
  margin: 0;
  border: 1px solid var(--ink);
  background: var(--cream);
  box-shadow: 18px 18px 0 var(--lime);
}

.product-shot img {
  width: 100%;
  aspect-ratio: 1.77 / 1;
  object-fit: cover;
}

.shot-label {
  position: absolute;
  z-index: 1;
  top: -14px;
  right: 22px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
}

.download {
  color: var(--cream);
  background: var(--coral);
}

.download .section-kicker {
  color: var(--ink);
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(380px, 1.16fr);
  gap: 64px;
  align-items: end;
}

.download-copy > p:not(.section-kicker) {
  color: rgba(255, 254, 248, 0.78);
}

.download-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.download-option {
  position: relative;
  display: flex;
  min-height: 175px;
  flex-direction: column;
  padding: 19px 20px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  background: var(--cream);
  transition: color 180ms ease-out, background-color 180ms ease-out;
}

.download-option:hover,
.download-option:focus-visible {
  color: var(--cream);
  background: var(--ink);
}

.download-option--all {
  color: var(--cream);
  background: var(--ink);
}

.download-option--all:hover,
.download-option--all:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.platform,
.download-option small {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
}

.download-option strong {
  margin: auto 0 5px;
  font-size: 21px;
}

.download-option small {
  opacity: 0.68;
}

.download-option b {
  position: absolute;
  top: 16px;
  right: 17px;
  font-family: var(--mono);
  font-size: 21px;
  font-weight: 500;
}

.site-footer {
  padding: 32px 0;
  color: var(--cream);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.brand--footer {
  font-size: 19px;
}

.footer-line {
  margin: 0;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
}

.footer-meta {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  color: rgba(255, 254, 248, 0.64);
  font-family: var(--mono);
  font-size: 10px;
}

.footer-meta a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--coral);
}

.site-filing-bar {
  position: fixed;
  z-index: 60;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(223, 255, 63, 0.55);
  color: var(--lime);
  background: rgba(21, 24, 22, 0.97);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.site-filing-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-filing-bar a:hover,
.site-filing-bar a:focus-visible {
  color: var(--coral);
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.reveal {
  transition: opacity 520ms ease-out, transform 520ms ease-out;
}

.reveal.is-visible {
  animation: reveal-in 520ms ease-out both;
}

.reveal-delay {
  transition-delay: 110ms;
}

.reveal-delay-2 {
  transition-delay: 190ms;
}

@keyframes reveal-in {
  from {
    opacity: 0.72;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: 55px;
  }

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

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

  .workflow-shell,
  .product-layout,
  .download-layout {
    gap: 45px;
  }
}

@media (max-width: 820px) {
  .page-frame {
    width: min(100% - 40px, 680px);
  }

  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 7px;
    border: 1px solid rgba(255, 254, 248, 0.38);
    color: var(--cream);
    background: var(--ink);
    box-shadow: 8px 8px 0 var(--coral);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease-out, transform 180ms ease-out, visibility 180ms ease-out;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-cta) {
    padding: 14px 12px;
  }

  .site-nav > a:not(.nav-cta)::after {
    right: auto;
    bottom: 7px;
    left: 12px;
    width: 28px;
  }

  .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 102px;
    padding-bottom: 52px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    max-width: 650px;
    font-size: 54px;
  }

  .hero-lead {
    max-width: 620px;
  }

  .product-window {
    width: min(100% - 12px, 650px);
    margin-left: 0;
  }

  .scroll-cue {
    display: none;
  }

  .section-pad {
    padding: 56px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 19px;
    margin-bottom: 46px;
  }

  .workflow-shell,
  .product-layout,
  .download-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-heading h2,
  .workflow-intro h2,
  .product-copy h2,
  .download-copy h2 {
    font-size: 44px;
  }

  .section-heading > p:last-child {
    max-width: 540px;
  }

  .workflow-list {
    max-width: 680px;
  }

  .product-copy {
    max-width: 570px;
  }

  .product-shot {
    width: min(100% - 12px, 650px);
  }

  .download-copy {
    max-width: 580px;
  }

  .download-options {
    max-width: 680px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-line {
    display: none;
  }
}

@media (max-width: 560px) {
  .page-frame {
    width: min(100% - 32px, 520px);
  }

  .brand {
    font-size: 19px;
  }

  .brand img {
    width: 31px;
    height: 31px;
  }

  .hero-grid {
    background-size: 49px 49px;
  }

  .hero-layout {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.11;
  }

  .hero h1 span {
    margin-bottom: 11px;
    font-size: 14px;
  }

  .hero-lead {
    margin-top: 21px;
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 11px;
    margin-top: 35px;
  }

  .hero-proof dt {
    font-size: 12px;
  }

  .hero-proof dd {
    font-size: 10px;
  }

  .product-window {
    width: calc(100% - 8px);
    box-shadow: 9px 9px 0 var(--coral);
  }

  .product-window::before {
    top: -11px;
    left: -11px;
  }

  .window-topbar {
    gap: 8px;
    padding: 0 9px;
    font-size: 8px;
  }

  .window-topbar b {
    font-size: 8px;
  }

  .action-stamp {
    right: 14px;
    bottom: 13px;
    min-width: 132px;
    padding: 8px 9px;
  }

  .action-stamp strong {
    font-size: 11px;
  }

  .action-stamp span,
  .action-stamp em {
    font-size: 7px;
  }

  .signal-track {
    min-height: 57px;
    gap: 21px;
    padding: 0 16px;
    font-size: 15px;
  }

  .section-pad {
    padding: 42px 0;
  }

  .section-heading h2,
  .workflow-intro h2,
  .product-copy h2,
  .download-copy h2 {
    font-size: 36px;
    line-height: 1.13;
  }

  .section-heading > p:last-child,
  .product-copy > p:not(.section-kicker),
  .download-copy > p:not(.section-kicker) {
    font-size: 15px;
  }

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

  .capability-card {
    min-height: 200px;
    padding: 20px;
  }

  .capability-card h3 {
    margin-top: 25px;
    font-size: 18px;
  }

  .capability-card p {
    font-size: 12px;
    line-height: 1.6;
  }

  .workflow-step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
    padding: 22px 0;
  }

  .step-note {
    display: none;
  }

  .workflow-step h3 {
    font-size: 21px;
  }

  .workflow-step p {
    font-size: 14px;
    line-height: 1.7;
  }

  .product-shot {
    width: calc(100% - 9px);
    box-shadow: 9px 9px 0 var(--lime);
  }

  .download-option {
    min-height: 128px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-meta {
    justify-content: flex-start;
    font-size: 9px;
  }

  .site-filing-bar {
    min-height: 38px;
    font-size: 10px;
  }
}

@media (min-width: 360px) and (max-width: 560px) {
  .capability-grid,
  .download-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-card {
    min-height: 214px;
    padding: 16px;
  }

  .capability-card h3 {
    margin-top: 20px;
  }

  .card-tag {
    margin-top: 13px;
    font-size: 9px;
  }

  .download-option {
    min-height: 132px;
    padding: 15px;
  }

  .download-option strong {
    font-size: 17px;
  }
}

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

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

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