@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-Variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Variable.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}
:root {
  --ink: #1f2421;
  --teal: #216869;
  --leaf: #49a078;
  --sage: #9cc5a1;
  --mist: #dce1de;
  --bg: #dce1de;
  --bg-soft: #e7f0e5;
  --surface: #ffffff;
  --surface-solid: #ffffff;
  --surface-2: #f5f8f4;
  --border: #cfdacd;
  --text: #1f2421;
  --text-muted: #216869;
  --accent: #49a078;
  --accent-ink: #1f2421;
  --accent-text: #216869;
  --sand-tint: #e7f0e5;
  --header-bg: var(--surface);
  --header-text: var(--text);
  --header-muted: var(--text-muted);
  --header-border: var(--border);
  --header-control-bg: var(--surface-2);
  --header-h: 64px;
  --rail-w: 64px;
  --muted: var(--text-muted);
  --line: rgba(33, 104, 105, 0.2);
  --lime: var(--accent);
  --lime-2: var(--leaf);
  --shadow: 0 24px 64px rgba(31, 36, 33, 0.13);
  --radius: 22px;
  --shell: min(1520px, calc(100% - 64px));
  --font-fa: "Vazirmatn", "Tahoma", sans-serif;
  --font-latin: "Inter", "Segoe UI", Arial, sans-serif;
  --font-ui: var(--font-fa);
}
html[lang="en"] {
  --font-ui: var(--font-latin);
}
[data-theme="dark"] {
  --bg: #1f2421;
  --bg-soft: #333d31;
  --surface: #262d29;
  --surface-solid: #262d29;
  --surface-2: #2e3733;
  --border: #39443e;
  --text: #dce1de;
  --text-muted: #9cc5a1;
  --accent: #49a078;
  --accent-ink: #1f2421;
  --accent-text: #9cc5a1;
  --sand-tint: #333d31;
  --header-bg: #171b18;
  --header-text: #dce1de;
  --header-muted: #9cc5a1;
  --header-border: #39443e;
  --header-control-bg: rgba(255, 255, 255, 0.08);
  --muted: var(--text-muted);
  --line: var(--border);
  --shadow: 0 25px 70px rgba(31, 36, 33, 0.32);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface-2);
  max-width: 100%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
html::-webkit-scrollbar-track {
  background: var(--surface-2);
}
html::-webkit-scrollbar-thumb {
  background: var(--accent);
  border: 2px solid var(--surface-2);
  border-radius: 999px;
}
html::-webkit-scrollbar-thumb:hover {
  background: var(--teal);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  inset-inline-start: 20px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--accent-ink);
  border-radius: 10px;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--header-text);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
.nav-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand b {
  font-family: var(--font-latin);
  letter-spacing: 0.15em;
  font-size: 14px;
}
.site-header .brand b {
  color: var(--header-text);
}
.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.05em;
}
.site-header .brand small {
  color: var(--header-muted);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}
.main-nav a {
  font-size: 14px;
  color: var(--header-text);
  position: relative;
  padding: 20px 0;
}
.main-nav a:after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 10px;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transition: 0.25s;
}
.main-nav a:hover:after,
.main-nav a.active:after {
  transform: scaleX(1);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--header-control-bg);
}
.language-switch a {
  min-width: 30px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font: 700 10px var(--font-ui);
  color: var(--header-muted);
}
.language-switch a.selected {
  background: var(--lime);
  color: var(--accent-ink);
}
.button {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--lime);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(73, 160, 120, 0.2);
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--sage);
}
.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
}
.theme-button,
.menu-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--header-control-bg);
  color: var(--header-text);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.theme-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.menu-button {
  display: none;
}
.menu-button span {
  width: 18px;
  height: 1px;
  background: currentColor;
  display: block;
  margin: 2px;
}
.hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--mist);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(0.78) brightness(1.04);
  transition: filter 0.35s ease;
}
[data-theme="dark"] .hero-media {
  filter: saturate(0.82) brightness(0.86);
}
[dir="ltr"] .hero-media {
  transform: scaleX(-1);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(220, 225, 222, 0.97) 0%,
    rgba(220, 225, 222, 0.89) 40%,
    rgba(220, 225, 222, 0.22) 72%,
    rgba(31, 36, 33, 0.18) 100%
  );
  pointer-events: none;
  transition: background 0.35s ease;
}
[data-theme="dark"] .hero:after {
  background: linear-gradient(
    90deg,
    rgba(31, 36, 33, 0.96) 0%,
    rgba(31, 36, 33, 0.76) 40%,
    rgba(31, 36, 33, 0.25) 72%,
    rgba(31, 36, 33, 0.44) 100%
  );
}
[dir="rtl"] .hero:after {
  transform: scaleX(-1);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(
    to bottom,
    transparent 10%,
    #000 45%,
    transparent 95%
  );
  z-index: 1;
  opacity: 0.08;
}
.hero-orb {
  display: none;
}
.hero-orb-one {
  width: 520px;
  height: 520px;
  inset-inline-end: 10%;
  top: 120px;
  background: radial-gradient(
    circle,
    rgba(73, 160, 120, 0.14),
    transparent 66%
  );
}
.hero-orb-two {
  width: 360px;
  height: 360px;
  inset-inline-end: 28%;
  top: 230px;
  border: 1px solid rgba(73, 160, 120, 0.1);
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  padding-top: 130px;
}
.hero-copy {
  width: 46%;
  position: relative;
  z-index: 4;
}
.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--lime);
  font: 700 11px var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(156, 197, 161, 0.42);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.72);
}
[data-theme="dark"] .hero {
  color: var(--mist);
  background: var(--ink);
}
[data-theme="dark"] .eyebrow {
  background: rgba(31, 36, 33, 0.58);
}
.eyebrow-mark {
  font-size: 18px;
}
.hero h1 {
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  max-width: 740px;
}
.hero h1 em,
.product h2 em {
  font-style: normal;
  color: var(--lime);
}
.lead {
  color: var(--teal);
  max-width: 570px;
  font-size: 17px;
  margin: 0 0 30px;
}
[data-theme="dark"] .lead {
  color: var(--mist);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 650;
  font-size: 14px;
}
.play {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(33, 104, 105, 0.42);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  padding-inline-start: 2px;
}
[data-theme="dark"] .play {
  border-color: rgba(220, 225, 222, 0.45);
}
.process-scene {
  position: absolute;
  inset-inline-end: 0;
  top: 128px;
  width: 53%;
  height: 480px;
}
.scene-ring {
  position: absolute;
  border: 1px solid rgba(73, 160, 120, 0.16);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ring-one {
  width: 410px;
  height: 410px;
}
.ring-two {
  width: 300px;
  height: 300px;
  border-style: dashed;
  animation: spin 34s linear infinite;
}
.scene-core {
  position: absolute;
  width: 150px;
  height: 150px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 38px;
  background: rgba(10, 34, 26, 0.82);
  border: 1px solid rgba(73, 160, 120, 0.28);
  box-shadow: 0 0 70px rgba(73, 160, 120, 0.12);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  backdrop-filter: blur(14px);
}
.scene-core img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}
.scene-core span {
  font: 700 9px var(--font-ui);
  letter-spacing: 0.18em;
}
.process-node {
  position: absolute;
  width: 112px;
  height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(10, 31, 24, 0.78);
  backdrop-filter: blur(12px);
  border-radius: 17px;
  box-shadow: var(--shadow);
  font-family: var(--font-ui);
}
.process-node span {
  display: block;
  color: var(--lime);
  font-size: 10px;
}
.process-node b {
  font-size: 12px;
}
.process-node i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(73, 160, 120, 0.1);
  bottom: 14px;
  inset-inline-end: 15px;
}
.node-a {
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.node-b {
  right: 10px;
  top: 190px;
}
.node-c {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.node-d {
  left: 8px;
  top: 190px;
}
.flow-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  height: 1px;
  opacity: 0.45;
  transform-origin: left center;
}
.line-one {
  width: 150px;
  left: 48%;
  top: 137px;
  transform: rotate(48deg);
}
.line-two {
  width: 160px;
  left: 22%;
  top: 244px;
}
.line-three {
  width: 160px;
  left: 49%;
  top: 347px;
  transform: rotate(-46deg);
}
.signal-card {
  position: absolute;
  inset-inline-end: -10px;
  bottom: 142px;
  width: 245px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.signal-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  margin-bottom: 12px;
}
.signal-head a {
  color: var(--lime);
  font-size: 9px;
}
.signal-intro {
  margin: 0;
  color: var(--teal);
  font-size: 11px;
  line-height: 1.7;
}
.signal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.signal-tags span {
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--lime);
  font-size: 9px;
}
.stats-card {
  position: absolute;
  bottom: 102px;
  inset-inline-start: 0;
  width: 820px;
  min-height: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.stat {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-inline: 12px;
  border-inline-end: 1px solid var(--line);
}
.stat:last-child {
  border: 0;
}
.stat svg,
.solution-card svg {
  width: 27px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat span {
  display: flex;
  flex-direction: column;
  color: var(--teal);
  font-size: 10px;
}
.stat strong {
  font: 650 20px var(--font-ui);
  color: var(--ink);
}
[data-theme="dark"] .signal-card,
[data-theme="dark"] .stats-card {
  background: rgba(38, 45, 41, 0.92);
}
[data-theme="dark"] .signal-intro,
[data-theme="dark"] .stat span {
  color: var(--sage);
}
[data-theme="dark"] .stat strong {
  color: var(--mist);
}
.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 36px;
  border: 1px solid rgba(33, 104, 105, 0.48);
  border-radius: 999px;
}
[data-theme="dark"] .scroll-hint {
  border-color: rgba(220, 225, 222, 0.5);
}
.scroll-hint span {
  position: absolute;
  width: 3px;
  height: 7px;
  background: var(--lime);
  border-radius: 9px;
  top: 7px;
  left: 9px;
  animation: scroll 1.7s infinite;
}
.section {
  padding: 88px 0;
}
.solutions {
  background: var(--bg-soft);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 38px;
}
.section h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin: 0;
}
.section-heading > p,
.product-copy > p {
  margin: 0;
  color: var(--muted);
  max-width: 540px;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.solution-card {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  position: relative;
  transition: 0.25s;
}
.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(73, 160, 120, 0.65);
}
.card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.card-top small {
  font: 600 10px var(--font-ui);
  color: var(--muted);
}
.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    145deg,
    rgba(73, 160, 120, 0.18),
    rgba(33, 104, 105, 0.08)
  );
}
.solution-card h3 {
  font-size: 20px;
  margin: 30px 0 8px;
}
.solution-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.solution-card > a {
  position: absolute;
  bottom: 20px;
  inset-inline-start: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.solution-card:hover > a {
  background: var(--lime);
  color: var(--accent-ink);
}
.product {
  background: var(--bg);
}
.product-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.45fr;
  gap: 70px;
  align-items: center;
}
.product-copy h2 {
  font-size: clamp(34px, 4.1vw, 55px);
}
.product-copy > p {
  margin: 22px 0;
}
.product-copy ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.product-copy li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  margin: 9px 0;
  font-size: 14px;
}
.product-copy li span {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--accent-ink);
  font: 800 11px var(--font-ui);
}
.dashboard {
  min-height: 470px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface-solid);
  display: grid;
  grid-template-columns: 62px 1fr;
  padding: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.dash-sidebar {
  border-radius: 18px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0;
  gap: 21px;
}
.dash-sidebar img {
  width: 35px;
  height: 35px;
  margin-bottom: 13px;
}
.dash-sidebar i {
  width: 20px;
  height: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.dash-sidebar i:first-of-type {
  background: rgba(73, 160, 120, 0.2);
  border-color: var(--lime);
}
.dash-main {
  padding: 18px;
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.dash-header small {
  color: var(--muted);
  font-size: 10px;
}
.dash-header small span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  margin-inline-end: 6px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.metric-grid > div {
  height: 116px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.metric-grid small {
  color: var(--muted);
  font-size: 10px;
  display: block;
}
.metric-grid strong {
  font: 650 26px var(--font-ui);
}
.metric-grid sup {
  font-size: 9px;
  color: var(--muted);
}
.mini-chart {
  position: absolute;
  bottom: 12px;
  inset-inline: 12px;
  height: 23px;
  background: linear-gradient(
    140deg,
    transparent 0 24%,
    rgba(73, 160, 120, 0.16) 25% 46%,
    transparent 47% 54%,
    rgba(73, 160, 120, 0.2) 55% 74%,
    transparent 75%
  );
  border-bottom: 1px solid var(--lime);
}
.mini-line {
  display: block;
  position: absolute;
  bottom: 17px;
  inset-inline: 14px;
  height: 20px;
  border-bottom: 1px solid rgba(73, 160, 120, 0.25);
  transform: skewY(-7deg);
}
.mini-line i {
  display: block;
  border-top: 2px solid var(--lime);
  width: 100%;
  transform: translateY(8px);
}
.health {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gauge {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(73, 160, 120, 0.1);
  border: 1px solid rgba(73, 160, 120, 0.4);
  position: relative;
}
.gauge:after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--surface-solid);
}
.gauge b {
  z-index: 1;
  font: 700 16px var(--font-ui);
}
.button-disabled {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
}
.button-disabled:hover {
  transform: none;
  background: var(--lime);
}
:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}
.dash-bottom {
  display: grid;
  grid-template-columns: 1.65fr 0.8fr;
  gap: 10px;
  margin-top: 10px;
}
.flow-map,
.activity {
  height: 245px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
}
.flow-map svg {
  position: absolute;
  inset: 15% 8%;
  width: 84%;
  height: 70%;
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(73, 160, 120, 0.5));
}
.map-node {
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--lime);
  color: var(--accent-ink);
  border: 5px solid var(--sage);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 800 8px var(--font-ui);
  z-index: 2;
}
.m1 {
  left: 8%;
  top: 62%;
}
.m2 {
  left: 37%;
  top: 40%;
}
.m3 {
  left: 61%;
  top: 22%;
}
.m4 {
  right: 6%;
  top: 53%;
}
.activity {
  padding: 16px;
}
.activity > b {
  font-size: 12px;
}
.activity p {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 17px 0;
}
.activity p > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: 6px;
}
.activity .ok {
  background: var(--lime);
}
.activity .warn {
  background: var(--sage);
}
.activity p span {
  font-size: 10px;
}
.activity p small {
  display: block;
  color: var(--muted);
  font-size: 8px;
}
.cta {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 25px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 34px;
  background: linear-gradient(
    110deg,
    var(--sand-tint),
    var(--surface),
    rgba(73, 160, 120, 0.16)
  );
  overflow: hidden;
}
.cta-mark {
  height: 130px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle,
    rgba(73, 160, 120, 0.22),
    transparent 66%
  );
}
.cta-mark img {
  height: 120px;
}
.cta h2 {
  font-size: 31px;
}
.cta p {
  color: var(--muted);
  margin: 8px 0 0;
  max-width: 520px;
  font-size: 14px;
}
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 38px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-inner p {
  color: var(--muted);
  font-size: 11px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ring-two,
  .scroll-hint span {
    animation: none;
  }
}
@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
  }
  .main-nav a {
    font-size: 12px;
  }
  .button-small {
    display: none;
  }
  .hero-copy {
    width: 57%;
  }
  .process-scene {
    width: 49%;
    transform: scale(0.86);
    transform-origin: center;
  }
  .stats-card {
    width: 680px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-copy {
    max-width: 650px;
  }
  .dashboard {
    width: 100%;
  }
}
@media (max-width: 820px) {
  .shell {
    width: calc(100% - 28px);
    max-width: 1180px;
  }
  .nav-wrap {
    position: relative;
    width: 100%;
    margin: 0;
    padding-inline: 14px;
    height: var(--header-h);
    gap: 10px;
  }
  .nav-wrap > .brand {
    position: absolute;
    inset-inline-start: 14px;
    margin: 0;
  }
  .nav-wrap > .brand img {
    width: 34px;
    height: 34px;
  }
  .nav-wrap > .brand b {
    font-size: 12px;
  }
  .menu-button {
    position: absolute;
    inset-inline-end: 118px;
    display: grid;
    margin-inline-start: 0;
  }
  .nav-actions {
    position: absolute;
    inset-inline-end: 14px;
  }
  .main-nav {
    position: absolute;
    top: var(--header-h);
    inset-inline: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px;
    background: var(--header-bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 11px;
  }
  .main-nav a:after {
    bottom: 5px;
  }
  .language-switch {
    order: -1;
  }
  .hero {
    min-height: 790px;
  }
  .hero:after {
    background: rgba(220, 225, 222, 0.82);
  }
  [data-theme="dark"] .hero:after {
    background: rgba(31, 36, 33, 0.78);
  }
  .hero-media {
    object-position: 42% center;
  }
  .hero-inner {
    width: 100%;
    margin: 0;
    padding-inline: 14px;
    padding-top: 112px;
    min-height: 790px;
  }
  .hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .hero h1,
  .hero h1 em {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero h1 em {
    display: block;
  }
  .hero-copy .lead {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .process-scene {
    top: 420px;
    width: 100%;
    inset-inline: 0;
    transform: scale(0.75);
    contain: layout paint;
  }
  .signal-card {
    display: none;
  }
  .stats-card {
    width: 100%;
    bottom: 50px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .stat:nth-child(2) {
    border: 0;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta {
    grid-template-columns: 120px 1fr;
  }
  .cta > a {
    grid-column: 2;
  }
  .cta-mark {
    height: 115px;
  }
  .cta-mark img {
    height: 100px;
  }
}
@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }
  .brand small {
    display: none;
  }
  .nav-actions .theme-button {
    display: none;
  }
  .language-switch a {
    min-width: 26px;
  }
  .hero {
    min-height: 790px;
  }
  .hero-inner {
    padding-top: 105px;
  }
  .hero h1 {
    font-size: clamp(32px, 9vw, 39px);
    line-height: 1.16;
  }
  .hero-actions {
    flex-direction: column;
    gap: 13px;
  }
  .process-scene {
    top: 470px;
    transform: scale(0.62);
  }
  .stats-card {
    bottom: 50px;
    grid-template-columns: 1fr 1fr;
    padding: 14px 10px;
  }
  .stat {
    padding: 9px;
    border: 0;
  }
  .stat svg {
    width: 23px;
  }
  .stat strong {
    font-size: 16px;
  }
  .stat span {
    font-size: 8px;
  }
  .section {
    padding: 64px 0;
  }
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .solution-card {
    min-height: 245px;
  }
  .dashboard {
    min-height: 530px;
    grid-template-columns: 46px 1fr;
  }
  .dash-main {
    padding: 10px;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .metric-grid .health {
    grid-column: 1/-1;
  }
  .dash-bottom {
    grid-template-columns: 1fr;
  }
  .flow-map {
    height: 180px;
  }
  .activity {
    height: auto;
  }
  .cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }
  .cta-mark {
    width: 130px;
    margin: auto;
  }
  .cta > a {
    grid-column: 1;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-inner .brand {
    justify-content: center;
  }
  .footer-inner .brand span {
    align-items: flex-start;
  }
}
