:root {
  color-scheme: light;
  font-family: "Inter", "PingFang SC", "Noto Sans SC", sans-serif;
  --bg: #0b0b12;
  --bg-2: #0f172a;
  --hero-grad-warm: rgba(255, 190, 92, 0.25);
  --hero-grad-cool: rgba(59, 130, 246, 0.35);
  --hero-grad-deep: rgba(14, 116, 144, 0.35);
  --surface: #f8fafc;
  --surface-warm: #f9f6f1;
  --surface-warm-2: #f3eee6;
  --grid-line: rgba(148, 163, 184, 0.18);
  --card-border: rgba(148, 163, 184, 0.22);
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --text-on-dark: #e5e7eb;
  --muted-on-dark: #94a3b8;
  --primary: #2563eb;
  --border: #e5e7eb;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shadow-soft: 0 16px 38px rgba(15, 23, 42, 0.06);
  --shadow-strong: 0 30px 70px rgba(15, 23, 42, 0.25);
  --section-pad-lg: 96px;
  --section-pad-md: 80px;
  --section-pad-sm: 64px;
  --h1-size: clamp(44px, 5.6vw, 68px);
  --h1-line: 1.05;
  --h2-size: clamp(32px, 3.6vw, 44px);
  --h2-line: 1.15;
  --h3-size: clamp(22px, 2.4vw, 28px);
  --h3-line: 1.25;
  --body-size: 16px;
  --body-line: 1.7;
  --small-size: 13px;
  --small-line: 1.6;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  background-color: var(--bg);
  color: var(--text-on-dark);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-on-dark);
  font-size: var(--body-size);
  line-height: var(--body-line);
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--h1-size);
  line-height: var(--h1-line);
}

h2 {
  font-size: var(--h2-size);
  line-height: var(--h2-line);
}

h3 {
  font-size: var(--h3-size);
  line-height: var(--h3-line);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
}

.main-surface {
  position: relative;
  background: linear-gradient(180deg, var(--surface-warm) 0%, var(--surface-warm-2) 100%);
  color: var(--text);
  border-radius: 40px;
  margin: 48px auto 64px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.1);
  background-image:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 60%),
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  overflow: hidden;
}

.main-surface::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(249, 246, 241, 0) 100%);
  pointer-events: none;
}

.main-surface > * {
  position: relative;
  z-index: 1;
}

.main-surface--lifted {
  padding: 24px 0 40px;
}

.surface {
  background: var(--surface);
  color: var(--text);
}

.section--dark {
  color: var(--text-on-dark);
}

.section--dark .section-title {
  color: #f8fafc;
}

.section--dark .section-subtitle {
  color: var(--muted-on-dark);
}

.section-anchor {
  scroll-margin-top: 140px;
}

.section-nav {
  position: sticky;
  top: 92px;
  z-index: 15;
  margin: 16px 0 24px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.section-nav__track {
  display: flex;
  gap: 12px;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 4px;
}

.section-nav__track::-webkit-scrollbar {
  height: 6px;
}

.section-nav__track::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.35);
  border-radius: 999px;
}

.section-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.03);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.section-nav__link:hover,
.section-nav__link:focus-visible {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}

.section-nav__summary {
  display: none;
  font-weight: 600;
  margin-bottom: 8px;
  cursor: pointer;
  color: var(--text);
}

.section-nav--collapsible {
  margin-bottom: 12px;
}

.site-header {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}

.site-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-link.is-active {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: rgba(37, 99, 235, 0.7);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  transform: translateY(-1px);
  color: #1d4ed8;
}

.nav-link.is-active::after,
.nav-link:focus-visible::after,
.nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-caret {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s ease;
}

.nav-item--mega.is-open .nav-caret {
  transform: rotate(180deg);
}

.nav-item--mega {
  position: relative;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.25);
  opacity: 0;
  pointer-events: none;
  border: none;
  padding: 0;
  margin: 0;
  transition: opacity 0.2s ease;
  z-index: 15;
}

.nav-overlay[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 12px;
  min-width: 540px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.nav-item--mega:focus-within .mega-panel,
.nav-item--mega:hover .mega-panel,
.nav-item--mega.is-open .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mega-column strong {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text);
}

.mega-item {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mega-item:hover,
.mega-item:focus-visible {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.mega-item__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.mega-item p {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.mega-badge {
  font-style: normal;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(15, 23, 42, 0.08);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-size: 13px;
  color: var(--muted);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  align-items: center;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 10px;
  padding: 8px;
  gap: 6px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 999px;
}

.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  justify-content: space-between;
}

.site-nav__list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav .nav-cta {
  display: none;
}

.site-nav .nav-cta-secondary {
  display: none;
}

.site-nav .nav-cta::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  white-space: nowrap;
}

.site-nav .nav-cta .btn {
  padding: 10px 18px;
  font-size: 14px;
}

.hero {
  padding: var(--section-pad-lg) 0 var(--section-pad-md);
}

.hero--dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 60%, #0b1120 100%);
  color: var(--text-on-dark);
}

.hero--dark::before,
.hero--dark::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(0);
  pointer-events: none;
}

.hero--dark::before {
  left: -140px;
  top: -180px;
  background: radial-gradient(circle, rgba(255, 190, 92, 0.45), transparent 65%);
}

.hero--dark::after {
  right: -160px;
  top: -120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: var(--h1-size);
  line-height: var(--h1-line);
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.hero-content p {
  color: rgba(248, 250, 252, 0.85);
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
}

.hero-subtitle {
  color: var(--muted-on-dark);
}

.subtitle {
  color: #9ca3af;
}

.hero-showcase {
  display: flex;
  justify-content: center;
}

.hero-tabs {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
}

.hero-tabs::-webkit-scrollbar {
  height: 6px;
}

.hero-tabs::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.35);
  border-radius: 999px;
}

.hero-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  scroll-snap-align: start;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hero-tab__icon {
  width: 16px;
  height: 16px;
  display: block;
}

.hero-tab:hover {
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(30, 64, 175, 0.2);
  transform: translateY(-1px);
}

.hero-tab.is-active {
  border-color: rgba(59, 130, 246, 0.8);
  background: rgba(59, 130, 246, 0.2);
  color: #f8fafc;
}

.hero-tab:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.7);
  outline-offset: 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #d1fae5;
  border: 1px solid rgba(34, 197, 94, 0.35);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.pill--ghost {
  background: rgba(15, 23, 42, 0.4);
  border-color: rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
}

.hero-window {
  position: relative;
  background: rgba(15, 23, 42, 0.72);
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(18px);
  color: #f8fafc;
  max-width: 480px;
  width: 100%;
  overflow: hidden;
}

.hero-window__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(15, 23, 42, 0.85);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-window__dots {
  display: flex;
  gap: 6px;
}

.hero-window__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.6);
}

.hero-window__dots span:nth-child(1) {
  background: #f97316;
}

.hero-window__dots span:nth-child(2) {
  background: #facc15;
}

.hero-window__dots span:nth-child(3) {
  background: #22c55e;
}

.hero-window__title {
  font-size: 12px;
  color: rgba(226, 232, 240, 0.8);
}

.hero-window__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-ui-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-ui-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.hero-ui-card p {
  margin: 0;
  font-size: 12px;
  color: rgba(226, 232, 240, 0.8);
}

.hero-ui-chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 600;
}

.hero-chat {
  display: grid;
  gap: 10px;
}

.hero-chat__bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 12px;
  color: rgba(226, 232, 240, 0.9);
}

.hero-chat__bubble--me {
  margin-left: auto;
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.45);
}

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

.hero-ui-metrics strong {
  display: block;
  font-size: 13px;
}

.hero-ui-metrics span {
  font-size: 11px;
  color: rgba(226, 232, 240, 0.7);
}

.hero-scroll {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.hero-scroll__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.hero-scroll__track .pill {
  scroll-snap-align: start;
}

.hero-scroll__track::-webkit-scrollbar {
  height: 6px;
}

.hero-scroll__track::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.4);
  border-radius: 999px;
}

.glass-stats span {
  color: rgba(226, 232, 240, 0.7);
  font-size: 12px;
}

.preview-gallery {
  padding: 24px 0 8px;
  background: var(--bg);
}

.preview-gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.preview-gallery__header h3 {
  margin: 0 0 8px;
}

.preview-gallery__header .section-subtitle {
  margin: 0;
}

.badge--soft {
  background: rgba(59, 130, 246, 0.15);
  color: #dbeafe;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

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

.preview-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.preview-mock {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.preview-mock__dashboard {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
}

.preview-mock__chat {
  position: absolute;
  right: 6%;
  bottom: 6%;
  width: 48%;
  max-width: 240px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.4);
  transform: translate(8%, 10%);
  backdrop-filter: blur(12px);
}

.preview-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-column: span 4;
  min-height: 260px;
}

.preview-card--wide {
  grid-column: span 8;
  min-height: 280px;
}

.preview-card--tall {
  grid-column: span 4;
  min-height: 320px;
}

.preview-thumb {
  border-radius: 18px;
  min-height: 140px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
  position: relative;
  overflow: hidden;
}

.preview-thumb::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(15, 23, 42, 0.6));
}

.preview-thumb--primary {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(15, 23, 42, 0.95));
}

.preview-thumb--collab {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.7), rgba(15, 23, 42, 0.9));
}

.preview-thumb--inbox {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.6), rgba(15, 23, 42, 0.9));
}

.preview-thumb--deep {
  background: linear-gradient(135deg, rgba(17, 94, 89, 0.7), rgba(15, 23, 42, 0.95));
}

.preview-thumb--translate {
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.7), rgba(15, 23, 42, 0.95));
}

.preview-thumb--channels {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.45), rgba(15, 23, 42, 0.95));
}

@media (max-width: 960px) {
  .preview-split {
    grid-template-columns: 1fr;
  }

  .preview-mock {
    order: -1;
    min-height: 320px;
  }

  .preview-mock__chat {
    position: static;
    transform: none;
    margin-top: 16px;
    width: 70%;
  }
}

.preview-content h4 {
  margin: 0 0 6px;
}

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

.trust-strip {
  padding: var(--section-pad-sm) 0;
  background: rgba(15, 23, 42, 0.55);
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.trust-strip__grid {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.trust-strip__intro h3 {
  margin: 8px 0 10px;
  color: #f8fafc;
}

.trust-strip__intro .section-subtitle {
  color: rgba(226, 232, 240, 0.7);
}

.trust-strip__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.trust-strip__stat {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.trust-strip__stat strong {
  display: block;
  color: #f8fafc;
  font-size: 14px;
  margin-bottom: 4px;
}

.trust-strip__stat span {
  color: rgba(226, 232, 240, 0.65);
  font-size: 12px;
}

.trust-strip__logos {
  overflow-x: auto;
  padding-bottom: 6px;
}

.trust-strip__logos-track {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: max-content;
  padding: 8px 4px;
}

.trust-strip__logo {
  flex: 0 0 auto;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.4);
  filter: grayscale(1);
  transition: filter 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.trust-strip__logo img {
  height: 34px;
  width: auto;
  display: block;
  opacity: 0.8;
}

.trust-strip__logo:hover {
  filter: grayscale(0.2);
  border-color: rgba(148, 163, 184, 0.4);
  transform: translateY(-2px);
}

.trust-strip__logos::-webkit-scrollbar {
  height: 6px;
}

.trust-strip__logos::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.3);
  border-radius: 999px;
}

.logo-cloud {
  padding-bottom: var(--section-pad-sm);
}

.logo-cloud__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.logo-cloud__badge {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: var(--muted-on-dark);
  font-size: 13px;
  font-weight: 600;
}

.stats-band {
  padding: 32px 0 16px;
  background: rgba(15, 23, 42, 0.6);
  color: #e2e8f0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.stats-band__header {
  margin-bottom: 16px;
}

.stats-band__header h3 {
  margin: 6px 0;
}

.stats-band__header .section-subtitle {
  color: rgba(226, 232, 240, 0.7);
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stats-band__item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.stats-band__item strong {
  display: block;
  font-size: 16px;
  color: #f8fafc;
  margin-bottom: 4px;
}

.stats-band__item span {
  color: rgba(226, 232, 240, 0.7);
  font-size: 12px;
}

.testimonials__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-card {
  display: grid;
  gap: 16px;
  position: relative;
  min-height: 220px;
}

.testimonial-quote-mark {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 32px;
  color: rgba(37, 99, 235, 0.3);
  font-family: "Georgia", "Times New Roman", serif;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin: 18px 0 0;
}

.testimonial-meta strong {
  display: block;
  color: var(--text);
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 12px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.7), rgba(14, 116, 144, 0.6));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

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

.card {
  background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
  border: 1px solid var(--card-border);
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.card p {
  color: var(--muted);
  line-height: var(--body-line);
}

.card h3,
.card h4 {
  color: var(--text);
  line-height: var(--h3-line);
}

.product-summary {
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.product-summary__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-summary__tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  font-weight: 600;
}

.product-summary__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 12px;
}

.product-summary__list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-summary__list span {
  font-weight: 600;
  color: var(--text);
}

.product-summary__list small {
  color: var(--muted);
  font-size: 12px;
}

.product-advantages {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  display: grid;
  gap: 10px;
}

.feature-card {
  border: 1px solid var(--card-border);
}

.scenario-card {
  border: 1px solid var(--card-border);
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scenario-card__icon {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.scenario-card__body h3 {
  margin-top: 0;
}

.scenario-card__body p {
  margin-bottom: 0;
  color: var(--muted);
}

.scenario-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.scenario-card__actions .button {
  padding: 10px 18px;
}

.metric-card {
  text-align: left;
  position: relative;
  padding-top: 28px;
  color: var(--text);
}

.metric-card strong {
  display: block;
  font-size: 20px;
  color: var(--text);
}

.metric-dot {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.2);
  border: 2px solid rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.feature-list {
  columns: 2;
  column-gap: 24px;
}

.cta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.15s ease;
}

.btn-primary,
.button {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
}

.btn-secondary,
.button.secondary {
  background: rgba(37, 99, 235, 0.08);
  color: var(--text);
  border: 1px solid rgba(37, 99, 235, 0.32);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.02);
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.button.ghost {
  background: rgba(15, 23, 42, 0.02);
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.btn:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
  filter: brightness(1.03);
}

.btn:hover .btn-icon,
.button:hover .btn-icon {
  transform: translateX(2px);
}

.btn-secondary:hover,
.button.secondary:hover {
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.btn:active,
.button:active {
  transform: translateY(0);
}

.btn:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}

.hero--dark .button.secondary {
  color: #f8fafc;
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.65);
}

.muted-text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 160px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: rgba(37, 99, 235, 0.92);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, width 0.2s ease;
  width: 46px;
  justify-content: center;
  overflow: hidden;
}

.floating-action__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-action__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.floating-action__label {
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-action:hover,
.floating-action:focus-visible {
  width: 140px;
  box-shadow: 0 20px 38px rgba(37, 99, 235, 0.32);
  transform: translateY(-1px);
}

.floating-action:hover .floating-action__label,
.floating-action:focus-visible .floating-action__label {
  opacity: 1;
  transform: translateX(0);
}

.floating-action--top {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(148, 163, 184, 0.3);
  color: #f8fafc;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.2);
  opacity: 0;
  pointer-events: none;
}

.floating-action--top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-cta-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(12px);
}

.mobile-cta-bar .btn {
  flex: 1;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .floating-action,
  .floating-action__label {
    transition: none;
  }
}

.site-footer {
  background: #0a0b10;
  color: #f9fafb;
  margin-top: 40px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer a {
  color: #f9fafb;
}

.build-meta {
  font-size: 12px;
  color: rgba(249, 250, 251, 0.7);
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.2);
  color: #f8fafc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero-highlights span {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-pill {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.trust-section {
  background: #0b1220;
  color: #f8fafc;
  padding: 56px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.trust-section__header .section-title {
  color: #f8fafc;
}

.trust-section__header .section-subtitle {
  color: rgba(226, 232, 240, 0.7);
  margin: 0;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 28px;
}

.trust-metric-card strong {
  display: block;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 6px;
}

.trust-metric-card span {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

.trust-tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #e2e8f0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.trust-tag img {
  width: 18px;
  height: 18px;
}

.trust-tag:hover,
.trust-tag:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.45);
}

.trust-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-testimonial {
  position: relative;
  padding-top: 28px;
}

.trust-quote {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 28px;
  color: rgba(59, 130, 246, 0.35);
}

.trust-testimonial__quote {
  margin: 0 0 16px;
  line-height: 1.7;
  color: var(--text);
}

.trust-testimonial__meta strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.trust-testimonial__meta span {
  font-size: 12px;
  color: var(--muted);
}

.trust-testimonial__tag {
  margin-top: 14px;
}

.case-cards .card {
  text-decoration: none;
  color: inherit;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-card__tag {
  align-self: flex-start;
}

.case-card h4 {
  margin: 0;
}

.case-card p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .trust-metrics,
  .trust-testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .trust-metrics,
  .trust-testimonials {
    grid-template-columns: 1fr;
  }

  .trust-tags {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .trust-tags::-webkit-scrollbar {
    height: 6px;
  }

  .trust-tags::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.35);
    border-radius: 999px;
  }

  .trust-tag {
    min-width: 160px;
    flex: 0 0 auto;
  }
}

.section {
  padding: var(--section-pad-sm) 0;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.section-title {
  font-size: var(--h3-size);
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.feature-icons-row {
  padding: 18px 0 8px;
}

.feature-icons-row__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.feature-icon-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-on-dark);
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.feature-icon {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.feature-cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-cards--rhythm {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "a b"
    "c c"
    "d e";
  gap: 20px;
}

.feature-cards--rhythm .feature-card--a {
  grid-area: a;
}

.feature-cards--rhythm .feature-card--b {
  grid-area: b;
}

.feature-cards--rhythm .feature-card--c {
  grid-area: c;
}

.feature-cards--rhythm .feature-card--d {
  grid-area: d;
}

.feature-cards--rhythm .feature-card--e {
  grid-area: e;
}

.feature-card__mock {
  margin-top: 14px;
  height: 90px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(15, 23, 42, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.feature-card__icon {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  margin-bottom: 12px;
}

.card-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
}

.feature-card--lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card--lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  border-color: rgba(37, 99, 235, 0.35);
}

.feature-card h4 {
  margin: 0 0 8px;
  color: var(--text);
}

.feature-card--link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.feature-card__meta {
  font-size: 12px;
  color: rgba(71, 85, 105, 0.9);
  font-weight: 600;
}

.feature-card__tagline {
  margin-top: auto;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

.feature-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0 28px;
}

.feature-filter__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.feature-filter__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.filter-pill:hover,
.filter-pill:focus-visible {
  border-color: rgba(37, 99, 235, 0.45);
  background: rgba(37, 99, 235, 0.16);
  transform: translateY(-1px);
}

.filter-pill.is-active {
  border-color: rgba(37, 99, 235, 0.6);
  background: rgba(37, 99, 235, 0.22);
  color: #1e3a8a;
}

.feature-grid.feature-highlight {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card--large {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.integrations__header {
  align-items: center;
}

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

.integration-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 246, 241, 0.9));
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  font-size: 13px;
  color: var(--text);
}

.integration-tile img {
  width: 18px;
  height: 18px;
}

@media (max-width: 980px) {
  .integrations__tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .integrations__header {
    align-items: flex-start;
  }

  .integrations__tiles {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .integrations__tiles::-webkit-scrollbar {
    height: 6px;
  }

  .integrations__tiles::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.35);
    border-radius: 999px;
  }

  .integration-tile {
    min-width: 160px;
    flex: 0 0 auto;
  }
}
@media (max-width: 960px) {
  .feature-cards--rhythm {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }
}

.feature-title {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--text);
}

.feature-mock {
  width: 120px;
  height: 96px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(14, 116, 144, 0.2));
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.link:hover {
  color: #1d4ed8;
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.6);
}

.hero--dark .link {
  color: #f8fafc;
}

.section-subtitle {
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 16px;
}

.cta-band {
  position: relative;
  margin: 40px 0;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(5, 6, 10, 0.95), rgba(12, 18, 32, 0.98));
  color: #e2e8f0;
  overflow: hidden;
  padding: 64px 0;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.28);
}

.main-surface .cta-band {
  margin: 40px 24px;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(0);
  pointer-events: none;
}

.cta-band::before {
  left: -120px;
  top: -160px;
  background: radial-gradient(circle, rgba(255, 190, 92, 0.35), transparent 65%);
}

.cta-band::after {
  right: -140px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 70%);
}

.cta-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-band h3 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 12px;
  color: #f8fafc;
}

.cta-band p {
  color: rgba(226, 232, 240, 0.75);
  margin-bottom: 20px;
  max-width: 520px;
}

.cta-band__card {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 22px;
  padding: 24px 26px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 60px rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(14px);
}

.cta-band__card h4 {
  margin: 0 0 16px;
  color: #f8fafc;
}

.cta-band__card ol {
  padding-left: 0;
  margin: 0 0 18px;
  color: rgba(226, 232, 240, 0.75);
  list-style: none;
  display: grid;
  gap: 12px;
}

.cta-band__card li {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}

.cta-band__card li::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
  font-weight: 700;
  font-size: 12px;
}

.cta-band__card li:nth-child(1)::before {
  content: "1";
}

.cta-band__card li:nth-child(2)::before {
  content: "2";
}

.cta-band__card li:nth-child(3)::before {
  content: "3";
}

.cta-band__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}

.cta-band__meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.scenario-tag {
  display: inline-flex;
  background: #e0e7ff;
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.card form {
  display: grid;
  gap: 12px;
}

.card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
}

.card input,
.card textarea,
.card select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: var(--card);
  color: var(--text);
  font-size: 14px;
}

.card input::placeholder,
.card textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.card input:focus,
.card textarea:focus,
.card select:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.form-actions {
  margin-top: 8px;
}

.form-actions .button {
  width: 100%;
  justify-content: center;
  padding: 14px 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.contact-card,
.form-card {
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

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

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.6);
}

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

.detail-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-column--sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}

.detail-card {
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.detail-card h3 {
  margin-top: 0;
  font-size: 20px;
}

.detail-card p {
  margin-bottom: 0;
  line-height: 1.6;
}

.detail-card ul,
.detail-card ol {
  padding-left: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.detail-card ol {
  counter-reset: detail-step;
}

.detail-card li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}

.detail-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.5);
}

.detail-card ol li {
  padding-left: 28px;
}

.detail-card ol li::before {
  counter-increment: detail-step;
  content: counter(detail-step);
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #1e3a8a;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 960px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-column--sticky {
    position: static;
  }
}

.card button.button {
  border: none;
  cursor: pointer;
}

.wizard-enabled .form-step {
  display: none;
}

.wizard-enabled .form-step.is-active {
  display: block;
}

.form-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--muted);
}

.form-progress__step {
  font-weight: 600;
  color: var(--text);
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.lead-feedback {
  margin-top: 16px;
}

.lead-feedback h4 {
  margin: 0 0 6px;
}

.hidden {
  display: none;
}

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

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.spec-table th {
  width: 35%;
  color: var(--text);
  font-weight: 600;
}

.brand-title {
  margin: 0;
}

.brand-subtitle {
  margin: 0;
}

@media (max-width: 1200px) {
  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-card {
    grid-column: span 6;
  }

  .preview-card--wide {
    grid-column: span 12;
  }
}

@media (max-width: 720px) {
  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .preview-card,
  .preview-card--wide,
  .preview-card--tall {
    grid-column: span 12;
  }
}

@media (max-width: 900px) {
  .section-nav__summary {
    display: block;
  }

  .section-nav--collapsible[open] .section-nav__summary {
    margin-bottom: 12px;
  }

  .section-nav--collapsible .section-nav__track {
    flex-direction: column;
    padding-bottom: 0;
  }

  body {
    padding-bottom: 96px;
  }

  .hero {
    padding: var(--section-pad-md) 0 var(--section-pad-sm);
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-grid {
    gap: 32px;
  }

  .preview-gallery__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .site-header .container {
    gap: 16px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(360px, 100%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.96);
    border-left: 1px solid rgba(148, 163, 184, 0.25);
    padding: 24px 20px;
    box-shadow: -20px 0 40px rgba(15, 23, 42, 0.18);
    display: flex;
    opacity: 1;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.25s ease;
    z-index: 20;
  }

  .site-nav__inner {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
  }

  .site-nav[data-open="true"] {
    transform: translateX(0);
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
    width: 100%;
  }

  .nav-item--mega {
    width: 100%;
  }

  .nav-link--mega {
    width: 100%;
    justify-content: space-between;
  }

  .mega-panel {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(148, 163, 184, 0.2);
    color: var(--text);
    margin-top: 8px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border-width: 0;
    box-shadow: none;
    transition: max-height 0.25s ease;
  }

  .nav-item--mega.is-open .mega-panel {
    max-height: 600px;
    padding: 12px;
    border-width: 1px;
  }

  .mega-panel__grid {
    grid-template-columns: 1fr;
  }

  .mega-item {
    color: var(--text);
    border-color: rgba(148, 163, 184, 0.2);
  }

  .mega-item p {
    color: var(--muted);
  }

  .site-nav .nav-cta {
    display: inline-flex;
    width: 100%;
  }

  .site-nav .nav-cta-secondary {
    display: inline-flex;
    width: 100%;
  }

  .site-nav__cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav .nav-cta.btn,
  .site-nav .nav-cta-secondary.btn {
    width: 100%;
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .floating-actions {
    display: none;
  }

  .mobile-cta-bar {
    display: flex;
  }
}
