@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #07111d;
  --bg-2: #0b1421;
  --bg-3: #05080d;
  --surface: #0d1724;
  --surface-2: #111c2b;
  --surface-3: #f4f6fa;
  --text: #f3f7ff;
  --text-dark: #0f1728;
  --muted: rgba(233, 238, 247, 0.74);
  --muted-dark: rgba(15, 23, 40, 0.66);
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(15, 23, 40, 0.09);
  --line-strong: rgba(255, 255, 255, 0.14);
  --blue: #4b8cff;
  --blue-deep: #2f69ff;
  --green: #4b8cff;
  --green-deep: #2f69ff;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, #05070b 0%, #07111d 35%, #07111d 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 26px);
  opacity: 0.22;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 70%);
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(199, 240, 0, 0.18);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080d14;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: #04060a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.topbar__lead {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.topbar__spark {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 0 0 4px rgba(199, 240, 0, 0.08);
  flex: none;
}

.topbar__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar__meta span,
.topbar__meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar__meta span::before,
.topbar__meta a::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  flex: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-header__bar {
  background: rgba(7, 11, 18, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.site-header__inner {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand__wordmark {
  white-space: nowrap;
}

.brand__wordmark span {
  color: var(--green);
}

.brand__wordmark .brand__dot {
  color: var(--green);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--green);
}

.site-nav .nav-cta {
  margin-left: 0.4rem;
  padding: 0.9rem 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green-deep));
  box-shadow: 0 18px 36px rgba(59, 140, 255, 0.24);
}

.site-nav .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 38px rgba(59, 140, 255, 0.28);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.nav-toggle__bars {
  position: relative;
  width: 18px;
  height: 12px;
}

.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    top 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }

.site-header[data-menu-open="true"] .nav-toggle__bars span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.site-header[data-menu-open="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.site-header[data-menu-open="true"] .nav-toggle__bars span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #4b8cff 0%, #2f69ff 55%, #1c8bff 100%);
  box-shadow: 0 18px 36px rgba(59, 140, 255, 0.28);
}

.button--primary:hover {
  box-shadow: 0 22px 42px rgba(59, 140, 255, 0.34);
}

.button--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.12);
}

.button--secondary:hover {
  border-color: rgba(199, 240, 0, 0.38);
  background: rgba(255, 255, 255, 0.04);
}

.button--nav {
  margin-left: 0.35rem;
}

.button--dark {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-deep), var(--green-deep));
}

.flash {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.flash--success {
  color: var(--text);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.flash--error {
  color: var(--text);
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.28);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 4.6rem 0;
}

.section--dark {
  background: linear-gradient(180deg, rgba(9, 14, 23, 0.98), rgba(8, 12, 19, 0.98));
}

.section--light {
  background: var(--surface-3);
  color: var(--text-dark);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.section--light .eyebrow {
  color: var(--blue-deep);
}

.section--light .section-head p,
.section--light .muted,
.section--light .process-step p,
.section--light .card p,
.section--light .result-card p {
  color: var(--muted-dark);
}

.section-head {
  max-width: 50rem;
  margin-bottom: 1.35rem;
}

.section-head h2,
.section-head h3,
.hero__title,
.page-hero__title {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-head h2 {
  font-size: 2rem;
}

.section-head p {
  margin: 0.78rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 0 1.55rem;
  background: linear-gradient(180deg, #07111d 0%, #08111b 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(199, 240, 0, 0.05), transparent 18%),
    linear-gradient(270deg, rgba(75, 140, 255, 0.08), transparent 20%);
  opacity: 0.8;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(36vw, 420px);
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.16;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.45rem;
}

.hero__copy {
  padding-top: 0.1rem;
  max-width: 760px;
}

.hero__title {
  font-size: 2.85rem;
  max-width: 14ch;
  line-height: 1.06;
}

.hero__accent {
  color: var(--green);
}

.hero__copy p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  max-width: 72ch;
  font-size: 1.05rem;
  line-height: 1.74;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.hero__proof {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.hero__panel {
  position: relative;
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 12% 3% 10% 2%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 72%, rgba(75, 140, 255, 0.26), transparent 28%),
    radial-gradient(circle at 84% 64%, rgba(53, 209, 160, 0.26), transparent 26%);
  filter: blur(42px);
  opacity: 0.95;
  pointer-events: none;
}

.laptop-visual {
  position: relative;
  max-width: 760px;
  margin-left: auto;
  padding: 1rem 1rem 0;
  transform: perspective(1800px) rotateY(-15deg) rotateX(5deg);
  transform-origin: center right;
}

.laptop-visual__screen {
  position: relative;
  padding: 0.85rem;
  border-radius: 20px 20px 12px 12px;
  background: linear-gradient(180deg, #1b2535 0%, #0a101b 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.laptop-visual__screen::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.45rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(-50%);
}

.laptop-visual__chrome {
  display: flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.15rem 0.1rem 0.85rem;
}

.laptop-visual__chrome span {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.dashboard {
  padding: 0.95rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(75, 140, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(13, 20, 31, 0.98), rgba(8, 13, 21, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.dashboard__grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  grid-template-rows: auto auto auto;
}

.dashboard__panel {
  min-width: 0;
  padding: 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.dashboard__panel--chart {
  grid-column: 1 / 2;
  grid-row: 1 / span 2;
}

.dashboard__panel--chart svg {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}

.dashboard__panel--stat {
  display: grid;
  align-content: start;
  gap: 0.15rem;
  min-height: 0;
}

.dashboard__panel--stat span,
.dashboard__panel--table .dashboard__label,
.dashboard__panel--health .dashboard__label {
  color: rgba(233, 238, 247, 0.64);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.dashboard__panel--stat strong {
  font-size: clamp(1.65rem, 2.4vw, 2rem);
  line-height: 1;
}

.dashboard__panel--stat em,
.dashboard__panel--health small {
  color: var(--success);
  font-style: normal;
  font-size: 0.82rem;
}

.dashboard__kpi {
  display: grid;
  gap: 0.15rem;
}

.dashboard__kpi strong {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.dashboard__kpi span {
  color: rgba(233, 238, 247, 0.64);
  font-size: 0.84rem;
}

.dashboard__panel--health small {
  margin-top: -0.1rem;
}

.dashboard__panel--table {
  grid-column: 1 / 2;
  grid-row: 3;
}

.dashboard__panel--table ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.dashboard__panel--table li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.42rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
}

.dashboard__panel--table li:first-child {
  border-top: 0;
}

.dashboard__panel--table em {
  color: var(--green);
  font-style: normal;
}

.dashboard__panel--health {
  grid-column: 2 / 3;
  grid-row: 3;
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.dashboard__panel--chart .dashboard__label,
.dashboard__panel--table .dashboard__label,
.dashboard__panel--health .dashboard__label {
  margin-bottom: 0.1rem;
  color: rgba(233, 238, 247, 0.82);
  font-weight: 700;
}

.proof-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.proof-pill__mark {
  width: 12px;
  height: 12px;
  margin-top: 0.22rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--green-deep));
  box-shadow: 0 0 0 4px rgba(75, 140, 255, 0.07);
  flex: none;
}

.proof-pill strong {
  display: block;
  font-size: 0.98rem;
}

.proof-pill span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.snapshot {
  padding: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 20, 31, 0.98), rgba(9, 14, 24, 0.98));
  box-shadow: var(--shadow);
}

.snapshot__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.snapshot__chart {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.snapshot__metrics {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

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

.metric-row strong {
  font-weight: 700;
}

.metric-row .trend {
  color: var(--green);
  font-weight: 800;
}

.section--services {
  padding: 2.1rem 0 4rem;
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.96), rgba(9, 14, 23, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.service-card {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.service-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green-deep));
}

.service-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  max-width: 34ch;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: #69a8ff;
  font-weight: 700;
}

.service-card a::after {
  content: "→";
}

.split-grid {
  display: grid;
  gap: 1.4rem;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(15, 23, 40, 0.1);
}

.process-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.process-step__index {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: none;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green-deep));
  box-shadow: 0 16px 30px rgba(59, 140, 255, 0.18);
}

.process-step h3 {
  margin: 0 0 0.22rem;
  color: var(--text-dark);
  font-size: 1.04rem;
}

.process-step p {
  margin: 0;
  color: var(--muted-dark);
}

.section--dark .process-step {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.section--dark .process-step h3 {
  color: #f3f7ff;
}

.section--dark .process-step p {
  color: rgba(233, 238, 247, 0.76);
}

.section--dark .process-step__index {
  box-shadow: 0 18px 32px rgba(59, 140, 255, 0.22);
}

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

.result-card {
  padding: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.result-card span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.result-card p {
  margin: 0;
  color: var(--muted);
}

.internal-links {
  display: grid;
  gap: 1rem;
}

.internal-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.internal-link strong {
  display: block;
  margin-bottom: 0.2rem;
}

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

.internal-link__arrow {
  color: var(--green);
  font-size: 1.25rem;
  flex: none;
}

.cta-band {
  padding: 3.4rem 0;
  background: linear-gradient(135deg, #0c1421 0%, #09111d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-band__grid {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.cta-band h2 {
  margin: 0;
  font-size: 2rem;
}

.cta-band p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  max-width: 54rem;
}

.footer {
  padding: 2.5rem 0 1.6rem;
  background: #05080d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.footer__grid {
  display: grid;
  gap: 1.5rem;
}

.footer__brand {
  font-size: 1.18rem;
  font-weight: 900;
}

.footer__brand span {
  color: var(--green);
}

.footer__brand .brand__dot {
  color: var(--green);
}

.footer__label {
  display: block;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.footer__links {
  display: grid;
  gap: 0.5rem;
}

.footer__links a:hover,
.footer__email:hover {
  color: #fff;
}

.footer__meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.9rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 2.55rem 0 1.45rem;
  background: linear-gradient(180deg, rgba(7, 17, 29, 0.96), rgba(7, 17, 29, 0.98));
}

.page-hero__grid {
  display: grid;
  gap: 1.5rem;
}

.page-hero__copy {
  max-width: 640px;
}

.page-hero__title {
  font-size: 2.55rem;
  max-width: 16ch;
  line-height: 1.08;
}

.page-hero__copy p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  max-width: 66ch;
  font-size: 1.02rem;
  line-height: 1.68;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.panel {
  padding: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 20, 31, 0.98), rgba(9, 14, 24, 0.98));
  box-shadow: var(--shadow);
}

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel__box {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

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

.stack-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

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

.stack-list strong {
  font-weight: 700;
}

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

.card {
  padding: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.03rem;
}

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

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: #63a6ff;
  font-weight: 700;
}

.card__link::after {
  content: "→";
}

.card__link:hover {
  color: #89c0ff;
}

.data-grid {
  display: grid;
  gap: 0.9rem;
}

.data-block {
  padding: 1rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
}

.data-block span {
  display: block;
  color: var(--muted-dark);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.data-block strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-dark);
}

.wireframe {
  display: grid;
  gap: 0.65rem;
}

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

.wireframe__block {
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 40, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.wireframe__block--hero {
  min-height: 74px;
  background: linear-gradient(135deg, rgba(75, 140, 255, 0.1), rgba(53, 209, 160, 0.08));
}

.wireframe__block--wide {
  grid-column: 1 / -1;
}

.contact-layout {
  display: grid;
  gap: 1rem;
}

.form,
.contact-card {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(13, 20, 31, 0.98), rgba(8, 13, 21, 0.98));
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  color: #fff;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

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

.field label {
  font-weight: 700;
  color: rgba(243, 247, 255, 0.92);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.82rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(75, 140, 255, 0.16);
}

.field--error input,
.field--error select,
.field--error textarea {
  border-color: rgba(239, 68, 68, 0.55);
}

.field--error input:focus,
.field--error select:focus,
.field--error textarea:focus {
  border-color: rgba(239, 68, 68, 0.7);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.16);
}

.field__error {
  font-size: 0.82rem;
  color: rgba(239, 68, 68, 0.9);
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.6rem;
}

.form__note {
  color: rgba(233, 238, 247, 0.68);
  font-size: 0.92rem;
}

.contact-card {
  background:
    radial-gradient(circle at top right, rgba(75, 140, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(13, 20, 31, 0.98), rgba(8, 13, 21, 0.98));
}

.contact-card .muted,
.contact-card p {
  color: rgba(233, 238, 247, 0.72);
}

.contact-card .eyebrow {
  color: var(--blue);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.contact-list li {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-list span {
  display: block;
  color: rgba(233, 238, 247, 0.58);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.contact-list strong {
  display: block;
  margin-top: 0.25rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #7bb7ff;
  font-weight: 700;
}

.text-link::after {
  content: "→";
}

.text-link:hover {
  color: #a7cdfd;
}

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

.mobile-only {
  display: none;
}

@media (min-width: 720px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: start;
  }

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

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

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

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

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

  .contact-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  }

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

  .page-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
    align-items: start;
  }
}

@media (min-width: 960px) {
  .split-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    align-items: start;
  }

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

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

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

  .cta-band__grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .footer__grid {
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 0.55fr));
  }

  .page-hero__title {
    font-size: 3rem;
  }

  .hero__title {
    font-size: 2.8rem;
  }

  .laptop-visual {
    max-width: 720px;
  }
}

@media (max-width: 959px) {
  .topbar__inner {
    padding: 0.45rem 0;
    flex-wrap: wrap;
  }

  .site-header__inner {
    min-height: 60px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-lg);
    background: rgba(7, 11, 18, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header[data-menu-open="true"] .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    border-radius: 12px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    justify-content: center;
  }
}

@media (max-width: 719px) {
  .hero {
    padding-top: 1.15rem;
  }

  .hero__title {
    font-size: 2.55rem;
  }

  .page-hero__title {
    font-size: 2.15rem;
  }

  .section {
    padding: 3.7rem 0;
  }

  .cta-band {
    padding: 2.85rem 0;
  }

  .cta-band h2 {
    font-size: 1.75rem;
  }

  .section-head h2 {
    font-size: 1.7rem;
  }

  .hero__copy p,
  .page-hero__copy p {
    font-size: 0.99rem;
  }

  .topbar__lead {
    width: auto;
  }

  .topbar__lead span {
    display: none;
  }

  .topbar__meta {
    width: auto;
    gap: 0.5rem;
  }

  .topbar__meta a {
    display: none;
  }

  .topbar__inner {
    padding: 0.2rem 0;
    min-height: 0;
  }

  .hero__panel::before {
    inset: 8% 0 6%;
    filter: blur(30px);
  }

  .laptop-visual {
    max-width: none;
    padding-inline: 0;
    transform: none;
  }

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

  .dashboard__panel--chart,
  .dashboard__panel--table,
  .dashboard__panel--health {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
