:root {
  color-scheme: dark;
  --bg: #050607;
  --bg-2: #0a0d0f;
  --panel: rgba(17, 22, 24, 0.78);
  --panel-strong: rgba(23, 29, 32, 0.92);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f3f7f7;
  --muted: #aab5b7;
  --quiet: #728083;
  --accent: #03dac6;
  --accent-2: #7cf4e8;
  --ok: #5ef0a1;
  --warn: #f5bf4f;
  --danger: #ff6f61;
  --info: #7fb7ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.54);
  --max: 1180px;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    var(--bg);
  background-size: 56px 56px, 56px 56px, auto;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 218, 198, 0.08), transparent 18%, transparent 74%, rgba(3, 218, 198, 0.05)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.025));
  opacity: 0.72;
  z-index: -2;
}

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

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

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 7, 0.78);
  backdrop-filter: blur(22px);
}

.nav-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  color: var(--text);
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(3, 218, 198, 0.55);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(3, 218, 198, 0.2), rgba(255, 255, 255, 0.04));
  box-shadow: 0 0 32px rgba(3, 218, 198, 0.18);
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--accent);
}

.brand-mark::before {
  width: 16px;
  height: 2px;
}

.brand-mark::after {
  width: 2px;
  height: 16px;
}

.brand small {
  display: block;
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

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

.mobile-menu {
  display: none;
}

.btn.mobile-menu {
  display: none;
}

.btn {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  min-height: 44px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(3, 218, 198, 0.48);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.btn-primary {
  color: #021716;
  border-color: rgba(3, 218, 198, 0.88);
  background: linear-gradient(180deg, #43ffee, var(--accent));
  font-weight: 760;
  box-shadow: 0 16px 42px rgba(3, 218, 198, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(180deg, #7cf4e8, #05c8b7);
}

.btn-quiet {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-full {
  width: 100%;
}

.icon-btn {
  width: 44px;
  padding: 0;
}

.hero {
  position: relative;
  min-height: calc(100svh - 116px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94) 0%, rgba(5, 6, 7, 0.7) 42%, rgba(5, 6, 7, 0.26) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.06), rgba(5, 6, 7, 0.88) 100%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  opacity: 0.95;
}

.hero-dashboard {
  position: absolute;
  width: min(920px, 68vw);
  right: -68px;
  top: 9svh;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(10, 13, 15, 0.82);
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateY(-11deg) rotateX(5deg);
}

.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(3, 218, 198, 0.24);
  pointer-events: none;
}

.hero-topbar,
.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.window-controls,
.android-buttons {
  display: flex;
  gap: 7px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.dot:nth-child(1) {
  background: var(--danger);
}

.dot:nth-child(2) {
  background: var(--warn);
}

.dot:nth-child(3) {
  background: var(--ok);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

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

.metric-card,
.panel,
.feature-card,
.service-chip,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
  backdrop-filter: blur(18px);
}

.metric-card {
  min-height: 118px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-label {
  color: var(--muted);
  font-size: 0.74rem;
}

.metric-value {
  font-size: clamp(1.4rem, 4vw, 2.35rem);
  line-height: 1;
  font-weight: 780;
}

.metric-value.accent {
  color: var(--accent);
}

.metric-value.warn {
  color: var(--warn);
}

.metric-value.danger {
  color: var(--danger);
}

.metric-value.ok {
  color: var(--ok);
}

.metric-foot {
  color: var(--quiet);
  font-size: 0.72rem;
}

.hero-chart {
  padding: 14px;
  min-height: 248px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
}

.chart-header,
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 132px;
  padding-top: 8px;
}

.mini-bars span {
  flex: 1;
  min-width: 10px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(3, 218, 198, 0.96), rgba(3, 218, 198, 0.18));
  box-shadow: 0 0 22px rgba(3, 218, 198, 0.13);
  transform-origin: bottom;
  animation: rise 900ms ease both;
}

.mini-bars span:nth-child(2n) {
  background: linear-gradient(180deg, rgba(127, 183, 255, 0.86), rgba(127, 183, 255, 0.16));
}

.mini-bars span:nth-child(3n) {
  background: linear-gradient(180deg, rgba(245, 191, 79, 0.88), rgba(245, 191, 79, 0.16));
}

@keyframes rise {
  from {
    transform: scaleY(0.32);
    opacity: 0.3;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.chart-legend,
.status-row,
.db-row,
.timeline-item,
.table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 11svh, 124px) 0 clamp(46px, 7svh, 78px);
}

.hero-copy-inner {
  width: min(880px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 760;
  margin: 0 0 20px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 900px;
  font-weight: 820;
}

.hero-subtitle {
  color: #d6ddde;
  font-size: clamp(1.08rem, 2.2vw, 1.42rem);
  line-height: 1.62;
  max-width: 720px;
  margin-bottom: 32px;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 700px;
}

.proof-chip,
.db-badge,
.deploy-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #d9e2e2;
  padding: 9px 13px;
  font-size: 0.82rem;
}

.ownership-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 10, 0.82);
}

.ownership-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.ownership-item {
  background: rgba(8, 11, 12, 0.96);
  padding: 24px;
}

.ownership-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.ownership-item span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-tight {
  padding: clamp(52px, 7vw, 88px) 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--accent-2);
  font-size: 0.84rem;
  font-weight: 760;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.02;
  margin-bottom: 0;
  font-weight: 800;
}

.section-copy {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.dashboard-shell {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(8, 11, 12, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-topbar {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.dashboard-title {
  color: var(--text);
  font-weight: 760;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 680px;
}

.dash-rail {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  background: rgba(0, 0, 0, 0.18);
}

.rail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  min-height: 40px;
  padding: 0 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 0.88rem;
}

.rail-item.active {
  color: var(--text);
  border: 1px solid rgba(3, 218, 198, 0.28);
  background: rgba(3, 218, 198, 0.08);
}

.dash-main {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.dash-main .metric-card {
  min-height: 128px;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

.span-5 {
  grid-column: span 5;
}

.span-7 {
  grid-column: span 7;
}

.span-8 {
  grid-column: span 8;
}

.span-12 {
  grid-column: 1 / -1;
}

.panel {
  padding: 16px;
  min-height: 180px;
}

.donut-wrap {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  height: calc(100% - 28px);
}

.donut {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background:
    conic-gradient(var(--accent) 0 68%, var(--warn) 68% 82%, var(--danger) 82% 91%, rgba(255, 255, 255, 0.1) 91% 100%);
  display: grid;
  place-items: center;
  margin: 0 auto;
  position: relative;
}

.donut::after {
  content: "96%";
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #0b0f10;
  display: grid;
  place-items: center;
  color: var(--text);
  font-weight: 780;
  font-size: 1.45rem;
}

.legend-list {
  display: grid;
  gap: 9px;
}

.legend-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.legend-dot.warn {
  background: var(--warn);
}

.legend-dot.danger {
  background: var(--danger);
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 15px;
}

.timeline-item {
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  font-size: 0.86rem;
}

.timeline-item strong {
  color: var(--text);
  display: block;
  margin-bottom: 3px;
}

.table {
  display: grid;
  gap: 0;
  margin-top: 14px;
}

.table-row {
  min-height: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.86rem;
}

.table-row strong {
  color: var(--text);
}

.status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  font-size: 0.74rem;
  white-space: nowrap;
}

.status.ok {
  color: var(--ok);
  border-color: rgba(94, 240, 161, 0.28);
}

.status.warn {
  color: var(--warn);
  border-color: rgba(245, 191, 79, 0.32);
}

.status.danger {
  color: var(--danger);
  border-color: rgba(255, 111, 97, 0.32);
}

.priority-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.priority {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.priority strong {
  color: var(--text);
}

.health-bars {
  display: grid;
  gap: 11px;
  margin-top: 16px;
}

.health-line {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--ok));
}

.bar.warn span {
  background: linear-gradient(90deg, var(--warn), #f6d787);
}

.bar.danger span {
  background: linear-gradient(90deg, var(--danger), #ffb1a9);
}

.mobile-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 34%),
    #07090a;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.phone-stack {
  min-height: 610px;
  position: relative;
}

.phone {
  width: 290px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050607;
  padding: 12px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.phone.primary {
  position: absolute;
  left: 36px;
  top: 0;
  z-index: 2;
}

.phone.secondary {
  position: absolute;
  right: 8px;
  bottom: 10px;
  transform: scale(0.88);
  opacity: 0.88;
}

.phone-screen {
  min-height: 548px;
  border-radius: 24px;
  overflow: hidden;
  background: #0b0f10;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.android-status {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  padding: 0 18px;
  font-size: 0.72rem;
}

.app-head {
  padding: 16px 16px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-head strong {
  display: block;
  margin-bottom: 4px;
}

.app-head span {
  color: var(--muted);
  font-size: 0.78rem;
}

.app-card {
  margin: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 12px;
}

.app-card h4 {
  margin: 0 0 7px;
  font-size: 0.96rem;
}

.app-card p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.app-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.app-action {
  border-radius: 8px;
  border: 1px solid rgba(3, 218, 198, 0.22);
  background: rgba(3, 218, 198, 0.08);
  color: var(--accent-2);
  min-height: 38px;
  display: grid;
  place-items: center;
}

.mobile-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.mobile-list li,
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #d7dfdf;
  line-height: 1.55;
}

.mobile-list i,
.check-list i {
  color: var(--accent);
  margin-top: 3px;
  flex: 0 0 auto;
}

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

.feature-card {
  padding: 22px;
  min-height: 168px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(3, 218, 198, 0.34);
  background: linear-gradient(180deg, rgba(3, 218, 198, 0.08), rgba(255, 255, 255, 0.035));
}

.feature-card i {
  color: var(--accent);
  margin-bottom: 18px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.db-section {
  background: #07090a;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.db-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.db-panel {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(10, 13, 15, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.db-panel-header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.db-panel-body {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.db-row {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  min-height: 58px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.db-row strong {
  color: var(--text);
}

.connector-line {
  height: 36px;
  width: 1px;
  background: linear-gradient(180deg, rgba(3, 218, 198, 0), rgba(3, 218, 198, 0.8), rgba(3, 218, 198, 0));
  margin: -4px auto;
}

.db-badges,
.deploy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(320px, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.split-pane {
  background: rgba(7, 9, 10, 0.98);
  padding: clamp(46px, 7vw, 86px);
}

.split-pane.alt {
  background: rgba(10, 13, 15, 0.98);
}

.deployment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.deployment-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 22px;
  min-height: 188px;
}

.deployment-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.deployment-card h3 i {
  color: var(--accent);
}

.deployment-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}

.security-stack {
  display: grid;
  gap: 12px;
}

.security-layer {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
}

.security-layer i {
  color: var(--accent);
}

.security-layer strong {
  display: block;
  margin-bottom: 5px;
}

.security-layer span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.why-panel {
  border: 1px solid rgba(3, 218, 198, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(3, 218, 198, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(7, 9, 10, 0.92);
  padding: clamp(34px, 6vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.quote {
  font-size: clamp(1.65rem, 4vw, 3.4rem);
  line-height: 1.09;
  font-weight: 780;
  margin-bottom: 0;
}

.pricing-section {
  background: #07090a;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.price-card {
  border: 1px solid rgba(3, 218, 198, 0.32);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(3, 218, 198, 0.1), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  padding: 26px;
}

.price-eyebrow {
  color: var(--accent-2);
  font-weight: 760;
  margin-bottom: 14px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.price strong {
  font-size: clamp(3.2rem, 9vw, 5.4rem);
  line-height: 0.96;
}

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

.license-title {
  font-size: 1.2rem;
  margin-bottom: 22px;
}

.included-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.included-grid li,
.services-grid li {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #dce4e4;
}

.included-grid i,
.services-grid i {
  color: var(--accent);
  flex: 0 0 auto;
}

.pricing-note {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.62;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

.service-chip {
  padding: 18px;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-chip i {
  color: var(--accent);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.contact-panel {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(10, 13, 15, 0.86);
  padding: 24px;
  box-shadow: var(--shadow);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: #dce4e4;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  min-height: 48px;
  padding: 0 13px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 138px;
  padding-top: 13px;
  resize: vertical;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(3, 218, 198, 0.6);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(3, 218, 198, 0.08);
}

.form-note {
  color: var(--muted);
  min-height: 22px;
  margin: 14px 0 0;
  line-height: 1.55;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050607;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 6px;
}

.footer-brand span,
.copyright {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.page-hero {
  padding: clamp(72px, 12vw, 124px) 0 clamp(42px, 7vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(3, 218, 198, 0.06), rgba(255, 255, 255, 0));
}

.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  max-width: 920px;
}

.page-hero p {
  color: var(--muted);
  max-width: 760px;
  line-height: 1.7;
  font-size: 1.08rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  display: grid;
  gap: 8px;
}

.legal-nav a {
  color: var(--muted);
  min-height: 36px;
  display: flex;
  align-items: center;
}

.legal-nav a:hover {
  color: var(--text);
}

.legal-card {
  padding: clamp(24px, 4vw, 42px);
  margin-bottom: 18px;
}

.legal-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}

.legal-card h3 {
  margin-top: 26px;
  margin-bottom: 10px;
}

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

.legal-card ul {
  padding-left: 20px;
}

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

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

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

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .btn.mobile-menu {
    display: inline-flex;
  }

  .nav-links.is-open {
    position: absolute;
    display: grid;
    top: 72px;
    left: 20px;
    right: 20px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 6, 7, 0.96);
    box-shadow: var(--shadow);
  }

  .hero-dashboard {
    right: -260px;
    width: 900px;
    opacity: 0.66;
  }

  .section-head,
  .mobile-grid,
  .db-layout,
  .split-band,
  .security-layout,
  .why-panel,
  .pricing-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

  .dash-rail {
    display: none;
  }

  .span-3,
  .span-4,
  .span-5,
  .span-7,
  .span-8 {
    grid-column: span 6;
  }

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

  .phone-stack {
    width: min(650px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .nav-inner,
  .container,
  .hero-copy,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .site-nav .btn-quiet {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 44px;
    padding-bottom: 32px;
  }

  .hero-dashboard {
    width: 760px;
    right: -430px;
    top: 120px;
    opacity: 0.42;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  }

  h1 {
    font-size: clamp(2.45rem, 13.4vw, 4rem);
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.52;
    margin-bottom: 22px;
  }

  .hero-actions .btn,
  .nav-actions .btn-primary {
    width: 100%;
  }

  .hero-actions {
    max-width: 420px;
    margin-bottom: 22px;
  }

  .nav-actions {
    gap: 8px;
  }

  .ownership-grid,
  .feature-grid,
  .deployment-grid,
  .included-grid,
  .services-grid,
  .form-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .dash-main {
    grid-template-columns: 1fr;
  }

  .span-3,
  .span-4,
  .span-5,
  .span-7,
  .span-8,
  .span-12 {
    grid-column: 1 / -1;
  }

  .donut-wrap {
    grid-template-columns: 1fr;
  }

  .dashboard-body {
    min-height: auto;
  }

  .phone-stack {
    min-height: 720px;
  }

  .phone.primary {
    left: calc(50% - 145px);
  }

  .phone.secondary {
    left: calc(50% - 145px);
    right: auto;
    top: 238px;
    bottom: auto;
    transform: scale(0.86) translateX(72px);
  }

  .split-pane {
    padding: 36px 20px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand small {
    display: none;
  }

  .nav-inner {
    min-height: 66px;
  }

  .mobile-menu {
    width: 40px;
    min-height: 40px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .phone.secondary {
    display: none;
  }

  .phone-stack {
    min-height: 590px;
  }

  .health-line {
    grid-template-columns: 76px minmax(0, 1fr) 36px;
  }
}
