:root {
  color-scheme: light;
  --ink: #10251f;
  --muted: #5f706a;
  --forest: #073f2b;
  --forest-2: #0b5c3e;
  --mint: #dff3e9;
  --mint-2: #eef8f3;
  --gold: #c6923b;
  --gold-soft: #f5ead6;
  --paper: #fbfcfa;
  --surface: #ffffff;
  --line: #dce6e1;
  --shadow: 0 24px 70px rgba(13, 58, 42, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --page: min(1180px, calc(100vw - 48px));
  font-family:
    Inter, "Segoe UI", Roboto, "Noto Sans Arabic", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 6%, rgba(209, 235, 221, 0.72), transparent 28rem),
    linear-gradient(180deg, #f8faf7 0%, #ffffff 26%, #f7faf8 100%);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 63, 43, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 63, 43, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--forest);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: var(--page);
  min-height: 82px;
  margin: 14px auto 0;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(220, 230, 225, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 40px rgba(15, 55, 42, 0.08);
  backdrop-filter: blur(18px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.site-brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.site-brand span {
  display: grid;
  gap: 1px;
}

.site-brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.035em;
}

.site-brand small {
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.045em;
}

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

.site-nav a {
  padding: 10px 13px;
  border-radius: 11px;
  color: #43574f;
  font-size: 0.86rem;
  font-weight: 650;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--mint-2);
  color: var(--forest);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-picker {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #f6f9f7;
}

.language-picker button {
  min-width: 34px;
  padding: 7px 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 800;
  cursor: pointer;
}

.language-picker button.active {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 4px 12px rgba(7, 63, 43, 0.2);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button:focus-visible,
.language-picker button:focus-visible,
.menu-toggle:focus-visible,
.scan-input button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(198, 146, 59, 0.45);
  outline-offset: 3px;
}

.button-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 13px 28px rgba(7, 63, 43, 0.22);
}

.button-primary:hover {
  background: #052f21;
  box-shadow: 0 17px 34px rgba(7, 63, 43, 0.26);
}

.button-secondary,
.button-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest);
}

.button-secondary:hover,
.button-outline:hover {
  border-color: #b9d2c6;
  background: #fff;
}

.button-compact {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 10px;
  background: var(--forest);
}

.section {
  width: var(--page);
  margin-inline: auto;
  padding-block: 104px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 70px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding-top: 92px;
  padding-bottom: 86px;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #cce7da;
  border-radius: 999px;
  background: #edf8f2;
  color: #236749;
  font-size: 0.69rem;
  font-weight: 800;
}

.availability i,
.window-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2db578;
  box-shadow: 0 0 0 4px rgba(45, 181, 120, 0.12);
}

.hero h1,
.section-heading h2,
.truth-panel h2,
.pilot-card h2,
.partner-copy h2 {
  margin: 0;
  color: #0d211a;
  font-family: Georgia, "Times New Roman", "Noto Naskh Arabic", serif;
  font-weight: 600;
  letter-spacing: -0.048em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.8rem, 6.6vw, 6.4rem);
}

.hero h1 em,
.section-heading h2 em,
.truth-panel h2 em {
  color: var(--forest-2);
  font-weight: 600;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #53675f;
  font-size: 0.76rem;
  font-weight: 700;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list li > span:first-child {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  font-size: 0.7rem;
}

.hero-product {
  position: relative;
  padding: 24px 4px;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(190, 211, 201, 0.9);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: #f9fbfa;
}

.window-brand,
.window-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
}

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

.window-state {
  padding: 6px 9px;
  border-radius: 999px;
  background: #eaf7f0;
  color: #176342;
  font-size: 0.63rem;
}

.window-content {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 470px;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 34px;
  background: var(--forest);
}

.mock-sidebar span {
  width: 19px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.mock-sidebar span.active {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.94);
}

.mock-main {
  padding: 32px;
  background:
    radial-gradient(circle at 100% 0, rgba(222, 243, 233, 0.72), transparent 230px),
    #f6f9f7;
}

.mock-heading {
  display: grid;
  gap: 7px;
  margin-bottom: 24px;
}

.mock-heading span,
.scan-label span {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.mock-heading strong {
  font-size: 1.45rem;
}

.scan-card,
.result-card {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.scan-card {
  padding: 15px;
  box-shadow: 0 12px 30px rgba(25, 73, 55, 0.07);
}

.scan-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.scan-label small {
  color: #98a49f;
  font-size: 0.56rem;
}

.scan-input {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 7px 7px 7px 13px;
  border: 1px solid #dbe5e0;
  border-radius: 11px;
  background: #f8faf9;
}

.scan-input > span {
  color: var(--forest);
}

.scan-input strong {
  color: #445850;
  font-size: 0.77rem;
  letter-spacing: 0.045em;
}

.scan-input button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  cursor: pointer;
}

.result-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.result-card.is-scanned {
  border-color: #8fcbb0;
  box-shadow: 0 10px 25px rgba(25, 113, 75, 0.12);
  transform: translateY(-2px);
}

.result-image {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 13px;
  background: var(--mint-2);
  color: var(--forest);
}

.result-copy {
  display: grid;
  gap: 4px;
}

.result-status {
  color: var(--gold);
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.result-copy strong {
  font-size: 0.78rem;
}

.result-copy small {
  color: var(--muted);
  font-size: 0.58rem;
}

.result-card dl {
  display: flex;
  gap: 16px;
  margin: 0;
}

.result-card dl div {
  display: grid;
  gap: 4px;
  min-width: 38px;
}

.result-card dt {
  color: #8a9993;
  font-size: 0.48rem;
  text-transform: uppercase;
}

.result-card dd {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
}

.source-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.55rem;
}

.source-strip i {
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #496057;
  font-style: normal;
  font-weight: 700;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 196px;
  padding: 12px 14px;
  border: 1px solid rgba(207, 224, 216, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 35px rgba(13, 59, 42, 0.15);
  backdrop-filter: blur(8px);
}

.floating-card > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: var(--mint);
  color: var(--forest);
  font-weight: 900;
}

.floating-card div {
  display: grid;
  gap: 3px;
}

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

.floating-card small {
  color: var(--muted);
  font-size: 0.56rem;
}

.floating-card-top {
  top: -3px;
  right: -28px;
}

.floating-card-bottom {
  bottom: -12px;
  left: -34px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: var(--page);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(11, 55, 40, 0.06);
}

.proof-strip div {
  display: grid;
  gap: 5px;
  padding: 23px 22px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--forest);
  font-size: 0.79rem;
  letter-spacing: 0.08em;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.68rem;
}

.section-heading {
  display: grid;
  max-width: 820px;
  gap: 20px;
  margin-bottom: 54px;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading h2,
.truth-panel h2,
.partner-copy h2,
.pilot-card h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.7rem);
}

.section-heading p,
.partner-copy p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.workflow-section {
  padding-top: 140px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.workflow-card {
  position: relative;
  min-height: 305px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.workflow-card::after {
  position: absolute;
  right: -40px;
  bottom: -62px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(7, 63, 43, 0.08);
  border-radius: 50%;
  content: "";
}

.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #bac8c2;
  font-family: Georgia, serif;
  font-size: 1rem;
}

.step-icon,
.capability-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: var(--mint);
  color: var(--forest);
  font-size: 1.25rem;
  font-weight: 900;
}

.workflow-card h3,
.capability-card h3,
.device-card h3,
.partner-types h3 {
  margin: 34px 0 13px;
  font-size: 1.12rem;
}

.workflow-card p,
.capability-card p,
.device-card p,
.partner-types p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.72;
}

.capabilities-section {
  padding-top: 120px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.capability-card {
  position: relative;
  min-height: 275px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 34px rgba(12, 55, 41, 0.055);
}

.capability-card h3 {
  margin-top: 28px;
  font-size: 1.08rem;
}

.capability-featured {
  grid-row: span 2;
  min-height: 566px;
  background:
    radial-gradient(circle at 85% 15%, rgba(115, 184, 150, 0.2), transparent 190px),
    var(--forest);
  color: #fff;
}

.capability-featured .capability-icon {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.capability-featured .capability-label {
  display: block;
  margin-top: 38px;
  color: #d1aa64;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.capability-featured h3 {
  max-width: 300px;
  margin-top: 12px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.08;
}

.capability-featured p {
  max-width: 335px;
  color: rgba(255, 255, 255, 0.73);
}

.mini-label {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  height: 145px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.075);
  transform: rotate(-2deg);
}

.mini-label span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
}

.mini-label span:nth-child(2) {
  opacity: 0.45;
}

.mini-label span:nth-child(3) {
  opacity: 0.25;
}

.mini-label i {
  grid-column: 1 / -1;
  align-self: end;
  height: 56px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.78) 0 2px,
    transparent 2px 5px,
    rgba(255, 255, 255, 0.78) 5px 8px,
    transparent 8px 12px
  );
}

.truth-section {
  padding-block: 70px 120px;
}

.truth-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding: 58px;
  border: 1px solid #d7e6df;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(230, 245, 237, 0.95), rgba(255, 255, 255, 0.97)),
    #fff;
  box-shadow: var(--shadow);
}

.truth-panel h2 {
  margin-top: 20px;
  font-size: clamp(2.5rem, 4vw, 4.1rem);
}

.truth-copy > p {
  margin: 0;
  color: #4e6259;
  font-size: 1rem;
  line-height: 1.8;
}

.truth-copy ul {
  display: grid;
  gap: 11px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.truth-copy li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px;
  border: 1px solid rgba(196, 219, 208, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.truth-copy li > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--forest);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.truth-copy li div {
  display: grid;
  gap: 3px;
}

.truth-copy li strong {
  font-size: 0.8rem;
}

.truth-copy li small {
  color: var(--muted);
  font-size: 0.65rem;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.device-card {
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.device-visual {
  position: relative;
  display: grid;
  height: 180px;
  margin-bottom: 25px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 30%, #ecf7f1, transparent 110px),
    #f5f8f6;
}

.device-visual.laptop span {
  position: relative;
  width: 155px;
  height: 96px;
  border: 7px solid #163b2e;
  border-radius: 9px;
  background:
    linear-gradient(120deg, rgba(47, 145, 97, 0.22), transparent 50%),
    #fff;
}

.device-visual.laptop span::after {
  position: absolute;
  right: -23px;
  bottom: -14px;
  left: -23px;
  height: 8px;
  border-radius: 0 0 12px 12px;
  background: #163b2e;
  content: "";
}

.device-visual.phone span {
  width: 76px;
  height: 142px;
  border: 6px solid #153a2d;
  border-radius: 19px;
  background:
    linear-gradient(180deg, #e2f3ea, #fff 44%, #f3f7f5);
  box-shadow: inset 0 -28px 0 #f0f6f3;
}

.device-visual.terminal span {
  position: relative;
  width: 94px;
  height: 142px;
  border: 6px solid #153a2d;
  border-radius: 15px 15px 24px 24px;
  background:
    linear-gradient(180deg, #dcefe5 0 52%, #fff 52%);
  transform: rotate(-4deg);
}

.device-visual.terminal span::after {
  position: absolute;
  right: 17px;
  bottom: 17px;
  left: 17px;
  height: 27px;
  background: repeating-linear-gradient(
    90deg,
    #153a2d 0 2px,
    transparent 2px 5px
  );
  content: "";
}

.device-visual.terminal i {
  position: absolute;
  top: 43px;
  right: 77px;
  width: 54px;
  height: 36px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(18, 62, 46, 0.14);
  transform: rotate(7deg);
}

.device-status {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.device-status.ready {
  background: var(--mint);
  color: #176343;
}

.device-status.planned {
  background: var(--gold-soft);
  color: #8b6222;
}

.device-card h3 {
  margin-top: 17px;
  font-size: 1.18rem;
}

.partner-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 50px;
  padding: 62px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 15% 10%, rgba(62, 139, 99, 0.35), transparent 250px),
    var(--forest);
  color: #fff;
  box-shadow: 0 30px 80px rgba(5, 48, 32, 0.23);
}

.partner-copy h2 {
  margin-top: 21px;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.partner-copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.69);
}

.partner-types {
  display: grid;
  gap: 10px;
}

.partner-types article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
}

.partner-types article > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.12);
  color: #dfb96f;
  font-size: 0.7rem;
  font-weight: 900;
}

.partner-types h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 0.88rem;
}

.partner-types p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.71rem;
  line-height: 1.55;
}

.pilot-section {
  padding-top: 70px;
}

.pilot-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 35px 60px;
  align-items: center;
  padding: 58px;
  border-radius: var(--radius-xl);
  background: var(--gold-soft);
  box-shadow: 0 22px 60px rgba(114, 75, 15, 0.1);
}

.pilot-card h2 {
  max-width: 750px;
  margin-top: 18px;
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
}

.pilot-card p {
  max-width: 700px;
  margin: 22px 0 0;
  color: #685b46;
  line-height: 1.75;
}

.pilot-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  grid-column: 1 / -1;
  gap: 10px;
}

.pilot-metrics div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(150, 103, 30, 0.16);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.5);
}

.pilot-metrics strong {
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 1.7rem;
}

.pilot-metrics span {
  color: #6e5e45;
  font-size: 0.69rem;
  font-weight: 700;
}

.pilot-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.button-light {
  background: #fff;
  color: var(--forest);
  box-shadow: 0 12px 28px rgba(105, 73, 20, 0.12);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 850;
}

.faq-section {
  padding-top: 70px;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 4px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-2);
  color: var(--forest);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  max-width: 850px;
  margin: -4px 0 25px;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer {
  display: grid;
  grid-template-columns: auto auto;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  width: var(--page);
  margin: 40px auto 26px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.69rem;
}

.footer-brand img {
  width: 35px;
  height: 35px;
  border-radius: 10px;
}

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

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

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

[dir="rtl"] body {
  font-family: "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
}

[dir="rtl"] .hero h1,
[dir="rtl"] .section-heading h2,
[dir="rtl"] .truth-panel h2,
[dir="rtl"] .partner-copy h2,
[dir="rtl"] .pilot-card h2 {
  font-family: "Noto Naskh Arabic", "Segoe UI", serif;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

[dir="rtl"] .proof-strip div {
  border-right: 0;
  border-left: 1px solid var(--line);
}

[dir="rtl"] .proof-strip div:last-child {
  border-left: 0;
}

[dir="rtl"] .step-number {
  right: auto;
  left: 24px;
}

[dir="rtl"] .floating-card-top {
  right: auto;
  left: -28px;
}

[dir="rtl"] .floating-card-bottom {
  right: -34px;
  left: auto;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 14px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    padding-top: 82px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-product {
    width: min(720px, 100%);
    margin-inline: auto;
  }

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

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

  .truth-panel,
  .partner-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 28px, 680px);
    --radius-xl: 24px;
    --radius-lg: 20px;
  }

  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    min-height: 68px;
    margin-top: 7px;
    padding: 9px 10px;
    border-radius: 17px;
  }

  .site-brand img {
    width: 37px;
    height: 37px;
  }

  .site-brand strong {
    font-size: 0.84rem;
  }

  .site-brand small {
    display: none;
  }

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

  .header-actions {
    gap: 7px;
  }

  .language-picker button {
    min-width: 30px;
    padding-inline: 6px;
  }

  .language-picker button[data-locale="ar"] {
    max-width: 34px;
    overflow: hidden;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    margin-right: 0;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    top: calc(100% + 6px);
  }

  .section {
    padding-block: 76px;
  }

  .hero {
    padding-top: 68px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .trust-list {
    display: grid;
    gap: 10px;
  }

  .hero-product {
    padding: 8px 0 35px;
  }

  .product-window {
    border-radius: 21px;
    transform: none;
  }

  .window-content {
    grid-template-columns: 40px 1fr;
    min-height: 390px;
  }

  .mock-sidebar {
    gap: 15px;
  }

  .mock-sidebar span.active {
    width: 25px;
    height: 25px;
  }

  .mock-main {
    padding: 20px 15px;
  }

  .mock-heading strong {
    font-size: 1.14rem;
  }

  .result-card {
    grid-template-columns: 46px 1fr;
  }

  .result-card dl {
    grid-column: 1 / -1;
    justify-content: space-between;
    padding-top: 5px;
  }

  .floating-card {
    position: static;
    min-width: 0;
    margin: 10px 8px 0;
  }

  .floating-card-top {
    display: none;
  }

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

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
    border-right: 0;
  }

  [dir="rtl"] .proof-strip div {
    border-left: 0;
  }

  [dir="rtl"] .proof-strip div:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  [dir="rtl"] .proof-strip div:last-child {
    border-left: 0;
  }

  .workflow-section {
    padding-top: 100px;
  }

  .workflow-grid,
  .capability-grid,
  .device-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card {
    min-height: 240px;
  }

  .capability-featured {
    grid-row: auto;
    min-height: 520px;
  }

  .truth-panel,
  .partner-panel,
  .pilot-card {
    gap: 38px;
    padding: 32px 23px;
  }

  .truth-panel h2,
  .partner-copy h2,
  .pilot-card h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .partner-types article {
    grid-template-columns: 36px 1fr;
    padding: 15px;
  }

  .partner-types article > span {
    width: 34px;
    height: 34px;
  }

  .pilot-card {
    grid-template-columns: 1fr;
  }

  .pilot-metrics {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .pilot-actions {
    display: grid;
    justify-content: stretch;
  }

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

  .pilot-actions .text-link {
    justify-content: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}

@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;
  }
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 80% 10%, rgba(70, 202, 137, 0.22), transparent 36%),
    #052a1e;
  color: #f4f5ec;
}

.not-found-card {
  width: min(680px, 100%);
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(3, 31, 22, 0.76);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
}

.not-found-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 64px;
  color: inherit;
  text-decoration: none;
}

.not-found-brand img {
  width: 42px;
  height: 42px;
}

.not-found-card h1 {
  margin: 16px 0;
  font: 700 clamp(3rem, 9vw, 6.6rem) / 0.92 var(--font-display);
  letter-spacing: -0.06em;
}

.not-found-card > p:not(.eyebrow) {
  max-width: 480px;
  margin: 0 0 34px;
  color: rgba(244, 245, 236, 0.72);
  font-size: 1.05rem;
}

/* Cinematic product story */

.scroll-meter {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: 3px;
  pointer-events: none;
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #5fe5aa, #d6a556);
  box-shadow: 0 0 18px rgba(95, 229, 170, 0.55);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  width: min(1450px, calc(100vw - 24px));
  border-color: rgba(255, 255, 255, 0.78);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 16px 50px rgba(8, 31, 23, 0.1);
}

.hero {
  --pointer-x: 0px;
  --pointer-y: 0px;
  --product-shift-x: 0px;
  --product-shift-y: 0px;
  position: relative;
  isolation: isolate;
  width: min(1450px, calc(100vw - 24px));
  min-height: calc(100svh - 98px);
  margin-top: 12px;
  padding: clamp(88px, 9vw, 138px) clamp(32px, 6vw, 90px) 86px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 38px 38px;
  background:
    radial-gradient(circle at calc(74% + var(--pointer-x)) calc(44% + var(--pointer-y)), rgba(40, 156, 106, 0.34), transparent 24rem),
    radial-gradient(circle at 8% 95%, rgba(196, 143, 55, 0.14), transparent 28rem),
    linear-gradient(145deg, #061611 0%, #09291f 50%, #071d16 100%);
  box-shadow: 0 35px 90px rgba(4, 29, 20, 0.2);
  color: #fff;
}

.flow-field,
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-grid {
  z-index: -1;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(160, 221, 195, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 221, 195, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 70% 45%, #000 0%, transparent 65%);
}

.hero-grid::before,
.hero-grid::after {
  position: absolute;
  border: 1px solid rgba(133, 222, 182, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-grid::before {
  top: 7%;
  right: 4%;
  width: min(62vw, 860px);
  aspect-ratio: 1;
}

.hero-grid::after {
  top: 18%;
  right: 12%;
  width: min(45vw, 630px);
  aspect-ratio: 1;
}

.hero-coordinate {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(221, 245, 234, 0.48);
  font-family: "Segoe UI", sans-serif;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.hero-coordinate i {
  width: 44px;
  height: 1px;
  background: currentColor;
}

.hero-coordinate-a {
  top: 30px;
  left: 42px;
}

.hero-coordinate-b {
  right: 42px;
  bottom: 26px;
}

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

.hero .eyebrow {
  color: #e4b866;
}

.hero .availability {
  border-color: rgba(111, 221, 170, 0.2);
  background: rgba(72, 168, 123, 0.12);
  color: #a9e4c8;
  backdrop-filter: blur(10px);
}

.hero h1 {
  color: #f7fbf9;
  font-family: "Segoe UI Variable Display", "Segoe UI", Inter, sans-serif;
  font-size: clamp(4.2rem, 7.2vw, 7.6rem);
  font-weight: 560;
  letter-spacing: -0.072em;
  line-height: 0.87;
}

.hero h1 em {
  color: #70d8a7;
  font-family: Georgia, "Times New Roman", "Noto Naskh Arabic", serif;
  font-weight: 500;
}

.hero-lead {
  color: rgba(231, 244, 238, 0.7);
}

.hero .button-primary {
  background: #f7fbf9;
  color: #073f2b;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.hero .button-primary:hover {
  background: #ddf3e8;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.07);
  color: #f3faf6;
  backdrop-filter: blur(12px);
}

.hero .button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.hero .trust-list {
  color: rgba(228, 243, 235, 0.63);
}

.hero .trust-list li > span:first-child {
  border: 1px solid rgba(126, 222, 177, 0.2);
  background: rgba(69, 174, 123, 0.14);
  color: #8ce4b8;
}

.hero-product {
  --tilt-x: 0deg;
  --tilt-y: -4deg;
  transform:
    translate3d(var(--product-shift-x), var(--product-shift-y), 0)
    perspective(1400px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.product-window {
  position: relative;
  z-index: 3;
  border-color: rgba(225, 242, 234, 0.18);
  color: var(--ink);
  box-shadow:
    0 45px 110px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: none;
}

.product-window::after {
  position: absolute;
  top: 58px;
  right: 0;
  bottom: 0;
  left: 58px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0 38%,
    rgba(87, 220, 158, 0.1) 48%,
    rgba(122, 239, 184, 0.52) 49%,
    rgba(87, 220, 158, 0.08) 50%,
    transparent 61%
  );
  background-size: 100% 210%;
  content: "";
  opacity: 0.42;
  animation: interface-scan 6s ease-in-out infinite;
}

.product-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(120, 226, 176, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.product-orbit::before {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #77e2b0;
  box-shadow: 0 0 18px rgba(119, 226, 176, 0.85);
  content: "";
}

.product-orbit-one {
  top: -68px;
  right: -42px;
  width: 390px;
  height: 390px;
  animation: orbit-spin 18s linear infinite;
}

.product-orbit-two {
  bottom: -76px;
  left: -70px;
  width: 260px;
  height: 260px;
  animation: orbit-spin 13s linear infinite reverse;
}

.product-beacon {
  position: absolute;
  top: 17%;
  right: -13px;
  z-index: 5;
  display: grid;
  gap: 5px;
}

.product-beacon span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8fe7bd;
  animation: beacon-pulse 1.5s ease-in-out infinite;
}

.product-beacon span:nth-child(2) {
  animation-delay: 180ms;
}

.product-beacon span:nth-child(3) {
  animation-delay: 360ms;
}

.result-card {
  position: relative;
  overflow: hidden;
}

.result-scan-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20%;
  width: 20%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(83, 220, 156, 0.28), transparent);
  transform: skewX(-18deg);
}

.result-card.is-scanned .result-scan-line {
  animation: result-flash 850ms ease-out;
}

.floating-card {
  z-index: 6;
  animation: card-float 5s ease-in-out infinite;
}

.floating-card-bottom {
  animation-delay: -2.4s;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: rgba(228, 243, 235, 0.42);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll-cue i {
  width: 1px;
  height: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.hero-scroll-cue i::after {
  display: block;
  width: 1px;
  height: 12px;
  background: #78dfad;
  content: "";
  animation: scroll-drop 1.8s ease-in-out infinite;
}

.proof-strip {
  position: relative;
  z-index: 5;
  width: min(1240px, calc(100vw - 48px));
  margin-top: -24px;
  border-color: rgba(188, 211, 200, 0.75);
  box-shadow: 0 24px 70px rgba(11, 55, 40, 0.13);
}

.signal-marquee {
  width: 100%;
  margin-top: 84px;
  overflow: hidden;
  border-block: 1px solid rgba(7, 63, 43, 0.13);
  background: #e3f4eb;
  transform: rotate(-1.35deg) scale(1.02);
}

.signal-track {
  display: flex;
  width: max-content;
  animation: signal-run 26s linear infinite;
}

.signal-track span {
  padding: 18px 26px;
  color: #0b563b;
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: clamp(0.8rem, 1.2vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.workflow-section {
  width: min(1320px, calc(100vw - 48px));
  padding-top: 150px;
}

.story-board {
  display: grid;
  grid-template-columns: minmax(500px, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.story-stage {
  position: sticky;
  top: 110px;
  min-height: 680px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(136, 207, 175, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 52% 44%, rgba(45, 172, 111, 0.3), transparent 17rem),
    radial-gradient(circle at 92% 2%, rgba(198, 146, 59, 0.18), transparent 15rem),
    linear-gradient(155deg, #061a13, #0a3224);
  box-shadow: 0 35px 95px rgba(7, 48, 32, 0.24);
  color: #fff;
}

.story-stage::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(176, 227, 204, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 227, 204, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.story-stage-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(225, 244, 235, 0.48);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.story-machine {
  --story-accent: #69dfa9;
  position: relative;
  display: grid;
  height: 390px;
  place-items: center;
  perspective: 1000px;
}

.machine-ring {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--story-accent) 30%, transparent);
  border-radius: 50%;
  transition:
    width 600ms ease,
    height 600ms ease,
    border-color 600ms ease,
    transform 600ms ease;
}

.machine-ring-outer {
  width: 330px;
  height: 330px;
  border-style: dashed;
  animation: orbit-spin 28s linear infinite;
}

.machine-ring-inner {
  width: 235px;
  height: 235px;
  animation: orbit-spin 15s linear infinite reverse;
}

.machine-axis {
  position: absolute;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--story-accent) 40%, transparent), transparent);
  opacity: 0.65;
}

.machine-axis-x {
  width: 86%;
  height: 1px;
}

.machine-axis-y {
  width: 1px;
  height: 86%;
}

.product-cube {
  position: relative;
  z-index: 3;
  display: grid;
  width: 164px;
  height: 164px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(9, 70, 47, 0.7);
  box-shadow:
    0 34px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px rgba(255, 255, 255, 0.2);
  transform: rotateX(58deg) rotateZ(-38deg);
  transform-style: preserve-3d;
  transition:
    transform 700ms cubic-bezier(0.2, 0.75, 0.15, 1),
    border-radius 500ms ease,
    background 500ms ease;
}

.product-cube::before,
.product-cube::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  content: "";
}

.product-cube::after {
  inset: -11px;
  border-color: color-mix(in srgb, var(--story-accent) 32%, transparent);
  box-shadow: 0 0 46px color-mix(in srgb, var(--story-accent) 13%, transparent);
}

.cube-label {
  display: grid;
  width: 118px;
  gap: 9px;
  padding: 15px;
  border-radius: 12px;
  background: rgba(245, 251, 248, 0.9);
  color: #0b3a29;
  transform: translateZ(20px);
}

.cube-label small {
  font-size: 0.42rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.cube-label strong {
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.cube-barcode {
  height: 28px;
  background: repeating-linear-gradient(
    90deg,
    #0a2d21 0 2px,
    transparent 2px 4px,
    #0a2d21 4px 7px,
    transparent 7px 10px
  );
}

.machine-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid #09281d;
  border-radius: 50%;
  background: var(--story-accent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--story-accent) 72%, transparent);
  transition: background 500ms ease;
}

.machine-node-one {
  top: 25%;
  left: 15%;
  animation: node-drift 4s ease-in-out infinite;
}

.machine-node-two {
  top: 38%;
  right: 12%;
  animation: node-drift 5s ease-in-out infinite -2s;
}

.machine-node-three {
  right: 28%;
  bottom: 12%;
  animation: node-drift 4.5s ease-in-out infinite -1s;
}

.story-passport {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 24px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(16px);
}

.passport-status {
  grid-column: 1 / -1;
  color: #dcad5b;
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.story-passport strong {
  font-size: 1.2rem;
}

.story-passport p {
  max-width: 470px;
  margin: 0;
  color: rgba(229, 243, 236, 0.63);
  font-size: 0.7rem;
  line-height: 1.55;
}

.passport-evidence {
  grid-row: 2 / span 2;
  grid-column: 2;
  display: grid;
  align-content: center;
  gap: 6px;
}

.passport-evidence span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(225, 244, 235, 0.55);
  font-size: 0.49rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.passport-evidence i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--story-accent);
  box-shadow: 0 0 9px color-mix(in srgb, var(--story-accent) 55%, transparent);
}

.story-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
}

.story-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-height: 170px;
  column-gap: 18px;
  row-gap: 6px;
  align-content: center;
  padding: 26px 58px 24px 26px;
  border-color: rgba(7, 63, 43, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(243, 249, 246, 0.92));
  box-shadow: 0 18px 50px rgba(10, 55, 39, 0.05);
  cursor: pointer;
  opacity: 0.7;
  transform: translateX(8px);
  transition:
    opacity 400ms ease,
    transform 400ms ease,
    border-color 400ms ease,
    box-shadow 400ms ease;
}

.story-step::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(#58d59b, #c6923b);
  content: "";
  opacity: 0;
  transform: scaleY(0.2);
  transition:
    opacity 350ms ease,
    transform 350ms ease;
}

.story-step.is-active {
  border-color: rgba(39, 145, 98, 0.3);
  box-shadow: 0 28px 70px rgba(10, 72, 48, 0.12);
  opacity: 1;
  transform: translateX(0);
}

.story-step.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.story-step .step-icon {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  transition:
    background 350ms ease,
    color 350ms ease,
    transform 350ms ease;
}

.story-step.is-active .step-icon {
  background: var(--forest);
  color: #fff;
  transform: rotate(-7deg) scale(1.08);
}

.story-step .step-number {
  top: 18px;
  right: 20px;
  font-size: 0.76rem;
}

[dir="rtl"] .story-step .step-number {
  right: auto;
  left: 20px;
}

.story-step h3 {
  margin: 1px 0 0;
  font-size: 1.04rem;
}

.story-step p {
  max-width: 440px;
  margin: 0;
  font-size: 0.77rem;
  line-height: 1.5;
}

.story-step:focus-visible {
  outline: 3px solid rgba(39, 145, 98, 0.28);
  outline-offset: 3px;
}

.story-stage[data-step="1"] .story-machine {
  --story-accent: #e1b25c;
}

.story-stage[data-step="1"] .product-cube {
  border-radius: 50%;
  transform: rotateX(35deg) rotateY(-22deg) rotateZ(24deg) scale(0.92);
}

.story-stage[data-step="2"] .story-machine {
  --story-accent: #84c6ff;
}

.story-stage[data-step="2"] .product-cube {
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.02);
}

.story-stage[data-step="2"] .machine-ring-outer {
  width: 360px;
  height: 260px;
  transform: rotateX(67deg);
}

.story-stage[data-step="3"] .story-machine {
  --story-accent: #9ce46c;
}

.story-stage[data-step="3"] .product-cube {
  border-radius: 18px;
  transform: rotateX(-16deg) rotateY(32deg) rotateZ(-7deg) scale(0.88);
}

.section-index {
  margin-bottom: 28px;
  color: rgba(16, 37, 31, 0.38);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.capabilities-section .section-heading,
.deployment-section .section-heading,
.faq-section .section-heading {
  max-width: 100%;
}

.capabilities-section .section-heading h2,
.deployment-section .section-heading h2,
.faq-section .section-heading h2 {
  font-family: "Segoe UI Variable Display", "Segoe UI", Inter, sans-serif;
  font-weight: 650;
  letter-spacing: -0.055em;
}

.workflow-section .section-heading,
.capabilities-section .section-heading,
.deployment-section .section-heading {
  max-width: 100%;
}

.workflow-section .section-heading h2,
.capabilities-section .section-heading h2,
.deployment-section .section-heading h2 {
  text-wrap: balance;
}

.pricing-section {
  width: min(1380px, calc(100vw - 32px));
  padding-block: 82px;
}

.pricing-shell {
  overflow: hidden;
  border: 1px solid rgba(130, 203, 170, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 84% 0, rgba(64, 172, 118, 0.24), transparent 25rem),
    linear-gradient(145deg, #061611, #0a2d21);
  box-shadow: 0 38px 100px rgba(6, 42, 28, 0.23);
  color: #f5faf7;
}

.pricing-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  padding: 58px 60px 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h2 {
  max-width: 900px;
  margin: 17px 0 0;
  font-family: "Segoe UI Variable Display", "Segoe UI", Inter, sans-serif;
  font-size: clamp(2.7rem, 4.8vw, 5.2rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.pricing-header p {
  max-width: 630px;
  margin: 20px 0 0;
  color: rgba(229, 243, 236, 0.65);
  line-height: 1.7;
}

.billing-toggle {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.065);
}

.billing-toggle button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(240, 248, 244, 0.58);
  font-size: 0.72rem;
  font-weight: 850;
  cursor: pointer;
}

.billing-toggle button.active {
  background: #f5faf7;
  color: #083b29;
}

.billing-toggle small {
  grid-column: 1 / -1;
  padding: 5px 8px 2px;
  color: #dcb46e;
  font-size: 0.57rem;
  font-weight: 850;
  text-align: center;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pricing-plan {
  display: flex;
  min-height: 600px;
  flex-direction: column;
  padding: 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.pricing-plan:last-child {
  border-right: 0;
}

.pricing-plan-commerce {
  background: #f4f4ed;
  color: #10251f;
}

.pricing-plan-network {
  background:
    linear-gradient(160deg, rgba(198, 146, 59, 0.17), transparent 60%),
    rgba(255, 255, 255, 0.035);
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(227, 243, 235, 0.46);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.pricing-plan-commerce .plan-topline {
  color: #6c7e76;
}

.plan-topline small {
  color: #dcad5b;
  font-size: inherit;
}

.pricing-plan h3 {
  margin: 43px 0 0;
  font-family: "Segoe UI Variable Display", "Segoe UI", Inter, sans-serif;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 650;
  letter-spacing: -0.055em;
}

.pricing-plan > p {
  min-height: 53px;
  margin: 12px 0 0;
  color: rgba(228, 242, 235, 0.58);
  font-size: 0.82rem;
  line-height: 1.6;
}

.pricing-plan-commerce > p {
  color: #66766f;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.pricing-plan-commerce .plan-price {
  border-bottom-color: #d6dfda;
}

.plan-price > strong {
  font-family: "Segoe UI Variable Display", "Segoe UI", Inter, sans-serif;
  font-size: clamp(3.8rem, 5.5vw, 6rem);
  font-weight: 590;
  letter-spacing: -0.08em;
  line-height: 0.77;
}

.plan-price > span {
  display: grid;
  gap: 3px;
}

.plan-price b {
  color: #dcb46e;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.plan-price small {
  color: rgba(228, 242, 235, 0.48);
  font-size: 0.62rem;
}

.pricing-plan-commerce .plan-price small {
  color: #71827a;
}

.plan-capacity {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.pricing-plan-commerce .plan-capacity {
  border-bottom-color: #d6dfda;
}

.plan-capacity strong {
  font-size: 0.75rem;
}

.pricing-plan ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 34px;
  padding: 0;
  color: rgba(228, 242, 235, 0.68);
  font-size: 0.73rem;
  line-height: 1.55;
  list-style: none;
}

.pricing-plan-commerce ul {
  color: #53675e;
}

.pricing-plan li {
  position: relative;
  padding-left: 18px;
}

.pricing-plan li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #66d59f;
  content: "";
}

.plan-action {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #f4faf7;
  font-size: 0.76rem;
  font-weight: 850;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.pricing-plan-commerce .plan-action {
  border-color: #0b5138;
  background: #0b5138;
  color: #fff;
}

.plan-action:hover {
  background: #f5faf7;
  color: #083b29;
  transform: translateY(-2px);
}

.pricing-plan-commerce .plan-action:hover {
  background: #073d2b;
  color: #fff;
}

.pricing-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-extras span {
  padding: 20px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(232, 244, 238, 0.65);
  font-size: 0.66rem;
  text-align: center;
}

.pricing-extras span:last-child {
  border-right: 0;
}

.pricing-note {
  max-width: 930px;
  margin: 0;
  padding: 22px 60px 28px;
  color: rgba(222, 239, 230, 0.44);
  font-size: 0.62rem;
  line-height: 1.6;
}

[dir="rtl"] .pricing-plan {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

[dir="rtl"] .pricing-plan:last-child {
  border-left: 0;
}

[dir="rtl"] .pricing-plan li {
  padding-right: 18px;
  padding-left: 0;
}

[dir="rtl"] .pricing-plan li::before {
  right: 0;
  left: auto;
}

[dir="rtl"] .pricing-extras span {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

[dir="rtl"] .pricing-extras span:last-child {
  border-left: 0;
}

.capability-card,
.device-card,
.partner-types article {
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.capability-card:hover,
.device-card:hover {
  border-color: rgba(31, 126, 84, 0.24);
  box-shadow: 0 24px 64px rgba(11, 70, 47, 0.11);
  transform: translateY(-7px);
}

.partner-types article:hover {
  border-color: rgba(122, 226, 177, 0.28);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(7px);
}

.truth-section {
  position: relative;
}

.kinetic-word {
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  z-index: -1;
  display: flex;
  gap: 0.25em;
  justify-content: center;
  overflow: hidden;
  color: rgba(7, 63, 43, 0.035);
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: clamp(8rem, 20vw, 19rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.8;
  white-space: nowrap;
}

[dir="rtl"] .scroll-meter span {
  transform-origin: right center;
}

[dir="rtl"] .story-step::before {
  right: 0;
  left: auto;
}

[dir="rtl"] .partner-types article:hover {
  transform: translateX(-7px);
}

@keyframes interface-scan {
  0%,
  12% {
    background-position: 0 -80%;
  }
  78%,
  100% {
    background-position: 0 125%;
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes beacon-pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.65);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes result-flash {
  0% {
    left: -20%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    left: 115%;
    opacity: 0;
  }
}

@keyframes card-float {
  0%,
  100% {
    transform: translateY(0) rotate(0.001deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.001deg);
  }
}

@keyframes scroll-drop {
  0% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(32px);
  }
}

@keyframes signal-run {
  to {
    transform: translateX(-25%);
  }
}

@keyframes node-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -14px, 0);
  }
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
  }

  .story-board {
    grid-template-columns: minmax(400px, 0.95fr) minmax(300px, 1.05fr);
    gap: 28px;
  }

  .story-stage {
    top: 96px;
    min-height: 620px;
  }

  .story-machine {
    height: 345px;
  }

  .machine-ring-outer {
    width: 290px;
    height: 290px;
  }

  .machine-ring-inner {
    width: 205px;
    height: 205px;
  }
}

@media (max-width: 820px) {
  .hero-coordinate {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }

  .story-board {
    grid-template-columns: 1fr;
  }

  .story-stage {
    top: 82px;
    z-index: 4;
    min-height: 500px;
  }

  .story-machine {
    height: 275px;
  }

  .machine-ring-outer {
    width: 245px;
    height: 245px;
  }

  .machine-ring-inner {
    width: 175px;
    height: 175px;
  }

  .product-cube {
    width: 128px;
    height: 128px;
  }

  .cube-label {
    width: 96px;
    padding: 11px;
  }

  .story-step {
    min-height: 154px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero {
    width: min(100% - 12px, 740px);
  }

  .hero {
    padding-inline: 19px;
    border-radius: 0 0 25px 25px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.7rem);
    line-height: 0.9;
  }

  .hero-product {
    transform: none;
  }

  .product-orbit-one {
    right: -130px;
  }

  .product-orbit-two,
  .product-beacon {
    display: none;
  }

  .product-window::after {
    left: 40px;
  }

  .proof-strip,
  .workflow-section {
    width: var(--page);
  }

  .signal-marquee {
    margin-top: 64px;
  }

  .story-stage {
    position: relative;
    top: auto;
    min-height: 480px;
    padding: 18px;
  }

  .story-stage-topline {
    font-size: 0.48rem;
  }

  .story-machine {
    height: 270px;
  }

  .story-passport {
    grid-template-columns: 1fr;
  }

  .passport-evidence {
    grid-row: auto;
    grid-column: auto;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    margin-top: 6px;
  }

  .story-step {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 148px;
    column-gap: 14px;
    padding: 22px 50px 22px 20px;
    opacity: 1;
    transform: none;
  }

  .story-step .step-icon {
    width: 40px;
    height: 40px;
  }

  .kinetic-word {
    top: 10px;
  }

  .pricing-section {
    width: min(100% - 12px, 740px);
  }

  .pricing-shell {
    border-radius: 25px;
  }

  .pricing-header {
    padding: 38px 22px 30px;
  }

  .pricing-header h2 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    width: 100%;
  }

  .pricing-plan {
    padding: 34px 24px;
  }

  .pricing-extras {
    grid-template-columns: 1fr;
  }

  .pricing-extras span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .pricing-extras span:last-child {
    border-bottom: 0;
  }

  [dir="rtl"] .pricing-extras span {
    border-left: 0;
  }

  .pricing-note {
    padding: 22px 24px 28px;
  }
}

@media (min-width: 1200px) {
  .workflow-section .section-heading h2,
  .capabilities-section .section-heading h2,
  .deployment-section .section-heading h2,
  .faq-section .section-heading h2 {
    max-width: none;
    white-space: nowrap;
  }

  .workflow-section .section-heading h2 {
    font-size: clamp(3.2rem, 4.4vw, 4.8rem);
  }

  .capabilities-section .section-heading h2,
  .deployment-section .section-heading h2 {
    font-size: clamp(3rem, 4.1vw, 4.5rem);
  }
}

@media (max-width: 900px) {
  .pricing-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .billing-toggle {
    justify-self: start;
  }

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

  .pricing-plan {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .pricing-plan:last-child {
    border-bottom: 0;
  }

  [dir="rtl"] .pricing-plan {
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-track,
  .product-window::after,
  .product-orbit,
  .product-beacon span,
  .floating-card,
  .hero-scroll-cue i::after,
  .machine-ring,
  .machine-node {
    animation: none !important;
  }

  .hero-product,
  .story-step {
    transform: none !important;
  }
}
