:root {
  color-scheme: dark;
  --bg: #070a12;
  --bg2: #0b1322;
  --panel: rgba(14, 22, 36, .82);
  --panel2: rgba(20, 31, 50, .92);
  --line: rgba(160, 202, 255, .16);
  --line2: rgba(36, 220, 255, .38);
  --text: #edf7ff;
  --muted: #9aabc1;
  --heading: #ffffff;
  --cyan: #16d8ff;
  --blue: #2d7dff;
  --volt: #ffd35c;
  --green: #35e49a;
  --red: #ff5c75;
  --shadow: 0 28px 90px rgba(0, 0, 0, .42);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at 76% 10%, rgba(22,216,255,.18), transparent 27rem),
    radial-gradient(circle at 18% 28%, rgba(255,211,92,.12), transparent 24rem),
    linear-gradient(135deg, #05070d, var(--bg2) 52%, #04060b);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
  pointer-events: none;
}

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 18%, rgba(255,211,92,.22) 18.2%, transparent 18.5%),
    linear-gradient(106deg, transparent 77%, rgba(22,216,255,.28) 77.2%, transparent 77.5%);
  opacity: .55;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
svg { width: 19px; height: 19px; stroke-width: 2.25; }
section[id] { scroll-margin-top: 96px; }

.shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section-pad { padding: 78px 0; }

.topbar {
  position: sticky;
  top: 12px;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  margin: 12px auto 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 8, 15, .84);
  box-shadow: 0 16px 50px rgba(0,0,0,.3);
  backdrop-filter: blur(20px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heading);
  font-size: 22px;
  font-weight: 950;
  white-space: nowrap;
}

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

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--heading); background: rgba(255,255,255,.06); }
.top-actions { display: flex; align-items: center; gap: 8px; }

.top-whatsapp,
.btn,
.nav-toggle {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--heading);
  background: rgba(255,255,255,.06);
}

.top-whatsapp {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #06101a;
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--volt));
  font-weight: 950;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  margin: 2px 0;
  background: var(--heading);
  display: block;
}

.mobile-drawer {
  position: fixed;
  inset: 88px 16px auto 16px;
  z-index: 45;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5,8,15,.96);
  box-shadow: var(--shadow);
}

.mobile-drawer.is-open { display: grid; gap: 8px; }
.mobile-drawer a { padding: 13px; border-radius: 8px; background: rgba(255,255,255,.06); font-weight: 900; }

.btn {
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 950;
  cursor: pointer;
}

.btn.primary {
  border-color: transparent;
  color: #06101a;
  background: linear-gradient(135deg, var(--blue), var(--cyan) 62%, var(--volt));
  box-shadow: 0 20px 55px rgba(22,216,255,.24);
}

.btn.secondary { background: rgba(255,255,255,.075); }
.btn.quiet { color: var(--volt); border-color: rgba(255,211,92,.38); background: rgba(255,211,92,.08); }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 36px;
  align-items: center;
  padding: 62px 0 38px;
}

.hero-content { min-width: 0; }
.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(22,216,255,.34);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(22,216,255,.08);
  font-size: 12px;
  font-weight: 950;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  color: var(--heading);
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.1;
  font-weight: 950;
}
h2 {
  margin-bottom: 12px;
  color: var(--heading);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.22;
  font-weight: 950;
}

.hero p,
.section-head p,
.operation-panel p,
.trial-card p,
.platform-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.saas-hero-metrics {
  max-width: 620px;
  margin: 24px 0 2px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(16px);
}

.saas-hero-metrics span {
  min-height: 82px;
  padding: 12px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-inline-start: 1px solid rgba(255,255,255,.09);
}

.saas-hero-metrics span:last-child { border-inline-start: 0; }
.saas-hero-metrics strong { color: var(--heading); font-size: 19px; }
.saas-hero-metrics small { color: var(--muted); font-size: 12px; }

.hero-visual {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #070b13;
  box-shadow: var(--shadow);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
  filter: saturate(1.08) contrast(1.08);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,7,13,.72), transparent 46%, rgba(5,7,13,.82));
}

.screen,
.hero-chip {
  position: absolute;
  z-index: 2;
}

.screen {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: #04070d;
  box-shadow: 0 26px 70px rgba(0,0,0,.48);
}

.desktop-screen {
  right: 6%;
  top: 72px;
  width: 76%;
  padding: 10px;
  border-radius: 8px;
}

.desktop-screen img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.mobile-screen {
  left: 9%;
  bottom: 48px;
  width: 176px;
  height: 356px;
  border: 8px solid #070b13;
  border-radius: 32px;
  transform: rotate(-5deg);
}

.mobile-screen img { width: 100%; height: 100%; object-fit: cover; }

.hero-chip {
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(5,8,15,.84);
  backdrop-filter: blur(14px);
  color: var(--heading);
  font-weight: 950;
}

.chip-one { top: 32px; right: 10%; color: var(--volt); }
.chip-two { bottom: 38px; right: 18%; color: var(--green); }

.quick-strip,
.platform-grid,
.capability-grid,
.download-grid {
  display: grid;
  gap: 14px;
}

.quick-strip {
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 46px;
}

.quick-strip article,
.platform-card,
.capability-grid article,
.operation-panel,
.trial-card,
.download-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(19,30,48,.86), rgba(7,11,20,.76));
  box-shadow: 0 18px 54px rgba(0,0,0,.18);
}

.quick-strip article {
  min-height: 138px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 9px;
}

.quick-strip i,
.capability-grid i,
.download-card i {
  color: var(--volt);
}

.quick-strip strong,
.download-card strong,
.platform-card strong,
.capability-grid strong {
  color: var(--heading);
  font-size: 18px;
}

.quick-strip span,
.download-card span,
.capability-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.saas-overview {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.saas-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
}

.saas-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.saas-points span {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heading);
  font-weight: 900;
}

.saas-points span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--volt);
  box-shadow: 0 0 24px rgba(255,211,92,.6);
}

.saas-console {
  position: relative;
  min-height: 480px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(22,216,255,.16), transparent 40%),
    linear-gradient(315deg, rgba(255,211,92,.1), transparent 42%),
    rgba(5,8,16,.82);
  box-shadow: 0 34px 120px rgba(0,0,0,.42);
  overflow: hidden;
}

.saas-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
  pointer-events: none;
}

.console-top,
.console-metrics,
.console-flow,
.console-table {
  position: relative;
  z-index: 1;
}

.console-top {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.console-top strong { color: var(--heading); font-size: 22px; }
.console-top span { color: var(--green); font-weight: 950; }

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

.console-metrics span {
  min-height: 108px;
  padding: 16px;
  display: grid;
  align-content: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
}

.console-metrics b { color: var(--heading); font-size: 24px; }
.console-metrics small { color: var(--muted); }

.console-flow {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  align-items: center;
  gap: 8px;
}

.console-flow span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22,216,255,.22);
  border-radius: 999px;
  color: var(--heading);
  background: rgba(22,216,255,.08);
  font-weight: 950;
}

.console-flow i {
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--volt));
}

.console-table {
  display: grid;
  gap: 8px;
}

.console-table p {
  margin: 0;
  min-height: 54px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.055);
}

.console-table b { color: var(--heading); }
.console-table em { color: var(--volt); font-style: normal; font-weight: 950; }

@keyframes voltDrift {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .45; }
  50% { transform: translate3d(-18px, 24px, 0); opacity: .75; }
}

@keyframes screenFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes phoneFloat {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-14px); }
}

@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(22,216,255,0); }
  50% { box-shadow: 0 0 34px rgba(22,216,255,.22); }
}

@keyframes rowSignal {
  0%, 100% { background: rgba(255,255,255,.055); }
  45% { background: rgba(22,216,255,.13); }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-glow {
  animation: voltDrift 9s ease-in-out infinite;
}

.hero-content,
.quick-strip,
.saas-overview,
.platforms,
.capabilities,
.operations,
.trial,
.downloads {
  animation: revealUp .75s ease both;
}

.hero-visual {
  animation: revealUp .9s ease both;
}

.desktop-screen {
  animation: screenFloat 7s ease-in-out infinite;
}

.mobile-screen {
  animation: phoneFloat 6.5s ease-in-out infinite;
}

.hero-chip,
.saas-hero-metrics,
.saas-console {
  animation: softPulse 5.8s ease-in-out infinite;
}

.console-table p:nth-child(1) { animation: rowSignal 6s ease-in-out infinite; }
.console-table p:nth-child(2) { animation: rowSignal 6s ease-in-out 1.4s infinite; }
.console-table p:nth-child(3) { animation: rowSignal 6s ease-in-out 2.8s infinite; }
.console-table p:nth-child(4) { animation: rowSignal 6s ease-in-out 4.2s infinite; }

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

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

.platform-card {
  overflow: hidden;
}

.platform-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #05070d;
}

.platform-card div { padding: 18px; }
.platform-card.featured { border-color: rgba(22,216,255,.38); }

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

.capability-grid article {
  min-height: 210px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.operation-panel,
.trial-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.operation-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.operation-list span {
  min-height: 52px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  font-weight: 900;
}

.trial-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.trial-actions .btn { grid-column: 1 / -1; }

.credential {
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255,211,92,.38);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255,211,92,.08);
  cursor: pointer;
  text-align: start;
}

.credential span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.credential strong {
  color: var(--volt);
  font-size: 22px;
}

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

.download-card {
  min-height: 170px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer strong {
  display: block;
  color: var(--heading);
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.demo-modal.is-open { display: block; }
.demo-modal-backdrop { position: absolute; inset: 0; background: rgba(2,5,10,.78); backdrop-filter: blur(18px); }
.demo-modal-panel {
  position: absolute;
  inset: 22px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(22,216,255,.3);
  border-radius: 8px;
  background: #05080f;
  box-shadow: 0 36px 120px rgba(0,0,0,.62);
}

.demo-modal-head {
  min-height: 62px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.045);
}

.demo-modal-head strong { display: block; color: var(--heading); font-size: 18px; }
.demo-modal-head span { color: var(--muted); font-size: 12px; }
.demo-modal-head button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--heading);
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.mini-app {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: 230px 1fr;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15,24,42,.92), rgba(5,8,16,.9));
}

.mini-sidebar {
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 8px;
  overflow-y: auto;
  border-inline-start: 1px solid var(--line);
  background: rgba(3,6,12,.56);
}

.mini-brand {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
}

.mini-brand img { width: 40px; height: 40px; border-radius: 8px; }
.mini-brand strong, .mini-top strong { display: block; color: var(--heading); }
.mini-brand span, .mini-top span { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }

.mini-nav {
  min-height: 45px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-align: start;
}
.mini-nav:hover, .mini-nav.active { color: var(--heading); border-color: rgba(22,216,255,.28); background: rgba(22,216,255,.1); }
.mini-nav.active i { color: var(--volt); }

.mini-workspace { min-width: 0; display: grid; grid-template-rows: auto 1fr; }
.mini-top {
  min-height: 76px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}
.mini-top-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.mini-top-actions button, .mini-action, .mini-icon-btn {
  min-height: 38px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--heading);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  font-weight: 900;
}

.mini-content { min-width: 0; padding: 16px; overflow-y: auto; }
.mini-grid, .mini-kpi-grid, .mini-table-grid { display: grid; gap: 12px; }
.mini-kpi-grid { grid-template-columns: repeat(4, 1fr); margin-bottom: 12px; }
.mini-kpi, .mini-panel, .mini-product, .mini-customer, .mini-service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.052);
}
.mini-kpi { min-height: 112px; padding: 16px; display: grid; align-content: center; gap: 7px; }
.mini-kpi span, .mini-muted { color: var(--muted); }
.mini-kpi strong { color: var(--heading); font-size: 24px; }
.mini-kpi small { color: var(--green); font-weight: 900; }
.mini-grid.two { grid-template-columns: 1fr 1fr; }
.mini-grid.three { grid-template-columns: repeat(3, 1fr); }
.mini-panel { padding: 14px; min-width: 0; }
.mini-panel h3 { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mini-list { display: grid; gap: 8px; }
.mini-list-row, .mini-table-row {
  min-height: 46px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1.2fr .8fr .7fr auto;
  gap: 10px;
  align-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,.045);
}
.mini-list-row span, .mini-table-row span { color: var(--muted); }
.mini-status {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(53,228,154,.11);
  font-size: 12px;
  font-weight: 950;
}
.mini-status.warn { color: var(--volt); background: rgba(255,211,92,.12); }
.mini-status.danger { color: var(--red); background: rgba(255,92,117,.12); }
.mini-pos-layout { display: grid; grid-template-columns: 1fr 370px; gap: 12px; }
.mini-toolbar { display: flex; gap: 8px; margin-bottom: 12px; }
.mini-input, .mini-select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(5,8,16,.72);
}
.mini-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mini-product { padding: 12px; display: grid; gap: 10px; cursor: pointer; text-align: start; color: var(--text); }
.mini-product-img {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #07101d;
  background: linear-gradient(135deg, var(--cyan), var(--volt));
  font-size: 22px;
  font-weight: 950;
}
.mini-product strong { min-height: 42px; }
.mini-product small { color: var(--muted); }
.mini-cart { display: grid; grid-template-rows: auto 1fr auto; min-height: 580px; }
.mini-cart-items { display: grid; align-content: start; gap: 8px; }
.mini-cart-row {
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,.052);
}
.mini-cart-row small { display: block; margin-top: 4px; color: var(--muted); }
.mini-cart-total { display: grid; gap: 8px; padding-top: 12px; margin-top: 12px; border-top: 1px solid var(--line); }
.mini-cart-total div { display: flex; justify-content: space-between; gap: 10px; }
.mini-cart-total .grand { color: var(--volt); font-size: 20px; font-weight: 950; }
.mini-form { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.mini-form .wide { grid-column: span 2; }
.mini-dashboard-hero {
  min-height: 166px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255,211,92,.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,211,92,.12), transparent 38%), rgba(255,255,255,.045);
}
.mini-dashboard-hero strong { color: var(--heading); font-size: 28px; }
.demo-command-center {
  margin-bottom: 12px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22,216,255,.12), transparent 52%),
    rgba(255,255,255,.045);
}

.demo-command-center strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--heading);
  font-size: 30px;
}

.demo-command-center p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.demo-command-actions {
  display: grid;
  gap: 8px;
}

.demo-feature-flow {
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
}

.demo-feature-card {
  min-height: 138px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 0;
  border-inline-start: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--text);
  background: transparent;
  text-align: start;
  cursor: pointer;
}

.demo-feature-card:nth-child(4n) { border-inline-start: 0; }
.demo-feature-card:nth-last-child(-n + 2) { border-bottom: 0; }

.demo-feature-card:hover {
  background: linear-gradient(145deg, rgba(22,216,255,.12), transparent 62%);
}

.demo-feature-card i {
  color: var(--volt);
}

.demo-feature-card strong {
  display: block;
  color: var(--heading);
  margin-bottom: 6px;
}

.demo-feature-card small {
  color: var(--muted);
  line-height: 1.7;
}
.mini-customer, .mini-service-card { min-height: 130px; padding: 14px; display: grid; align-content: start; gap: 8px; }
.mini-customer strong, .mini-service-card strong { color: var(--heading); }
.mini-customer span, .mini-service-card span { color: var(--muted); }
.mini-settings { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mini-bars { display: grid; gap: 10px; }
.mini-bar { display: grid; gap: 6px; }
.mini-bar span { display: flex; justify-content: space-between; color: var(--muted); }
.mini-bar i { display: block; height: 9px; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--volt)); }
.demo-cart-empty {
  min-height: 170px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.copy-toast {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 140;
  transform: translateY(18px);
  opacity: 0;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--heading);
  background: rgba(5,8,16,.92);
  box-shadow: var(--shadow);
  transition: .22s ease;
}
.copy-toast.show { transform: translateY(0); opacity: 1; }

@media (max-width: 1050px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .saas-overview { grid-template-columns: 1fr; }
  .console-flow { grid-template-columns: 1fr; }
  .console-flow i { display: none; }
  .quick-strip, .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid, .download-grid { grid-template-columns: 1fr; }
  .operation-panel, .trial-card { grid-template-columns: 1fr; }
  .mini-app { grid-template-columns: 1fr; }
  .mini-sidebar { display: flex; overflow-x: auto; border-inline-start: 0; border-bottom: 1px solid var(--line); }
  .mini-brand { min-width: 190px; margin-bottom: 0; }
  .mini-nav { min-width: 132px; justify-content: center; }
  .mini-pos-layout { grid-template-columns: 1fr; }
  .mini-products { grid-template-columns: repeat(2, 1fr); }
  .mini-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-grid.two, .mini-grid.three, .mini-settings { grid-template-columns: 1fr; }
  .demo-command-center { grid-template-columns: 1fr; }
  .demo-feature-flow { grid-template-columns: repeat(2, 1fr); }
  .demo-feature-card:nth-child(n) { border-inline-start: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
  .demo-feature-card:nth-child(2n) { border-inline-start: 0; }
}

@media (max-width: 700px) {
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  .shell, .topbar { width: min(100% - 22px, 1180px); }
  .topbar { min-height: 62px; top: 8px; }
  .brand span { display: none; }
  .top-whatsapp { min-width: 94px; padding: 0 11px; }
  .section-pad { padding: 48px 0; }
  .hero { padding: 44px 0 28px; gap: 24px; text-align: center; }
  .eyebrow { margin-inline: auto; }
  h1 { font-size: 37px; line-height: 1.12; }
  h2 { font-size: 29px; }
  .hero p { max-width: 330px; margin-inline: auto; font-size: 16px; }
  .saas-hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .saas-console { min-height: 0; padding: 14px; }
  .console-metrics { grid-template-columns: 1fr; }
  .demo-feature-flow { grid-template-columns: 1fr; }
  .demo-feature-card:nth-child(n) { border-inline-start: 0; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; }
  .desktop-screen { right: 50%; translate: 50% 0; top: 46px; width: 88%; }
  .mobile-screen { left: 50%; translate: -50% 0; bottom: 24px; width: 128px; height: 264px; }
  .chip-one { top: 14px; right: 50%; translate: 50% 0; }
  .chip-two { display: none; }
  .quick-strip, .capability-grid, .operation-list, .trial-actions, .download-grid, .mini-kpi-grid, .mini-products, .mini-form { grid-template-columns: 1fr; }
  .platform-card img { height: 220px; }
  .demo-modal-panel { inset: 8px; }
  .demo-modal-head { min-height: 58px; }
  .mini-content { padding: 12px; }
  .mini-list-row, .mini-table-row { grid-template-columns: 1fr; }
  .mini-form .wide { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Premium presentation pass */
.quick-strip {
  margin-top: 18px;
  padding: 18px 0 50px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(90deg, transparent, rgba(22,216,255,.06), rgba(255,211,92,.045), transparent);
}

.quick-strip article {
  border: 0;
  border-inline-start: 1px solid rgba(255,255,255,.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quick-strip article:last-child { border-inline-start: 0; }

.platform-card {
  border-color: rgba(255,255,255,.1);
  background:
    linear-gradient(160deg, rgba(22,216,255,.12), transparent 42%),
    rgba(8,13,24,.72);
}

.capability-grid {
  gap: 0;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.028);
}

.capability-grid article {
  min-height: 188px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-inline-start: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: none;
}

.capability-grid article:nth-child(3n) { border-inline-start: 0; }
.capability-grid article:nth-last-child(-n + 3) { border-bottom: 0; }

.operation-panel,
.trial-card {
  border: 0;
  background:
    linear-gradient(100deg, rgba(22,216,255,.11), transparent 46%),
    linear-gradient(260deg, rgba(255,211,92,.08), transparent 50%),
    rgba(8,13,24,.72);
}

.download-card {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* Polished interactive POS demo */
.pos-pro {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  grid-template-areas:
    "catalog checkout"
    "receipt checkout";
  gap: 14px;
}

.pos-catalog,
.pos-checkout,
.pos-receipt-preview {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(22,216,255,.08), transparent 38%),
    rgba(6,10,18,.84);
}

.pos-catalog {
  grid-area: catalog;
  padding: 16px;
}

.pos-catalog-head,
.pos-checkout-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.pos-catalog-head h3 {
  margin: 8px 0 4px;
  color: var(--heading);
  font-size: 26px;
}

.pos-catalog-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pos-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 10px;
  margin: 16px 0 10px;
}

.pos-search {
  position: relative;
  display: block;
}

.pos-search i {
  position: absolute;
  top: 50%;
  inset-inline-start: 12px;
  translate: 0 -50%;
  color: var(--muted);
  z-index: 1;
}

.pos-search .mini-input {
  padding-inline-start: 42px;
}

.pos-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.pos-chips button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,.055);
  white-space: nowrap;
  cursor: pointer;
}

.pos-chips button:first-child {
  color: #06111f;
  background: linear-gradient(135deg, var(--cyan), var(--volt));
}

.pos-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 10px;
}

.pos-card {
  min-height: 218px;
  padding: 11px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 98px 1fr;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255,255,255,.045);
  cursor: pointer;
  text-align: start;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.pos-card:hover {
  transform: translateY(-2px);
  border-color: rgba(22,216,255,.38);
  background: rgba(22,216,255,.07);
}

.pos-card-art {
  width: 100%;
  min-width: 0;
  height: 98px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22,216,255,.85), rgba(255,211,92,.88)),
    #0b1322;
}

.pos-card-art span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #06101d;
  background: rgba(255,255,255,.38);
  font-size: 18px;
  font-weight: 950;
}

.pos-card-body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 6px;
}

.pos-card-body strong {
  color: var(--heading);
  line-height: 1.35;
  min-height: 42px;
  overflow-wrap: anywhere;
}

.pos-card-body small {
  color: var(--muted);
}

.pos-card-body em {
  color: var(--volt);
  font-style: normal;
  font-size: 18px;
  font-weight: 950;
}

.pos-checkout {
  grid-area: checkout;
  min-height: 0;
  padding: 15px;
  display: grid;
  grid-template-rows: auto auto minmax(150px, 1fr) auto auto;
  gap: 12px;
}

.pos-checkout-head {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.pos-checkout-head span {
  display: block;
  color: var(--muted);
  margin-bottom: 3px;
}

.pos-checkout-head strong {
  color: var(--heading);
  font-size: 22px;
}

.pos-checkout-head em {
  color: var(--green);
  font-style: normal;
  font-weight: 950;
}

.pos-mini-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.pos-mini-fields label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.pos-cart-list {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  overflow-y: auto;
  padding-inline-end: 2px;
}

.pos-cart-item {
  min-height: 62px;
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 9px;
  border-radius: 8px;
  background: rgba(255,255,255,.052);
}

.pos-cart-item strong {
  color: var(--heading);
}

.pos-cart-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.pos-cart-item > span {
  color: var(--volt);
  font-weight: 950;
  white-space: nowrap;
}

.pos-summary {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.045);
}

.pos-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.pos-summary strong {
  color: var(--heading);
}

.pos-summary .grand {
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: var(--volt);
  font-size: 19px;
  font-weight: 950;
}

.pos-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.pos-action-grid .btn {
  grid-column: 1 / -1;
  min-height: 48px;
}

.pos-receipt-preview {
  grid-area: receipt;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.pos-receipt-preview strong {
  color: var(--heading);
  font-size: 18px;
}

.pos-receipt-preview > span,
.pos-receipt-preview > div {
  color: var(--muted);
}

.pos-receipt-preview p,
.pos-receipt-preview footer {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
}

.pos-receipt-preview em {
  color: var(--volt);
  font-style: normal;
}

.pos-receipt-preview footer {
  padding-top: 9px;
  border-top: 1px dashed rgba(255,255,255,.18);
  color: var(--green);
  font-weight: 950;
}

@media (max-width: 1050px) {
  .capability-grid article:nth-child(n) {
    border-inline-start: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .capability-grid article:last-child {
    border-bottom: 0;
  }

  .pos-pro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "catalog"
      "checkout"
      "receipt";
  }

  .pos-checkout {
    min-height: 640px;
  }
}

@media (max-width: 700px) {
  .demo-modal {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .topbar {
    z-index: 90;
  }

  .quick-strip {
    display: grid;
    gap: 0;
    padding-inline: 0;
  }

  .quick-strip article {
    border-inline-start: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .quick-strip article:last-child {
    border-bottom: 0;
  }

  .platform-card,
  .operation-panel,
  .trial-card {
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
  }

  .demo-modal-panel {
    inset: 0;
    border: 0;
    border-radius: 0;
  }

  .demo-modal-head {
    padding: max(8px, env(safe-area-inset-top)) 10px 8px;
    max-width: 100vw;
    overflow: hidden;
  }

  .demo-modal-head strong {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .demo-modal-head span {
    display: none;
  }

  .mini-app {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
  }

  .mini-sidebar {
    width: 100%;
    max-width: 100vw;
    padding: 8px;
    gap: 6px;
    direction: ltr;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
  }

  .mini-sidebar > * {
    direction: rtl;
  }

  .mini-brand {
    display: none;
  }

  .mini-brand span {
    display: none;
  }

  .mini-nav {
    flex: 0 0 auto;
    min-width: 112px;
    min-height: 42px;
    padding: 0 9px;
    font-size: 12px;
  }

  .mini-workspace {
    width: 100%;
    max-width: 100vw;
    min-height: 0;
    overflow: hidden;
  }

  .mini-top {
    min-height: 64px;
    padding: 10px;
  }

  .mini-top-actions {
    display: none;
  }

  .mini-content {
    width: 100%;
    max-width: 100vw;
    min-height: 0;
    padding: 10px;
    direction: ltr;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .mini-content > * {
    direction: rtl;
  }

  .pos-pro,
  .pos-products,
  .pos-search-row,
  .pos-chips,
  .pos-catalog-head,
  .pos-mini-fields,
  .pos-action-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .pos-catalog,
  .pos-checkout,
  .pos-receipt-preview {
    width: 100%;
    max-width: calc(100vw - 20px);
    min-width: 0;
    padding: 11px;
  }

  .pos-catalog-head {
    display: grid;
  }

  .pos-catalog-head h3 {
    font-size: 22px;
  }

  .pos-search-row,
  .pos-mini-fields,
  .pos-action-grid {
    grid-template-columns: 1fr;
  }

  .pos-products {
    grid-template-columns: 1fr;
  }

  .pos-card {
    min-height: 188px;
    grid-template-columns: 1fr;
    grid-template-rows: 78px 1fr;
  }

  .pos-card-art {
    height: 78px;
  }

  .pos-checkout {
    min-height: 620px;
  }
}

/* Desktop visual rebuild: less boxes, stronger product theatre */
@media (min-width: 901px) {
  body {
    background:
      radial-gradient(circle at 74% 12%, rgba(22,216,255,.22), transparent 28rem),
      radial-gradient(circle at 30% 42%, rgba(255,211,92,.12), transparent 32rem),
      linear-gradient(145deg, #02040a 0%, #07111e 46%, #03050b 100%);
  }

  body::before {
    background:
      linear-gradient(110deg, transparent 0 34%, rgba(22,216,255,.16) 34.12%, transparent 34.35%),
      linear-gradient(112deg, transparent 0 68%, rgba(255,211,92,.16) 68.12%, transparent 68.3%),
      linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: auto, auto, 112px 112px;
    opacity: .8;
  }

  .topbar {
    width: min(1220px, calc(100% - 46px));
    min-height: 74px;
    padding: 12px 14px;
    border-color: rgba(255,255,255,.12);
    background: rgba(4,8,15,.72);
    box-shadow: 0 24px 80px rgba(0,0,0,.34);
  }

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

  .hero {
    min-height: 790px;
    grid-template-columns: .92fr 1.08fr;
    gap: 56px;
    padding: 72px 0 42px;
    align-items: center;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-content::before {
    content: "";
    position: absolute;
    inset: -70px -42px -54px -18px;
    z-index: -1;
    background:
      linear-gradient(120deg, rgba(22,216,255,.15), transparent 58%),
      radial-gradient(circle at 72% 18%, rgba(255,211,92,.13), transparent 18rem);
    clip-path: polygon(0 0, 100% 8%, 84% 100%, 0 92%);
    opacity: .86;
  }

  h1 {
    max-width: 660px;
    font-size: clamp(56px, 5vw, 84px);
    line-height: 1.06;
    letter-spacing: 0;
  }

  .hero p {
    max-width: 620px;
    font-size: 19px;
    line-height: 2;
  }

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

  .btn {
    min-height: 52px;
    border-radius: 8px;
  }

  .hero-visual {
    min-height: 660px;
    border: 0;
    border-radius: 8px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .hero-photo {
    position: absolute;
    inset: 36px 0 0 34px;
    width: 82%;
    height: 590px;
    border-radius: 8px;
    object-fit: cover;
    opacity: .48;
    filter: saturate(1.12) contrast(1.08);
    box-shadow: 0 38px 100px rgba(0,0,0,.48);
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 88%);
  }

  .desktop-screen {
    top: 72px;
    right: 18px;
    width: 82%;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 34px 110px rgba(0,0,0,.62);
  }

  .mobile-screen {
    left: 18px;
    bottom: 34px;
    width: 190px;
    height: 390px;
    border-width: 8px;
    box-shadow: 0 30px 92px rgba(0,0,0,.7);
  }

  .chip-one {
    top: 90px;
    right: 0;
  }

  .chip-two {
    bottom: 58px;
    right: 32%;
  }

  .quick-strip {
    grid-template-columns: repeat(4, 1fr);
    margin-top: -18px;
    padding: 26px 0;
    border: 0;
    background:
      linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent),
      linear-gradient(90deg, rgba(22,216,255,.18), rgba(255,211,92,.1), rgba(53,228,154,.1));
  }

  .quick-strip article {
    min-height: 104px;
    padding: 8px 24px;
    border: 0;
    border-inline-start: 1px solid rgba(255,255,255,.12);
    align-content: center;
  }

  .quick-strip article:last-child {
    border-inline-start: 0;
  }

  .quick-strip i {
    width: 30px;
    height: 30px;
  }

  .section-pad {
    padding: 106px 0;
  }

  .section-head {
    max-width: 820px;
    margin-bottom: 36px;
  }

  h2 {
    max-width: 900px;
    font-size: clamp(38px, 3.6vw, 58px);
    line-height: 1.14;
  }

  .platform-grid {
    grid-template-columns: 1.18fr .82fr;
    gap: 18px;
    align-items: stretch;
  }

  .platform-card {
    min-height: 360px;
    border: 0;
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(22,216,255,.14), transparent 48%),
      rgba(255,255,255,.045);
    box-shadow: none;
  }

  .platform-card:first-child {
    grid-row: span 2;
  }

  .platform-card:first-child img {
    height: 500px;
  }

  .platform-card img {
    height: 230px;
    border-radius: 8px;
    opacity: .92;
  }

  .platform-card div {
    padding: 24px 26px 28px;
  }

  .platform-card strong {
    font-size: 27px;
  }

  .platform-card p {
    font-size: 16px;
    line-height: 1.95;
  }

  .capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }

  .capability-grid article {
    min-height: 214px;
    padding: 28px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
    border-inline-start: 1px solid rgba(255,255,255,.09);
    background: transparent;
    box-shadow: none;
    transition: background .2s ease, transform .2s ease;
  }

  .capability-grid article:hover {
    transform: translateY(-3px);
    background: linear-gradient(160deg, rgba(22,216,255,.1), transparent 62%);
  }

  .capability-grid article:nth-child(3n) {
    border-inline-start: 0;
  }

  .capability-grid article:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .capability-grid i {
    width: 30px;
    height: 30px;
  }

  .capability-grid strong {
    font-size: 24px;
  }

  .capability-grid span {
    font-size: 15px;
    line-height: 1.9;
  }

  .operation-panel {
    min-height: 430px;
    padding: 54px;
    border: 0;
    border-radius: 8px;
    background:
      linear-gradient(110deg, rgba(22,216,255,.18), transparent 42%),
      linear-gradient(260deg, rgba(255,211,92,.12), transparent 48%),
      rgba(255,255,255,.045);
    box-shadow: 0 36px 120px rgba(0,0,0,.28);
  }

  .operation-panel p {
    font-size: 17px;
    line-height: 2;
  }

  .operation-list {
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .operation-list span {
    min-height: 66px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    border-radius: 0;
    background: transparent;
    font-size: 17px;
  }

  .trial-card {
    min-height: 360px;
    padding: 46px 54px;
    border: 0;
    background:
      radial-gradient(circle at 25% 30%, rgba(255,211,92,.18), transparent 17rem),
      linear-gradient(110deg, rgba(22,216,255,.11), transparent 56%),
      rgba(255,255,255,.045);
  }

  .trial-card p {
    font-size: 17px;
    line-height: 2;
  }

  .trial-actions {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .credential {
    min-height: 112px;
    background: rgba(5,8,16,.42);
  }

  .download-grid {
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .download-card {
    min-height: 230px;
    padding: 28px;
    border-top: 0;
    border-inline-start: 1px solid rgba(255,255,255,.1);
    background: linear-gradient(180deg, rgba(255,255,255,.04), transparent);
  }

  .download-card:last-child {
    border-inline-start: 0;
  }

  .download-card:hover {
    background: linear-gradient(150deg, rgba(22,216,255,.11), rgba(255,211,92,.06));
  }

  .download-card strong {
    font-size: 26px;
  }
}
