:root {
  --bg: #070912;
  --bg2: #0a0d14;
  --card: #0c1019;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f7fbff;
  --muted: rgba(239, 247, 255, 0.6);
  --primary: #0ea5e9;
  --cyan: #22d3ee;
  --warm: #f97316;
  --green: #4ade80;
  --purple: #c084fc;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
}
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}
.narrow {
  width: min(820px, calc(100% - 32px));
}
.section {
  position: relative;
  padding: 108px 0;
  overflow: hidden;
}
.section-dark {
  background: rgba(0, 0, 0, 0.28);
  border-block: 1px solid rgba(255, 255, 255, 0.045);
}
.section-grid-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(
    ellipse 75% 55% at 50% 50%,
    #000 15%,
    transparent 85%
  );
  pointer-events: none;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}
.site-header.scrolled {
  background: rgba(7, 9, 18, 0.86);
  backdrop-filter: blur(18px);
  border-color: var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.nav-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: none;
  border: 0;
  color: white;
  padding: 0;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.brand > span {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand > span span {
  color: var(--primary);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav button {
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  transition: 0.2s;
}
.desktop-nav button:hover {
  color: white;
}
.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  font-weight: 750;
  color: white;
  transition: 0.2s ease;
}
.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--primary);
  box-shadow: 0 0 28px rgba(14, 165, 233, 0.28);
}
.btn-primary:hover {
  background: #199fda;
}
.btn-warm {
  background: var(--warm);
  box-shadow: 0 0 28px rgba(249, 115, 22, 0.3);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(14, 165, 233, 0.45);
}
.btn-outline:hover {
  background: rgba(14, 165, 233, 0.1);
}
.nav-cta {
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14px;
}
.menu-button {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  padding: 8px;
}
.menu-button svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 9, 18, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
}
.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 48px;
}
.mobile-menu nav > button:not(.btn) {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 28px;
  font-weight: 760;
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
}
.mobile-menu nav > button:not(.btn):hover {
  background: rgba(255, 255, 255, 0.05);
}
.mobile-menu .btn {
  margin-top: 22px;
}
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.18);
  filter: blur(120px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  margin: 0 0 25px;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  max-width: 720px;
  background: linear-gradient(180deg, #fff 10%, rgba(255, 255, 255, 0.68));
  -webkit-background-clip: text;
  color: transparent;
}
.hero-copy h1 span {
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
}
.hero-copy > p {
  font-size: clamp(18px, 1.6vw, 21px);
  color: var(--muted);
  max-width: 650px;
  margin: 0 0 36px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(14, 165, 233, 0.3);
  background: rgba(14, 165, 233, 0.1);
  color: #54c8ff;
  border-radius: 999px;
  padding: 7px 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 22px;
}
.eyebrow svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.eyebrow.neutral {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
}
.eyebrow.cyan {
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(14, 165, 233, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
  }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-dashboard {
  height: 600px;
  border-radius: 20px;
  background: rgba(10, 13, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(16px);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  50% {
    transform: translateY(-9px);
  }
}
.window-head {
  height: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
}
.window-dots {
  display: flex;
  gap: 6px;
}
.window-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.avatar-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
}
.dashboard-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: calc(100% - 58px);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat-row article {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 14px;
  padding: 16px;
  min-width: 0;
}
.stat-row small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stat-row strong {
  display: block;
  font-size: 20px;
  margin: 6px 0 2px;
}
.stat-row em {
  font-style: normal;
  font-size: 10px;
  color: var(--cyan);
}
.chart-card {
  flex: 1;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(255, 255, 255, 0.018);
  border-radius: 14px;
  padding: 17px;
}
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.card-head span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: 6px;
}
.line-chart {
  width: 100%;
  height: calc(100% - 25px);
  margin-top: 10px;
}
.chart-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
}
.chart-line {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
}
.chart-labels {
  fill: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  text-anchor: middle;
}
.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 58px;
}
.section-title h2,
.ai-grid h2,
.contact-grid h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}
.section-title h2 span,
.contact-grid h2 span {
  color: var(--primary);
}
.section-title p,
.lead {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
  line-height: 1.7;
}
.cards {
  display: grid;
  gap: 22px;
}
.cards.four {
  grid-template-columns: repeat(4, 1fr);
}
.cards.three {
  grid-template-columns: repeat(3, 1fr);
}
.feature-card,
.impact-cards article {
  border: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(255, 255, 255, 0.022);
  border-radius: 20px;
  padding: 26px;
  transition: 0.25s;
}
.feature-card:hover,
.impact-cards article:hover {
  border-color: rgba(14, 165, 233, 0.32);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon.accent {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
}
.icon.warm {
  background: rgba(249, 115, 22, 0.1);
  color: var(--warm);
}
.icon.purple {
  background: rgba(192, 132, 252, 0.1);
  color: var(--purple);
}
.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h3,
.impact-cards h3 {
  margin: 20px 0 8px;
  font-size: 20px;
}
.feature-card p,
.impact-cards p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  margin: 0;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.module-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.018);
  border-radius: 15px;
  padding: 20px;
  transition: 0.22s;
}
.module-card:hover {
  border-color: rgba(14, 165, 233, 0.42);
  background: rgba(14, 165, 233, 0.035);
  transform: translateY(-2px);
}
.module-card > svg {
  width: 25px;
  height: 25px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.module-card h3 {
  font-size: 17px;
  margin: 18px 0 3px;
}
.module-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.industry-grid span {
  min-height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(255, 255, 255, 0.014);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.2s;
}
.industry-grid span:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.17);
  color: white;
  transform: translateY(-2px);
}
.ai-section {
  background: #07090f;
}
.ai-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  right: -240px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(34, 211, 238, 0.09);
  filter: blur(110px);
  border-radius: 50%;
}
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 36px;
}
.mini-grid article {
  display: flex;
  gap: 13px;
}
.mini-grid article > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--cyan);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.mini-grid h4 {
  font-size: 14px;
  margin: 0 0 4px;
}
.mini-grid p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
}
.copilot-card {
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 0 60px rgba(34, 211, 238, 0.045);
  display: flex;
  flex-direction: column;
}
.copilot-head {
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 16px;
}
.copilot-head .icon {
  width: 42px;
  height: 42px;
}
.copilot-head strong,
.copilot-head small {
  display: block;
}
.copilot-head small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}
.chat {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 0;
  flex: 1;
}
.user-msg {
  align-self: flex-end;
  max-width: 78%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px 16px 4px 16px;
  padding: 11px 14px;
  font-size: 13px;
  margin: 0;
}
.bot-msg {
  max-width: 90%;
  background: rgba(34, 211, 238, 0.09);
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 4px 16px 16px 16px;
  padding: 14px;
  font-size: 13px;
}
.bot-msg p {
  margin: 0 0 10px;
}
.result-row {
  display: flex;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.25);
  padding: 7px 9px;
  border-radius: 7px;
  margin: 6px 0;
}
.result-row b {
  color: var(--cyan);
}
.bot-msg small {
  display: block;
  color: rgba(34, 211, 238, 0.8);
  margin-top: 10px;
}
.status-pill {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.14);
  color: #65c8f5;
  padding: 7px 12px;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-pill i {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.fake-input {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fake-input svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
}
.flows {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: auto;
}
.flow {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.018);
  padding: 14px;
  border-radius: 18px;
}
.flow > div {
  background: rgba(255, 255, 255, 0.045);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 13px;
}
.flow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.flow > div:last-child svg {
  color: var(--primary);
}
.flow-arrow {
  margin: auto;
  color: rgba(255, 255, 255, 0.25);
}
.integration-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.integration-grid article {
  width: 150px;
  height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.018);
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: 0.2s;
}
.integration-grid article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.045);
}
.integration-grid svg {
  width: 29px;
  height: 29px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.integration-grid span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}
.purple {
  color: #c084fc;
  background: rgba(192, 132, 252, 0.08);
  border-color: rgba(192, 132, 252, 0.2);
}
.impact-cards article {
  text-align: center;
}
.impact-cards .icon {
  margin: auto;
}
.pricing-glow,
.contact-glow {
  position: absolute;
  width: 760px;
  height: 420px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.09);
  filter: blur(110px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  position: relative;
  width: min(920px, 100%);
  margin-inline: auto;
}
.plan {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0d14;
  border-radius: 25px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 0 50px rgba(14, 165, 233, 0.15);
  transform: scale(1.035);
  z-index: 2;
}
.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.11em;
  font-weight: 900;
  white-space: nowrap;
}
.plan h3 {
  font-size: 24px;
  margin: 0 0 8px;
}
.plan > div > p {
  color: rgba(255, 255, 255, 0.47);
  font-size: 13px;
  min-height: 42px;
  margin: 0;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.price small {
  width: 100%;
  color: rgba(255, 255, 255, 0.42);
}
.price strong {
  font-size: 38px;
  letter-spacing: -0.04em;
}
.price span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 12px;
  flex: 1;
}
.plan li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}
.plan li svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}
.pricing-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  max-width: 760px;
  margin: 30px auto 0;
}
.faq-list {
  display: grid;
  gap: 13px;
}
.faq {
  border: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(255, 255, 255, 0.018);
  border-radius: 15px;
  overflow: hidden;
}
.faq button {
  width: 100%;
  border: 0;
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  text-align: left;
  font-weight: 750;
}
.faq button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: 0.2s;
}
.faq button[aria-expanded="true"] {
  color: var(--primary);
}
.faq button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.faq > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.faq > div p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.57);
  line-height: 1.7;
}
.faq.open > div {
  grid-template-rows: 1fr;
}
.faq.open > div p {
  padding-bottom: 22px;
}
.contact-section {
  background: rgba(0, 0, 0, 0.32);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  position: relative;
}
.contact-grid .lead {
  margin-bottom: 32px;
}
.email-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.025);
  padding: 14px 18px;
  border-radius: 15px;
  transition: 0.2s;
}
.email-card:hover {
  border-color: rgba(14, 165, 233, 0.38);
  background: rgba(14, 165, 233, 0.05);
}
.email-card .icon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
}
.email-card small,
.email-card strong {
  display: block;
}
.email-card small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.38);
}
.email-card strong {
  font-size: 14px;
}
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0a0d14;
  border-radius: 20px;
  padding: 27px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 17px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: white;
  border-radius: 10px;
  padding: 12px 13px;
  outline: 0;
}
.contact-form select option {
  background: #0a0d14;
}
.contact-form input:not([type="checkbox"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.08);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form > p {
  text-align: center;
  color: rgba(255, 255, 255, 0.33);
  font-size: 10px;
  margin: 0;
}
footer {
  background: #05060a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 54px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
}
.footer-grid > div:first-child p {
  color: rgba(255, 255, 255, 0.43);
  font-size: 13px;
  max-width: 390px;
}
.footer-grid h4 {
  margin: 0 0 16px;
}
.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.43);
  font-size: 13px;
  margin: 9px 0;
}
.footer-grid a:hover {
  color: white;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1050px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .hero-grid,
  .ai-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy > p {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-dashboard {
    height: 520px;
    max-width: 760px;
    width: 100%;
    margin: auto;
  }
  .cards.four,
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .ai-grid {
    gap: 50px;
  }
  .copilot-card {
    max-width: 720px;
    width: 100%;
    margin: auto;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: auto;
  }
  .plan.featured {
    transform: none;
    order: -1;
  }
  .contact-grid {
    gap: 48px;
  }
}
@media (max-width: 700px) {
  .container,
  .narrow {
    width: min(100% - 24px, 1180px);
  }
  .section {
    padding: 82px 0;
  }
  .hero {
    padding-top: 112px;
    min-height: auto;
  }
  .hero-copy h1 {
    font-size: 43px;
  }
  .hero-copy > p,
  .section-title p,
  .lead {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-dashboard {
    height: auto;
    min-height: 430px;
  }
  .stat-row {
    grid-template-columns: 1fr;
  }
  .stat-row article:nth-child(n/**/+3) {
    display: none;
  }
  .dashboard-body {
    height: auto;
  }
  .chart-card {
    height: 260px;
  }
  .window-head > span {
    font-size: 10px;
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow {
    grid-template-columns: 1fr;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
  .integration-grid article {
    width: calc(50% - 8px);
  }
  .plan {
    padding: 26px 22px;
  }
  .price strong {
    font-size: 34px;
  }
  .contact-form {
    padding: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
  .copilot-card {
    height: auto;
    min-height: 500px;
  }
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
img {
  max-width: 100%;
}
.section-dark::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(14, 165, 233, 0.34),
    rgba(34, 211, 238, 0.16),
    transparent
  );
  pointer-events: none;
}
.feature-card,
.module-card,
.impact-cards article,
.faq,
.integration-grid article,
.industry-grid span {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.018);
}
.feature-card:hover,
.module-card:hover,
.impact-cards article:hover,
.integration-grid article:hover,
.industry-grid span:hover {
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(14, 165, 233, 0.09);
}
.pricing-note {
  max-width: 900px;
  padding: 16px 18px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.035);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.65;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-login {
  border-radius: 999px;
  padding: 10px 17px;
  font-size: 13px;
  white-space: nowrap;
}
.mobile-login {
  margin-top: 18px;
}
.client-access-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #8edcff;
  font-size: 13px;
  font-weight: 750;
}
.client-access-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s ease;
}
.client-access-link:hover svg {
  transform: translateX(3px);
}
@media (max-width: 1050px) {
  .nav-actions {
    display: none;
  }
}
@media (max-width: 700px) {
  .client-access-link {
    justify-content: center;
  }
}
section[id] {
  scroll-margin-top: 96px;
}
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-help {
  color: rgba(224, 242, 254, 0.48);
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
}
.contact-form .consent-field,
.lead-form .consent-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  column-gap: 10px;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: rgba(224, 242, 254, 0.72);
  font-size: 12px;
  line-height: 1.5;
}
.consent-field > span {
  min-width: 0;
  margin: 0;
}
.contact-form .consent-field input[type="checkbox"],
.lead-form .consent-field input[type="checkbox"] {
  appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 1px 0 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  accent-color: #0ea5e9;
}
.form-status {
  display: none;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.45;
}
.form-status.visible {
  display: block;
}
.form-status.success {
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: rgba(16, 185, 129, 0.09);
  color: #a7f3d0;
}
.form-status.error {
  border: 1px solid rgba(251, 113, 133, 0.35);
  background: rgba(244, 63, 94, 0.09);
  color: #fecdd3;
}
.form-status.info {
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(14, 165, 233, 0.09);
  color: #bae6fd;
}
.btn[disabled] {
  opacity: 0.62;
  cursor: default;
  transform: none;
}
.btn[data-state="loading"] {
  cursor: progress;
}
.btn[data-state="success"] {
  opacity: 0.9;
  cursor: default;
}
footer button {
  display: block;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  padding: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
footer button:hover {
  color: #fff;
}
.lead-dialog {
  width: min(920px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 24px;
  background: #06111d;
  color: #fff;
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.72),
    0 0 70px rgba(14, 165, 233, 0.12);
  overflow: auto;
}
.lead-dialog::backdrop {
  background: rgba(0, 5, 12, 0.78);
  backdrop-filter: blur(8px);
}
.lead-dialog-shell {
  position: relative;
  padding: 28px;
  background:
    radial-gradient(circle at 90% 0, rgba(14, 165, 233, 0.13), transparent 38%),
    linear-gradient(155deg, rgba(8, 27, 43, 0.98), rgba(3, 11, 20, 0.99));
}
.lead-dialog-close {
  position: absolute;
  z-index: 2;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 213, 239, 0.2);
  border-radius: 12px;
  background: rgba(3, 14, 25, 0.8);
  color: #d8f3ff;
  cursor: pointer;
}
.lead-dialog-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.lead-dialog-close:hover {
  border-color: rgba(56, 189, 248, 0.55);
  background: rgba(14, 165, 233, 0.14);
}
.lead-dialog-copy {
  padding-right: 46px;
  margin-bottom: 22px;
}
.lead-dialog-copy h2 {
  font-size: clamp(25px, 4vw, 38px);
  margin: 11px 0 10px;
}
.lead-dialog-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(224, 242, 254, 0.62);
  line-height: 1.65;
}
.lead-form {
  display: grid;
  gap: 17px;
}
.lead-form label,
.business-selector legend {
  font-size: 12px;
  font-weight: 750;
  color: rgba(233, 247, 255, 0.78);
}
.lead-form input:not([type="checkbox"]),
.lead-form select,
.lead-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(148, 213, 239, 0.18);
  border-radius: 12px;
  background: rgba(1, 10, 18, 0.72);
  color: #fff;
  padding: 12px 13px;
  outline: none;
}
.lead-form input:not([type="checkbox"]):focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(56, 189, 248, 0.65);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.11);
}
.business-selector {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.business-selector legend {
  grid-column: 1/-1;
  margin-bottom: 2px;
}
.business-selector label {
  position: relative;
  cursor: pointer;
}
.business-selector input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.business-selector span {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 15px;
  border: 1px solid rgba(148, 213, 239, 0.16);
  border-radius: 14px;
  background: rgba(2, 13, 23, 0.62);
  transition: 0.2s ease;
}
.business-selector svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #7dd3fc;
  stroke-width: 1.8;
}
.business-selector strong {
  font-size: 13px;
  color: #f5fbff;
}
.business-selector small {
  font-size: 10px;
  line-height: 1.5;
  color: rgba(224, 242, 254, 0.48);
}
.business-selector input:checked + span {
  border-color: rgba(56, 189, 248, 0.68);
  background: rgba(14, 165, 233, 0.12);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.08);
}
.business-selector input:focus-visible + span {
  outline: 2px solid #7dd3fc;
  outline-offset: 2px;
}
.lead-submit {
  justify-self: start;
  min-width: 210px;
}
@media (max-width: 700px) {
  .lead-dialog {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 18px;
  }
  .lead-dialog-shell {
    padding: 22px 16px 20px;
  }
  .lead-dialog-copy {
    padding-right: 38px;
  }
  .business-selector {
    grid-template-columns: 1fr;
  }
  .lead-submit {
    width: 100%;
  }
  .lead-dialog-close {
    right: 10px;
    top: 10px;
  }
}
.brand.brand-full {
  gap: 0;
  flex: 0 0 auto;
  overflow: visible;
}
.brand.brand-full img {
  display: block;
  width: 132px;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  filter: none;
}
.mobile-menu-head .brand.brand-full img {
  width: 122px;
  height: auto;
  max-width: none;
}
footer .footer-brand img {
  width: 190px;
  height: auto;
  max-width: 100%;
}
@media (max-width: 700px) {
  .site-header .brand.brand-full img {
    width: 112px;
    height: auto;
    max-width: none;
  }
  .mobile-menu-head .brand.brand-full img {
    width: 120px;
    height: auto;
    max-width: none;
  }
  footer .footer-brand img {
    width: 178px;
    height: auto;
    max-width: 100%;
  }
}
@supports (content-visibility: auto) {
  main > section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: 760px;
  }
}
.demo-showcase {
  background:
    radial-gradient(circle at 50% 0, rgba(14, 165, 233, 0.08), transparent 45%),
    rgba(0, 0, 0, 0.25);
}
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.demo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.022),
    rgba(255, 255, 255, 0.008)
  );
  padding: 28px;
  min-width: 0;
}
.demo-card .demo-status {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 5px 9px;
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  color: #86efac;
  font-size: 10px;
  font-weight: 800;
}
.demo-card > small {
  display: block;
  margin-top: 18px;
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.demo-card h3 {
  font-size: 23px;
  margin: 7px 0 10px;
}
.demo-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin: 0 0 18px;
}
.demo-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 9px;
  flex: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.demo-card li:before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
  margin-right: 8px;
}
.demo-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.demo-disclaimer {
  max-width: 820px;
  margin: 18px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}
@media (max-width: 1050px) {
  .plan.featured {
    order: initial;
  }
}
@media (max-width: 700px) {
  .nav-wrap {
    height: 72px;
  }
  .site-header.scrolled {
    background: rgba(7, 9, 18, 0.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  }
  .site-header .brand.brand-full img {
    width: 100px;
  }
  .menu-button {
    padding: 7px;
  }
  .menu-button svg {
    width: 25px;
    height: 25px;
  }
  .mobile-menu {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #070912;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-dashboard {
    animation: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .hero-glow,
  .ai-glow,
  .pricing-glow,
  .contact-glow {
    display: none;
  }
  .pulse-dot,
  .status-pill i {
    animation: none;
  }
  .lead-dialog::backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .container,
  .narrow {
    width: min(100% - 24px, 1180px);
  }
  .section {
    padding: 64px 0;
  }
  section[id] {
    scroll-margin-top: 78px;
  }
  .hero {
    padding: 96px 0 54px;
  }
  .hero-copy h1 {
    font-size: 39px;
    line-height: 1.08;
    margin-bottom: 20px;
  }
  .section-title {
    margin-bottom: 34px;
  }
  .section-title h2,
  .ai-grid h2,
  .contact-grid h2 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 13px;
  }
  .section-title p,
  .hero-copy > p,
  .lead {
    font-size: 15px;
    line-height: 1.58;
  }
  .eyebrow {
    margin-bottom: 16px;
  }
  .cards.four,
  .module-grid,
  .impact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .feature-card,
  .impact-cards article {
    padding: 17px 14px;
    min-height: 168px;
  }
  .feature-card .icon,
  .impact-cards .icon {
    width: 41px;
    height: 41px;
    border-radius: 11px;
  }
  .feature-card h3,
  .impact-cards h3 {
    font-size: 16px;
    line-height: 1.2;
    margin: 15px 0 7px;
  }
  .feature-card p,
  .impact-cards p {
    font-size: 11.5px;
    line-height: 1.48;
  }
  .module-card {
    padding: 15px 13px;
    min-height: 128px;
    border-radius: 14px;
  }
  .module-card > svg {
    width: 23px;
    height: 23px;
  }
  .module-card h3 {
    font-size: 15px;
    line-height: 1.18;
    margin: 15px 0 5px;
    overflow-wrap: anywhere;
  }
  .module-card p {
    font-size: 11px;
    line-height: 1.4;
  }
  .industry-grid {
    gap: 9px;
  }
  .industry-grid span {
    min-height: 64px;
    padding: 9px;
    font-size: 11px;
    border-radius: 11px;
  }
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }
  .mini-grid article {
    display: block;
  }
  .mini-grid article > svg {
    margin-bottom: 9px;
  }
  .mini-grid h4 {
    font-size: 13px;
  }
  .mini-grid p {
    font-size: 11px;
    line-height: 1.45;
  }
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .demo-card {
    padding: 21px 18px;
  }
  .demo-card h3 {
    font-size: 20px;
  }
  .demo-card .demo-status {
    right: 16px;
    top: 16px;
  }
  .demo-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .demo-actions .btn {
    width: 100%;
  }
  .pricing-grid {
    gap: 18px;
  }
  .plan {
    padding: 25px 20px;
    text-align: center;
    border-radius: 22px;
  }
  .plan.featured {
    order: initial;
  }
  .plan h3 {
    font-size: 25px;
  }
  .plan > div > p {
    min-height: 0;
    font-size: 13px;
    line-height: 1.5;
  }
  .price {
    justify-content: center;
    text-align: center;
    padding: 22px 0;
    margin-bottom: 21px;
  }
  .price small {
    width: 100%;
    text-align: center;
  }
  .price strong {
    font-size: 36px;
  }
  .plan ul {
    width: 100%;
    max-width: 330px;
    margin: 0 auto 24px;
    text-align: left;
    gap: 11px;
  }
  .plan li {
    font-size: 13px;
    line-height: 1.48;
  }
  .plan > .btn {
    width: 100%;
  }
  .plan-badge {
    top: -13px;
  }
  .pricing-note {
    margin-top: 22px;
    padding: 14px;
    font-size: 11px;
  }
  .faq button {
    padding: 18px;
    font-size: 14px;
  }
  .faq > div p {
    padding-inline: 18px;
    font-size: 13px;
  }
  .faq.open > div p {
    padding-bottom: 18px;
  }
  .contact-grid {
    gap: 34px;
  }
  .contact-form {
    box-shadow: none;
  }
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .pulse-dot,
  .hero-dashboard {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .feature-card,
  .module-card,
  .impact-cards article,
  .industry-grid span,
  .faq button,
  .business-selector span {
    transition: none;
  }
}
/* Demo categories */
.demo-category-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: -24px auto 28px;
  max-width: 920px;
}
.demo-category-strip > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 15px;
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 13px;
  background: rgba(2, 13, 23, 0.5);
  text-align: center;
}
.demo-category-strip strong {
  font-size: 12px;
  color: #dff7ff;
}
.demo-category-strip span {
  font-size: 10px;
  color: rgba(224, 242, 254, 0.48);
}
.demo-card > small {
  margin-top: 9px;
}
.privacy-inline-link {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-inline-link:hover {
  color: #bae6fd;
}
@media (max-width: 700px) {
  .demo-category-strip {
    grid-template-columns: 1fr;
    margin: -12px 0 20px;
    gap: 8px;
  }
  .demo-category-strip > div {
    padding: 11px 13px;
  }
}

/* Integration availability labels */
.integration-grid article span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.integration-status {
  font-size: 9px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.integration-status.available {
  color: #86efac;
}
.integration-status.preparing {
  color: #fde68a;
}
.integration-status.scoped {
  color: #bae6fd;
}
.integration-status.core {
  color: rgba(224, 242, 254, 0.52);
}
