﻿:root {
  --bg: #070b12;
  --text: #f5f8ff;
  --muted: #aebcd4;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #63a5ff;
  --cyan: #66d8ff;
  --lilac: #b68bff;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 820px at 80% -5%, rgba(99, 165, 255, 0.14), transparent 45%),
    radial-gradient(920px 680px at 10% -10%, rgba(182, 139, 255, 0.16), transparent 45%),
    var(--bg);
  min-height: 100vh;
}

html,
body {
  overflow-x: hidden;
}

[hidden] {
  display: none !important;
}

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

.shell {
  width: min(1320px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  transition: background 0.22s ease, border-color 0.22s ease;
}

.site-header.scrolled {
  background: rgba(7, 11, 18, 0.8);
  border-color: var(--line);
}

.nav-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
}

.nav-desktop {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.nav-desktop > a,
.nav-mega-trigger {
  border: 0;
  background: transparent;
  color: #e6edfa;
  font: inherit;
  font-size: 0.93rem;
  padding: 0.62rem 0.82rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-desktop > a:hover,
.nav-mega-trigger:hover,
.nav-mega.open .nav-mega-trigger {
  background: rgba(99, 165, 255, 0.15);
  color: #ffffff;
}

.nav-mega {
  position: relative;
}

.nav-mega-trigger i {
  font-size: 0.72rem;
  transition: transform 0.18s ease;
}

.nav-mega.open .nav-mega-trigger i {
  transform: rotate(180deg);
}

.mega-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 50%;
  width: min(720px, 72vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(9, 15, 26, 0.98), rgba(11, 20, 34, 0.98));
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-mega.open .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-card {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.7rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.mega-card:hover {
  border-color: rgba(99, 165, 255, 0.35);
  background: rgba(99, 165, 255, 0.12);
}

.mega-card i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(99, 165, 255, 0.2);
}

.mega-card strong {
  display: block;
  font-size: 0.9rem;
}

.mega-card span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.btn {
  border: 0;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.76rem 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--lilac));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(99, 165, 255, 0.35);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #f0f4ff;
}

.btn.ghost:hover {
  border-color: rgba(99, 165, 255, 0.62);
  background: rgba(99, 165, 255, 0.14);
}

.user-action {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.user-action img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #dce7fb;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 10, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 65;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 92vw);
  height: 100dvh;
  background: #0d1524;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  z-index: 90;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.mobile-head button {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #dce7fb;
}

.mobile-drawer a,
.mobile-drawer summary {
  padding: 0.72rem;
  border-radius: 10px;
  font-size: 0.94rem;
  color: #e6eefb;
}

.mobile-drawer a:hover,
.mobile-drawer summary:hover {
  background: rgba(99, 165, 255, 0.14);
}

.mobile-drawer details {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 0.1rem;
}

.mobile-drawer details a {
  display: block;
  margin-left: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.mobile-cta {
  margin-top: auto;
  display: grid;
  gap: 0.5rem;
}

.hero {
  position: relative;
  min-height: clamp(620px, 88vh, 900px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(102, 216, 255, 0.14), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(182, 139, 255, 0.2), transparent 45%),
    linear-gradient(180deg, rgba(5, 9, 16, 0.2), rgba(5, 9, 16, 0.82));
  z-index: 1;
}

.hero-shell {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 940px;
  padding: 7.2rem 0 3.4rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(102, 216, 255, 0.5);
  background: rgba(102, 216, 255, 0.13);
  color: #dff8ff;
  border-radius: 999px;
  padding: 0.45rem 0.84rem;
  font-size: 0.82rem;
}

.hero h1 {
  margin: 1rem auto 0;
  font-size: clamp(1.95rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 900px;
}

.hero p {
  margin: 1rem auto 0;
  color: #c0cee3;
  font-size: clamp(0.98rem, 1.35vw, 1.17rem);
  max-width: 760px;
}

.hero-cta {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.64rem;
}

.hero-links {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.hero-links a {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  font-size: 0.78rem;
  color: #dce9ff;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.metrics {
  padding: 0 0 1.2rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem 0.88rem;
  background: linear-gradient(160deg, rgba(16, 26, 44, 0.86), rgba(8, 14, 24, 0.92));
}

.metric-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.metric-head i {
  color: #cfe4ff;
  font-size: 0.95rem;
}

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

.metric-card strong {
  display: block;
  margin-top: 0.5rem;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  font-weight: 900;
}

.metric-note {
  margin: 0.34rem 0 0;
  color: #a8bdd9;
  font-size: 0.78rem;
}

.section {
  padding: 4.6rem 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-head .tag {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(182, 139, 255, 0.45);
  background: rgba(182, 139, 255, 0.14);
  color: #eadbff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.38rem 0.8rem;
}

.section-head h2 {
  margin: 0.92rem 0 0;
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
}

.section-head p {
  margin: 0.78rem auto 0;
  color: var(--muted);
  max-width: 670px;
}

.features-grid {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.features-actions {
  margin-top: 1.1rem;
  display: flex;
  justify-content: center;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(12, 19, 34, 0.95), rgba(9, 16, 30, 0.95));
  padding: 1.05rem 0.95rem;
  transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.feature-card:hover {
  border-color: rgba(99, 165, 255, 0.48);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.feature-card i {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(99, 165, 255, 0.35), rgba(182, 139, 255, 0.35));
}

.feature-card h3 {
  margin: 0.75rem 0 0;
  font-size: 1rem;
}

.feature-card p {
  margin: 0.52rem 0 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.systems-toolbar {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.7rem;
}

.systems-search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.62rem 0.72rem;
}

.systems-search i {
  color: #c7d7ee;
}

.systems-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f1f6ff;
  font: inherit;
}

.systems-search input::placeholder {
  color: #96abc8;
}

.systems-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.systems-filters button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #e8f1ff;
  border-radius: 999px;
  padding: 0.38rem 0.68rem;
  font-size: 0.8rem;
}

.systems-filters button.active {
  border-color: rgba(99, 165, 255, 0.56);
  background: rgba(99, 165, 255, 0.18);
}

.systems-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.systems-count {
  margin: 0;
  color: #bcd0ea;
  font-size: 0.84rem;
}

.systems-clear {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #e8f1ff;
  border-radius: 9px;
  padding: 0.34rem 0.58rem;
  font-size: 0.78rem;
}


.systems-grid .system-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-areas:
    "icon title"
    "desc desc"
    "list list"
    "btn btn";
  column-gap: 0.65rem;
  row-gap: 0;
  min-height: 100%;
}

.systems-grid .system-card > i {
  grid-area: icon;
  margin: 0;
}

.systems-grid .system-card > h3 {
  grid-area: title;
  margin: 0;
  align-self: center;
  justify-self: start;
  padding-right: 7.6rem;
}

.systems-grid .system-badge {
  grid-area: title;
  justify-self: end;
  align-self: center;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  color: #dbe9ff;
  white-space: nowrap;
}

.systems-grid .system-badge.moderacao {
  border-color: rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.14);
}

.systems-grid .system-badge.atendimento {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.15);
}

.systems-grid .system-badge.automacao {
  border-color: rgba(139, 92, 246, 0.45);
  background: rgba(139, 92, 246, 0.15);
}

.systems-grid .system-badge.engajamento {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.14);
}

.systems-grid .system-badge.utilidades {
  border-color: rgba(148, 163, 184, 0.45);
  background: rgba(148, 163, 184, 0.16);
}

.systems-grid .system-card > p {
  grid-area: desc;
  margin-top: 0.68rem;
}

.systems-grid .system-details-btn {
  grid-area: btn;
  margin-top: 0.62rem;
  width: fit-content;
  padding: 0.38rem 0.62rem;
  font-size: 0.78rem;
  border-radius: 10px;
}

.systems-grid .system-details-btn i {
  font-size: 0.72rem;
}

.systems-grid .system-card ul {
  grid-area: list;
  margin: 0.72rem 0 0;
  padding-left: 1rem;
  color: #dce6f8;
  display: grid;
  gap: 0.32rem;
}

.systems-grid .system-card li {
  font-size: 0.84rem;
  line-height: 1.4;
}

.systems-grid .system-card code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  color: #e6f1ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 0.08rem 0.34rem;
}

.systems-empty {
  margin: 0.92rem 0 0;
  color: #b8cae4;
  text-align: center;
}

.systems-faq {
  padding-top: 0.4rem;
}

.faq-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.62rem;
  width: min(920px, 100%);
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(12, 19, 34, 0.95), rgba(9, 16, 30, 0.95));
  padding: 0.74rem 0.82rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.74rem;
  color: #d8e4f8;
  transition: transform 0.16s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0.5rem 0 0;
  color: #c3d2e8;
  font-size: 0.89rem;
  line-height: 1.48;
  padding-right: 1.1rem;
}

.system-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 1rem;
  display: grid;
  place-items: center;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.system-modal-edge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(9, 16, 29, 0.9);
  color: #edf3ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.system-modal-edge.prev {
  left: max(0.8rem, calc(50% - 430px));
}

.system-modal-edge.next {
  right: max(0.8rem, calc(50% - 430px));
}

.system-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 11, 0.7);
  backdrop-filter: blur(5px);
}

.system-modal-dialog {
  position: relative;
  width: min(760px, calc(100vw - 1.5rem));
  max-width: 100vw;
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(10, 18, 31, 0.98), rgba(13, 21, 37, 0.98));
  box-shadow: var(--shadow);
  padding: 1rem;
}

.system-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.system-modal-head h3 {
  margin: 0;
  font-size: 1.15rem;
}

.system-modal-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #eef3ff;
}

.system-modal-description {
  margin: 0;
  color: #d7e3f8;
  overflow-wrap: anywhere;
}

.system-modal-topnav {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.system-modal-nav-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #edf3ff;
  border-radius: 10px;
  padding: 0.42rem 0.62rem;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

#systemDetailsCounter {
  color: #c5d5ee;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.system-modal-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.38rem;
  color: #eaf2ff;
  overflow-wrap: anywhere;
}

.system-modal-body {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.8rem;
}

.system-modal-block {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.72rem;
}


.system-modal-block h4 {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  color: #eaf1ff;
}

.system-modal-example {
  margin: 0;
  color: #d7e3f8;
  overflow-wrap: anywhere;
}

.system-modal-commands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.system-modal-command-link {
  margin-top: 0.58rem;
  width: fit-content;
  padding: 0.38rem 0.62rem;
  font-size: 0.78rem;
  border-radius: 10px;
}

.system-modal-commands code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  color: #e6f1ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.16rem 0.4rem;
  white-space: normal;
  overflow-wrap: anywhere;
}

.system-modal-preview {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.system-modal-preview img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
}

.system-modal-preview figcaption {
  margin: 0;
  color: #b9c8e1;
  font-size: 0.84rem;
}

body.modal-open {
  overflow: hidden;
}

.steps {
  background: linear-gradient(180deg, rgba(102, 216, 255, 0.04), rgba(102, 216, 255, 0));
}

.social-proof {
  padding-top: 2.4rem;
}

.home-live-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  width: 100%;
  margin-inline: auto;
}

.home-live-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(12, 19, 34, 0.95), rgba(9, 16, 30, 0.95));
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
}


.home-live-card-cover {
  width: 100%;
  max-height: 220px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  object-fit: cover;
}

.home-live-card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.home-live-card-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  object-fit: cover;
  flex-shrink: 0;
}

.home-live-card-title {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.35;
  color: #f2f6ff;
}

.home-live-card-subtitle {
  margin: 0.1rem 0 0;
  color: #9fb4d2;
  font-size: 0.78rem;
}

.home-live-card-content {
  margin: 0;
  color: #d0def3;
  font-size: 0.88rem;
  line-height: 1.5;
}

.home-live-card-foot {
  margin-top: 0.16rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  color: #9fb4d2;
  font-size: 0.76rem;
  flex-wrap: wrap;
}

.home-live-stars {
  color: #ffd166;
  letter-spacing: 0.08em;
}

.updates-home {
  padding-top: 0.4rem;
}

.updates-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.update-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(12, 19, 34, 0.95), rgba(9, 16, 30, 0.95));
  padding: 0.95rem;
}

.update-card h3 {
  margin: 0;
  font-size: 0.95rem;
}

.update-card p {
  margin: 0.5rem 0 0;
  color: #c2d2e9;
  font-size: 0.84rem;
  line-height: 1.48;
}

.update-card span {
  display: inline-block;
  margin-top: 0.58rem;
  font-size: 0.76rem;
  color: #9fb4d2;
}

.home-faq {
  padding-top: 0.4rem;
}

.home-faq-list {
  width: min(920px, 100%);
  margin-inline: auto;
}

.steps-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.step-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(12, 19, 34, 0.95), rgba(9, 16, 30, 0.95));
  padding: 1rem;
}

.step-card span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(99, 165, 255, 0.2);
  color: #deeeff;
  font-weight: 800;
}

.step-card h3 {
  margin: 0.7rem 0 0;
  font-size: 0.98rem;
}

.step-card p {
  margin: 0.46rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.final-cta {
  padding-top: 1rem;
  padding-bottom: 4.4rem;
}

.final-cta-box {
  border-radius: 20px;
  border: 1px solid rgba(102, 216, 255, 0.34);
  background: linear-gradient(160deg, rgba(12, 20, 36, 0.95), rgba(15, 22, 39, 0.95));
  text-align: center;
  padding: 1.7rem 1rem;
}

.final-cta-box h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3.5vw, 2.3rem);
}

.final-cta-box p {
  margin: 0.72rem auto 0;
  color: #beccdf;
  max-width: 700px;
}

.sub-hero {
  padding: 5.8rem 0 2.2rem;
}

.sub-hero-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(12, 20, 36, 0.95), rgba(15, 22, 39, 0.95));
  padding: 1.3rem;
  text-align: center;
}

.sub-hero-box h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
}

.sub-hero-box p {
  margin: 0.6rem auto 0;
  color: var(--muted);
  max-width: 760px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 9, 16, 0.95);
}

.footer-main {
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1rem;
}

.footer-brand p {
  margin: 0.22rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-discord {
  width: fit-content;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col h4 {
  margin: 0;
  font-size: 0.92rem;
}

.footer-col a {
  color: #dfebff;
  font-size: 0.86rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0 1.2rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #8ea0be;
  font-size: 0.82rem;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

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

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


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

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

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

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-brand-col,
  .footer-col {
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-discord {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .system-modal-edge {
    display: none;
  }

  .system-modal-topnav {
    display: flex;
  }

  .system-modal {
    padding: 0.5rem;
    place-items: start center;
  }

  .system-modal-dialog {
    width: calc(100vw - 1rem);
    margin: 0 auto;
    max-height: calc(100dvh - 1rem);
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(1320px, calc(100% - 1rem));
  }

  .hero-shell {
    padding-top: 6.5rem;
  }

  .hero h1 {
    letter-spacing: -0.01em;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .metrics-grid,
  .features-grid,
  .steps-grid,
  .testimonials-grid,
  .updates-grid {
    grid-template-columns: 1fr;
  }


  .home-live-grid {
    grid-template-columns: 1fr;
  }

  .systems-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .systems-grid .system-card > h3 {
    padding-right: 6.1rem;
    font-size: 0.96rem;
  }

  .systems-grid .system-badge {
    font-size: 0.68rem;
    padding: 0.18rem 0.42rem;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    padding: 0.55rem 0.6rem calc(0.55rem + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(7, 11, 18, 0.97);
    backdrop-filter: blur(8px);
  }

  .mobile-sticky-cta .btn {
    justify-content: center;
    width: 100%;
    padding: 0.64rem 0.6rem;
    font-size: 0.8rem;
  }

  body.page-home {
    padding-bottom: 5.2rem;
  }
}

@media (max-width: 560px) {
  .system-modal {
    padding: 0;
    place-items: start stretch;
  }

  .system-modal-dialog {
    width: 100vw;
    max-width: 100vw;
    max-height: 100dvh;
    min-height: 100dvh;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    margin: 0;
  }
}
