@font-face {
  font-family: "Space Grotesk Local";
  src: url("../aprovei.tech/fonts.gstatic.com/s/spacegrotesk/v22/V8mDoQDjQSkFtoMM3T6r8E7mPbF4C_k3HqU.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Inter Local";
  src: url("../aprovei.tech/fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0Q5nw.woff2") format("woff2");
  font-display: swap;
}

:root {
  --bg: #020403;
  --bg-soft: #070c09;
  --surface: rgba(10, 16, 13, 0.82);
  --surface-strong: #0c1511;
  --line: rgba(64, 255, 186, 0.14);
  --line-strong: rgba(56, 255, 204, 0.42);
  --text: #f4fff9;
  --muted: #99b7aa;
  --faint: #52685f;
  --accent: #20f7a5;
  --accent-2: #42f6ff;
  --accent-3: #b7ff5d;
  --danger: #ff7c7c;
  --gradient-primary: linear-gradient(135deg, #20f7a5 0%, #41ffd0 48%, #42f6ff 100%);
  --gradient-card: linear-gradient(180deg, rgba(16, 25, 21, 0.9) 0%, rgba(5, 8, 7, 0.95) 100%);
  --gradient-ink: radial-gradient(ellipse at top, rgba(32, 247, 165, 0.16), transparent 58%);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  --shadow-glow: 0 0 56px rgba(32, 247, 165, 0.36);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
  --display: "Space Grotesk Local", "Trebuchet MS", sans-serif;
  --body: "Inter Local", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(ellipse at 18% 15%, rgba(32, 247, 165, 0.1), transparent 30rem),
    radial-gradient(ellipse at 84% 14%, rgba(66, 246, 255, 0.08), transparent 34rem),
    radial-gradient(ellipse at 50% 38%, rgba(183, 255, 93, 0.028), transparent 40rem),
    linear-gradient(135deg, #030604 0%, #050806 34%, #020303 68%, #000101 100%);
  font-family: var(--body);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(84, 255, 191, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 255, 191, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), transparent 72%);
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(32, 247, 165, 0.055), transparent 48%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.52) 100%);
  z-index: -1;
}

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

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

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}

main {
  position: relative;
  overflow: hidden;
}

main::before,
main::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

main::before {
  inset: 84px -14vw auto;
  height: 1120px;
  background:
    radial-gradient(ellipse at 18% 32%, rgba(32, 247, 165, 0.28), transparent 22%),
    radial-gradient(ellipse at 76% 40%, rgba(66, 246, 255, 0.2), transparent 24%),
    radial-gradient(ellipse at 50% 52%, rgba(32, 247, 165, 0.12), transparent 42%);
  filter: blur(72px) saturate(1.18);
  mix-blend-mode: screen;
  opacity: 0.74;
  transform: translateZ(0);
  animation: ambient-breathe 16s ease-in-out infinite alternate;
}

main::after {
  top: min(930px, 86vh);
  left: -12vw;
  width: 124vw;
  height: 168px;
  background:
    linear-gradient(176deg, transparent 18%, rgba(35, 255, 176, 0.28) 19%, transparent 20%),
    linear-gradient(176deg, transparent 58%, rgba(66, 246, 255, 0.16) 59%, transparent 60%);
  filter: drop-shadow(0 0 22px rgba(32, 247, 165, 0.32));
  opacity: 0.78;
}

main > * {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(32, 247, 165, 0.32), rgba(66, 246, 255, 0.08)),
    #07100c;
  color: var(--accent);
  box-shadow: 0 0 28px rgba(32, 247, 165, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 18px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}

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

.language-select {
  min-width: 122px;
  height: 40px;
  color: var(--text);
  background: rgba(6, 12, 8, 0.8);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  outline: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 14, 10, 0.92);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #041007;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 42%),
    var(--gradient-primary);
  box-shadow: 0 0 0 1px rgba(143, 255, 223, 0.28), 0 18px 52px rgba(32, 247, 165, 0.3);
}

.btn-secondary,
.btn-ghost {
  color: var(--text);
  background: linear-gradient(180deg, rgba(16, 28, 22, 0.82), rgba(5, 9, 7, 0.82));
  border-color: var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(20, 42, 31, 0.92), rgba(7, 13, 10, 0.94));
  box-shadow: 0 0 28px rgba(32, 247, 165, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.section-pad {
  width: var(--container);
  margin: 0 auto;
  padding: 94px 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding-top: 42px;
}

.hero::before {
  content: "";
  position: absolute;
  left: -18vw;
  top: 18%;
  width: min(520px, 45vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(32, 247, 165, 0.16), transparent 58%),
    radial-gradient(circle at 64% 42%, rgba(66, 246, 255, 0.08), transparent 42%);
  filter: blur(28px);
  opacity: 0.82;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  right: -18vw;
  top: 9%;
  width: min(780px, 58vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 50%, rgba(66, 246, 255, 0.13), transparent 34%),
    radial-gradient(circle at 48% 50%, rgba(32, 247, 165, 0.12), transparent 57%);
  filter: blur(44px);
  opacity: 0.78;
  pointer-events: none;
  z-index: 0;
  animation: ambient-breathe 18s ease-in-out infinite alternate-reverse;
}

.hero-orbit {
  position: absolute;
  right: -8vw;
  top: 6vh;
  width: 46vw;
  aspect-ratio: 1;
  border: 1px solid rgba(32, 247, 165, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(32, 247, 165, 0.12), transparent 54%),
    radial-gradient(circle at 62% 38%, rgba(66, 246, 255, 0.1), transparent 42%);
  box-shadow: inset 0 0 80px rgba(32, 247, 165, 0.04);
  filter: blur(0.5px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.9fr);
  gap: clamp(44px, 5vw, 68px);
  align-items: center;
}

.hero-copy,
.hero-product {
  min-width: 0;
}

.hero-copy {
  position: relative;
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-copy::before {
  left: -11%;
  top: 62px;
  width: min(700px, 64vw);
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 43% 48%, rgba(32, 247, 165, 0.28), transparent 31%),
    radial-gradient(ellipse at 58% 50%, rgba(66, 246, 255, 0.13), transparent 56%),
    radial-gradient(ellipse at 50% 54%, rgba(183, 255, 93, 0.055), transparent 66%);
  filter: blur(64px) saturate(1.08);
  mix-blend-mode: screen;
  opacity: 0.58;
  transform: rotate(-8deg);
}

.hero-copy::after {
  left: 2%;
  top: 152px;
  width: min(470px, 48vw);
  height: 150px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 52% 50%, rgba(32, 247, 165, 0.18), transparent 64%),
    rgba(66, 246, 255, 0.06);
  filter: blur(48px);
  opacity: 0.38;
  transform: rotate(5deg);
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.service-strip a {
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  background:
    linear-gradient(180deg, rgba(32, 247, 165, 0.06), rgba(0, 0, 0, 0.06)),
    rgba(4, 9, 7, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: 570px;
  font-size: clamp(31px, 3.45vw, 48px);
  line-height: 1.12;
}

.hero h1 {
  position: relative;
  width: min(100%, 570px);
  overflow-wrap: break-word;
  text-wrap: balance;
  text-shadow:
    0 0 24px rgba(32, 247, 165, 0.12),
    0 0 78px rgba(66, 246, 255, 0.06);
}

.hero h1::before {
  content: "";
  position: absolute;
  inset: -24% -12% -18% -10%;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 46% 50%, rgba(42, 255, 184, 0.18), transparent 43%),
    radial-gradient(ellipse at 58% 52%, rgba(66, 246, 255, 0.09), transparent 66%);
  filter: blur(38px);
  opacity: 0.56;
  pointer-events: none;
  z-index: -1;
}

.hero h1 .title-accent {
  color: transparent;
  background: linear-gradient(135deg, #2dffc0 0%, #34f0d2 52%, #83fff1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 22px rgba(32, 247, 165, 0.11);
}

.hero-copy p {
  max-width: 610px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  margin: 20px 0 0;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 548px;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(32, 247, 165, 0.26), rgba(66, 246, 255, 0.18), rgba(32, 247, 165, 0.16));
  box-shadow: 0 0 36px rgba(32, 247, 165, 0.08);
}

.proof-grid div {
  padding: 15px 16px;
  background:
    linear-gradient(180deg, rgba(15, 27, 21, 0.9), rgba(4, 8, 6, 0.96)),
    var(--surface);
}

.proof-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
}

.proof-grid span {
  color: var(--muted);
  font-size: 12px;
}

.hero-product {
  position: relative;
  min-height: 580px;
}

.trade-terminal,
.phone-card,
.dashboard-preview,
.price-card,
.feature-grid article,
.case-grid article,
.process-rail div,
.faq-list details,
.page-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(32, 247, 165, 0.085), transparent 38%),
    radial-gradient(circle at 100% 16%, rgba(66, 246, 255, 0.045), transparent 34%),
    var(--gradient-card),
    var(--surface);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.045), inset 0 -1px 0 rgba(32, 247, 165, 0.035);
  backdrop-filter: blur(14px);
}

.trade-terminal::before,
.dashboard-preview::before,
.price-card.featured::before,
.cta-section::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(76, 255, 202, 0.16), transparent 34%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 20%, transparent 72%, rgba(66, 246, 255, 0.06));
  opacity: 0.72;
}

.trade-terminal::after,
.dashboard-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(103, 255, 218, 0.1) 49%, transparent 60%);
  transform: translateX(-115%);
  animation: panel-scan 9s ease-in-out infinite;
  opacity: 0.72;
}

.trade-terminal {
  position: absolute;
  right: 4%;
  top: 34px;
  width: min(460px, 96%);
  padding: 24px;
  transform: rotate(-3deg);
}

.terminal-top,
.asset-row,
.metric-row,
.orderbook div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.terminal-top span,
.orderbook span,
.metric-row span {
  color: var(--muted);
  font-size: 12px;
}

.terminal-top strong {
  font-family: var(--display);
  font-size: 32px;
}

.terminal-top em {
  color: var(--accent);
  font-style: normal;
}

.chart-lines {
  height: 230px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 30px 0;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(32, 247, 165, 0.1), rgba(32, 247, 165, 0.015)),
    rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(64, 255, 186, 0.14);
  box-shadow: inset 0 0 36px rgba(32, 247, 165, 0.035);
}

.chart-lines i,
.admin-chart i {
  flex: 1;
  min-width: 12px;
  border-radius: 999px 999px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 34%),
    linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 52%, rgba(32, 247, 165, 0.14) 100%);
  box-shadow: 0 0 22px rgba(32, 247, 165, 0.24);
  animation: bar-glow 4.6s ease-in-out infinite alternate;
}

.chart-lines i:nth-child(1) { height: 34%; }
.chart-lines i:nth-child(2) { height: 62%; }
.chart-lines i:nth-child(3) { height: 48%; }
.chart-lines i:nth-child(4) { height: 88%; }
.chart-lines i:nth-child(5) { height: 72%; }
.chart-lines i:nth-child(6) { height: 96%; }
.chart-lines i:nth-child(7) { height: 78%; }

.chart-lines i:nth-child(2),
.admin-chart i:nth-child(2) { animation-delay: -0.7s; }
.chart-lines i:nth-child(3),
.admin-chart i:nth-child(3) { animation-delay: -1.4s; }
.chart-lines i:nth-child(4),
.admin-chart i:nth-child(4) { animation-delay: -2.1s; }
.chart-lines i:nth-child(5),
.admin-chart i:nth-child(5) { animation-delay: -2.8s; }
.chart-lines i:nth-child(6),
.admin-chart i:nth-child(6) { animation-delay: -3.5s; }
.chart-lines i:nth-child(7) { animation-delay: -4.2s; }

.orderbook {
  display: grid;
  gap: 10px;
}

.orderbook div {
  padding: 12px;
  border: 1px solid rgba(64, 255, 186, 0.12);
  background: rgba(0, 0, 0, 0.24);
}

.orderbook b {
  color: var(--text);
}

.orderbook small {
  color: var(--muted);
}

.phone-card {
  position: absolute;
  left: 0;
  bottom: 26px;
  width: min(260px, 58vw);
  padding: 18px;
  transform: rotate(5deg);
}

.phone-bar {
  width: 80px;
  height: 7px;
  border-radius: 999px;
  margin: 0 auto 22px;
  background: rgba(255, 255, 255, 0.24);
}

.asset-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.asset-row span {
  color: var(--muted);
}

.mini-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.mini-actions button {
  border: 0;
  border-radius: 7px;
  min-height: 34px;
  color: #061007;
  background: var(--gradient-primary);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(32, 247, 165, 0.18);
}

.h5-demo {
  --phone-screen-w: 430px;
  --phone-screen-h: 932px;
  --phone-frame-w: 466px;
  --phone-frame-h: 968px;
  --phone-scale: 0.84;
  --phone-display-w: calc(var(--phone-frame-w) * var(--phone-scale));
  --phone-display-h: calc(var(--phone-frame-h) * var(--phone-scale));
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  transform: none;
}

.demo-stack {
  position: relative;
  width: 100%;
  height: calc(var(--phone-display-h) + 20px);
  perspective: 2200px;
  overflow: visible;
}

.demo-phone {
  position: absolute;
  top: 0;
  width: var(--phone-frame-w);
  height: var(--phone-frame-h);
  cursor: pointer;
  overflow: visible;
  transform-origin: top left;
  transition: transform 0.34s ease, opacity 0.34s ease, filter 0.34s ease, z-index 0.01s linear;
}

.demo-phone[data-demo-version="black"] {
  left: 6px;
  transform: translateX(92px) translateY(32px) scale(0.72) rotate(-6deg);
  opacity: 0.68;
  z-index: 1;
}

.demo-phone[data-demo-version="white"] {
  left: 66px;
  transform: translateX(26px) translateY(14px) scale(0.64) rotate(-2deg);
  opacity: 0.44;
  z-index: 0;
}

.demo-phone[data-demo-version="green"] {
  left: 118px;
  transform: translateX(-12px) translateY(2px) scale(0.58) rotate(3deg);
  opacity: 0.34;
  z-index: 0;
}

.h5-demo[data-active-version="black"] .demo-phone[data-demo-version="black"],
.h5-demo[data-active-version="white"] .demo-phone[data-demo-version="white"],
.h5-demo[data-active-version="green"] .demo-phone[data-demo-version="green"] {
  transform: translateX(0) translateY(0) scale(var(--phone-scale)) rotate(0deg);
  opacity: 1;
  z-index: 6;
  filter: none;
}

.h5-demo .demo-phone:not(.active) {
  opacity: 0.9;
  pointer-events: none;
}

.h5-demo[data-active-version="black"] .demo-phone[data-demo-version="white"],
.h5-demo[data-active-version="white"] .demo-phone[data-demo-version="black"],
.h5-demo[data-active-version="green"] .demo-phone[data-demo-version="black"] {
  transform: translateX(386px) translateY(2px) scale(0.54) rotate(15deg);
  z-index: 4;
}

.h5-demo[data-active-version="black"] .demo-phone[data-demo-version="green"],
.h5-demo[data-active-version="white"] .demo-phone[data-demo-version="green"],
.h5-demo[data-active-version="green"] .demo-phone[data-demo-version="white"] {
  transform: translateX(424px) translateY(24px) scale(0.5) rotate(23deg);
  z-index: 3;
}

.demo-phone:not(.active) .demo-phone-shell {
  transform-origin: top left;
  pointer-events: none;
}

.demo-version-label {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 30;
  display: none;
  min-width: 76px;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #041007;
  background: var(--gradient-primary);
  box-shadow: 0 10px 24px rgba(32, 247, 165, 0.18);
  font-size: 11px;
  font-weight: 900;
}

.demo-phone:not(.active) .demo-version-label {
  display: inline-flex;
  pointer-events: auto;
}

.demo-phone[data-demo-version="white"]:not(.active) .demo-version-label {
  color: #111815;
  background: rgba(255, 255, 255, 0.92);
}

.demo-phone[data-demo-version="green"]:not(.active) .demo-version-label {
  color: #032113;
  background: linear-gradient(135deg, #78ffb3, #22d37c);
}

.demo-phone-shell {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px 12px 14px;
  border: 6px solid #050505;
  border-radius: 52px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 78%, rgba(255, 255, 255, 0.03)),
    #050505;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.demo-phone-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 46px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.demo-phone-shell-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 14%, transparent 78%, rgba(0, 0, 0, 0.02)),
    #fbfbfb;
}

.demo-phone-shell-light .demo-statusbar {
  color: #111;
}

.demo-phone-shell-light .demo-statusbar strong {
  color: #0f2c1b;
}

.demo-phone-shell-green {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 78%, rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, #071c12, #0a2a19);
}

.demo-phone-shell-green .demo-statusbar strong {
  color: #72ffbd;
}

.demo-phone-switch {
  position: absolute;
  inset: 0;
  z-index: 31;
  border: 0;
  background: transparent;
  padding: 0;
  pointer-events: none;
  border-radius: 52px;
}

.demo-phone:not(.active) .demo-phone-switch {
  pointer-events: auto;
}

.demo-phone.active {
  cursor: default;
}

.demo-phone-switch:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 8px;
}

.demo-version-switch,
.demo-tabs,
.demo-market-row,
.demo-side-row {
  display: grid;
  gap: 8px;
}

.demo-version-switch {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.demo-version-switch button,
.demo-tabs button,
.demo-market-row button,
.demo-side-row button {
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.demo-version-switch button:hover,
.demo-tabs button:hover,
.demo-market-row button:hover,
.demo-side-row button:hover {
  color: var(--text);
  border-color: var(--line);
}

.demo-version-switch button.active,
.demo-tabs button.active,
.demo-market-row button.active,
.demo-side-row button.active {
  color: #041007;
  border-color: rgba(143, 255, 223, 0.48);
  background: var(--gradient-primary);
  box-shadow: 0 10px 26px rgba(32, 247, 165, 0.18);
}

.demo-statusbar {
  position: relative;
  z-index: 2;
  height: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  color: rgba(244, 255, 249, 0.88);
  font-size: 11px;
  font-weight: 800;
  padding: 8px 8px 0;
}

.demo-statusbar strong {
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
}

.demo-screen {
  position: absolute;
  left: 12px;
  top: 12px;
  width: var(--phone-screen-w);
  height: var(--phone-screen-h);
  display: none;
  overflow: auto;
  overscroll-behavior: contain;
  touch-action: pan-x pan-y;
  border: 1px solid rgba(64, 255, 186, 0.16);
  border-radius: 8px;
  background: #020403;
}

.demo-phone .demo-screen {
  display: block;
}

.demo-screen.active {
  display: block;
}

.demo-screen iframe {
  width: var(--phone-screen-w);
  height: var(--phone-screen-h);
  border: 0;
  background: #020403;
  aspect-ratio: 430 / 932;
  overscroll-behavior: contain;
}

.demo-screen {
  max-width: var(--phone-screen-w);
  max-height: var(--phone-screen-h);
}

.demo-screen-white {
  background: #f6f8f7;
  color: #111815;
  overflow: hidden;
}

.demo-screen-green {
  background: #0c2b19;
  color: #f4fff9;
  overflow: hidden;
}

.theme-ui {
  --theme-bg: #ffffff;
  --theme-text: #050505;
  --theme-muted: #9a9a9d;
  --theme-soft: #f3f3f4;
  --theme-card: #f5f5f5;
  --theme-accent: #27791a;
  --theme-good: #31bf6a;
  --theme-bad: #ef4b72;
  position: relative;
  min-height: 100%;
  padding: 25px 24px 92px;
  color: var(--theme-text);
  background: var(--theme-bg);
  font-family: var(--body);
  overflow: hidden auto;
  scrollbar-width: none;
}

.theme-ui::-webkit-scrollbar {
  display: none;
}

.theme-ui button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.theme-topbar,
.theme-header,
.theme-search,
.theme-assets,
.theme-actions,
.theme-promo,
.theme-tabs,
.theme-row,
.theme-bottom-nav {
  display: flex;
  align-items: center;
}

.theme-topbar {
  justify-content: space-between;
  margin-bottom: 22px;
  font-size: 17px;
  font-weight: 900;
}

.theme-signal {
  font-size: 13px;
  letter-spacing: 0;
}

.theme-header {
  justify-content: space-between;
  margin-bottom: 20px;
}

.theme-header button {
  width: 36px;
  height: 36px;
  font-size: 26px;
  font-weight: 900;
}

.theme-segment {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: var(--theme-soft);
  color: #6d6d70;
  font-size: 16px;
  font-weight: 900;
}

.theme-segment b,
.theme-segment span {
  padding: 8px 16px;
  border-radius: 999px;
}

.theme-segment b {
  color: var(--theme-text);
  background: var(--theme-bg);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}

.theme-icons {
  display: flex;
  gap: 8px;
}

.theme-search {
  gap: 12px;
  min-height: 44px;
  margin-bottom: 30px;
  padding-left: 18px;
  color: var(--theme-muted);
}

.theme-search b {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
}

.theme-search span,
.theme-search button {
  font-size: 24px;
  color: var(--theme-text);
}

.theme-search {
  border-radius: 999px;
  background: var(--theme-soft);
}

.theme-search button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--theme-soft);
}

.theme-assets {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.theme-assets div {
  display: grid;
  gap: 8px;
}

.theme-assets span {
  color: var(--theme-muted);
  font-size: 15px;
  font-weight: 800;
}

.theme-assets strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.theme-assets small {
  font-size: 16px;
}

.theme-assets em {
  color: var(--theme-good);
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}

.theme-assets i {
  width: 82px;
  height: 62px;
  background:
    radial-gradient(circle, var(--theme-bad) 1px, transparent 1px) 0 0 / 6px 6px,
    linear-gradient(135deg, transparent 0 18%, rgba(239, 75, 114, 0.16) 18% 60%, transparent 60%);
  clip-path: polygon(0 48%, 14% 18%, 26% 28%, 38% 22%, 50% 58%, 66% 54%, 78% 60%, 100% 72%, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 12px rgba(239, 75, 114, 0.46));
}

.theme-actions {
  gap: 14px;
  margin-bottom: 30px;
}

.theme-actions button {
  flex: 1;
  min-height: 40px;
  border-radius: 999px;
  color: #fff;
  background: var(--theme-accent);
  font-size: 16px;
  font-weight: 900;
}

.theme-promo {
  position: relative;
  gap: 16px;
  min-height: 78px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--theme-card);
}

.theme-promo div:not(.theme-ticket) {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.theme-promo span {
  color: var(--theme-muted);
  font-size: 15px;
  font-weight: 900;
}

.theme-promo strong {
  color: var(--theme-text);
  font-size: 15px;
  line-height: 1.35;
}

.theme-promo small {
  margin-left: auto;
  align-self: flex-start;
  color: var(--theme-muted);
  font-size: 15px;
  font-weight: 900;
}

.theme-ticket,
.theme-coin-logo {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 62px;
  height: 54px;
  border-radius: 10px;
  background: #c8ff5d;
  color: #245b12;
  font-weight: 950;
}

.theme-ticket span {
  color: inherit;
  font-size: 16px;
}

.theme-coin-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: #0e5f9e;
}

.theme-promo mark {
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 5px;
  color: #d38c0d;
  background: #ffe7ad;
}

.theme-tabs {
  gap: 22px;
  margin: 28px 0 18px;
  color: #737376;
  white-space: nowrap;
}

.theme-tabs b {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--theme-text);
  background: var(--theme-soft);
}

.theme-market-list {
  display: grid;
  gap: 20px;
}

.theme-row {
  gap: 12px;
}

.theme-row i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: #f7931a;
  font-style: normal;
  font-weight: 950;
}

.theme-row:nth-child(2) i { background: #627eea; }
.theme-row:nth-child(3) i { background: #26a17b; }
.theme-row:nth-child(4) i { background: #14a763; }

.theme-row b,
.theme-row strong {
  display: grid;
  gap: 3px;
}

.theme-row b {
  flex: 1;
  font-size: 20px;
}

.theme-row small {
  color: var(--theme-muted);
  font-size: 12px;
  font-weight: 800;
}

.theme-row strong {
  min-width: 104px;
  text-align: right;
  font-size: 18px;
}

.theme-row em {
  min-width: 78px;
  padding: 10px 8px;
  border-radius: 5px;
  color: #fff;
  background: var(--theme-good);
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
}

.theme-row em.down {
  background: var(--theme-bad);
}

.theme-bottom-nav {
  position: sticky;
  right: 0;
  bottom: -92px;
  left: 0;
  justify-content: space-between;
  margin: 18px -24px -92px;
  padding: 12px 24px 18px;
  background: color-mix(in srgb, var(--theme-bg) 94%, transparent);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.08);
}

.theme-bottom-nav span,
.theme-bottom-nav b {
  display: grid;
  place-items: center;
  gap: 4px;
  min-width: 46px;
}

.theme-bottom-nav b {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: var(--theme-text);
  font-size: 30px;
}

.theme-bottom-nav small {
  font-size: 12px;
}

.theme-bottom-nav .active {
  color: var(--theme-accent);
  font-weight: 900;
}

.theme-ui-green {
  --theme-bg: #07150e;
  --theme-text: #ecfff6;
  --theme-muted: #80aa96;
  --theme-soft: rgba(178, 255, 201, 0.11);
  --theme-card: rgba(12, 42, 25, 0.88);
  --theme-accent: #27d468;
  --theme-good: #25df78;
  --theme-bad: #ff5f7f;
  background:
    radial-gradient(circle at 75% 10%, rgba(40, 212, 104, 0.24), transparent 28%),
    linear-gradient(180deg, #08180f, #03100a 68%, #020906);
  overflow: hidden;
}

.theme-ui-green .theme-segment b {
  background: rgba(39, 212, 104, 0.22);
  box-shadow: none;
}

.theme-ui-green .theme-search,
.theme-ui-green .theme-tabs b {
  border: 1px solid rgba(79, 255, 148, 0.14);
}

.theme-ui-green .theme-promo,
.theme-ui-green .theme-bottom-nav {
  border: 1px solid rgba(79, 255, 148, 0.13);
}

.theme-ui-green .theme-ticket {
  color: #062012;
  background: linear-gradient(135deg, #b7ff5d, #23f090);
}

.theme-ui-green .theme-row i {
  color: #062012;
  background: linear-gradient(135deg, #b7ff5d, #23f090);
}

.theme-ui-green {
  padding: 23px 20px 72px;
}

.theme-ui-green .theme-topbar {
  margin-bottom: 18px;
}

.theme-ui-green .theme-header {
  margin-bottom: 16px;
}

.theme-ui-green .theme-search {
  min-height: 39px;
  margin-bottom: 24px;
}

.theme-ui-green .theme-search button {
  width: 39px;
  height: 39px;
}

.theme-ui-green .theme-assets {
  margin-bottom: 18px;
}

.theme-ui-green .theme-assets strong {
  font-size: 31px;
}

.theme-ui-green .theme-assets i {
  width: 72px;
  height: 54px;
}

.theme-ui-green .theme-actions {
  margin-bottom: 22px;
}

.theme-ui-green .theme-actions button {
  min-height: 37px;
}

.theme-ui-green .theme-promo {
  min-height: 62px;
  margin-bottom: 10px;
  padding: 11px 14px;
}

.theme-ui-green .theme-promo strong {
  font-size: 14px;
}

.theme-ui-green .theme-tabs {
  margin: 20px 0 14px;
}

.theme-ui-green .theme-market-list {
  gap: 14px;
}

.theme-ui-green .theme-row {
  gap: 10px;
}

.theme-ui-green .theme-row i {
  width: 31px;
  height: 31px;
}

.theme-ui-green .theme-row b {
  font-size: 18px;
}

.theme-ui-green .theme-row strong {
  min-width: 96px;
  font-size: 16px;
}

.theme-ui-green .theme-row em {
  min-width: 68px;
  padding: 8px 6px;
  font-size: 15px;
}

.theme-ui-green .theme-bottom-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 8px 20px 11px;
}

.theme-ui-green .theme-bottom-nav b {
  width: 48px;
  height: 48px;
}

.theme-ui-light {
  overflow: hidden;
  min-height: 930px;
  max-height: 930px;
  padding: 21px 20px 68px;
}

.theme-ui-light .theme-topbar {
  margin-bottom: 18px;
}

.theme-ui-light .theme-header {
  margin-bottom: 16px;
}

.theme-ui-light .theme-search {
  min-height: 39px;
  margin-bottom: 24px;
}

.theme-ui-light .theme-search button {
  width: 39px;
  height: 39px;
}

.theme-ui-light .theme-assets {
  margin-bottom: 18px;
}

.theme-ui-light .theme-assets strong {
  font-size: 31px;
}

.theme-ui-light .theme-assets i {
  width: 72px;
  height: 54px;
}

.theme-ui-light .theme-actions {
  margin-bottom: 22px;
}

.theme-ui-light .theme-actions button {
  min-height: 37px;
}

.theme-ui-light .theme-promo {
  min-height: 62px;
  margin-bottom: 10px;
  padding: 11px 14px;
}

.theme-ui-light .theme-promo strong {
  font-size: 14px;
}

.theme-ui-light .theme-tabs {
  margin: 20px 0 14px;
}

.theme-ui-light .theme-market-list {
  gap: 14px;
}

.theme-ui-light .theme-row {
  gap: 10px;
}

.theme-ui-light .theme-row i {
  width: 31px;
  height: 31px;
}

.theme-ui-light .theme-row b {
  font-size: 18px;
}

.theme-ui-light .theme-row strong {
  min-width: 96px;
  font-size: 16px;
}

.theme-ui-light .theme-row em {
  min-width: 68px;
  padding: 8px 6px;
  font-size: 15px;
}

.theme-ui-light .theme-bottom-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 8px 20px 11px;
}

.theme-ui-light .theme-bottom-nav b {
  width: 48px;
  height: 48px;
}


.section-heading {
  margin-bottom: 30px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.center-heading {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p,
.platform-copy > p:first-child,
.faq-copy p:first-child {
  color: var(--accent);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading h2,
.platform-copy h2,
.faq-copy h2,
.cta-section h2,
.page-hero h1 {
  max-width: 620px;
  font-size: clamp(25px, 2.85vw, 39px);
  line-height: 1.14;
}

.section-heading span,
.platform-copy p,
.faq-copy p,
.cta-section p,
.page-hero p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

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

.feature-grid article,
.case-grid article {
  min-height: 245px;
  padding: 26px;
}

.feature-grid span,
.process-rail span,
.case-grid span {
  color: var(--accent);
  font-family: var(--display);
  font-weight: 700;
}

.feature-grid h3,
.case-grid h3,
.process-rail h3 {
  margin-top: 42px;
  font-size: 24px;
}

.feature-grid p,
.case-grid p,
.process-rail p {
  color: var(--muted);
  line-height: 1.65;
}

.platform-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-section,
.pricing-section,
.faq-section {
  position: relative;
  isolation: isolate;
}

.why-section::before,
.platform-section::before,
.pricing-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(62px);
  mix-blend-mode: screen;
  opacity: 0.52;
  z-index: -1;
}

.why-section::before {
  left: -18%;
  top: -8%;
  width: 420px;
  height: 320px;
  background: rgba(32, 247, 165, 0.22);
}

.platform-section::before {
  right: -20%;
  top: 10%;
  width: 520px;
  height: 360px;
  background: rgba(66, 246, 255, 0.18);
}

.pricing-section::before {
  left: 50%;
  top: 12%;
  width: 520px;
  height: 420px;
  transform: translateX(-50%);
  background: rgba(32, 247, 165, 0.2);
}

.faq-section::before {
  right: -16%;
  bottom: -10%;
  width: 420px;
  height: 300px;
  background: rgba(32, 247, 165, 0.16);
}

.dashboard-preview {
  min-height: 460px;
  display: grid;
  grid-template-columns: 180px 1fr;
  overflow: hidden;
}

.dashboard-preview aside {
  padding: 22px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: start;
  gap: 10px;
}

.dashboard-preview aside strong {
  font-family: var(--display);
  margin-bottom: 16px;
}

.dashboard-preview button {
  min-height: 38px;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  padding: 0 12px;
}

.dashboard-preview button.active {
  color: var(--text);
  border-color: var(--line);
  background: linear-gradient(90deg, rgba(32, 247, 165, 0.13), rgba(66, 246, 255, 0.04));
}

.dashboard-main {
  padding: 22px;
}

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

.metric-row div {
  padding: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(32, 247, 165, 0.035), transparent),
    rgba(0, 0, 0, 0.2);
}

.metric-row strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 24px;
}

.admin-chart {
  height: 190px;
  display: flex;
  gap: 12px;
  align-items: end;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(32, 247, 165, 0.07), rgba(0, 0, 0, 0.12)),
    rgba(0, 0, 0, 0.18);
}

.admin-chart i:nth-child(1) { height: 56%; }
.admin-chart i:nth-child(2) { height: 78%; }
.admin-chart i:nth-child(3) { height: 46%; }
.admin-chart i:nth-child(4) { height: 92%; }
.admin-chart i:nth-child(5) { height: 64%; }
.admin-chart i:nth-child(6) { height: 84%; }

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

.audit-list p {
  margin: 0;
  color: var(--muted);
}

.audit-list span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 10px;
  background: var(--gradient-primary);
  box-shadow: 0 0 14px rgba(32, 247, 165, 0.44);
}

.architecture-section {
  position: relative;
  isolation: isolate;
}

.architecture-heading {
  align-items: start;
}

.architecture-heading h2 {
  max-width: 620px;
}

.architecture-section .section-heading h2,
.pricing-section .section-heading h2 {
  font-size: clamp(26px, 2.65vw, 38px);
  line-height: 1.14;
}

.portfolio-section .section-heading h2,
.process-section .section-heading h2 {
  font-size: clamp(25px, 2.55vw, 36px);
}

.faq-copy h2,
.cta-section h2 {
  font-size: clamp(24px, 2.45vw, 34px);
}

.architecture-heading span {
  display: block;
  max-width: 640px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.architecture-section::before {
  content: "";
  position: absolute;
  right: -18%;
  top: 8%;
  width: 620px;
  height: 520px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 46% 48%, rgba(32, 247, 165, 0.22), transparent 42%),
    radial-gradient(ellipse at 56% 50%, rgba(66, 246, 255, 0.14), transparent 58%);
  filter: blur(74px);
  mix-blend-mode: screen;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.architecture-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(360px, 0.68fr);
  gap: 18px;
  align-items: start;
}

.architecture-main {
  display: grid;
  gap: 14px;
}

.architecture-map,
.stack-panel,
.ops-detail-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 0%, rgba(32, 247, 165, 0.08), transparent 34%),
    var(--gradient-card);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.architecture-map {
  padding: 18px;
}

.architecture-map::before,
.stack-panel::before,
.ops-detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.065), transparent 18%, transparent 74%, rgba(66, 246, 255, 0.04));
  opacity: 0.62;
}

.layer-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: stretch;
}

.layer-row.compact {
  align-items: center;
}

.layer-label {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 126px;
  padding: 16px 10px;
  border: 1px solid rgba(64, 255, 186, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 48% 8%, rgba(66, 246, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(32, 247, 165, 0.18), rgba(5, 10, 8, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 34px rgba(32, 247, 165, 0.08);
  text-align: center;
}

.layer-label strong {
  font-family: var(--display);
  font-size: 20px;
}

.layer-label span {
  color: var(--muted);
  font-size: 11px;
  margin-top: 4px;
  text-transform: uppercase;
}

.layer-cards,
.service-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.layer-cards article,
.service-cloud article {
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(64, 255, 186, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.layer-cards span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.layer-cards h3,
.gateway-panel h3 {
  margin: 10px 0 8px;
  font-size: 18px;
}

.layer-cards p,
.gateway-panel p,
.service-cloud span,
.stack-list p {
  color: var(--muted);
  line-height: 1.55;
}

.layer-cards p,
.gateway-panel p,
.stack-list p {
  margin: 0;
  font-size: 13px;
}

.gateway-panel,
.ops-strip {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(64, 255, 186, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(32, 247, 165, 0.09), transparent 58%),
    rgba(0, 0, 0, 0.2);
}

.gateway-panel h3 {
  font-size: 26px;
}

.service-cloud article {
  display: grid;
  gap: 5px;
  min-height: 72px;
  align-content: center;
}

.service-cloud b {
  color: var(--text);
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.12;
}

.service-cloud span {
  font-size: 12px;
  line-height: 1.35;
}

.ops-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ops-strip span {
  border: 1px solid rgba(64, 255, 186, 0.14);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
  font-size: 13px;
}

.ops-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.ops-detail-card {
  min-height: 150px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(210px, 0.46fr) minmax(0, 1fr);
  column-gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 86% 0%, rgba(66, 246, 255, 0.11), transparent 38%),
    linear-gradient(180deg, rgba(32, 247, 165, 0.07), rgba(0, 0, 0, 0.18)),
    var(--gradient-card);
}

.ops-detail-card > * {
  position: relative;
  z-index: 1;
}

.ops-detail-card > span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  align-self: end;
}

.ops-detail-card h3 {
  margin: 8px 0 0;
  font-size: 24px;
  align-self: start;
  grid-column: 1;
}

.ops-detail-card p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  grid-row: 1 / span 2;
  grid-column: 2;
}

.ops-detail-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  grid-column: 1 / -1;
}

.ops-detail-card b,
.deploy-plan b {
  border: 1px solid rgba(64, 255, 186, 0.14);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.26);
  font-family: var(--display);
  font-size: 12px;
  line-height: 1;
}

.ops-detail-card .deploy-plan {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.deploy-plan b {
  min-width: 0;
  min-height: 54px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(32, 247, 165, 0.06), rgba(0, 0, 0, 0.2)),
    rgba(0, 0, 0, 0.28);
  line-height: 1.15;
}

.deploy-plan span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

.deploy-plan em {
  color: var(--text);
  font-style: normal;
  overflow-wrap: anywhere;
}

.layer-connector {
  position: relative;
  z-index: 1;
  width: 1px;
  height: 28px;
  margin: 6px 0 6px 60px;
  background: linear-gradient(180deg, rgba(32, 247, 165, 0.12), var(--accent), rgba(66, 246, 255, 0.12));
  box-shadow: 0 0 18px rgba(32, 247, 165, 0.34);
}

.layer-connector::after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: -1px;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  transform: rotate(45deg);
}

.stack-panel {
  padding: 24px;
  position: sticky;
  top: 92px;
}

.stack-head,
.stack-list {
  position: relative;
  z-index: 1;
}

.stack-head p {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.stack-head h3 {
  font-size: clamp(27px, 2.6vw, 36px);
  line-height: 1.02;
}

.delivery-snapshot {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  border: 1px solid rgba(64, 255, 186, 0.22);
  background: linear-gradient(90deg, rgba(32, 247, 165, 0.24), rgba(66, 246, 255, 0.16));
}

.delivery-snapshot div {
  min-width: 0;
  padding: 13px 12px;
  background:
    radial-gradient(circle at 48% 0%, rgba(32, 247, 165, 0.11), transparent 52%),
    rgba(0, 0, 0, 0.28);
}

.delivery-snapshot strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
}

.delivery-snapshot span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.stack-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.stack-list article {
  padding: 13px 14px;
  border: 1px solid rgba(64, 255, 186, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.stack-list span {
  color: var(--accent-2);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.stack-list strong {
  display: block;
  margin: 6px 0 7px;
  font-family: var(--display);
  font-size: 15px;
}

.plan-chooser {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 0%, rgba(66, 246, 255, 0.14), transparent 42%),
    rgba(32, 247, 165, 0.055);
}

.plan-chooser > strong {
  font-family: var(--display);
  font-size: 18px;
}

.plan-row {
  display: grid;
  grid-template-columns: minmax(84px, 0.62fr) minmax(92px, 0.7fr);
  column-gap: 10px;
  row-gap: 4px;
  align-items: baseline;
  padding: 10px 11px;
  border: 1px solid rgba(64, 255, 186, 0.13);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(32, 247, 165, 0.055), transparent 72%),
    rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.plan-row:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background:
    linear-gradient(90deg, rgba(32, 247, 165, 0.11), rgba(66, 246, 255, 0.04)),
    rgba(0, 0, 0, 0.24);
}

.plan-row.featured {
  border-color: rgba(32, 247, 165, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 26px rgba(32, 247, 165, 0.08);
}

.plan-row span,
.plan-row b {
  font-family: var(--display);
}

.plan-row span {
  color: var(--text);
  font-size: 14px;
}

.plan-row b {
  color: var(--accent);
  font-size: 14px;
  text-align: right;
}

.plan-row em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.plan-chooser .btn {
  width: 100%;
  margin-top: 4px;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 26px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(32, 247, 165, 0.62);
  background:
    radial-gradient(circle at 50% 0%, rgba(66, 246, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(32, 247, 165, 0.14), rgba(5, 9, 7, 0.95)),
    var(--surface);
  box-shadow: var(--shadow), 0 0 70px rgba(32, 247, 165, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tag {
  position: absolute;
  right: 18px;
  top: 18px;
  color: #061007;
  background: var(--gradient-primary);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(32, 247, 165, 0.34);
}

.price-card h3 {
  font-size: 25px;
}

.price-card strong {
  display: block;
  margin: 24px 0 12px;
  color: transparent;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--display);
  font-size: 38px;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.price-card p,
.price-card li {
  color: var(--muted);
  line-height: 1.6;
}

.price-card ul {
  padding: 0;
  margin: 26px 0 28px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.price-card li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.price-card li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin-top: 0.62em;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 12px rgba(32, 247, 165, 0.34);
}

.price-card a {
  margin-top: auto;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(32, 247, 165, 0.04), rgba(0, 0, 0, 0.08));
}

.price-card a:hover {
  background: var(--gradient-primary);
  color: #041007;
  box-shadow: 0 0 34px rgba(32, 247, 165, 0.28);
}

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

.case-grid article {
  min-height: 310px;
  background:
    radial-gradient(circle at 0% 0%, rgba(32, 247, 165, 0.13), transparent 40%),
    linear-gradient(135deg, rgba(66, 246, 255, 0.045), transparent 48%),
    var(--gradient-card);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process-rail div {
  padding: 24px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 48px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: 20px;
}

.faq-list p {
  color: var(--muted);
  line-height: 1.7;
}

.cta-section {
  position: relative;
  overflow: hidden;
  width: var(--container);
  margin: 30px auto 90px;
  padding: clamp(32px, 6vw, 64px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 76% 28%, rgba(66, 246, 255, 0.22), transparent 26rem),
    linear-gradient(135deg, rgba(32, 247, 165, 0.2), rgba(32, 247, 165, 0.055) 44%, rgba(6, 11, 9, 0.96)),
    var(--surface-strong);
  box-shadow: 0 0 76px rgba(32, 247, 165, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

@keyframes ambient-breathe {
  from {
    opacity: 0.58;
    transform: scale(0.98) translate3d(0, 0, 0);
  }
  to {
    opacity: 0.82;
    transform: scale(1.04) translate3d(0, -10px, 0);
  }
}

@keyframes panel-scan {
  0%, 38% {
    transform: translateX(-115%);
  }
  56%, 100% {
    transform: translateX(115%);
  }
}

@keyframes bar-glow {
  from {
    filter: saturate(0.95) brightness(0.92);
    box-shadow: 0 0 16px rgba(32, 247, 165, 0.18);
  }
  to {
    filter: saturate(1.18) brightness(1.08);
    box-shadow: 0 0 28px rgba(66, 246, 255, 0.28);
  }
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 54px 0 70px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h4 {
  margin: 0 0 16px;
  font-family: var(--display);
}

.site-footer div {
  display: grid;
  align-content: start;
}

.contact-modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 34%, rgba(32, 247, 165, 0.22), transparent 30rem),
    rgba(0, 3, 2, 0.74);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal[hidden] {
  display: none;
}

.contact-dialog {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 8%, rgba(66, 246, 255, 0.2), transparent 18rem),
    linear-gradient(180deg, rgba(14, 24, 20, 0.96), rgba(5, 9, 7, 0.98));
  box-shadow: var(--shadow), 0 0 64px rgba(32, 247, 165, 0.2);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.18s ease;
}

.contact-modal.is-open .contact-dialog {
  transform: translateY(0) scale(1);
}

.contact-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 10, 8, 0.72);
  color: var(--text);
  cursor: pointer;
}

.contact-close span {
  position: absolute;
  top: 19px;
  left: 11px;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.contact-close span:first-child {
  transform: rotate(45deg);
}

.contact-close span:last-child {
  transform: rotate(-45deg);
}

.contact-kicker {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding-right: 58px;
}

.contact-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.05;
}

.video-demo-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  border: 1px solid rgba(202, 255, 117, 0.75);
  border-radius: 8px;
  padding: 0 16px;
  color: #031107;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent 44%),
    linear-gradient(135deg, #d7ff4f 0%, #20f7a5 54%, #42f6ff 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 16px 42px rgba(32, 247, 165, 0.42),
    0 0 24px rgba(215, 255, 79, 0.28);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.video-demo-button:hover,
.video-demo-button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 20px 52px rgba(32, 247, 165, 0.52),
    0 0 34px rgba(215, 255, 79, 0.38);
  outline: none;
}

.contact-intro {
  max-width: 430px;
  margin: 14px 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-channel {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 30, 25, 0.78), rgba(6, 11, 9, 0.86));
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-channel:hover,
.contact-channel:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 16% 18%, rgba(32, 247, 165, 0.14), transparent 8rem),
    linear-gradient(180deg, rgba(20, 42, 31, 0.92), rgba(7, 13, 10, 0.94));
  box-shadow: 0 0 30px rgba(32, 247, 165, 0.14);
  outline: none;
}

.contact-channel-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-channel strong,
.contact-channel small {
  display: block;
}

.contact-channel strong {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 16px;
}

.contact-channel small {
  color: var(--muted);
  font-size: 13px;
  word-break: break-all;
}

.contact-channel.telegram .contact-channel-icon {
  color: #42f6ff;
}

.contact-channel.whatsapp .contact-channel-icon {
  color: #20f7a5;
}

.contact-channel.phone .contact-channel-icon {
  color: #b7ff5d;
}

.contact-channel.qq .contact-channel-icon {
  color: #7fc8ff;
}

.page-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0 44px;
  display: grid;
  gap: 24px;
}

.page-hero p {
  max-width: 760px;
  font-size: 18px;
}

.service-cta-bar {
  width: var(--container);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px 20px;
  padding: 16px 22px;
  border: 1px solid rgba(32, 247, 165, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(32, 247, 165, 0.08), rgba(66, 246, 255, 0.04)),
    rgba(4, 8, 7, 0.55);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.service-cta-bar__tagline {
  white-space: nowrap;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.service-cta-bar__divider {
  width: 1px;
  height: 18px;
  background: rgba(244, 255, 249, 0.2);
  flex-shrink: 0;
}

.service-cta-bar .btn {
  white-space: nowrap;
  margin-left: auto;
  padding: 9px 18px;
  font-size: 14px;
}

.page-grid {
  width: var(--container);
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.page-panel {
  min-height: 260px;
  padding: 26px;
}

.page-panel h2,
.page-panel h3 {
  font-size: 28px;
}

.page-panel p,
.page-panel li {
  color: var(--muted);
  line-height: 1.7;
}

.page-panel ul {
  padding-left: 18px;
}

.article-hero {
  padding-bottom: 30px;
}

.article-kicker,
.article-back,
.article-breadcrumb {
  margin: 0;
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-back {
  display: inline-flex;
  width: fit-content;
  letter-spacing: 0;
  text-transform: none;
}

.article-index-grid {
  width: var(--container);
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-index-shell {
  width: var(--container);
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: flex-start;
}

.article-filter {
  position: sticky;
  top: 96px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(32, 247, 165, 0.04), transparent 60%),
    rgba(4, 8, 7, 0.7);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.article-filter__title {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.article-filter__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.article-filter__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 13.5px;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.article-filter__item:hover {
  background: rgba(32, 247, 165, 0.06);
  color: var(--text);
}

.article-filter__item.is-active {
  background: rgba(32, 247, 165, 0.14);
  border-color: rgba(32, 247, 165, 0.45);
  color: var(--text);
  font-weight: 600;
}

.article-filter__item span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-filter__item em {
  font-style: normal;
  font-size: 11.5px;
  color: var(--faint);
  margin-left: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(244, 255, 249, 0.06);
}

.article-filter__item.is-active em {
  color: var(--accent-2);
  background: rgba(32, 247, 165, 0.2);
}

.article-grid-shell {
  min-width: 0;
}

.article-grid-status {
  display: none;
  margin: 0 0 16px;
  padding: 10px 14px;
  border: 1px solid rgba(32, 247, 165, 0.18);
  border-radius: 8px;
  background: rgba(32, 247, 165, 0.06);
  color: var(--text);
  font-size: 13px;
}

.article-card[data-hidden="true"] {
  display: none;
}

.article-empty {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  color: var(--faint);
  font-size: 14px;
  border: 1px dashed rgba(244, 255, 249, 0.15);
  border-radius: 12px;
}

.article-toc {
  margin: 28px 0 36px;
  padding: 20px 24px;
  border: 1px solid rgba(32, 247, 165, 0.18);
  border-left: 3px solid var(--accent-2);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(32, 247, 165, 0.05), transparent 60%),
    rgba(4, 8, 7, 0.55);
}

.article-toc__title {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.article-toc__list {
  margin: 0;
  padding: 0 0 0 22px;
  list-style: decimal;
  color: var(--text);
  line-height: 1.85;
  font-size: 14.5px;
}

.article-toc__item {
  margin: 4px 0;
}

.article-toc__item--h3 {
  padding-left: 16px;
  list-style: lower-alpha;
  color: var(--muted);
  font-size: 13.5px;
}

.article-toc__item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.article-toc__item a:hover {
  color: var(--accent-2);
}

.article-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--gradient-card);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.article-card span {
  color: var(--accent-2);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card h2 {
  margin: 34px 0 14px;
  font-size: 25px;
  line-height: 1.18;
}

.article-card p {
  color: var(--muted);
  line-height: 1.72;
}

.article-card time,
.article-detail-header time {
  color: var(--faint);
  font-family: var(--display);
  font-size: 13px;
}

.article-layout {
  width: var(--container);
  margin: 0 auto;
  padding: 54px 0 84px;
}

.article-detail-header {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  padding: 34px 0 36px;
  border-bottom: 1px solid rgba(244, 255, 249, 0.12);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.article-breadcrumb a {
  color: var(--muted);
}

.article-breadcrumb strong {
  color: var(--accent);
}

.article-detail-header h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.14;
  letter-spacing: 0;
}

.article-summary {
  max-width: 800px;
  margin: 0;
  color: #b7c9c0;
  font-size: 17px;
  line-height: 1.85;
}

.article-byline {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.article-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(32, 247, 165, 0.12);
  color: var(--accent);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
}

.article-byline div {
  display: grid;
  gap: 4px;
}

.article-byline strong {
  color: var(--text);
  font-family: var(--display);
  font-size: 14px;
}

.article-byline span:not(.article-avatar) {
  color: var(--faint);
  font-size: 13px;
}

.article-cover {
  display: block;
  width: 100%;
  max-height: 460px;
  margin: 34px 0 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  object-fit: cover;
  background: rgba(4, 8, 7, 0.62);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
  aspect-ratio: 16 / 9;
}

.article-reading-shell {
  width: min(1000px, 100%);
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 720px) 230px;
  gap: 48px;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 14px;
  order: 2;
}

.article-sidebar-block {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(244, 255, 249, 0.1);
  border-radius: 8px;
  background: rgba(6, 12, 9, 0.58);
}

.article-sidebar-block span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-sidebar-block strong {
  color: var(--text);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.25;
}

.article-sidebar-block p,
.article-sidebar-block a {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.article-sidebar-block a:hover {
  color: var(--accent);
}

.article-content {
  min-width: 0;
  padding: 44px 52px 54px;
  border: 1px solid rgba(244, 255, 249, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 15, 12, 0.72), rgba(4, 8, 7, 0.78)),
    rgba(4, 8, 7, 0.72);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  color: #e8f3ee;
  font-size: 16.5px;
  line-height: 2;
}

.article-content h2,
.article-content h3 {
  margin: 44px 0 16px;
  color: var(--text);
  font-family: var(--display);
  line-height: 1.28;
  letter-spacing: 0;
}

.article-content h2 {
  padding-top: 8px;
  font-size: 26px;
}

.article-content h3 {
  font-size: 20px;
  color: #dff9ef;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin: 0 0 22px;
}

.article-content p {
  text-align: justify;
  text-justify: inter-ideograph;
}

.article-content ul,
.article-content ol {
  padding-left: 1.35em;
}

.article-content li {
  margin: 8px 0;
  padding-left: 4px;
}

.article-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.18s ease;
}

.article-content a:hover {
  color: var(--accent-2);
}

.article-content code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(32, 247, 165, 0.08);
  color: var(--accent-2);
  font-size: 0.92em;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace;
  word-break: break-word;
}

.article-content pre,
.article-content .wp-block-code,
.article-content .wp-block-preformatted {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid rgba(244, 255, 249, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(8, 14, 11, 0.92) 0%, rgba(4, 8, 7, 0.95) 100%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  color: #d7fbe8;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13.5px;
  line-height: 1.65;
  white-space: pre;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  tab-size: 2;
}

.article-content pre code,
.article-content .wp-block-code code {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  white-space: pre;
  word-break: normal;
  overflow-wrap: normal;
}

.article-content pre::-webkit-scrollbar,
.article-content .wp-block-code::-webkit-scrollbar {
  height: 8px;
}

.article-content pre::-webkit-scrollbar-track,
.article-content .wp-block-code::-webkit-scrollbar-track {
  background: rgba(4, 8, 7, 0.4);
  border-radius: 4px;
}

.article-content pre::-webkit-scrollbar-thumb,
.article-content .wp-block-code::-webkit-scrollbar-thumb {
  background: rgba(32, 247, 165, 0.35);
  border-radius: 4px;
}

.article-content pre::-webkit-scrollbar-thumb:hover,
.article-content .wp-block-code::-webkit-scrollbar-thumb:hover {
  background: rgba(32, 247, 165, 0.55);
}

.article-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  padding: 0;
  border: 1px solid rgba(244, 255, 249, 0.12);
  border-radius: 12px;
  background: rgba(8, 14, 11, 0.72);
  font-size: 14px;
  line-height: 1.55;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.article-content table table,
.article-content .wp-block-table table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  border: none;
  border-radius: 0;
  background: transparent;
  margin: 0;
  font-size: inherit;
  overflow: visible;
}

.article-content table th,
.article-content table td,
.article-content .wp-block-table th,
.article-content .wp-block-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(244, 255, 249, 0.08);
  text-align: left;
  vertical-align: top;
}

.article-content table th,
.article-content .wp-block-table th {
  background: rgba(32, 247, 165, 0.08);
  color: var(--text);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-content table tr:last-child td,
.article-content .wp-block-table tr:last-child td {
  border-bottom: none;
}

.article-figure {
  margin: 40px 0;
  text-align: center;
}

.article-content figure.wp-block-image,
.article-content figure.article-figure {
  margin: 40px 0;
  text-align: center;
}

.article-figure + h2,
.article-figure + h3,
.article-content figure.wp-block-image + h2,
.article-content figure.wp-block-image + h3 {
  margin-top: 48px;
}

.article-content img,
.article-figure img,
.article-content figure.wp-block-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(244, 255, 249, 0.14);
  border-radius: 12px;
  background: rgba(4, 8, 7, 0.62);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.article-figure img,
.article-content figure.wp-block-image img {
  margin: 0 auto;
}

.article-figure figcaption,
.article-content figure.wp-block-image figcaption {
  margin-top: 14px;
  color: var(--faint);
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
  font-style: italic;
}

.article-content p.wp-block-paragraph,
.article-content p {
  margin: 0 0 18px;
  line-height: 1.85;
  color: var(--text);
}

.article-content p.wp-block-paragraph {
  font-size: 16px;
}

.article-content h2.wp-block-heading,
.article-content h2,
.article-content h3.wp-block-heading,
.article-content h3 {
  margin: 44px 0 16px;
  color: var(--text);
  font-family: var(--display);
  line-height: 1.28;
  letter-spacing: 0;
  scroll-margin-top: 96px;
}

.article-content h2.wp-block-heading,
.article-content h2 {
  padding-top: 8px;
  font-size: 26px;
}

.article-content h3.wp-block-heading,
.article-content h3 {
  font-size: 20px;
  color: #dff9ef;
}

.article-content ul,
.article-content ol {
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.85;
}

.article-content li {
  margin-bottom: 8px;
}

.related-articles {
  width: min(1000px, calc(100vw - 40px));
  margin: 0 auto 108px;
  padding-top: 42px;
  border-top: 1px solid rgba(244, 255, 249, 0.12);
}

.related-articles-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.related-articles-head span,
.related-article-card span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-articles-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.18;
}

.related-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-article-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(244, 255, 249, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(9, 17, 14, 0.72), rgba(5, 9, 7, 0.82));
}

.related-article-card strong {
  color: var(--text);
  font-size: 19px;
  line-height: 1.35;
}

.related-article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.demo-hero {
  padding-bottom: 34px;
}

.demo-video-grid {
  width: var(--container);
  margin: 0 auto 96px;
  display: grid;
  gap: 18px;
}

.demo-video-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 12%, rgba(66, 246, 255, 0.14), transparent 22rem),
    linear-gradient(180deg, rgba(14, 24, 20, 0.84), rgba(5, 9, 7, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.demo-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0%, rgba(32, 247, 165, 0.08) 46%, transparent 47%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 38%);
  opacity: 0.7;
}

.demo-video-card > * {
  position: relative;
  z-index: 1;
}

.demo-video-copy {
  display: grid;
  align-content: start;
}

.demo-video-copy span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(64, 255, 186, 0.22);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.22);
  font-family: var(--display);
  font-weight: 800;
}

.demo-video-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.1;
}

.demo-video-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.demo-media-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 14px;
}

.demo-placeholder {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(64, 255, 186, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(rgba(84, 255, 191, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 255, 191, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(32, 247, 165, 0.16), transparent 38%),
    rgba(0, 0, 0, 0.22);
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.demo-media-frame,
.demo-video-frame {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(64, 255, 186, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(32, 247, 165, 0.13), transparent 38%),
    rgba(0, 0, 0, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.demo-media-frame {
  display: grid;
  place-items: center;
  margin: 0;
}

.demo-media-frame img,
.demo-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.demo-video-frame video {
  background: #000;
}

.demo-media-frame-phone,
.demo-video-frame-phone {
  aspect-ratio: 9 / 16;
  max-height: 520px;
}

.demo-media-frame-wide,
.demo-video-frame-wide {
  aspect-ratio: 16 / 10;
}

.demo-placeholder::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(153, 183, 170, 0.24);
  border-radius: 6px;
  pointer-events: none;
}

.demo-placeholder span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-placeholder strong {
  max-width: 82%;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.16;
  text-align: center;
}

.demo-placeholder small {
  color: var(--muted);
}

.video-placeholder {
  background:
    radial-gradient(circle at 50% 50%, rgba(66, 246, 255, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(32, 247, 165, 0.16), rgba(66, 246, 255, 0.07)),
    rgba(0, 0, 0, 0.28);
}

.video-placeholder button {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(202, 255, 117, 0.72);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 48%),
    var(--gradient-primary);
  box-shadow: 0 0 30px rgba(32, 247, 165, 0.34);
  pointer-events: none;
}

.video-placeholder button::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #031107;
  transform: translateX(2px);
}

.about-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: end;
}

.about-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(64, 255, 186, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 0%, rgba(66, 246, 255, 0.12), transparent 42%),
    rgba(0, 0, 0, 0.26);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.about-proof div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid rgba(64, 255, 186, 0.12);
  border-bottom: 1px solid rgba(64, 255, 186, 0.12);
}

.about-proof strong {
  display: block;
  color: var(--accent);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
}

.about-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.maintenance-section,
.commit-stream-section {
  width: var(--container);
  margin: 0 auto 90px;
}

.maintenance-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.maintenance-copy,
.maintenance-ledger article,
.commit-lane {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(32, 247, 165, 0.085), transparent 38%),
    radial-gradient(circle at 100% 16%, rgba(66, 246, 255, 0.045), transparent 34%),
    var(--gradient-card),
    var(--surface);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.045), inset 0 -1px 0 rgba(32, 247, 165, 0.035);
  backdrop-filter: blur(14px);
}

.maintenance-copy {
  padding: 30px;
}

.maintenance-copy p,
.commit-stream-section .section-heading p {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.maintenance-copy h2,
.commit-stream-section .section-heading h2 {
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.12;
}

.maintenance-copy span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.maintenance-ledger {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.maintenance-ledger article {
  min-height: 260px;
  padding: 22px;
}

.maintenance-ledger strong {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 34px;
  border: 1px solid rgba(64, 255, 186, 0.2);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.22);
  font-family: var(--display);
}

.maintenance-ledger h3 {
  margin: 28px 0 12px;
  font-size: 21px;
  line-height: 1.16;
}

.maintenance-ledger p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.commit-lane {
  height: 355px;
  padding: 20px;
}

.commit-lane h3 {
  margin: 0 0 16px;
  font-size: 20px;
}

.commit-marquee {
  position: relative;
  height: 280px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}

.commit-marquee > div {
  display: grid;
  gap: 8px;
  animation: commit-scroll 24s linear infinite;
}

.commit-lane:hover .commit-marquee > div {
  animation-play-state: paused;
}

.commit-lane:nth-child(2) .commit-marquee > div {
  animation-duration: 27s;
}

.commit-lane:nth-child(3) .commit-marquee > div {
  animation-duration: 25s;
}

.commit-lane:nth-child(4) .commit-marquee > div {
  animation-duration: 29s;
}

.commit-marquee p {
  margin: 0;
  min-height: 58px;
  padding: 11px 12px;
  border: 1px solid rgba(64, 255, 186, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(32, 247, 165, 0.055), transparent 72%),
    rgba(0, 0, 0, 0.24);
}

.commit-marquee time {
  display: block;
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.commit-marquee span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

@keyframes commit-scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .commit-marquee > div {
    animation: none;
  }
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.22);
  padding: 14px;
  outline: none;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
}

.form-status {
  color: var(--accent);
  min-height: 20px;
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 28px, 760px);
  }

  h1 {
    font-size: clamp(29px, 5.1vw, 40px);
    line-height: 1.1;
  }

  .hero h1 {
    width: min(100%, 520px);
  }

  .hero-copy p {
    max-width: 610px;
    font-size: 16px;
    line-height: 1.68;
  }

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

  .hero-orbit {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .site-nav {
    justify-self: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(6, 12, 8, 0.96);
  }

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

  .hero-grid,
  .platform-section,
  .architecture-grid,
  .article-reading-shell,
  .about-hero,
  .maintenance-section,
  .faq-section,
  .split-heading,
  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-product {
    min-height: calc(var(--phone-display-h) + 28px);
  }

  .h5-demo {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .demo-stack {
    height: calc(var(--phone-display-h) + 12px);
  }

  .h5-demo[data-active-version="black"] .demo-phone[data-demo-version="white"],
  .h5-demo[data-active-version="white"] .demo-phone[data-demo-version="black"],
  .h5-demo[data-active-version="green"] .demo-phone[data-demo-version="black"] {
    transform: translateX(350px) translateY(2px) scale(0.5) rotate(15deg);
  }

  .h5-demo[data-active-version="black"] .demo-phone[data-demo-version="green"],
  .h5-demo[data-active-version="white"] .demo-phone[data-demo-version="green"],
  .h5-demo[data-active-version="green"] .demo-phone[data-demo-version="white"] {
    transform: translateX(384px) translateY(22px) scale(0.46) rotate(23deg);
  }

  .feature-grid,
  .pricing-grid,
  .process-rail,
  .commit-stream-grid,
  .ops-detail-grid,
  .layer-cards,
  .article-index-grid,
  .related-article-grid,
  .page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-reading-shell {
    gap: 24px;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .maintenance-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .demo-video-copy span {
    margin-bottom: 16px;
  }

  .stack-panel {
    position: relative;
    top: auto;
  }

  .ops-detail-card .deploy-plan {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .dashboard-preview aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-preview aside strong {
    grid-column: 1 / -1;
  }

  .cta-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cta-section {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 24px);
  }

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

  h1 {
    font-size: clamp(21px, 5.75vw, 23px);
    line-height: 1.22;
  }

  .hero h1 {
    max-width: 100%;
    text-wrap: balance;
    text-shadow:
      0 0 18px rgba(32, 247, 165, 0.12),
      0 0 48px rgba(66, 246, 255, 0.05);
  }

  .service-strip {
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 22px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .service-strip::-webkit-scrollbar {
    display: none;
  }

  .service-strip a {
    flex: 0 0 auto;
    padding: 7px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero-copy p {
    max-width: 33rem;
    font-size: 14px;
    line-height: 1.58;
    margin-top: 14px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .contact-modal {
    align-items: end;
    padding: 12px;
  }

  .contact-dialog {
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    padding: 22px;
  }

  .contact-heading-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-right: 48px;
  }

  .contact-dialog h2 {
    font-size: 28px;
  }

  .video-demo-button {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
  }

  .contact-intro {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .contact-channel-grid {
    grid-template-columns: 1fr;
  }

  .contact-channel {
    min-height: 72px;
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    margin-top: 24px;
  }

  .proof-grid div {
    padding: 12px 9px;
  }

  .proof-grid strong {
    font-size: 21px;
    line-height: 1.05;
  }

  .proof-grid span {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.3;
  }

  .feature-grid,
  .pricing-grid,
  .process-rail,
  .commit-stream-grid,
  .ops-detail-grid,
  .layer-cards,
  .service-cloud,
  .article-index-grid,
  .related-article-grid,
  .page-grid,
  .demo-media-pair,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .demo-video-grid {
    margin-bottom: 70px;
  }

  .demo-video-card {
    padding: 16px;
    gap: 18px;
  }

  .demo-placeholder {
    min-height: 190px;
  }

  .demo-media-frame,
  .demo-video-frame {
    min-height: 190px;
  }

  .architecture-map,
  .stack-panel,
  .ops-detail-card {
    padding: 14px;
  }

  .ops-detail-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .ops-detail-card p,
  .ops-detail-card h3,
  .ops-detail-card div {
    grid-column: 1;
    grid-row: auto;
  }

  .ops-detail-card p {
    margin-top: 10px;
  }

  .ops-detail-card .deploy-plan {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .architecture-heading span {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
  }

  .section-heading h2,
  .platform-copy h2,
  .faq-copy h2,
  .cta-section h2,
  .architecture-section .section-heading h2 {
    font-size: clamp(23px, 6vw, 28px);
    line-height: 1.16;
  }

  .layer-row,
  .layer-row.compact {
    grid-template-columns: 1fr;
  }

  .layer-label {
    min-height: auto;
    justify-items: start;
    place-items: start;
    text-align: left;
  }

  .layer-connector {
    margin-left: 18px;
  }

  .gateway-panel,
  .ops-strip {
    padding: 16px;
  }

  .gateway-panel h3 {
    font-size: 22px;
  }

  .service-cloud article {
    min-height: 64px;
    padding: 13px;
  }

  .stack-head h3 {
    font-size: 26px;
    line-height: 1.08;
  }

  .delivery-snapshot {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .about-proof,
  .maintenance-ledger {
    grid-template-columns: 1fr;
  }

  .maintenance-copy,
  .maintenance-ledger article,
  .commit-lane {
    padding: 18px;
  }

  .maintenance-ledger article {
    min-height: auto;
  }

  .commit-lane {
    height: 330px;
  }

  .commit-marquee {
    height: 252px;
  }

  .delivery-snapshot div {
    padding: 11px 8px;
  }

  .delivery-snapshot strong {
    font-size: 21px;
  }

  .delivery-snapshot span {
    font-size: 10px;
  }

  .plan-chooser {
    padding: 13px;
  }

  .plan-row {
    grid-template-columns: minmax(76px, 0.62fr) minmax(82px, 0.72fr);
    padding: 9px 10px;
  }

  .plan-row b {
    overflow-wrap: anywhere;
  }

  .stack-list article {
    padding: 12px;
  }

  .stack-list strong {
    overflow-wrap: anywhere;
  }

  .hero-product {
    min-height: calc(var(--phone-display-h) + 22px);
    display: grid;
    gap: 14px;
  }

  .h5-demo {
    --phone-scale: min(0.82, calc((100vw - 40px) / var(--phone-frame-w)));
    grid-template-columns: 1fr;
    transform: none;
  }

  .demo-version-switch {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .demo-stack {
    height: calc(var(--phone-display-h) + 10px);
  }

  .h5-demo[data-active-version="black"] .demo-phone[data-demo-version="white"],
  .h5-demo[data-active-version="white"] .demo-phone[data-demo-version="black"],
  .h5-demo[data-active-version="green"] .demo-phone[data-demo-version="black"] {
    transform: translateX(260px) translateY(0) scale(0.4) rotate(15deg);
  }

  .h5-demo[data-active-version="black"] .demo-phone[data-demo-version="green"],
  .h5-demo[data-active-version="white"] .demo-phone[data-demo-version="green"],
  .h5-demo[data-active-version="green"] .demo-phone[data-demo-version="white"] {
    transform: translateX(288px) translateY(18px) scale(0.36) rotate(23deg);
  }

  main::before {
    inset: 90px -46vw auto;
    height: 880px;
    opacity: 0.48;
    filter: blur(58px) saturate(1.05);
  }

  main::after {
    top: 820px;
    height: 110px;
    opacity: 0.46;
  }

  .hero::before {
    left: -46vw;
    top: 18%;
    width: 78vw;
    filter: blur(36px);
    opacity: 0.62;
  }

  .hero::after {
    display: none;
  }

  .hero-copy::before {
    left: -20%;
    top: 118px;
    width: 106vw;
    height: 250px;
    opacity: 0.48;
    filter: blur(50px) saturate(1.03);
  }

  .hero-copy::after {
    left: -6%;
    top: 188px;
    width: 74vw;
    height: 126px;
    opacity: 0.3;
    filter: blur(42px);
  }

  .hero h1::before {
    inset: -18% -8% -16%;
    opacity: 0.4;
    filter: blur(30px);
  }

  .trade-terminal {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    transform: none;
    padding: 18px;
  }

  .terminal-top {
    gap: 8px;
  }

  .terminal-top strong {
    font-size: clamp(30px, 10vw, 42px);
  }

  .terminal-top span,
  .terminal-top em {
    font-size: 13px;
  }

  .chart-lines {
    height: 210px;
    margin: 24px 0;
    gap: 9px;
    padding: 14px;
  }

  .phone-card {
    position: relative;
    width: 100%;
    left: auto;
    bottom: auto;
    transform: none;
  }

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

  .price-card {
    min-height: 390px;
  }

  .article-layout {
    width: var(--container);
    padding: 34px 0 76px;
  }

  .article-detail-header {
    padding: 24px 0 26px;
  }

  .article-detail-header h1 {
    font-size: clamp(24px, 6.4vw, 28px);
    line-height: 1.26;
  }

  .article-summary {
    font-size: 15px;
    line-height: 1.78;
  }

  .article-byline {
    align-items: flex-start;
  }

  .article-byline span:not(.article-avatar) {
    line-height: 1.5;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-content {
    margin-top: 24px;
    padding: 26px 18px 32px;
    font-size: 15.5px;
    line-height: 1.9;
  }

  .article-cover {
    max-height: 240px;
    margin: 24px 0 0;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
  }

  .article-content img,
  .article-figure img {
    border-radius: 10px;
    margin: 0;
  }

  .article-figure {
    margin: 28px 0;
  }

  .article-figure + h2,
  .article-figure + h3 {
    margin-top: 32px;
  }

  .article-figure figcaption {
    font-size: 12.5px;
    line-height: 1.55;
    margin-top: 10px;
    padding: 0 4px;
  }

  .article-content h2,
  .article-content h3 {
    margin: 32px 0 12px;
  }

  .article-content h2 {
    font-size: 22px;
  }

  .article-content h3 {
    font-size: 18px;
  }

  .article-content pre,
  .article-content .wp-block-code,
  .article-content .wp-block-preformatted {
    margin: 20px -4px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 12.5px;
    line-height: 1.6;
  }

  .article-content code {
    font-size: 0.9em;
    word-break: break-word;
  }

  .article-content table,
  .article-content .wp-block-table {
    margin: 20px -4px;
    font-size: 13px;
  }

  .article-content table th,
  .article-content table td,
  .article-content .wp-block-table th,
  .article-content .wp-block-table td {
    padding: 8px 10px;
  }

  .related-articles {
    width: var(--container);
    margin-bottom: 78px;
  }

  .article-index-shell {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 78px;
  }

  .article-filter {
    position: static;
    top: auto;
    max-height: none;
    padding: 14px 14px 12px;
    border-radius: 10px;
  }

  .article-filter__title {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .article-filter__list {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 6px;
    padding-bottom: 4px;
  }

  .article-filter__item {
    flex: 0 0 auto;
    padding: 7px 12px;
    font-size: 12.5px;
    white-space: nowrap;
  }

  .article-filter__item span {
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
  }

  .article-filter__item em {
    margin-left: 6px;
    padding: 1px 6px;
    font-size: 11px;
  }

  .article-toc {
    margin: 22px 0 28px;
    padding: 16px 18px;
  }

  .article-toc__title {
    font-size: 11px;
  }

  .article-toc__list {
    font-size: 13.5px;
    line-height: 1.7;
  }

  .service-cta-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    padding: 14px 16px;
  }

  .service-cta-bar__tagline {
    white-space: normal;
    font-size: 13.5px;
    text-align: center;
    line-height: 1.5;
  }

  .service-cta-bar__divider {
    display: none;
  }

  .service-cta-bar .btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .article-content h2 {
    font-size: 22px;
  }

  .article-content h3 {
    font-size: 18px;
  }

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

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