@font-face {
  font-family: "Vazirmatn Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("./fonts/vazirmatn-arabic-wght-normal.woff2") format("woff2-variations");
}

@font-face {
  font-family: "Vazirmatn Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("./fonts/vazirmatn-latin-wght-normal.woff2") format("woff2-variations");
}

:root {
  --ink: #eef5f5;
  --muted: #9bacb4;
  --muted-strong: #c6d1d5;
  --bg: #061014;
  --bg-deep: #03090c;
  --panel: rgba(14, 29, 35, 0.7);
  --panel-solid: #0b1b21;
  --line: rgba(167, 204, 211, 0.14);
  --line-bright: rgba(102, 232, 213, 0.34);
  --cyan: #4de9d5;
  --cyan-bright: #8ff9eb;
  --violet: #a88cf8;
  --lime: #c9f173;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--ink);
  font-family: "Vazirmatn Variable", "Segoe UI", Tahoma, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(77, 233, 213, 0.24);
  color: #fff;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 2%, rgba(52, 157, 151, 0.08), transparent 34rem),
    linear-gradient(180deg, #071217 0%, #040b0e 46%, #061014 100%);
  direction: rtl;
}

.page-grid {
  position: absolute;
  inset: 0 0 auto;
  height: 70rem;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(116, 172, 180, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 172, 180, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
  pointer-events: none;
}

.aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
}

.aurora-one {
  width: 30rem;
  height: 30rem;
  top: 7rem;
  right: -18rem;
  background: rgba(65, 230, 209, 0.14);
}

.aurora-two {
  width: 25rem;
  height: 25rem;
  top: 26rem;
  left: -15rem;
  background: rgba(157, 126, 243, 0.13);
}

.section-container,
.site-header {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.announcement {
  position: relative;
  z-index: 5;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 20px;
  color: #b9cbce;
  background: rgba(9, 24, 29, 0.92);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.announcement-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 6px;
  color: var(--cyan-bright);
  font-weight: 600;
}

.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;
  width: 41px;
  height: 41px;
  display: inline-block;
  border-radius: 13px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(77, 233, 213, 0.2), rgba(77, 233, 213, 0.02)),
    #0b2528;
  border: 1px solid rgba(104, 240, 221, 0.34);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 0 24px rgba(73, 232, 213, 0.1);
}

.brand-mark span {
  position: absolute;
  display: block;
  height: 3px;
  width: 22px;
  top: 16px;
  border-radius: 5px;
  background: linear-gradient(90deg, #fff, var(--cyan));
  box-shadow: 0 0 9px rgba(77, 233, 213, 0.5);
}

.brand-mark span:first-child {
  right: 5px;
  transform: rotate(49deg);
}

.brand-mark span:last-child {
  left: 5px;
  transform: rotate(-49deg);
}

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

.brand-copy strong {
  font-size: 17px;
  letter-spacing: -0.3px;
}

.brand-copy small {
  margin-top: 5px;
  color: #7f979d;
  font-size: 8px;
  letter-spacing: 0.5px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #aebdc1;
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  padding-block: 32px;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -1px;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

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

.text-link {
  color: #aabbbf;
  font-size: 12px;
  direction: ltr;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 650;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #04201d;
  background: linear-gradient(135deg, var(--cyan-bright), #47ddca);
  box-shadow: 0 12px 28px rgba(77, 233, 213, 0.16), inset 0 1px rgba(255, 255, 255, 0.6);
}

.button-primary:hover {
  box-shadow: 0 16px 36px rgba(77, 233, 213, 0.25);
}

.button-small {
  min-height: 39px;
  padding-inline: 17px;
  border-radius: 11px;
  font-size: 11px;
}

.button-secondary {
  color: #dce7e9;
  background: rgba(15, 32, 38, 0.58);
  border-color: var(--line);
}

.button-secondary:hover {
  background: rgba(20, 43, 50, 0.82);
  border-color: rgba(141, 209, 211, 0.28);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: 52px;
  left: 0;
  width: min(280px, calc(100vw - 48px));
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 19, 24, 0.98);
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 12px 14px;
  border-radius: 9px;
  color: #c9d5d8;
  font-size: 13px;
}

.mobile-menu nav a:hover {
  background: rgba(77, 233, 213, 0.07);
  color: var(--cyan-bright);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 26px;
  padding-block: 84px 65px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1px;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(77, 233, 213, 0.2);
  border-radius: 999px;
  background: rgba(58, 187, 172, 0.06);
}

.hero h1 {
  margin: 23px 0 22px;
  color: #f1f8f7;
  font-size: clamp(48px, 5.6vw, 80px);
  line-height: 1.15;
  letter-spacing: -3.8px;
  font-weight: 760;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--cyan-bright) 0%, #78d9e5 48%, #b59cf9 96%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 505px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 31px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 33px;
}

.avatar-stack {
  display: flex;
  direction: ltr;
  padding-left: 7px;
}

.avatar-stack span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 2px solid #081319;
  border-radius: 50%;
  color: #061115;
  background: #93f1e7;
  font-size: 10px;
  font-weight: 750;
}

.avatar-stack span:nth-child(2) {
  background: #b7a6f6;
}

.avatar-stack span:nth-child(3) {
  background: #d7ed9c;
}

.avatar-stack span:nth-child(4) {
  color: #e0ebed;
  background: #1b3037;
}

.hero-trust p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #cdd9db;
  font-size: 11px;
  line-height: 1.5;
}

.hero-trust p strong {
  color: #fff;
}

.hero-trust small {
  color: #70888f;
  font-size: 9px;
}

.dashboard-stage {
  position: relative;
  min-height: 575px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.dashboard-stage::before {
  content: "";
  position: absolute;
  width: 76%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 210, 198, 0.17), rgba(128, 95, 218, 0.05) 48%, transparent 72%);
  filter: blur(35px);
}

.stage-orbit {
  position: absolute;
  border: 1px solid rgba(100, 203, 198, 0.1);
  border-radius: 50%;
  transform: rotate(-14deg);
  pointer-events: none;
}

.orbit-one {
  width: 640px;
  height: 360px;
}

.orbit-two {
  width: 520px;
  height: 520px;
  transform: rotate(26deg);
}

.dashboard-window {
  position: relative;
  z-index: 2;
  width: 97%;
  max-width: 690px;
  overflow: hidden;
  border: 1px solid rgba(151, 207, 211, 0.2);
  border-radius: 19px;
  background: linear-gradient(150deg, rgba(14, 34, 41, 0.94), rgba(7, 20, 26, 0.96));
  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 0 70px rgba(77, 233, 213, 0.06);
  transform: rotateY(2deg) rotateX(1deg);
  animation: window-float 7s ease-in-out infinite;
}

.window-topbar {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid rgba(157, 196, 202, 0.09);
  background: rgba(255, 255, 255, 0.018);
}

.window-brand,
.window-tools {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #b7c7ca;
  font-size: 9px;
}

.mini-logo {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: linear-gradient(145deg, #6bf1df, #286d6a);
  box-shadow: 0 0 13px rgba(77, 233, 213, 0.2);
}

.window-tools > span:not(.window-avatar) {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(176, 206, 209, 0.05);
}

.window-avatar {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #08201f;
  background: #75e5d9;
  font-weight: 750;
}

.window-body {
  min-height: 397px;
  display: flex;
}

.dashboard-sidebar {
  width: 48px;
  flex: 0 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding: 23px 0 17px;
  border-left: 1px solid rgba(157, 196, 202, 0.08);
}

.dashboard-sidebar span {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(169, 203, 208, 0.14);
  border-radius: 5px;
}

.dashboard-sidebar .sidebar-active {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(77, 233, 213, 0.34);
}

.dashboard-sidebar .sidebar-bottom {
  margin-top: auto;
  border-radius: 50%;
}

.dashboard-content {
  flex: 1;
  padding: 20px 20px 19px;
  min-width: 0;
}

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

.dashboard-heading > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dashboard-heading small {
  color: #688188;
  font-size: 7px;
}

.dashboard-heading strong {
  color: #e6eff0;
  font-size: 11px;
}

.dashboard-heading > span {
  padding: 7px 10px;
  color: #93a7ac;
  border: 1px solid rgba(158, 195, 201, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 7px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 16px;
}

.metric-row article {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 29px 1fr;
  grid-template-rows: auto auto;
  column-gap: 8px;
  padding: 12px;
  border: 1px solid rgba(151, 196, 203, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.023);
}

.metric-icon {
  grid-row: 1 / 3;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.metric-icon--cyan {
  color: var(--cyan);
  background: rgba(77, 233, 213, 0.09);
}

.metric-icon--violet {
  color: var(--violet);
  background: rgba(168, 140, 248, 0.09);
}

.metric-icon--lime {
  color: var(--lime);
  background: rgba(201, 241, 115, 0.09);
}

.metric-row article small {
  color: #71888f;
  font-size: 7px;
  white-space: nowrap;
}

.metric-row article strong {
  overflow: hidden;
  color: #dce7e9;
  font-size: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.metric-row article > span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 6px;
}

.metric-up {
  color: var(--cyan);
}

.metric-muted {
  color: #627a80;
}

.dashboard-lower {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 9px;
  margin-top: 9px;
}

.chart-card,
.activity-card {
  min-height: 215px;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(151, 196, 203, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.02);
}

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

.card-heading > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-heading strong {
  color: #cfdcde;
  font-size: 8px;
}

.card-heading small {
  color: #60787f;
  font-size: 6px;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #667f85;
  font-size: 6px;
}

.chart-legend i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(77, 233, 213, 0.5);
}

.chart-wrap {
  position: relative;
  height: 153px;
  margin-top: 9px;
}

.chart-grid-lines {
  position: absolute;
  inset: 0 0 18px;
  background-image: linear-gradient(rgba(164, 203, 208, 0.07) 1px, transparent 1px);
  background-size: 100% 33.33%;
}

.chart-wrap svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 126px;
  overflow: visible;
}

.chart-area {
  fill: url(#areaFill);
}

.chart-line {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(77, 233, 213, 0.5));
}

.chart-point {
  fill: #061217;
  stroke: var(--cyan);
  stroke-width: 3;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #536a70;
  font-size: 5px;
}

.progress-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 29px;
}

.progress-list > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.progress-list span {
  display: flex;
  justify-content: space-between;
  color: #70868c;
  font-size: 7px;
}

.progress-list b {
  color: #b9c8cb;
  font-size: 7px;
}

.progress-list i {
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(164, 200, 205, 0.07);
}

.progress-list em {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #418881, var(--cyan));
  box-shadow: 0 0 7px rgba(77, 233, 213, 0.3);
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 125px;
  padding: 9px 11px;
  border: 1px solid rgba(143, 206, 208, 0.18);
  border-radius: 12px;
  background: rgba(8, 24, 29, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.floating-chip-one {
  top: 80px;
  left: -8px;
  animation: chip-float 6s ease-in-out infinite;
}

.floating-chip-two {
  right: -6px;
  bottom: 105px;
  animation: chip-float 6s ease-in-out -2.4s infinite;
}

.chip-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border-radius: 9px;
  background: rgba(77, 233, 213, 0.1);
}

.chip-icon--violet {
  color: var(--violet);
  background: rgba(168, 140, 248, 0.1);
}

.floating-chip > span:last-child {
  display: flex;
  flex-direction: column;
  color: #71898f;
  font-size: 7px;
}

.floating-chip strong {
  margin-top: 2px;
  color: #e1e9eb;
  font-size: 10px;
}

.dashboard-caption {
  position: absolute;
  z-index: 3;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #627a80;
  font-size: 8px;
}

.dashboard-caption span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 7px var(--cyan);
}

.industry-strip {
  padding: 27px 0 33px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-strip > p {
  margin: 0 0 23px;
  color: #657c82;
  font-size: 10px;
  text-align: center;
}

.industry-strip > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.industry-strip span {
  color: #91a3a7;
  font-size: 11px;
  font-weight: 620;
  white-space: nowrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 80px;
}

.stats article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}

.stats article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 1px;
  height: 80%;
  background: var(--line);
}

.stats strong {
  color: #f0f7f6;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -1.5px;
}

.stats article:nth-child(2) strong,
.stats article:nth-child(4) strong {
  color: var(--cyan-bright);
}

.stats span {
  color: #70868c;
  font-size: 10px;
}

.products,
.solutions,
.capabilities {
  padding-block: 100px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

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

.section-heading h2,
.platform-copy h2,
.final-cta h2 {
  margin: 13px 0 0;
  color: #edf5f5;
  font-size: clamp(32px, 4.1vw, 54px);
  line-height: 1.35;
  letter-spacing: -2px;
  font-weight: 730;
}

.section-heading > p {
  max-width: 380px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

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

.product-card {
  --product-accent: var(--cyan);
  --product-soft: rgba(77, 233, 213, 0.09);
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background:
    radial-gradient(circle at 90% 4%, var(--product-soft), transparent 35%),
    linear-gradient(160deg, rgba(17, 36, 43, 0.84), rgba(7, 19, 24, 0.72));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 22%;
  left: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--product-accent), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--product-accent) 30%, transparent);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.23);
}

.product-card:hover::after {
  opacity: 1;
}

.product-card--violet {
  --product-accent: var(--violet);
  --product-soft: rgba(168, 140, 248, 0.1);
}

.product-card--lime {
  --product-accent: var(--lime);
  --product-soft: rgba(201, 241, 115, 0.08);
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-top > span {
  color: #4f686e;
  font-size: 10px;
  font-weight: 650;
}

.product-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--product-accent);
  border: 1px solid color-mix(in srgb, var(--product-accent) 20%, transparent);
  border-radius: 15px;
  background: var(--product-soft);
}

.product-title {
  margin-top: 47px;
}

.product-title > span {
  color: var(--product-accent);
  font-size: 11px;
  font-weight: 650;
}

.product-title h3 {
  margin: 6px 0 0;
  color: #eaf2f3;
  font-size: 22px;
  font-weight: 670;
}

.product-card > p {
  min-height: 83px;
  margin: 20px 0 0;
  color: #8ea2a7;
  font-size: 12px;
  line-height: 1.95;
}

.product-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 21px 0 24px;
  padding: 19px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #adbec2;
  font-size: 10px;
}

.product-card li svg {
  color: var(--product-accent);
}

.product-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: #dce7e9;
  font-size: 11px;
  font-weight: 650;
}

.product-card > a svg {
  color: var(--product-accent);
  transition: transform 180ms ease;
}

.product-card > a:hover svg {
  transform: translateX(-5px);
}

.platform {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 90px;
  padding-block: 120px;
}

.platform-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.platform-visual::before,
.platform-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(108, 217, 207, 0.09);
  border-radius: 50%;
}

.platform-visual::before {
  width: 490px;
  height: 490px;
}

.platform-visual::after {
  width: 360px;
  height: 360px;
}

.platform-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(47, 190, 179, 0.13);
  filter: blur(75px);
}

.insight-panel {
  position: relative;
  z-index: 2;
  width: min(390px, 90%);
  padding: 27px;
  border: 1px solid rgba(124, 211, 207, 0.18);
  border-radius: 23px;
  background:
    linear-gradient(145deg, rgba(17, 42, 49, 0.9), rgba(8, 24, 29, 0.92));
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.36), inset 0 1px rgba(255, 255, 255, 0.04);
  transform: rotate(-2deg);
}

.insight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.insight-header > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan-bright);
  font-size: 9px;
}

.insight-header small {
  color: #668086;
  font-size: 7px;
}

.insight-panel h3 {
  margin: 33px 0 10px;
  color: #e8f0f1;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 650;
}

.insight-panel > p {
  max-width: 290px;
  margin: 0;
  color: #788e93;
  font-size: 10px;
  line-height: 1.8;
}

.insight-score {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 33px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.insight-score > div:first-child {
  display: flex;
  flex-direction: column;
}

.insight-score strong {
  color: var(--cyan-bright);
  font-size: 37px;
  line-height: 1;
  letter-spacing: -2px;
}

.insight-score span {
  margin-top: 7px;
  color: #6d8388;
  font-size: 8px;
}

.radial-score {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0c2429 57%, transparent 59%),
    conic-gradient(var(--cyan) 0 86%, rgba(111, 158, 164, 0.13) 86%);
  box-shadow: 0 0 24px rgba(77, 233, 213, 0.1);
}

.radial-score span {
  margin: 0;
  color: var(--cyan);
  font-size: 18px;
}

.signal-card {
  position: absolute;
  z-index: 3;
  min-width: 165px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(148, 202, 204, 0.15);
  border-radius: 14px;
  background: rgba(8, 23, 28, 0.93);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.signal-card-one {
  top: 86px;
  left: 8px;
}

.signal-card-two {
  right: 8px;
  bottom: 76px;
}

.signal-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border-radius: 9px;
  background: rgba(77, 233, 213, 0.09);
}

.signal-icon--violet {
  color: var(--violet);
  background: rgba(168, 140, 248, 0.1);
}

.signal-card > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.signal-card small {
  color: #647b81;
  font-size: 7px;
}

.signal-card strong {
  color: #cfdbdd;
  font-size: 9px;
}

.platform-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2.05;
}

.platform-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 29px;
}

.platform-points > div {
  display: flex;
  gap: 12px;
}

.platform-points > div > span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  color: var(--cyan);
  border: 1px solid rgba(77, 233, 213, 0.17);
  border-radius: 9px;
  background: rgba(77, 233, 213, 0.06);
}

.platform-points p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  color: #738a90;
  font-size: 10px;
  line-height: 1.7;
}

.platform-points strong {
  color: #d8e3e5;
  font-size: 12px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--cyan-bright);
  font-size: 11px;
  font-weight: 650;
}

.inline-link svg {
  transition: transform 180ms ease;
}

.inline-link:hover svg {
  transform: translateX(-5px);
}

.section-heading--center {
  display: block;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center > p {
  max-width: 570px;
  margin: 18px auto 0;
}

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

.solution-card {
  position: relative;
  min-height: 245px;
  grid-column: span 2;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(16, 34, 40, 0.66), rgba(8, 20, 24, 0.66));
  transition: border-color 200ms ease, transform 200ms ease;
}

.solution-card:nth-child(4),
.solution-card:nth-child(5) {
  grid-column: span 3;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 233, 213, 0.25);
}

.solution-card--featured {
  background:
    radial-gradient(circle at 86% 10%, rgba(77, 233, 213, 0.11), transparent 38%),
    linear-gradient(145deg, rgba(15, 39, 44, 0.8), rgba(8, 20, 24, 0.74));
}

.solution-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(77, 233, 213, 0.16);
  border-radius: 13px;
  background: rgba(77, 233, 213, 0.06);
}

.solution-tag {
  position: absolute;
  top: 25px;
  left: 22px;
  color: #5c757b;
  font-size: 8px;
}

.solution-card h3 {
  margin: 28px 0 8px;
  color: #dfe9eb;
  font-size: 18px;
}

.solution-card p {
  max-width: 310px;
  margin: 0;
  color: #799096;
  font-size: 10px;
  line-height: 1.9;
}

.solution-card a {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #779096;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: color 180ms ease, background 180ms ease;
}

.solution-card a:hover {
  color: #04201d;
  background: var(--cyan);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.capability-grid article {
  min-height: 220px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transition: background 180ms ease;
}

.capability-grid article:hover {
  background: rgba(77, 233, 213, 0.025);
}

.capability-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border-radius: 12px;
  background: rgba(77, 233, 213, 0.07);
}

.capability-grid h3 {
  margin: 27px 0 10px;
  color: #dce7e9;
  font-size: 15px;
}

.capability-grid p {
  margin: 0;
  color: #748b91;
  font-size: 10px;
  line-height: 1.9;
}

.brand-statement {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement-orb {
  position: absolute;
  width: 510px;
  height: 280px;
  border-radius: 50%;
  background: rgba(77, 233, 213, 0.07);
  filter: blur(90px);
}

.statement-icon {
  position: relative;
  z-index: 1;
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(77, 233, 213, 0.2);
  border-radius: 18px;
  background: rgba(77, 233, 213, 0.06);
}

.brand-statement blockquote {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 29px 0 14px;
  color: #e7f0f1;
  font-size: clamp(23px, 3vw, 36px);
  line-height: 1.8;
  letter-spacing: -1px;
  font-weight: 520;
}

.brand-statement > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #6f878d;
  font-size: 10px;
}

.final-cta {
  position: relative;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 70px;
  margin-top: 110px;
  margin-bottom: 90px;
  padding: 60px 68px;
  overflow: hidden;
  border: 1px solid rgba(114, 240, 223, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(169, 140, 248, 0.22), transparent 42%),
    linear-gradient(125deg, #0e4143 0%, #0a2f34 46%, #13273a 100%);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(165, 237, 228, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 237, 228, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(100deg, transparent, #000);
}

.cta-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  left: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(120, 87, 229, 0.22);
  filter: blur(60px);
}

.final-cta > div:not(.cta-grid, .cta-glow) {
  position: relative;
  z-index: 2;
}

.final-cta .section-kicker {
  color: #a2fff1;
}

.final-cta h2 {
  max-width: 650px;
  color: #fff;
}

.final-cta p {
  max-width: 610px;
  margin: 20px 0 0;
  color: #a6c3c7;
  font-size: 12px;
  line-height: 2;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.button-light {
  color: #092428;
  background: #effafa;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
}

.button-ghost {
  color: #d7e9eb;
  border-color: rgba(219, 244, 244, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.cta-actions small {
  margin-top: 4px;
  color: #779ba0;
  font-size: 8px;
  text-align: center;
}

.site-footer {
  padding-bottom: 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 90px;
  padding-block: 44px 55px;
  border-top: 1px solid var(--line);
}

.footer-brand > p {
  max-width: 330px;
  margin: 24px 0 0;
  color: #70878c;
  font-size: 10px;
  line-height: 2;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: #cbd8da;
  font-size: 11px;
}

.footer-links a {
  color: #71898f;
  font-size: 9px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #4f676d;
  font-size: 8px;
}

.online-state {
  display: flex;
  align-items: center;
  gap: 7px;
}

.online-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(77, 233, 213, 0.65);
}

@keyframes window-float {
  0%, 100% { transform: rotateY(2deg) rotateX(1deg) translateY(0); }
  50% { transform: rotateY(2deg) rotateX(1deg) translateY(-8px); }
}

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

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 20px;
  }

  .text-link {
    display: none;
  }

  .hero {
    grid-template-columns: 0.88fr 1.12fr;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .floating-chip-one {
    left: -5px;
  }

  .floating-chip-two {
    right: -5px;
  }

  .platform {
    gap: 40px;
  }

  .signal-card-one {
    left: 0;
  }

  .signal-card-two {
    right: 0;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 700px;
    text-align: center;
    margin-inline: auto;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .hero-lead {
    max-width: 650px;
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .dashboard-stage {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
  }

  .industry-strip > div {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .product-card {
    min-height: auto;
  }

  .product-card > p {
    min-height: auto;
  }

  .platform {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .platform-copy {
    max-width: 650px;
  }

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

  .final-cta {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-actions {
    max-width: 370px;
  }
}

@media (max-width: 680px) {
  .section-container,
  .site-header {
    width: min(100% - 28px, 1220px);
  }

  .announcement {
    justify-content: flex-start;
    overflow: auto;
    white-space: nowrap;
  }

  .announcement a {
    margin-right: auto;
  }

  .site-header {
    min-height: 73px;
  }

  .hero {
    min-height: auto;
    padding-block: 54px 36px;
  }

  .hero h1 {
    margin-top: 19px;
    font-size: 46px;
    letter-spacing: -2.8px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .dashboard-stage {
    min-height: 410px;
    margin-top: 30px;
  }

  .dashboard-window {
    width: 100%;
    border-radius: 14px;
  }

  .window-topbar {
    height: 40px;
  }

  .window-body {
    min-height: 300px;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-content {
    padding: 13px;
  }

  .metric-row {
    gap: 5px;
  }

  .metric-row article {
    grid-template-columns: 1fr;
    padding: 9px;
  }

  .metric-icon {
    display: none;
  }

  .metric-row article > span {
    display: none;
  }

  .dashboard-lower {
    grid-template-columns: 1fr;
  }

  .activity-card {
    display: none;
  }

  .chart-card {
    min-height: 175px;
  }

  .chart-wrap {
    height: 120px;
  }

  .chart-wrap svg {
    height: 97px;
  }

  .floating-chip {
    transform: scale(0.84);
  }

  .floating-chip-one {
    top: 30px;
    left: -9px;
  }

  .floating-chip-two {
    right: -9px;
    bottom: 24px;
  }

  .dashboard-caption {
    display: none;
  }

  .industry-strip {
    margin-top: 30px;
  }

  .industry-strip > div {
    gap: 14px 22px;
  }

  .industry-strip span {
    font-size: 9px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    padding-block: 60px;
  }

  .stats article:nth-child(2)::after {
    display: none;
  }

  .stats article:nth-child(3)::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 12%;
    left: 12%;
    height: 1px;
    background: var(--line);
  }

  .stats article:nth-child(4)::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 12%;
    left: 12%;
    height: 1px;
    background: var(--line);
  }

  .products,
  .solutions,
  .capabilities {
    padding-block: 75px;
  }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .platform-copy h2,
  .final-cta h2 {
    font-size: 34px;
    letter-spacing: -1.4px;
  }

  .section-heading > p {
    margin-top: 17px;
  }

  .product-card {
    padding: 22px;
  }

  .platform {
    padding-block: 75px;
  }

  .platform-visual {
    min-height: 440px;
    order: 2;
  }

  .platform-copy {
    order: 1;
  }

  .platform-visual::before {
    width: 390px;
    height: 390px;
  }

  .platform-visual::after {
    width: 280px;
    height: 280px;
  }

  .signal-card {
    min-width: 145px;
    transform: scale(0.9);
  }

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

  .solution-card,
  .solution-card:nth-child(4),
  .solution-card:nth-child(5) {
    grid-column: auto;
  }

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

  .capability-grid article {
    min-height: auto;
  }

  .brand-statement {
    min-height: 380px;
    padding-inline: 10px;
  }

  .final-cta {
    min-height: auto;
    margin-top: 75px;
    margin-bottom: 60px;
    padding: 40px 24px;
    border-radius: 22px;
  }

  .cta-actions {
    max-width: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-links {
    gap: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Admin content studio */
.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 238px 1fr;
  color: #172a2d;
  background: #f3f7f7;
  font-family: "Vazirmatn Variable", "Segoe UI", Tahoma, sans-serif;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 25px 15px 18px;
  color: #c6d4d6;
  background:
    radial-gradient(circle at 100% 0%, rgba(62, 207, 193, 0.12), transparent 32%),
    #07171c;
  border-left: 1px solid rgba(149, 195, 201, 0.12);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 9px 24px;
  border-bottom: 1px solid rgba(147, 190, 195, 0.1);
}

.admin-brand .brand-mark {
  width: 37px;
  height: 37px;
  border-radius: 11px;
}

.admin-brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-brand strong {
  color: #e5efef;
  font-size: 13px;
}

.admin-brand small {
  color: #5f797f;
  font-size: 7px;
}

.admin-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 23px;
}

.admin-sidebar nav button {
  min-height: 46px;
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  color: #789096;
  border: 0;
  border-radius: 11px;
  background: transparent;
  cursor: pointer;
  text-align: right;
  font-size: 10px;
  transition: color 160ms ease, background 160ms ease;
}

.admin-sidebar nav button:hover {
  color: #c4d3d5;
  background: rgba(255, 255, 255, 0.025);
}

.admin-sidebar nav button.active {
  color: #102c2b;
  background: linear-gradient(135deg, #8df7e9, #51dfcf);
  box-shadow: 0 13px 25px rgba(59, 210, 193, 0.13);
}

.admin-count {
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  justify-self: end;
  border-radius: 7px;
  color: #9caeb2;
  background: rgba(255, 255, 255, 0.05);
  font-size: 7px;
}

.admin-sidebar nav button.active .admin-count {
  color: #164340;
  background: rgba(5, 45, 42, 0.09);
}

.admin-sidebar-foot {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(147, 190, 195, 0.1);
}

.admin-sidebar-foot a {
  min-height: 40px;
  display: grid;
  grid-template-columns: 22px 1fr 20px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  color: #657f85;
  border-radius: 9px;
  font-size: 9px;
}

.admin-sidebar-foot a:hover {
  color: #a9bfc2;
  background: rgba(255, 255, 255, 0.025);
}

.admin-main {
  min-width: 0;
}

.admin-topbar {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
  padding: 0 34px;
  border-bottom: 1px solid #dfe8e8;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(16px);
}

.admin-topbar > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.admin-topbar small {
  color: #8da0a3;
  font-size: 7px;
}

.admin-topbar strong {
  color: #304649;
  font-size: 9px;
  font-weight: 650;
}

.admin-user-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #133c39;
  border-radius: 11px;
  background: #b8eee7;
  font-size: 11px;
  font-weight: 700;
}

.admin-message {
  position: fixed;
  z-index: 100;
  left: 28px;
  bottom: 25px;
  min-width: 310px;
  display: grid;
  grid-template-columns: 26px 1fr 26px;
  align-items: center;
  gap: 8px;
  padding: 13px;
  color: #dff9f5;
  border: 1px solid rgba(77, 233, 213, 0.22);
  border-radius: 13px;
  background: #0b2529;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
  font-size: 9px;
}

.admin-message > svg {
  color: #55e2d1;
}

.admin-message button {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #81999e;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.admin-view {
  width: min(1180px, calc(100% - 60px));
  margin: 0 auto;
  padding-block: 42px 70px;
}

.admin-page-heading {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 27px;
}

.admin-page-heading > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.admin-page-heading > div > span {
  color: #759093;
  font-size: 9px;
}

.admin-page-heading h1 {
  margin: 0;
  color: #183236;
  font-size: 25px;
  letter-spacing: -0.7px;
}

.admin-page-heading > a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #537074;
  border: 1px solid #d7e3e4;
  border-radius: 10px;
  background: #fff;
  font-size: 9px;
}

.admin-primary-button,
.admin-secondary-button {
  min-height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 650;
}

.admin-primary-button {
  color: #0c3431;
  background: linear-gradient(135deg, #8af4e6, #55decf);
  box-shadow: 0 10px 22px rgba(56, 189, 176, 0.13);
}

.admin-secondary-button {
  color: #5e767a;
  border: 1px solid #dbe5e6;
  background: #fff;
}

.admin-primary-button:disabled,
.admin-secondary-button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.admin-stat-grid article {
  position: relative;
  min-height: 150px;
  display: grid;
  grid-template-columns: 45px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 13px;
  padding: 21px;
  overflow: hidden;
  border: 1px solid #dde7e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 11px 30px rgba(20, 57, 60, 0.035);
}

.admin-stat-grid article::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  left: -38px;
  bottom: -50px;
  border-radius: 50%;
  background: rgba(65, 214, 198, 0.05);
}

.admin-stat-icon {
  grid-row: 1 / 4;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #25ae9f;
  border-radius: 13px;
  background: #e6f8f5;
}

.admin-stat-icon--violet {
  color: #8065db;
  background: #f0ecfc;
}

.admin-stat-icon--lime {
  color: #7e9a37;
  background: #f1f8df;
}

.admin-stat-grid small {
  color: #84999c;
  font-size: 8px;
}

.admin-stat-grid strong {
  color: #173438;
  font-size: 28px;
  line-height: 1.2;
}

.admin-stat-grid em {
  color: #8ca0a3;
  font-size: 7px;
  font-style: normal;
}

.admin-overview-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 13px;
  margin-top: 14px;
}

.admin-panel {
  min-height: 335px;
  padding: 21px;
  border: 1px solid #dde7e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 11px 30px rgba(20, 57, 60, 0.035);
}

.admin-panel-title {
  min-height: 45px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #edf2f2;
}

.admin-panel-title > div {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.admin-panel-title > div > svg {
  color: #36b9aa;
}

.admin-panel-title > div > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.admin-panel-title strong {
  color: #294347;
  font-size: 10px;
}

.admin-panel-title small {
  color: #92a2a5;
  font-size: 7px;
}

.admin-panel-title > button {
  color: #31a99c;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 8px;
}

.admin-mini-events {
  display: flex;
  flex-direction: column;
}

.admin-mini-events > div {
  min-height: 59px;
  display: grid;
  grid-template-columns: 9px 1fr 70px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eff3f3;
}

.mini-event-accent {
  width: 7px;
  height: 30px;
  border-radius: 99px;
  background: #48d7c6;
}

.mini-event-accent--violet {
  background: #a58bed;
}

.mini-event-accent--lime {
  background: #b8d866;
}

.mini-event-accent--orange {
  background: #e9a359;
}

.admin-mini-events > div > span:nth-child(2),
.admin-event-row > div:first-child > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.admin-mini-events strong,
.admin-event-row strong {
  overflow: hidden;
  color: #344e52;
  font-size: 8px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.admin-mini-events small,
.admin-event-row small {
  color: #95a5a8;
  font-size: 7px;
}

.admin-mini-events em,
.admin-event-row > em {
  justify-self: end;
  padding: 5px 7px;
  border-radius: 7px;
  font-size: 7px;
  font-style: normal;
}

.published {
  color: #338f84;
  background: #e6f7f4;
}

.draft {
  color: #8d7a5b;
  background: #f8f1e5;
}

.admin-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.admin-quick-actions .admin-panel-title {
  margin-bottom: 3px;
}

.admin-quick-actions > button {
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 9px;
  padding: 12px;
  color: #30484c;
  border: 1px solid #e3ebec;
  border-radius: 11px;
  background: #fbfdfd;
  cursor: pointer;
  text-align: right;
}

.admin-quick-actions > button > span {
  grid-row: 1 / 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #31ae9f;
  border-radius: 10px;
  background: #e7f8f5;
}

.admin-quick-actions > button strong {
  font-size: 9px;
}

.admin-quick-actions > button small {
  color: #93a3a6;
  font-size: 7px;
}

.admin-events-table {
  overflow: hidden;
  border: 1px solid #dde7e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 11px 30px rgba(20, 57, 60, 0.035);
}

.admin-table-head,
.admin-event-row {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) 170px 110px 120px;
  align-items: center;
  gap: 15px;
  padding-inline: 20px;
}

.admin-table-head {
  min-height: 47px;
  color: #8da0a3;
  background: #f8fafa;
  border-bottom: 1px solid #e8eeee;
  font-size: 7px;
}

.admin-event-row {
  min-height: 78px;
  border-bottom: 1px solid #edf2f2;
}

.admin-event-row:last-child {
  border-bottom: 0;
}

.admin-event-row > div:first-child {
  display: grid;
  grid-template-columns: 8px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.admin-event-row > div:first-child .mini-event-accent {
  height: 36px;
}

.admin-event-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #4e686c;
  font-size: 8px;
}

.admin-event-row > div:last-child {
  display: flex;
  gap: 5px;
}

.admin-event-row > div:last-child a,
.admin-event-row > div:last-child button {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #6f878b;
  border: 1px solid #e0e8e9;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.admin-event-row > div:last-child .danger {
  color: #bb6969;
}

.content-groups {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.content-group {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 25px;
  padding: 23px;
  border: 1px solid #dde7e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 11px 30px rgba(20, 57, 60, 0.035);
}

.content-group > div:first-child {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.content-group > div:first-child > svg {
  color: #38b8aa;
}

.content-group > div:first-child > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.content-group > div:first-child strong {
  color: #294347;
  font-size: 10px;
}

.content-group > div:first-child small {
  color: #94a5a7;
  font-size: 7px;
}

.content-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.content-fields label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.content-fields label:has(textarea) {
  grid-column: 1 / -1;
}

.content-fields label > span,
.event-editor-fields label > span {
  color: #5b7377;
  font-size: 8px;
  font-weight: 600;
}

.content-fields input,
.content-fields textarea,
.event-editor-fields input,
.event-editor-fields textarea,
.event-editor-fields select {
  width: 100%;
  color: #31494d;
  border: 1px solid #dae5e6;
  border-radius: 9px;
  outline: none;
  background: #fbfdfd;
  font-size: 9px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.content-fields input,
.event-editor-fields input,
.event-editor-fields select {
  min-height: 40px;
  padding: 0 11px;
}

.content-fields textarea,
.event-editor-fields textarea {
  resize: vertical;
  padding: 10px 11px;
  line-height: 1.8;
}

.content-fields input:focus,
.content-fields textarea:focus,
.event-editor-fields input:focus,
.event-editor-fields textarea:focus,
.event-editor-fields select:focus {
  border-color: #6fd5c9;
  box-shadow: 0 0 0 3px rgba(75, 207, 192, 0.08);
}

.event-editor-backdrop {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: flex;
  justify-content: flex-start;
  background: rgba(5, 18, 22, 0.56);
  backdrop-filter: blur(4px);
}

.event-editor {
  width: min(680px, 92vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 25px 0 80px rgba(0, 0, 0, 0.25);
  animation: editor-in 220ms ease-out;
}

.event-editor > header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  border-bottom: 1px solid #e5ecec;
}

.event-editor > header > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.event-editor > header small {
  color: #799095;
  font-size: 7px;
}

.event-editor > header h2 {
  margin: 0;
  color: #213d41;
  font-size: 17px;
}

.event-editor > header > button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #70878b;
  border: 1px solid #e0e8e9;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.event-editor-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 24px 26px 45px;
  overflow-y: auto;
}

.event-editor-fields label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.event-editor-fields .full,
.event-editor-fields .checkbox-field {
  grid-column: 1 / -1;
}

.event-editor-fields .checkbox-field {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
}

.event-editor-fields .checkbox-field input {
  width: 16px;
  min-height: 16px;
  accent-color: #42c9b9;
}

.event-editor > footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: auto;
  padding: 0 26px;
  border-top: 1px solid #e5ecec;
  background: #fff;
}

.spin {
  animation: spin 800ms linear infinite;
}

.admin-access-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 25px;
  direction: rtl;
  color: #dfeaec;
  background:
    radial-gradient(circle at center, rgba(77, 233, 213, 0.09), transparent 35%),
    #061015;
}

.admin-access-page > div {
  max-width: 500px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(13, 31, 37, 0.82);
  text-align: center;
}

.admin-access-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: var(--cyan);
  border-radius: 17px;
  background: rgba(77, 233, 213, 0.08);
}

.admin-access-page h1 {
  margin: 22px 0 10px;
  font-size: 23px;
}

.admin-access-page p {
  color: #80969b;
  font-size: 10px;
  line-height: 1.9;
}

.admin-access-page a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  color: var(--cyan);
  font-size: 9px;
}

@keyframes editor-in {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 74px 1fr;
  }

  .admin-sidebar {
    padding-inline: 10px;
  }

  .admin-brand {
    justify-content: center;
    padding-inline: 0;
  }

  .admin-brand > span:last-child,
  .admin-sidebar nav button > :not(svg),
  .admin-sidebar-foot a > :not(svg) {
    display: none;
  }

  .admin-sidebar nav button,
  .admin-sidebar-foot a {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0;
  }

  .admin-overview-grid {
    grid-template-columns: 1fr;
  }

  .admin-table-head,
  .admin-event-row {
    grid-template-columns: minmax(220px, 1fr) 130px 95px 108px;
  }

  .content-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .admin-shell {
    display: block;
    padding-bottom: 76px;
  }

  .admin-sidebar {
    position: fixed;
    z-index: 50;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 68px;
    display: block;
    padding: 7px;
    border-top: 1px solid rgba(149, 195, 201, 0.14);
    border-left: 0;
  }

  .admin-brand,
  .admin-sidebar-foot {
    display: none;
  }

  .admin-sidebar nav {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin: 0;
  }

  .admin-sidebar nav button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-height: 0;
    font-size: 7px;
  }

  .admin-sidebar nav button > span {
    display: none;
  }

  .admin-topbar {
    padding-inline: 16px;
  }

  .admin-view {
    width: min(100% - 26px, 1180px);
    padding-block: 27px 50px;
  }

  .admin-page-heading {
    align-items: flex-start;
  }

  .admin-page-heading h1 {
    font-size: 21px;
  }

  .admin-page-heading > a {
    display: none;
  }

  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .admin-events-table {
    overflow-x: auto;
  }

  .admin-table-head,
  .admin-event-row {
    min-width: 720px;
  }

  .content-fields,
  .event-editor-fields {
    grid-template-columns: 1fr;
  }

  .content-fields label,
  .event-editor-fields .full,
  .event-editor-fields .checkbox-field {
    grid-column: auto;
  }

  .event-editor {
    width: 100%;
  }

  .admin-message {
    right: 13px;
    left: 13px;
    bottom: 84px;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Shared navigation for the multi-page experience */
.nav-dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-dropdown > button {
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  color: #aebdc1;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.nav-dropdown > button svg {
  transition: transform 180ms ease;
}

.nav-dropdown:hover > button,
.nav-dropdown:focus-within > button {
  color: #fff;
}

.nav-dropdown:hover > button svg,
.nav-dropdown:focus-within > button svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 72px;
  right: 50%;
  width: 320px;
  display: grid;
  gap: 5px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translate(50%, 9px);
  border: 1px solid rgba(156, 204, 208, 0.18);
  border-radius: 18px;
  background: rgba(6, 19, 24, 0.97);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(50%, 0);
}

.nav-dropdown-menu > a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 11px;
}

.nav-dropdown-menu > a:hover {
  background: rgba(77, 233, 213, 0.055);
}

.nav-dropdown-menu > a::after {
  display: none;
}

.nav-dropdown-menu > a > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-dropdown-menu strong {
  color: #dce7e9;
  font-size: 11px;
}

.nav-dropdown-menu small {
  color: #647b81;
  font-size: 8px;
}

.nav-product-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(77, 233, 213, 0.45);
}

.nav-product-dot--violet {
  background: var(--violet);
  box-shadow: 0 0 10px rgba(168, 140, 248, 0.45);
}

.nav-product-dot--lime {
  background: var(--lime);
  box-shadow: 0 0 10px rgba(201, 241, 115, 0.35);
}

.admin-shortcut {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: #82999e;
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.admin-shortcut:hover {
  color: var(--cyan);
  border-color: rgba(77, 233, 213, 0.24);
  background: rgba(77, 233, 213, 0.05);
}

.mobile-menu nav > strong {
  padding: 9px 14px 3px;
  color: #557077;
  font-size: 8px;
}

.footer-contact {
  display: inline-flex;
  margin-top: 20px;
  color: var(--cyan);
  font-size: 10px;
}

/* Inner page foundations */
.inner-shell {
  --page-accent: var(--cyan);
  --page-accent-soft: rgba(77, 233, 213, 0.1);
  min-height: 100vh;
}

.accent-violet {
  --page-accent: var(--violet);
  --page-accent-soft: rgba(168, 140, 248, 0.11);
}

.accent-lime {
  --page-accent: var(--lime);
  --page-accent-soft: rgba(201, 241, 115, 0.09);
}

.accent-orange {
  --page-accent: #ffb86b;
  --page-accent-soft: rgba(255, 184, 107, 0.1);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  color: #50696f;
  font-size: 9px;
}

.breadcrumbs a {
  color: #70878d;
  transition: color 180ms ease;
}

.breadcrumbs a:hover {
  color: var(--page-accent);
}

.breadcrumbs strong {
  color: #91a4a9;
  font-weight: 550;
}

/* Product pages */
.product-hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
  padding-block: 58px 80px;
}

.product-hero-copy .eyebrow,
.accent-violet .product-hero-copy .eyebrow,
.accent-lime .product-hero-copy .eyebrow {
  color: var(--page-accent);
  border-color: color-mix(in srgb, var(--page-accent) 20%, transparent);
  background: var(--page-accent-soft);
}

.product-hero-copy h1 {
  max-width: 650px;
  margin: 22px 0 20px;
  color: #eef6f6;
  font-size: clamp(43px, 5vw, 67px);
  line-height: 1.3;
  letter-spacing: -3.4px;
}

.product-hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: #93a7ac;
  font-size: 14px;
  line-height: 2.05;
}

.product-hero-copy .button-primary {
  background: linear-gradient(135deg, color-mix(in srgb, var(--page-accent) 84%, white), var(--page-accent));
}

.product-stat-row {
  display: flex;
  gap: 28px;
  margin-top: 39px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.product-stat-row > div {
  min-width: 104px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-stat-row strong {
  color: var(--page-accent);
  font-size: 17px;
}

.product-stat-row span {
  color: #667d83;
  font-size: 8px;
}

.product-hero-visual {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}

.product-hero-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--page-accent-soft);
  filter: blur(70px);
}

.product-hero-visual .orbit-one {
  width: 560px;
  height: 320px;
}

.product-hero-visual .orbit-two {
  width: 430px;
  height: 430px;
}

.product-demo {
  position: relative;
  z-index: 2;
  width: min(510px, 95%);
  min-height: 390px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--page-accent) 22%, transparent);
  border-radius: 23px;
  background:
    radial-gradient(circle at 90% 0%, var(--page-accent-soft), transparent 38%),
    linear-gradient(145deg, rgba(17, 38, 44, 0.96), rgba(6, 19, 24, 0.96));
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.43), inset 0 1px rgba(255, 255, 255, 0.04);
  transform: rotateY(-3deg) rotateX(1deg);
  animation: window-float 7s ease-in-out infinite;
}

.demo-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.demo-topline > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c3d1d4;
  font-size: 9px;
}

.demo-topline > span svg {
  color: var(--page-accent);
}

.demo-topline > i {
  padding: 6px 9px;
  color: #73898f;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 7px;
  font-style: normal;
}

.finance-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 16px;
}

.finance-kpis article {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.02);
}

.finance-kpis small,
.retail-total small,
.invoice-summary small {
  color: #6a8187;
  font-size: 7px;
}

.finance-kpis strong {
  color: #dce7e9;
  font-size: 12px;
}

.finance-kpis span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  color: var(--page-accent);
  font-size: 7px;
}

.finance-chart {
  position: relative;
  height: 185px;
  margin-top: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
}

.finance-chart .chart-grid-lines {
  inset: 13px;
}

.finance-chart svg {
  position: absolute;
  inset: 23px 13px 15px;
  width: calc(100% - 26px);
  height: calc(100% - 38px);
}

.product-chart-area {
  fill: color-mix(in srgb, var(--page-accent) 20%, transparent);
}

.product-chart-line {
  fill: none;
  stroke: var(--page-accent);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px var(--page-accent));
}

.finance-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: #6f878d;
  font-size: 8px;
}

.finance-foot svg {
  color: var(--page-accent);
}

.retail-total {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.02);
}

.retail-total strong {
  color: #e3ecee;
  font-size: 18px;
}

.retail-total > span {
  position: absolute;
  left: 16px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--page-accent);
  font-size: 7px;
}

.retail-grid,
.invoice-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 10px;
}

.retail-grid article {
  display: grid;
  grid-template-columns: 31px 1fr;
  grid-template-rows: auto auto;
  column-gap: 9px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.retail-grid svg {
  grid-row: 1 / 3;
  color: var(--page-accent);
}

.retail-grid span {
  color: #657d83;
  font-size: 7px;
}

.retail-grid strong {
  color: #cedbdd;
  font-size: 11px;
}

.demo-bars {
  height: 128px;
  display: flex;
  align-items: end;
  gap: 13px;
  margin-top: 20px;
  padding: 18px 18px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(rgba(158, 197, 201, 0.06) 1px, transparent 1px);
  background-size: 100% 33.33%;
}

.demo-bars > span {
  flex: 1;
  min-height: 10px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(to top, color-mix(in srgb, var(--page-accent) 36%, transparent), var(--page-accent));
  box-shadow: 0 0 12px color-mix(in srgb, var(--page-accent) 22%, transparent);
}

.invoice-summary {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.invoice-summary article {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.invoice-summary strong {
  color: #dce7e9;
  font-size: 15px;
}

.invoice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 17px;
}

.invoice-list > div {
  display: grid;
  grid-template-columns: 8px 1fr 90px 18px;
  align-items: center;
  gap: 9px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.015);
  color: #70878c;
  font-size: 8px;
}

.invoice-list code {
  color: #b7c6c9;
  font-size: 8px;
}

.invoice-list svg {
  color: var(--page-accent);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--page-accent);
  box-shadow: 0 0 7px var(--page-accent);
}

.status-dot--waiting {
  background: #ffb86b;
  box-shadow: 0 0 7px #ffb86b;
}

.product-feature-section {
  padding-block: 115px;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.product-feature-grid article {
  position: relative;
  min-height: 280px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(16, 35, 42, 0.7), rgba(7, 19, 24, 0.7));
}

.product-feature-grid article > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--page-accent);
  border-radius: 13px;
  background: var(--page-accent-soft);
}

.product-feature-grid article > small {
  position: absolute;
  top: 30px;
  left: 27px;
  color: #435d63;
  font-size: 10px;
}

.product-feature-grid h3 {
  margin: 39px 0 10px;
  color: #dce7e9;
  font-size: 18px;
}

.product-feature-grid p {
  margin: 0;
  color: #7b9197;
  font-size: 10px;
  line-height: 2;
}

.product-modules {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: center;
  padding-block: 105px;
}

.modules-copy h2,
.audience-section h2,
.integration-band h2 {
  margin: 14px 0 17px;
  color: #e6efef;
  font-size: clamp(29px, 3.8vw, 46px);
  line-height: 1.45;
  letter-spacing: -1.7px;
}

.modules-copy > p,
.integration-band > div:last-child > p {
  margin: 0;
  color: #81969b;
  font-size: 12px;
  line-height: 2.05;
}

.module-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.module-list > div {
  min-height: 78px;
  display: grid;
  grid-template-columns: 28px 1fr 24px;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.module-list > div > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--page-accent);
  border-radius: 8px;
  background: var(--page-accent-soft);
}

.module-list strong {
  color: #bfcdd0;
  font-size: 10px;
}

.module-list small {
  color: #405a61;
  font-size: 8px;
  direction: ltr;
}

.audience-section {
  padding-block: 105px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.audience-section h2 {
  max-width: 700px;
  margin-inline: auto;
}

.audience-section > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 33px;
}

.audience-section > div > span {
  padding: 10px 15px;
  color: #92a5aa;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.015);
  font-size: 9px;
}

.mini-cta {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-block: 90px;
  padding: 45px 55px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--page-accent) 20%, transparent);
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 0%, var(--page-accent-soft), transparent 40%),
    linear-gradient(130deg, rgba(16, 49, 53, 0.86), rgba(15, 31, 45, 0.9));
}

.mini-cta > div {
  max-width: 760px;
}

.mini-cta > div > span {
  color: var(--page-accent);
  font-size: 10px;
}

.mini-cta h2 {
  margin: 10px 0 0;
  color: #eef6f6;
  font-size: clamp(27px, 3.8vw, 43px);
  line-height: 1.5;
}

/* Solutions page */
.inner-hero {
  min-height: 630px;
  padding-block: 58px 80px;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 75px;
}

.inner-hero-grid > div:first-child h1,
.events-hero-grid h1 {
  max-width: 640px;
  margin: 22px 0 19px;
  color: #eff6f6;
  font-size: clamp(45px, 5.4vw, 72px);
  line-height: 1.25;
  letter-spacing: -3.5px;
}

.inner-hero-grid > div:first-child > p,
.events-hero-grid > div:first-child > p {
  max-width: 610px;
  margin: 0;
  color: #8ca1a6;
  font-size: 14px;
  line-height: 2.05;
}

.solution-orbit {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.solution-orbit::before,
.solution-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(77, 233, 213, 0.11);
  border-radius: 50%;
}

.solution-orbit::before {
  width: 390px;
  height: 390px;
}

.solution-orbit::after {
  width: 280px;
  height: 280px;
}

.solution-core {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(77, 233, 213, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 74, 73, 0.8), rgba(8, 25, 30, 0.95));
  box-shadow: 0 0 70px rgba(77, 233, 213, 0.11);
}

.solution-core strong {
  color: #c8d9db;
  font-size: 9px;
}

.orbit-item {
  position: absolute;
  z-index: 3;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(77, 233, 213, 0.18);
  border-radius: 14px;
  background: rgba(9, 27, 32, 0.96);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.orbit-item-1 { top: 30px; right: 50%; transform: translateX(50%); }
.orbit-item-2 { top: 130px; right: 42px; }
.orbit-item-3 { bottom: 45px; right: 90px; }
.orbit-item-4 { bottom: 45px; left: 90px; }
.orbit-item-5 { top: 130px; left: 42px; }

.solution-detail-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.solution-detail-list > article {
  min-height: 215px;
  display: grid;
  grid-template-columns: 60px 62px minmax(260px, 1.25fr) minmax(260px, 0.85fr) 45px;
  align-items: center;
  gap: 25px;
  scroll-margin-top: 30px;
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease;
}

.solution-detail-list > article:hover {
  background: linear-gradient(90deg, transparent, rgba(77, 233, 213, 0.025), transparent);
}

.solution-number {
  color: #3d565d;
  font-size: 10px;
  direction: ltr;
}

.solution-detail-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(77, 233, 213, 0.16);
  border-radius: 16px;
  background: rgba(77, 233, 213, 0.055);
}

.solution-detail-copy > span {
  color: var(--cyan);
  font-size: 8px;
}

.solution-detail-copy h2 {
  margin: 7px 0 8px;
  color: #dbe7e8;
  font-size: 20px;
}

.solution-detail-copy p {
  margin: 0;
  color: #748b90;
  font-size: 10px;
  line-height: 1.9;
}

.solution-detail-list ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-detail-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #879a9f;
  font-size: 9px;
}

.solution-detail-list li svg {
  color: var(--cyan);
}

.solution-detail-list article > a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #6e858a;
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: color 180ms ease, background 180ms ease;
}

.solution-detail-list article > a:hover {
  color: #05211f;
  background: var(--cyan);
}

.integration-band {
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  padding-block: 100px;
}

.integration-visual {
  position: relative;
  height: 370px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(rgba(114, 171, 177, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 171, 177, 0.045) 1px, transparent 1px),
    rgba(9, 24, 29, 0.45);
  background-size: 42px 42px;
}

.integration-visual::before,
.integration-visual::after {
  content: "";
  position: absolute;
  background: rgba(77, 233, 213, 0.2);
}

.integration-visual::before {
  width: 60%;
  height: 1px;
}

.integration-visual::after {
  width: 1px;
  height: 60%;
}

.integration-node {
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #7f9ba0;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #0a1b20;
}

.integration-node:nth-child(1) { top: 48px; right: 45px; }
.integration-node:nth-child(2) { top: 48px; left: 45px; }
.integration-node:nth-child(4) { bottom: 48px; right: 45px; }
.integration-node:nth-child(5) { bottom: 48px; left: 45px; }

.integration-node--core {
  width: 77px;
  height: 77px;
  color: var(--cyan);
  border-color: rgba(77, 233, 213, 0.23);
  border-radius: 22px;
  background: rgba(19, 58, 61, 0.95);
  box-shadow: 0 0 40px rgba(77, 233, 213, 0.12);
}

/* Events */
.events-hero {
  min-height: 575px;
  padding-block: 58px 65px;
}

.events-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 80px;
}

.events-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.events-hero-stats > span {
  display: flex;
  flex-direction: column;
  color: #657d83;
  font-size: 8px;
}

.events-hero-stats strong {
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 17px;
}

.academy-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.academy-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(77, 233, 213, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(77, 233, 213, 0.018),
    0 0 0 90px rgba(77, 233, 213, 0.012);
}

.academy-icon {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(77, 233, 213, 0.24);
  border-radius: 28px;
  background: rgba(14, 51, 53, 0.85);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.academy-visual > strong {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  color: #dce7e9;
  font-size: 15px;
}

.academy-visual > small {
  position: relative;
  z-index: 2;
  margin-top: 6px;
  color: #647c82;
  font-size: 8px;
}

.featured-event {
  padding-block: 45px 85px;
}

.event-section-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.event-section-title > span,
.event-section-title > a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #81969b;
  font-size: 9px;
}

.event-section-title > span svg,
.event-section-title > a {
  color: var(--cyan);
}

.event-card {
  --event-accent: var(--cyan);
  --event-soft: rgba(77, 233, 213, 0.12);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(11, 27, 33, 0.72);
  transition: transform 220ms ease, border-color 220ms ease;
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--event-accent) 25%, transparent);
}

.event-card--violet {
  --event-accent: var(--violet);
  --event-soft: rgba(168, 140, 248, 0.12);
}

.event-card--lime {
  --event-accent: var(--lime);
  --event-soft: rgba(201, 241, 115, 0.1);
}

.event-card--orange {
  --event-accent: #ffb86b;
  --event-soft: rgba(255, 184, 107, 0.11);
}

.event-card--featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 420px;
}

.event-cover {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  background:
    radial-gradient(circle at 80% 20%, var(--event-soft), transparent 40%),
    linear-gradient(145deg, #12363c, #0a1e25 68%, #121b31);
  background-position: center;
  background-size: cover;
}

.event-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 13, 17, 0.88), transparent 60%);
  pointer-events: none;
}

.event-cover-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(134, 205, 207, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 205, 207, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(135deg, #000, transparent 75%);
}

.event-category,
.featured-label {
  position: absolute;
  z-index: 2;
  top: 19px;
  right: 19px;
  padding: 6px 10px;
  color: var(--event-accent);
  border: 1px solid color-mix(in srgb, var(--event-accent) 22%, transparent);
  border-radius: 999px;
  background: rgba(6, 19, 24, 0.65);
  backdrop-filter: blur(8px);
  font-size: 8px;
}

.featured-label {
  right: auto;
  left: 19px;
  color: #dce8e9;
  border-color: var(--line);
}

.event-cover-mark {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 50%;
  width: 120px;
  height: 120px;
  transform: translate(50%, -55%);
  border: 1px solid color-mix(in srgb, var(--event-accent) 20%, transparent);
  border-radius: 37px;
  background: var(--event-soft);
  box-shadow: 0 0 80px var(--event-soft);
}

.event-cover-mark span {
  position: absolute;
  top: 53px;
  width: 62px;
  height: 5px;
  border-radius: 9px;
  background: linear-gradient(90deg, #fff, var(--event-accent));
  box-shadow: 0 0 15px var(--event-accent);
}

.event-cover-mark span:first-child {
  right: 13px;
  transform: rotate(47deg);
}

.event-cover-mark span:last-child {
  left: 13px;
  transform: rotate(-47deg);
}

.event-cover-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.event-cover-copy small {
  color: var(--event-accent);
  font-size: 7px;
}

.event-cover-copy strong {
  max-width: 430px;
  color: #eef6f6;
  font-size: 20px;
  line-height: 1.6;
}

.event-card-body {
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.event-meta > span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #6e858b;
  font-size: 8px;
}

.event-meta svg {
  color: var(--event-accent);
}

.event-card-body h2 {
  margin: 22px 0 10px;
  color: #dce7e9;
  font-size: 18px;
  line-height: 1.6;
}

.event-card-body > p {
  margin: 0;
  color: #7c9297;
  font-size: 10px;
  line-height: 1.95;
}

.event-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
}

.event-card-footer > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-card-footer small {
  color: #586f75;
  font-size: 7px;
}

.event-card-footer strong {
  color: #9eb0b4;
  font-size: 9px;
  font-weight: 550;
}

.event-card-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--event-accent);
  font-size: 9px;
  font-weight: 620;
}

.events-list {
  padding-block: 90px 110px;
}

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

.events-grid .event-card {
  min-height: 540px;
  display: flex;
  flex-direction: column;
}

.events-grid .event-card-body {
  flex: 1;
}

.empty-events {
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  color: #6e858b;
  border: 1px dashed var(--line);
  border-radius: 22px;
}

.empty-events h2,
.empty-events p {
  margin: 0;
}

.empty-events h2 {
  color: #c7d4d6;
  font-size: 18px;
}

.empty-events p {
  font-size: 9px;
}

/* Event detail */
.event-detail-hero {
  padding-block: 58px 80px;
}

.event-detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 65px;
}

.event-detail-copy {
  --event-accent: var(--page-accent);
}

.event-detail-copy .event-category {
  position: static;
  display: inline-flex;
  color: var(--page-accent);
  border-color: color-mix(in srgb, var(--page-accent) 24%, transparent);
}

.event-detail-copy h1 {
  margin: 22px 0 17px;
  color: #eef6f6;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.35;
  letter-spacing: -2.8px;
}

.event-detail-copy > p {
  margin: 0;
  color: #879da2;
  font-size: 13px;
  line-height: 2;
}

.event-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 30px;
}

.event-detail-meta > span {
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-rows: auto auto;
  column-gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.event-detail-meta svg {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--page-accent);
}

.event-detail-meta small {
  color: #5f767c;
  font-size: 7px;
}

.event-detail-meta strong {
  color: #b3c2c5;
  font-size: 9px;
}

.event-detail-cover {
  --event-accent: var(--page-accent);
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--page-accent) 22%, transparent);
  border-radius: 25px;
  background:
    radial-gradient(circle at 70% 20%, var(--page-accent-soft), transparent 44%),
    linear-gradient(145deg, #11343a, #081d24 65%, #151c35);
  background-size: cover;
  background-position: center;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3);
}

.event-detail-cover .event-cover-mark {
  --event-accent: var(--page-accent);
  --event-soft: var(--page-accent-soft);
}

.event-detail-cover > small,
.event-detail-cover > strong {
  position: relative;
  z-index: 2;
}

.event-detail-cover > small {
  color: var(--page-accent);
  font-size: 7px;
  letter-spacing: 1px;
}

.event-detail-cover > strong {
  max-width: 400px;
  margin-top: 7px;
  color: #eff7f7;
  font-size: 22px;
  line-height: 1.6;
}

.event-content {
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  align-items: start;
  gap: 80px;
  padding-block: 90px 120px;
}

.event-content article h2 {
  margin: 13px 0 20px;
  color: #e3eded;
  font-size: clamp(27px, 3.5vw, 42px);
}

.event-content article > p {
  margin: 0;
  color: #81979c;
  font-size: 12px;
  line-height: 2.2;
}

.event-content article ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.event-content article li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9aadb1;
  font-size: 10px;
}

.event-content article li svg {
  color: var(--page-accent);
}

.registration-card {
  position: sticky;
  top: 25px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(17, 38, 44, 0.88), rgba(7, 20, 25, 0.9));
}

.registration-card > span {
  color: #778f94;
  font-size: 9px;
}

.registration-card > strong {
  margin-top: 9px;
  color: var(--page-accent);
  font-size: 27px;
}

.registration-card > p {
  margin: 17px 0 22px;
  color: #71878c;
  font-size: 9px;
  line-height: 1.9;
}

.registration-card .button-primary {
  color: #092321;
  background: var(--page-accent);
}

.registration-card > button {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
  color: #61787e;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: transparent;
  font-size: 9px;
}

@media (max-width: 900px) {
  .product-hero,
  .inner-hero-grid,
  .events-hero-grid,
  .event-detail-grid,
  .integration-band {
    grid-template-columns: 1fr;
  }

  .product-hero {
    padding-top: 52px;
  }

  .product-hero-copy {
    text-align: center;
  }

  .product-hero-copy .eyebrow,
  .product-hero-copy .hero-actions {
    justify-content: center;
  }

  .product-hero-copy > p {
    margin-inline: auto;
  }

  .product-stat-row {
    justify-content: center;
  }

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

  .product-modules {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .inner-hero-grid > div:first-child,
  .events-hero-grid > div:first-child {
    text-align: center;
  }

  .inner-hero-grid .eyebrow,
  .events-hero-grid .eyebrow {
    margin-inline: auto;
  }

  .inner-hero-grid > div:first-child > p,
  .events-hero-grid > div:first-child > p {
    margin-inline: auto;
  }

  .solution-detail-list > article {
    grid-template-columns: 50px 55px 1fr 40px;
    padding-block: 28px;
  }

  .solution-detail-list ul {
    grid-column: 3 / 4;
  }

  .solution-detail-list article > a {
    grid-column: 4;
    grid-row: 1 / 3;
  }

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

  .event-card--featured .event-cover {
    min-height: 360px;
  }

  .event-content {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .registration-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .product-hero {
    gap: 28px;
    padding-block: 40px 55px;
  }

  .breadcrumbs {
    margin-bottom: 25px;
    overflow: auto;
    white-space: nowrap;
  }

  .product-hero-copy h1,
  .inner-hero-grid > div:first-child h1,
  .events-hero-grid h1,
  .event-detail-copy h1 {
    font-size: 39px;
    letter-spacing: -2px;
  }

  .product-stat-row {
    gap: 15px;
  }

  .product-stat-row > div {
    min-width: 82px;
  }

  .product-hero-visual {
    min-height: 380px;
  }

  .product-hero-visual .stage-orbit {
    display: none;
  }

  .product-demo {
    min-height: 335px;
    padding: 17px;
    transform: none;
  }

  .finance-chart {
    height: 140px;
  }

  .product-feature-section {
    padding-block: 75px;
  }

  .product-feature-grid {
    grid-template-columns: 1fr;
  }

  .product-feature-grid article {
    min-height: auto;
  }

  .product-modules {
    padding-block: 75px;
  }

  .module-list {
    grid-template-columns: 1fr;
  }

  .mini-cta {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    margin-block: 65px;
    padding: 33px 24px;
  }

  .mini-cta .button {
    width: 100%;
  }

  .inner-hero,
  .events-hero {
    min-height: auto;
    padding-block: 40px 60px;
  }

  .solution-orbit {
    min-height: 360px;
    transform: scale(0.82);
  }

  .solution-detail-list > article {
    grid-template-columns: 45px 1fr 38px;
    gap: 15px;
  }

  .solution-number {
    display: none;
  }

  .solution-detail-copy {
    grid-column: 2;
  }

  .solution-detail-list ul {
    grid-column: 2 / 4;
  }

  .solution-detail-list article > a {
    grid-column: 3;
  }

  .integration-band {
    gap: 40px;
    padding-block: 70px;
  }

  .integration-visual {
    height: 320px;
  }

  .events-hero-stats {
    justify-content: center;
  }

  .academy-visual {
    min-height: 330px;
    transform: scale(0.88);
  }

  .featured-event {
    padding-bottom: 55px;
  }

  .event-card--featured .event-cover {
    min-height: 290px;
  }

  .events-list {
    padding-block: 65px 80px;
  }

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

  .events-grid .event-card {
    min-height: auto;
  }

  .event-detail-hero {
    padding-block: 40px 60px;
  }

  .event-detail-cover {
    min-height: 360px;
  }

  .event-detail-meta {
    grid-template-columns: 1fr;
  }

  .event-content {
    padding-block: 65px 80px;
  }
}
