:root {
  --navy-950: #050b16;
  --navy-900: #091a2b;
  --navy-800: #102d49;
  --navy-700: #174568;
  --coral-500: #ff4d39;
  --coral-600: #e63f2e;
  --orange-500: #f28a2e;
  --cyan-400: #33e6ff;
  --green-500: #39e77a;
  --ink-900: #111827;
  --ink-600: #536170;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --line: #dfe5eb;
  --shadow-soft: 0 24px 70px rgba(5, 11, 22, 0.1);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.32);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --transition: 220ms ease;
}

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

body {
  background: var(--surface);
  color: var(--ink-900);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.skip-link {
  background: var(--surface);
  color: var(--navy-900);
  inset-inline-start: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -80px;
  transition: top var(--transition);
  z-index: 1100;
}

.skip-link:focus {
  top: 1rem;
}

.site-navbar {
  background: rgba(5, 11, 22, 0.16);
  border-bottom: 1px solid transparent;
  padding: 1rem 0;
  transition: background var(--transition), border-color var(--transition), padding var(--transition);
}

.site-navbar.is-scrolled {
  backdrop-filter: blur(18px);
  background: rgba(5, 11, 22, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0;
}

.brand-lockup {
  align-items: center;
  color: #fff;
  display: inline-flex;
  gap: 0.7rem;
}

.brand-lockup:hover {
  color: #fff;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, var(--coral-500), var(--orange-500));
  clip-path: polygon(50% 0, 93% 18%, 86% 74%, 50% 100%, 14% 74%, 7% 18%);
  display: inline-flex;
  height: 45px;
  justify-content: center;
  position: relative;
  width: 41px;
}

.brand-mark::after {
  background: var(--navy-900);
  clip-path: inherit;
  content: "";
  inset: 3px;
  position: absolute;
}

.brand-mark span {
  color: #fff;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.62rem;
  margin-top: 0.32rem;
}

.site-navbar .nav-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0.25rem;
  padding: 0.6rem 0.7rem;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
  color: #fff;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.language-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.52rem 0.8rem;
}

.language-toggle__next,
.language-toggle__separator {
  color: rgba(255, 255, 255, 0.45);
}

.btn-brand {
  background: var(--coral-500);
  border: 1px solid var(--coral-500);
  color: #fff;
  font-weight: 800;
  padding-inline: 1.45rem;
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--coral-600);
  border-color: var(--coral-600);
  color: #fff;
  transform: translateY(-1px);
}

.hero-section {
  align-items: center;
  background: radial-gradient(circle at 75% 35%, #123c5d 0, var(--navy-900) 38%, var(--navy-950) 100%);
  color: #fff;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: 10rem 0 7rem;
  position: relative;
}

.hero-grid {
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  inset: 0;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 85%);
  position: absolute;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.16;
  position: absolute;
}

.hero-glow--one {
  background: var(--cyan-400);
  height: 420px;
  inset-inline-end: -220px;
  top: 10%;
  width: 420px;
}

.hero-glow--two {
  background: var(--coral-500);
  bottom: -260px;
  height: 480px;
  inset-inline-start: -220px;
  width: 480px;
}

.eyebrow,
.section-kicker {
  align-items: center;
  color: var(--coral-500);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  gap: 0.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(255, 77, 57, 0.1);
  border: 1px solid rgba(255, 77, 57, 0.24);
  border-radius: 999px;
  color: #ff9d90;
  padding: 0.55rem 0.85rem;
}

.eyebrow-dot {
  background: var(--coral-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 77, 57, 0.15);
  height: 6px;
  width: 6px;
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 4.9vw, 5.25rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.1;
  margin: 1.6rem 0;
  max-width: 760px;
  text-wrap: balance;
}

[dir="rtl"] .hero-copy h1 {
  letter-spacing: -0.035em;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.9;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-actions .btn {
  border-radius: 999px;
  font-size: 0.95rem;
  min-width: 165px;
  padding-block: 0.9rem;
}

.hero-trust {
  align-items: center;
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  font-size: 0.74rem;
  gap: 1rem;
  margin-top: 2.5rem;
  text-transform: uppercase;
}

.hero-trust__line {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent);
  height: 1px;
  max-width: 150px;
  width: 30%;
}

[dir="rtl"] .hero-trust__line {
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0.26), transparent);
}

.product-visual {
  min-height: 575px;
  perspective: 1200px;
  position: relative;
}

.dashboard-preview {
  background: #f7f9fb;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  box-shadow: var(--shadow-dark);
  inset-inline-end: 2%;
  overflow: hidden;
  position: absolute;
  top: 65px;
  transform: rotateY(-5deg) rotateX(2deg);
  width: 91%;
  z-index: 2;
}

[dir="rtl"] .dashboard-preview {
  transform: rotateY(5deg) rotateX(2deg);
}

.preview-topbar {
  align-items: center;
  background: var(--navy-950);
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.2rem;
}

.preview-brand {
  align-items: center;
  display: flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 0.45rem;
}

.preview-brand span {
  background: var(--coral-500);
  border-radius: 4px;
  height: 18px;
  width: 18px;
}

.preview-status {
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  font-size: 0.65rem;
  gap: 0.4rem;
}

.preview-status i {
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-500);
  height: 6px;
  width: 6px;
}

.preview-body {
  color: var(--ink-900);
  padding: 1.35rem;
}

.preview-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.preview-heading div {
  display: flex;
  flex-direction: column;
}

.preview-heading small,
.progress-copy span {
  color: #7a8795;
  font-size: 0.66rem;
}

.preview-heading strong {
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.preview-time {
  background: #e9edf2;
  border-radius: 9px;
  direction: ltr;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.5rem 0.65rem;
}

.preview-progress {
  align-items: center;
  background: #fff;
  border: 1px solid #e7ebef;
  border-radius: 17px;
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1rem;
}

.progress-ring {
  align-items: center;
  background: conic-gradient(var(--green-500) 0 60%, #e7edf0 60% 100%);
  border-radius: 50%;
  display: flex;
  height: 76px;
  justify-content: center;
  min-width: 76px;
  position: relative;
}

.progress-ring::after {
  background: #fff;
  border-radius: 50%;
  content: "";
  inset: 7px;
  position: absolute;
}

.progress-ring span {
  font-size: 0.85rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.system-screenshot {
  display: block;
  height: auto;
  width: 100%;
}

.navbar-logo-shell {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  display: flex;
  height: 52px;
  justify-content: center;
  overflow: hidden;
  width: 190px;
}

.navbar-logo {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.progress-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.25rem;
}

.progress-copy strong {
  font-size: 0.85rem;
}

.progress {
  background: #edf1f4;
  height: 5px;
  margin-top: 0.4rem;
}

.progress-bar {
  background: var(--green-500);
}

.checkpoint-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.checkpoint {
  align-items: center;
  background: #fff;
  border: 1px solid #e5e9ee;
  border-radius: 12px;
  display: grid;
  font-size: 0.73rem;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  padding: 0.72rem;
}

.checkpoint small {
  color: #8d98a4;
  direction: ltr;
  font-size: 0.62rem;
}

.checkpoint-icon {
  border: 1px solid #cfd6dd;
  border-radius: 50%;
  height: 23px;
  line-height: 21px;
  text-align: center;
  width: 23px;
}

.checkpoint--done .checkpoint-icon {
  background: var(--green-500);
  border-color: var(--green-500);
  color: var(--navy-950);
  font-weight: 900;
}

.floating-card {
  align-items: center;
  backdrop-filter: blur(15px);
  background: rgba(9, 26, 43, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  display: flex;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  position: absolute;
  z-index: 4;
}

.floating-card--incident {
  bottom: 186px;
  inset-inline-start: -3%;
}

.floating-card--nfc {
  inset-inline-end: -1%;
  top: 28px;
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: 0.74rem;
}

.floating-card small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.57rem;
  margin-top: 0.2rem;
}

.floating-icon,
.nfc-symbol {
  align-items: center;
  border-radius: 50%;
  display: flex;
  font-size: 0.75rem;
  font-weight: 900;
  height: 33px;
  justify-content: center;
  width: 33px;
}

.floating-icon {
  background: rgba(255, 77, 57, 0.14);
  border: 1px solid var(--coral-500);
  color: #ff8c7e;
}

.nfc-symbol {
  background: rgba(51, 230, 255, 0.1);
  border: 1px solid var(--cyan-400);
  box-shadow: 0 0 18px rgba(51, 230, 255, 0.2);
  color: var(--cyan-400);
}

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

.visual-orbit--one {
  height: 510px;
  inset-inline-end: -50px;
  top: 20px;
  width: 510px;
}

.visual-orbit--two {
  height: 390px;
  inset-inline-end: 10px;
  top: 80px;
  width: 390px;
}

.section-pad {
  padding: 7rem 0;
}

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

.section-heading h2,
.outcomes-section h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.16;
  margin: 0.8rem 0 0;
}

.section-heading p {
  color: var(--ink-600);
  line-height: 1.9;
  margin: 0;
}

.section-heading--center {
  margin: 0 auto 3.5rem;
  max-width: 730px;
  text-align: center;
}

.section-heading--center p {
  margin-top: 1rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  height: 100%;
  overflow: hidden;
  padding: 1.7rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  border-color: rgba(255, 77, 57, 0.4);
  box-shadow: var(--shadow-soft);
  transform: translateY(-7px);
}

.feature-number {
  color: #e7ebef;
  font-size: 3.8rem;
  font-weight: 900;
  inset-inline-end: 1rem;
  line-height: 1;
  position: absolute;
  top: 0.8rem;
}

.feature-icon {
  align-items: center;
  background: #fff0ee;
  border-radius: 12px;
  color: var(--coral-500);
  display: flex;
  height: 46px;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  width: 46px;
  z-index: 1;
}

.icon-device {
  border: 2px solid currentColor;
  border-radius: 5px;
  height: 23px;
  position: relative;
  width: 15px;
}

.icon-device::after {
  background: currentColor;
  border-radius: 50%;
  bottom: 2px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 2px;
}

.icon-nfc,
.icon-report {
  font-weight: 900;
}

.icon-dashboard {
  border: 2px solid currentColor;
  border-radius: 3px;
  height: 19px;
  position: relative;
  width: 24px;
}

.icon-dashboard::before,
.icon-dashboard::after {
  background: currentColor;
  content: "";
  position: absolute;
}

.icon-dashboard::before {
  height: 2px;
  left: 3px;
  right: 3px;
  top: 5px;
}

.icon-dashboard::after {
  bottom: 3px;
  height: 5px;
  left: 4px;
  width: 4px;
}

.feature-card h3,
.workflow-copy h3,
.outcome-card h3,
.partner-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
}

.feature-card p,
.workflow-copy p,
.outcome-card p,
.partner-card p {
  color: var(--ink-600);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0.75rem 0 0;
}

.workflow-section {
  background: #fff;
}

.workflow-track {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.workflow-line {
  background: linear-gradient(90deg, var(--coral-500), var(--orange-500), var(--cyan-400));
  height: 2px;
  left: 7%;
  opacity: 0.3;
  position: absolute;
  right: 7%;
  top: 28px;
}

[dir="rtl"] .workflow-line {
  background: linear-gradient(-90deg, var(--coral-500), var(--orange-500), var(--cyan-400));
}

.workflow-step {
  position: relative;
  z-index: 1;
}

.workflow-index {
  align-items: center;
  background: var(--navy-900);
  border: 7px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  color: #fff;
  display: flex;
  font-size: 0.74rem;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.workflow-copy {
  padding-top: 1.4rem;
}

.outcomes-section {
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.outcomes-section::before {
  background: radial-gradient(circle, rgba(51, 230, 255, 0.14), transparent 68%);
  content: "";
  height: 700px;
  inset-inline-end: -260px;
  position: absolute;
  top: -250px;
  width: 700px;
}

.section-kicker--light {
  color: #ff9588;
}

.outcomes-lead,
.contact-panel > .row > div > p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.9;
  margin: 1.25rem 0 0;
}

.text-link {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 0.7rem;
  margin-top: 2rem;
}

.text-link:hover {
  color: var(--cyan-400);
}

.outcomes-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}

.outcome-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  min-height: 220px;
  padding: 1.6rem;
}

.outcome-card:nth-child(even) {
  transform: translateY(1.5rem);
}

.outcome-card > span {
  color: var(--coral-500);
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  margin-bottom: 2.8rem;
}

.outcome-card p {
  color: rgba(255, 255, 255, 0.54);
}

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

.partner-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 145px 1fr;
  height: 100%;
  padding: 1.4rem;
}

.partner-logo-slot {
  align-items: center;
  background: #f7f9fb;
  border: 1px dashed #b8c2cc;
  border-radius: 16px;
  display: flex;
  height: 145px;
  justify-content: center;
  overflow: hidden;
}

.partner-logo {
  display: none;
  max-height: 100px;
  max-width: 110px;
  object-fit: contain;
}

.partner-logo-slot.has-logo .partner-logo {
  display: block;
}

.partner-logo-slot.has-logo .logo-placeholder {
  display: none;
}

.logo-placeholder {
  align-items: center;
  color: #6f7d8b;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
}

.logo-placeholder strong {
  color: var(--navy-900);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.logo-placeholder span {
  font-size: 0.66rem;
}

.partner-role {
  color: var(--coral-500);
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.contact-section {
  background: linear-gradient(to bottom, var(--surface-soft) 50%, var(--navy-950) 50%);
  padding: 1rem 0 5rem;
}

.contact-panel {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
  color: #fff;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
}

.contact-panel::after {
  background: var(--coral-500);
  border-radius: 50%;
  content: "";
  filter: blur(40px);
  height: 180px;
  inset-inline-start: -110px;
  opacity: 0.12;
  position: absolute;
  top: -80px;
  width: 180px;
}

.contact-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 1;
}

.contact-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #fff;
  display: flex;
  gap: 0.8rem;
  min-width: 0;
  padding: 1rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(51, 230, 255, 0.36);
  color: #fff;
  transform: translateY(-2px);
}

.contact-item.is-placeholder {
  cursor: default;
}

.contact-icon {
  align-items: center;
  background: rgba(51, 230, 255, 0.08);
  border: 1px solid rgba(51, 230, 255, 0.2);
  border-radius: 10px;
  color: var(--cyan-400);
  display: flex;
  flex: 0 0 38px;
  font-weight: 900;
  height: 38px;
  justify-content: center;
}

.contact-item > span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-item small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.63rem;
  margin-bottom: 0.25rem;
}

.contact-item strong {
  direction: ltr;
  font-size: 0.78rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-footer {
  background: var(--navy-950);
  color: #fff;
  padding: 1.3rem 0 2.2rem;
}

.footer-inner {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
}

.brand-lockup--footer .brand-mark {
  height: 38px;
  width: 35px;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }

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

@media (max-width: 991.98px) {
  .site-navbar .navbar-collapse {
    background: rgba(5, 11, 22, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    margin-top: 0.8rem;
    padding: 1rem;
  }

  .nav-actions {
    justify-content: space-between;
  }

  .hero-section {
    padding-top: 9rem;
  }

  .product-visual {
    margin: 0 auto;
    max-width: 650px;
  }

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

  .workflow-line {
    display: none;
  }

  .outcomes-section h2 {
    max-width: 760px;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 5rem 0;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .product-visual {
    min-height: 480px;
  }

  .dashboard-preview {
    inset-inline-end: 0;
    top: 55px;
    transform: none;
    width: 100%;
  }

  [dir="rtl"] .dashboard-preview {
    transform: none;
  }

  .floating-card--incident {
    bottom: 138px;
    inset-inline-start: 2%;
  }

  .floating-card--nfc {
    inset-inline-end: 1%;
    top: 18px;
  }

  .visual-orbit {
    display: none;
  }

  .workflow-track,
  .outcomes-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card:nth-child(even) {
    transform: none;
  }

  .partner-card {
    grid-template-columns: 110px 1fr;
  }

  .partner-logo-slot {
    height: 120px;
  }

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

@media (max-width: 430px) {
  .navbar-logo-shell {
    height: 46px;
    width: 160px;
  }

  .brand-copy small {
    display: none;
  }

  .product-visual {
    min-height: 440px;
  }

  .floating-card--incident {
    bottom: 116px;
  }

  .preview-body {
    padding: 1rem;
  }

  .preview-progress {
    gap: 0.7rem;
  }

  .progress-ring {
    height: 62px;
    min-width: 62px;
  }

  .floating-card {
    padding: 0.65rem;
  }

  .partner-card {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .partner-logo-slot {
    height: 110px;
    width: 100%;
  }
}

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

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