:root {
  --bg: #050607;
  --section: #0b1115;
  --card: #101820;
  --border: #16363a;
  --text: #ffffff;
  --subtle: #a8b3b8;
  --muted: #6f7d84;
  --teal: #00b8b8;
  --bright: #00e0d4;
  --hover: #00e0d4;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 99;
  background: var(--bright);
  color: #042224;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 184, 184, 0.18);
  background:
    linear-gradient(180deg, rgba(16, 24, 32, 0.68), rgba(5, 6, 7, 0.54));
  backdrop-filter: blur(22px) saturate(145%);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
}

.nav-wrap,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  width: 220px;
  align-items: center;
  background: transparent;
}

.brand img,
.footer-logo {
  display: block;
  height: auto;
  background: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--subtle);
  font-size: 0.95rem;
}

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

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 184, 184, 0.24);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.58);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--teal);
  color: #03282a;
}

.button.primary:hover {
  background: var(--hover);
}

.button.secondary {
  border-color: var(--border);
  color: var(--text);
  background: rgba(16, 24, 32, 0.72);
}

.button.secondary:hover {
  border-color: var(--bright);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(rgba(0, 224, 212, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 224, 212, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 70% 20%, rgba(0, 166, 166, 0.22), transparent 32%),
    var(--bg);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.hero .section-inner {
  min-height: calc(100vh - 76px);
  padding: 5rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 2.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--bright);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--bright);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-top: 1rem;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
  color: var(--subtle);
}

.lead {
  max-width: 760px;
  margin-top: 1.35rem;
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-bullets li,
.check-list li {
  position: relative;
  color: var(--subtle);
  padding-left: 1.45rem;
}

.hero-bullets li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--bright);
  box-shadow: 0 0 18px rgba(0, 224, 212, 0.35);
}

.trust-line {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.metric-visual {
  position: relative;
  min-height: 500px;
}

.metric-visual.hero-demo {
  min-height: auto;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(0, 184, 184, 0.24);
  border-radius: 8px;
  background: #f7fbfb;
  box-shadow: var(--shadow);
}

.demo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
}

.database-demo {
  animation: databasePreview 8s infinite ease-in-out;
}

.dashboard-demo {
  opacity: 0;
  animation: dashboardPreview 8s infinite ease-in-out;
}

.demo-cursor {
  position: absolute;
  left: 18%;
  top: 19%;
  z-index: 4;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 1px solid rgba(10, 18, 24, 0.42);
  clip-path: polygon(0 0, 0 100%, 34% 72%, 52% 100%, 70% 90%, 52% 62%, 100% 62%);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22));
  animation: demoCursor 8s infinite ease-in-out;
}

.demo-click {
  position: absolute;
  left: 36%;
  top: 21%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 2px solid var(--bright);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.45);
  animation: demoClick 8s infinite ease-out;
}

.demo-sweep {
  position: absolute;
  left: -50%;
  top: 10%;
  z-index: 3;
  width: 42%;
  height: 25%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 224, 212, 0.18), transparent);
  transform: skewX(-14deg);
  animation: demoSweep 8s infinite ease-in-out;
  pointer-events: none;
}

@keyframes databasePreview {
  0%,
  42% {
    opacity: 1;
    transform: scale(1);
  }

  52%,
  100% {
    opacity: 0;
    transform: scale(1.035);
  }
}

@keyframes dashboardPreview {
  0%,
  43% {
    opacity: 0;
    transform: scale(1.035);
  }

  54%,
  90% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.015);
  }
}

@keyframes demoCursor {
  0% {
    opacity: 0;
    transform: translate(-14px, 16px) scale(0.96);
  }

  10%,
  24% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  34% {
    opacity: 1;
    transform: translate(110%, 210%) scale(0.96);
  }

  46%,
  100% {
    opacity: 0;
    transform: translate(190%, 260%) scale(0.92);
  }
}

@keyframes demoClick {
  0%,
  16% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.45);
  }

  23% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(0.45);
  }

  34%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.45);
  }
}

@keyframes demoSweep {
  0%,
  58% {
    opacity: 0;
    transform: translateX(0) skewX(-14deg);
  }

  66% {
    opacity: 1;
  }

  82%,
  100% {
    opacity: 0;
    transform: translateX(330%) skewX(-14deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .database-demo,
  .dashboard-demo,
  .demo-cursor,
  .demo-click,
  .demo-sweep {
    animation: none;
  }

  .database-demo,
  .demo-cursor,
  .demo-click,
  .demo-sweep {
    opacity: 0;
  }

  .dashboard-demo {
    opacity: 1;
    transform: none;
  }
}

.dashboard {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.9);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--subtle);
  font-size: 0.9rem;
}

.dot-row {
  display: flex;
  gap: 0.35rem;
}

.dot-row span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted);
}

.dot-row span:nth-child(2) {
  background: var(--teal);
}

.dot-row span:nth-child(3) {
  background: var(--bright);
}

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

.metric-tile,
.mini-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.42);
  padding: 1rem;
}

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

.metric-value {
  display: block;
  margin-top: 0.35rem;
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 850;
}

.metric-note {
  display: block;
  margin-top: 0.25rem;
  color: var(--bright);
  font-size: 0.82rem;
}

.chart {
  height: 170px;
  margin-top: 1rem;
  display: flex;
  align-items: end;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(5, 6, 7, 0.44);
  background-size: 100% 34px;
}

.chart span {
  flex: 1;
  min-width: 12px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--bright), var(--teal));
}

.growth-chart {
  height: 210px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(5, 6, 7, 0.44);
  background-size: 100% 34px, 52px 100%, auto;
  padding: 1rem;
}

.growth-chart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.growth-line,
.growth-area {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.growth-line {
  stroke: var(--bright);
  stroke-width: 7;
  filter: drop-shadow(0 0 14px rgba(0, 224, 212, 0.26));
}

.growth-area {
  fill: rgba(0, 184, 184, 0.12);
  stroke: none;
}

.growth-chart circle {
  fill: var(--bright);
  filter: drop-shadow(0 0 12px rgba(0, 224, 212, 0.55));
}

.floating-plan {
  position: absolute;
  right: -8px;
  bottom: 8px;
  width: min(290px, 75%);
  border: 1px solid rgba(0, 224, 212, 0.42);
  border-radius: 8px;
  background: rgba(11, 17, 21, 0.96);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.floating-plan strong {
  display: block;
  margin-bottom: 0.45rem;
}

.progress {
  height: 8px;
  margin-top: 0.75rem;
  overflow: hidden;
  border-radius: 99px;
  background: #203037;
}

.progress span {
  display: block;
  height: 100%;
  width: 72%;
  background: var(--bright);
}

.section {
  padding: 5rem 0;
  background: var(--bg);
}

.section.alt {
  background: var(--section);
}

.section-header {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-header p {
  margin-top: 1rem;
  font-size: 1.06rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.stats-section {
  padding-top: 0;
}

.stats-panel {
  border: 1px solid rgba(0, 184, 184, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(rgba(0, 224, 212, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 224, 212, 0.045) 1px, transparent 1px),
    var(--section);
  background-size: 30px 30px;
  padding: clamp(1.35rem, 4vw, 2.2rem);
  box-shadow: var(--shadow);
}

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

.stat-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.84);
  padding: 1.2rem;
}

.stat-card strong {
  display: block;
  margin-top: 0.85rem;
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.stat-card h3 {
  margin-top: 0;
  font-size: 1.08rem;
  line-height: 1.22;
}

.stat-card p {
  margin-top: 0.75rem;
  padding-top: 0;
  color: var(--subtle);
  font-size: 0.95rem;
}

.source-link {
  margin-top: 0.9rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.source-link:hover {
  color: var(--bright);
}

.foundation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 1.4rem;
  align-items: center;
}

.foundation-layout .section-header {
  margin-bottom: 1rem;
}

.interface-preview {
  overflow: hidden;
  border: 1px solid rgba(0, 184, 184, 0.34);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.interface-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.deliverable-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.database-preview {
  border: 1px solid rgba(0, 184, 184, 0.34);
  border-radius: 8px;
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.setup-preview {
  overflow: hidden;
  border: 1px solid rgba(0, 184, 184, 0.34);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.setup-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.wide-preview {
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 184, 184, 0.34);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.wide-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.data-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(320px, 1.08fr) minmax(210px, 0.72fr);
  gap: 1rem;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 184, 184, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(rgba(0, 224, 212, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 224, 212, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 18%, rgba(0, 184, 184, 0.18), transparent 34%),
    var(--card);
  background-size: 30px 30px, 30px 30px, auto, auto;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.35rem);
}

.data-flow::before,
.data-flow::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 0;
  width: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  transform: translateY(-50%);
}

.data-flow::before {
  left: 25%;
}

.data-flow::after {
  right: 25%;
}

.flow-column,
.flow-hub {
  position: relative;
  z-index: 1;
}

.flow-column {
  display: grid;
  gap: 0.65rem;
}

.flow-kicker {
  display: block;
  color: var(--bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-card {
  border: 1px solid rgba(0, 184, 184, 0.22);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.58);
  padding: 0.78rem;
}

.flow-card span {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: var(--bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-card strong {
  display: block;
  color: var(--text);
  line-height: 1.2;
}

.flow-card p {
  margin-top: 0.28rem;
  color: var(--subtle);
  font-size: 0.86rem;
  line-height: 1.45;
}

.flow-hub {
  display: grid;
  align-content: center;
  text-align: center;
  min-height: 560px;
}

.hub-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.8rem;
  border-radius: 50% 50% 44% 44%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 30%),
    var(--teal);
  box-shadow: 0 0 28px rgba(0, 224, 212, 0.28);
}

.flow-hub h3 {
  margin: 0.3rem auto 1rem;
  max-width: 360px;
  color: var(--text);
}

.hub-table {
  overflow: hidden;
  border: 1px solid rgba(0, 184, 184, 0.25);
  border-radius: 8px;
  background: rgba(245, 252, 252, 0.96);
  color: #082c35;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  text-align: left;
}

.hub-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(8, 44, 53, 0.12);
}

.hub-tabs span {
  padding: 0.82rem 0.7rem;
  border-right: 1px solid rgba(8, 44, 53, 0.1);
  color: #082c35;
  font-size: 0.82rem;
  font-weight: 900;
}

.hub-tabs span:first-child {
  color: #03282a;
  background: rgba(0, 184, 184, 0.16);
}

.hub-tabs span:last-child {
  border-right: 0;
}

.hub-row {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.75fr;
  gap: 0.7rem;
  align-items: center;
  min-height: 48px;
  padding: 0 0.85rem;
  border-bottom: 1px solid rgba(8, 44, 53, 0.08);
}

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

.hub-row span {
  min-height: 11px;
  border-radius: 99px;
  background: rgba(8, 44, 53, 0.11);
}

.hub-row:not(.hub-head) span:first-child {
  color: #082c35;
  background: transparent;
  font-weight: 800;
}

.hub-row:not(.hub-head) span:nth-child(2) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  color: #03282a;
  background: rgba(0, 184, 184, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
}

.hub-row span:nth-child(3) {
  color: #062c35;
  background: transparent;
  font-weight: 900;
}

.hub-head span {
  color: #46606a;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.output-card {
  background: rgba(16, 24, 32, 0.78);
}

.database-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--border);
  background: rgba(5, 6, 7, 0.5);
}

.database-tabs span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--border);
  color: var(--subtle);
  font-weight: 800;
  font-size: 0.9rem;
}

.database-tabs span:first-child {
  color: #03282a;
  background: var(--teal);
}

.database-tabs span:last-child {
  border-right: 0;
}

.database-table {
  padding: 1rem;
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.7fr 1fr;
  gap: 0.6rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(22, 54, 58, 0.72);
  color: var(--subtle);
}

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

.table-head {
  color: var(--text);
  font-weight: 900;
}

.trust-grid {
  align-content: stretch;
}

.card,
.price-card,
.article-card,
.faq-item,
.form-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
}

.card,
.article-card,
.faq-item {
  padding: 1.35rem;
}

.card p,
.article-card p,
.faq-item p {
  margin-top: 0.65rem;
}

.faq-accordion {
  display: grid;
  gap: 0.8rem;
}

.faq-accordion .faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 1.2rem 1.35rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 224, 212, 0.34);
  border-radius: 50%;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 99px;
  background: var(--bright);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-question:hover,
.faq-question:focus-visible {
  color: var(--bright);
}

.faq-question:focus-visible {
  outline: 2px solid var(--bright);
  outline-offset: -4px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.35rem;
  color: var(--subtle);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 1.2rem;
}

.icon-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 224, 212, 0.28);
  color: var(--bright);
  background: rgba(0, 224, 212, 0.06);
  font-weight: 900;
}

.offer-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(0, 224, 212, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(0, 224, 212, 0.1), transparent 44%),
    var(--card);
  padding: clamp(1.4rem, 4vw, 2.2rem);
}

.included-checklist {
  border: 1px solid rgba(0, 184, 184, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(0, 184, 184, 0.1), transparent 48%),
    var(--card);
  padding: clamp(1.2rem, 3vw, 1.6rem);
  box-shadow: var(--shadow);
}

.included-checklist .check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partnership-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr) 80px minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid rgba(0, 184, 184, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(rgba(0, 224, 212, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 224, 212, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 22%, rgba(0, 184, 184, 0.18), transparent 34%),
    var(--card);
  background-size: 30px 30px, 30px 30px, auto, auto;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.35rem);
}

.partner-node {
  border: 1px solid rgba(0, 184, 184, 0.24);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.58);
  padding: 1.2rem;
}

.partner-node span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--teal);
  color: #03282a;
  font-weight: 900;
}

.partner-node h3 {
  font-size: 1.18rem;
}

.partner-node p {
  margin-top: 0.65rem;
}

.partner-hub {
  border-color: rgba(0, 224, 212, 0.62);
  background:
    linear-gradient(150deg, rgba(0, 224, 212, 0.14), transparent 58%),
    rgba(5, 6, 7, 0.68);
}

.partner-connector {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

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

.fit-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  padding: 1.25rem;
}

.fit-card strong {
  display: block;
  color: var(--bright);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fit-card p {
  margin-top: 0.75rem;
}

.partner-delivery {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 1.5rem;
  align-items: center;
}

.price {
  color: var(--bright);
  font-size: clamp(3.2rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1;
}

.price-note {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-note {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--bright);
  color: #062325;
  font-weight: 900;
}

.audience-pill {
  min-height: 82px;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.78);
  padding: 1rem;
  color: var(--text);
  font-weight: 800;
}

.cta-panel {
  display: grid;
  gap: 1rem;
  justify-items: start;
  border: 1px solid rgba(0, 224, 212, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 166, 166, 0.15), transparent),
    var(--section);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.page-hero {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid rgba(0, 184, 184, 0.22);
  background:
    linear-gradient(rgba(0, 224, 212, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 224, 212, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(0, 184, 184, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(0, 184, 184, 0.08), transparent 62%),
    var(--bg);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem;
}

.price-card.featured {
  border-color: rgba(0, 224, 212, 0.66);
}

.price-card .price {
  font-size: 3rem;
}

.price-card .button {
  margin-top: auto;
}

.onboarding-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(0, 184, 184, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 184, 184, 0.1), transparent 48%),
    var(--card);
}

.onboarding-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.25rem 0.8rem;
  align-content: start;
  min-height: 148px;
  padding: 1.15rem;
  border-right: 1px solid rgba(0, 184, 184, 0.2);
}

.onboarding-step:last-child {
  border-right: 0;
}

.onboarding-step span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: #03282a;
  font-weight: 900;
}

.onboarding-step strong {
  color: var(--text);
  line-height: 1.25;
}

.onboarding-step p {
  margin: 0;
  color: var(--subtle);
  font-size: 0.94rem;
}

.audit-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  border: 1px solid rgba(0, 184, 184, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 184, 184, 0.12), transparent 42%),
    var(--card);
  padding: clamp(1.2rem, 3vw, 1.6rem);
}

.audit-offer h3 {
  margin-top: 0.35rem;
}

.audit-offer p {
  max-width: 850px;
  margin-top: 0.65rem;
}

.audit-offer-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.audit-offer .price {
  font-size: clamp(2.3rem, 5vw, 3.2rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.category {
  color: var(--bright);
  font-weight: 800;
}

.article-card .button {
  margin-top: 1rem;
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.article-body p,
.article-body ul {
  margin-top: 1rem;
  color: var(--subtle);
}

.article-body li {
  margin-top: 0.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: start;
}

.form-panel {
  padding: 1.35rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

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

label {
  color: var(--text);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #071014;
  color: var(--text);
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 224, 212, 0.45);
  outline-offset: 2px;
}

.success-message {
  display: none;
  margin-top: 1rem;
  color: var(--bright);
  font-weight: 800;
}

.success-message.visible {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #030404;
  padding: 3rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 2rem;
}

.footer-logo {
  width: 220px;
}

.footer-links,
.social-links {
  display: grid;
  gap: 0.5rem;
  color: var(--subtle);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--subtle);
  font-weight: 800;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--teal);
}

.social-icon:hover {
  color: var(--bright);
}

.footer-small {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    padding: 1rem 18px 1.4rem;
    border-bottom: 1px solid rgba(0, 184, 184, 0.2);
    background: rgba(5, 6, 7, 0.9);
    backdrop-filter: blur(18px);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-actions .button {
    display: none;
  }

  .hero .section-inner,
  .offer-band,
  .foundation-layout,
  .partnership-visual,
  .partner-fit,
  .partner-delivery,
  .data-flow,
  .onboarding-bar,
  .audit-offer,
  .deliverable-layout,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .partner-connector {
    width: 2px;
    height: 38px;
    justify-self: center;
    background: linear-gradient(180deg, transparent, var(--teal), transparent);
  }

  .data-flow::before,
  .data-flow::after {
    display: none;
  }

  .flow-hub {
    min-height: auto;
    order: 2;
  }

  .flow-sources {
    order: 1;
  }

  .flow-outputs {
    order: 3;
  }

  .hero .section-inner {
    min-height: auto;
  }

  .metric-visual {
    min-height: 440px;
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .brand,
  .footer-logo {
    width: 184px;
  }

  .section {
    padding: 3.4rem 0;
  }

  .data-flow {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .data-flow::-webkit-scrollbar {
    display: none;
  }

  .flow-column,
  .flow-hub {
    flex: 0 0 min(86vw, 380px);
    scroll-snap-align: start;
  }

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

  .flow-hub {
    align-content: start;
  }

  .hero .section-inner {
    padding: 3.4rem 0;
  }

  .hero-bullets,
  .metric-grid,
  .grid.three,
  .grid.four,
  .grid.two,
  .stats-grid,
  .included-checklist .check-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

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

  .database-tabs span:nth-child(2) {
    border-right: 0;
  }

  .table-row {
    grid-template-columns: 1fr 0.85fr;
  }

  .metric-visual {
    min-height: auto;
  }

  .floating-plan {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .onboarding-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 184, 184, 0.2);
  }

  .onboarding-step:last-child {
    border-bottom: 0;
  }

  .audit-offer-action {
    display: grid;
    gap: 0.85rem;
  }

  .hub-tabs span {
    padding: 0.68rem 0.45rem;
    font-size: 0.74rem;
  }

  .hub-row {
    grid-template-columns: 1fr 0.78fr;
  }

  .hub-row span:nth-child(3) {
    display: none;
  }

  .button {
    width: 100%;
  }
}
