:root {
  color-scheme: light;
  --ink: #17191f;
  --muted: #626772;
  --line: #dfe2e8;
  --surface: #ffffff;
  --surface-soft: #f4f6f8;
  --charcoal: #15171b;
  --charcoal-2: #24272e;
  --blue: #4d5ce8;
  --blue-dark: #3948d2;
  --mint: #8be8cf;
  --mint-dark: #167a66;
  --warning: #b56712;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(21, 23, 27, 0.12);
  --header-height: 72px;
  --shell: 1180px;
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

button {
  letter-spacing: 0;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 226, 232, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  min-width: 220px;
  align-items: center;
  gap: 12px;
}

.brand img,
.footer-brand img {
  border-radius: var(--radius);
}

.brand span,
.footer-brand span {
  display: grid;
  gap: 2px;
}

.brand strong,
.footer-brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand small,
.footer-brand small {
  color: var(--muted);
  font-size: 11px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a {
  color: #3f434c;
  font-size: 14px;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--blue);
}

.header-actions {
  display: flex;
  min-width: 220px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.button,
.icon-button {
  display: inline-flex;
  border: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button {
  min-height: 46px;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
}

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

.button .icon {
  transition: transform 180ms ease;
}

.button:hover .icon {
  transform: translateY(1px);
}

.button-ghost:hover .icon {
  transform: translateX(3px);
}

.button:focus-visible,
.icon-button:focus-visible,
.capability-tab:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(77, 92, 232, 0.32);
  outline-offset: 3px;
}

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

.button-primary:hover {
  background: var(--blue-dark);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.button-large {
  min-height: 54px;
  padding: 0 24px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(16, 18, 22, 0.42);
  color: white;
}

.button-ghost:hover {
  background: rgba(16, 18, 22, 0.7);
}

.button-full {
  width: 100%;
}

.icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.icon-button {
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 6px;
}

.menu-button {
  display: none;
}

.menu-button svg {
  width: 24px;
  height: 24px;
}

.menu-button .close-icon {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-button[aria-expanded="true"] .close-icon {
  display: block;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  height: calc(100svh - 116px);
  min-height: 620px;
  max-height: 800px;
  overflow: hidden;
  background-color: #191b1f;
  background-image: url("assets/hero-security-workbench.png");
  background-position: center;
  background-size: cover;
  color: white;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 13, 0.34);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
}

.hero-copy {
  width: min(610px, 56%);
  padding: 42px 0 54px;
  animation: hero-copy-in 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #e6e8ee;
  font-size: 13px;
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(139, 232, 207, 0.18);
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: 64px;
  line-height: 1.06;
  font-weight: 850;
}

.hero-lead {
  max-width: 580px;
  margin: 22px 0 0;
  color: #e1e4e9;
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  color: #cfd3da;
  font-size: 12px;
}

.hero-meta span {
  display: grid;
  gap: 2px;
}

.hero-meta strong {
  color: white;
  font-size: 14px;
}

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  min-height: 116px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
  transition: background-color 180ms ease;
}

.trust-grid > div:hover {
  background: var(--surface-soft);
}

.trust-grid > div:hover .feature-icon {
  transform: translateY(-2px);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  color: var(--blue);
  transition: transform 180ms ease;
}

.trust-grid span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.trust-grid strong {
  font-size: 14px;
}

.trust-grid small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 690px;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.section-heading h2,
.download-product h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.2;
}

.section-heading > p:last-child,
.download-product p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.capability-browser {
  display: grid;
  margin-top: 52px;
  grid-template-columns: 230px minmax(0, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-tabs {
  display: flex;
  flex-direction: column;
  padding: 22px 24px 22px 0;
  border-right: 1px solid var(--line);
}

.capability-tab {
  position: relative;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.capability-tab::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 3px;
  background: transparent;
  content: "";
}

.capability-tab.active {
  background: var(--surface-soft);
  color: var(--ink);
}

.capability-tab.active::before {
  background: var(--blue);
}

.capability-panel {
  display: grid;
  min-height: 420px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  align-items: center;
  gap: 54px;
  padding: 54px 0 54px 54px;
}

.capability-visual {
  position: relative;
  display: flex;
  height: 292px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: var(--radius);
}

.package-stack {
  position: absolute;
  left: 32px;
  bottom: 34px;
  display: grid;
  width: 148px;
  gap: 8px;
}

.package-stack span {
  display: flex;
  height: 44px;
  align-items: center;
  padding: 0 14px;
  background: #f7f8fa;
  color: #252831;
  border-radius: 4px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  animation: package-float 4.6s ease-in-out infinite;
}

.package-stack span:nth-child(2) {
  margin-left: 16px;
  background: var(--blue);
  color: white;
  animation-delay: -1.2s;
}

.package-stack span:nth-child(3) {
  margin-left: 32px;
  background: var(--mint);
  color: #113b34;
  animation-delay: -2.4s;
}

.visual-shield {
  position: absolute;
  top: 34px;
  right: 34px;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #24272e;
  border-radius: var(--radius);
}

.visual-shield svg {
  width: 52px;
  height: 52px;
  color: var(--mint);
  animation: shield-breathe 3.6s ease-in-out infinite;
}

.panel-label {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.capability-copy h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
}

.capability-copy > p:not(.panel-label) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.check-list li {
  position: relative;
  padding-left: 27px;
  color: #3f434c;
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--mint);
  border-radius: 50%;
  content: "";
}

.check-list li::after {
  position: absolute;
  top: 8px;
  left: 4px;
  width: 6px;
  height: 3px;
  border-bottom: 2px solid #145849;
  border-left: 2px solid #145849;
  content: "";
  transform: rotate(-45deg);
}

.engine-section {
  background: var(--charcoal);
  color: white;
}

.section-heading-light > p:last-child {
  color: #b9bec8;
}

.engine-flow {
  display: grid;
  margin-top: 56px;
  grid-template-columns: 1fr 44px 1fr 44px 1fr;
  align-items: stretch;
}

.engine-step {
  min-height: 194px;
  padding: 30px;
  border: 1px solid #373a42;
  background: var(--charcoal-2);
  border-radius: var(--radius);
  transition: border-color 180ms ease, transform 180ms ease;
}

.engine-step:hover {
  border-color: #5d6370;
  transform: translateY(-3px);
}

.step-number {
  display: block;
  margin-bottom: 30px;
  color: var(--mint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.engine-step strong {
  font-size: 20px;
}

.engine-step p {
  margin: 10px 0 0;
  color: #b9bec8;
  font-size: 14px;
  line-height: 1.7;
}

.flow-arrow {
  width: 24px;
  height: 24px;
  place-self: center;
  color: #717783;
}

.engine-note {
  display: flex;
  max-width: 850px;
  align-items: flex-start;
  gap: 14px;
  margin-top: 34px;
  color: #d4d7dd;
}

.engine-note .feature-icon {
  margin-top: 2px;
  color: var(--mint);
}

.engine-note p {
  margin: 0;
  line-height: 1.75;
}

.compatibility-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.compatibility-table {
  border-top: 1px solid var(--line);
}

.table-row {
  display: grid;
  min-height: 70px;
  grid-template-columns: 1.1fr 1.4fr 92px;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.table-head {
  min-height: 48px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.status {
  font-weight: 800;
  text-align: right;
}

.status.supported {
  color: var(--mint-dark);
}

.status.adaptive {
  color: var(--blue);
}

.status.conservative {
  color: var(--warning);
}

.download-section {
  background: var(--surface-soft);
}

.download-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 90px;
}

.download-product {
  display: flex;
  align-items: center;
  gap: 30px;
}

.download-product img {
  flex: 0 0 112px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.download-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.release-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.release-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  background: #e6faf4;
  color: var(--mint-dark);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.release-line strong {
  font-size: 20px;
}

.release-meta {
  display: grid;
  gap: 0;
  margin: 22px 0;
}

.release-meta > div {
  display: grid;
  min-height: 42px;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.release-meta dt {
  color: var(--muted);
}

.release-meta dd {
  overflow: hidden;
  margin: 0;
  font-family: "SFMono-Regular", Consolas, monospace;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-state {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 88px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list details p {
  margin: -4px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand small {
  color: #9da3ad;
}

.site-footer p {
  margin: 0;
  color: #9da3ad;
  font-size: 12px;
}

.modal-backdrop {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(13, 15, 18, 0.72);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: min(100%, 440px);
  padding: 34px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  animation: modal-in 180ms ease-out both;
}

.modal img {
  margin: 0 auto 20px;
  border-radius: 15px;
}

.modal h2 {
  margin: 0;
  font-size: 26px;
}

.modal p {
  margin: 14px 0 24px;
  color: var(--muted);
  line-height: 1.75;
}

.modal code {
  padding: 2px 5px;
  background: var(--surface-soft);
  border-radius: 3px;
  color: var(--ink);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.modal-close svg {
  width: 22px;
  height: 22px;
}

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

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

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes package-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes shield-breathe {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    min-width: auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    grid-template-columns: repeat(4, 1fr);
    padding: 14px 24px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav.open {
    display: grid;
    animation: mobile-nav-in 160ms ease-out both;
  }

  .mobile-nav a {
    padding: 12px;
    text-align: center;
  }

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

  .hero-copy {
    width: 62%;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    padding: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(2n) {
    border-right: 0;
  }

  .trust-grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .capability-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-tab {
    min-width: 148px;
    text-align: center;
  }

  .capability-tab::before {
    top: auto;
    right: 22px;
    bottom: 0;
    left: 22px;
    width: auto;
    height: 3px;
  }

  .capability-panel {
    padding-left: 0;
  }

  .engine-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .engine-step {
    min-height: 158px;
  }

  .compatibility-layout,
  .download-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .download-card {
    width: min(100%, 520px);
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 68px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .brand {
    min-width: 0;
  }

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

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .mobile-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    height: calc(100svh - 96px);
    min-height: 630px;
    max-height: 760px;
    background-position: 64% center;
  }

  .hero-shade {
    background: rgba(8, 10, 13, 0.58);
  }

  .hero-content {
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 42px;
  }

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

  .hero-lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .hero-meta span {
    min-width: 0;
  }

  .hero-meta strong {
    font-size: 12px;
  }

  .hero-meta span {
    font-size: 10px;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child,
  .trust-grid > div:nth-child(2n),
  .trust-grid > div:nth-last-child(-n + 2) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .download-product h2 {
    font-size: 31px;
  }

  .capability-panel {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 0;
  }

  .capability-tabs {
    display: grid;
    overflow: visible;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 0;
  }

  .capability-tab {
    min-width: 0;
    min-height: 46px;
    padding: 0 8px;
    border: 1px solid var(--line);
    border-radius: 5px;
    text-align: center;
  }

  .capability-tab::before {
    display: none;
  }

  .capability-tab.active {
    border-color: rgba(77, 92, 232, 0.5);
    background: #eef0ff;
    color: var(--blue-dark);
  }

  .capability-visual {
    height: 240px;
  }

  .capability-copy h3 {
    font-size: 25px;
  }

  .compatibility-table {
    display: grid;
    gap: 10px;
    border-top: 0;
  }

  .table-head {
    display: none;
  }

  .table-row:not(.table-head) {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
    padding: 15px 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    font-size: 12px;
  }

  .table-row:not(.table-head) > span:first-child {
    font-size: 13px;
    font-weight: 800;
  }

  .table-row:not(.table-head) > span:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
    color: var(--muted);
    line-height: 1.55;
  }

  .table-row:not(.table-head) > .status {
    grid-column: 2;
    grid-row: 1;
  }

  .download-product {
    align-items: flex-start;
    gap: 20px;
  }

  .download-product img {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
    border-radius: 15px;
  }

  .download-card,
  .modal {
    padding: 24px;
  }

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

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

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

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

  .hero-copy,
  .package-stack span,
  .visual-shield svg,
  .modal,
  .mobile-nav.open {
    animation: none !important;
  }
}

@keyframes mobile-nav-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
