/* ============================================
   LLMWatch Marketing — Plain CSS (no Tailwind)
   Clean, minimal, bright blue accent, lots of whitespace
   ============================================ */

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Utilities --- */
.hidden { display: none; }

/* --- Code Tabs (data-code-tab) --- */
[data-code-tab] {
  color: #888;
  border-bottom: 2px solid transparent;
}
[data-code-tab].active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* --- Base --- */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #0a0a0a;
  background: #ffffff;
  overflow-x: hidden;
  line-height: 1.5;
}

/* --- CSS Variables --- */
:root {
  --blue: #0058f7;
  --blue-hover: #004ad4;
  --blue-light: #e8f0fe;
  --border: #e5e5e5;
  --border-light: #f0f0f0;
  --text: #0a0a0a;
  --text-secondary: #555;
  --text-muted: #888;
  --bg: #ffffff;
  --bg-subtle: #fafafa;
  --bg-footer: #f7f7f7;
  --radius: 0;
  --radius-lg: 0;
  --radius-full: 0;
  --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
}

/* --- Vertical edge lines (fade top/bottom) --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1320px;
  pointer-events: none;
  z-index: 40;
  background-image:
    linear-gradient(90deg, var(--border) 1px, transparent 1px),
    linear-gradient(270deg, var(--border) 1px, transparent 1px);
  background-size: 100% 100%;
  opacity: 0.5;
  mask-image: linear-gradient(180deg, transparent, black 5rem, black calc(100% - 5rem), transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 5rem, black calc(100% - 5rem), transparent);
}

/* --- Section divider (thin gray line) --- */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* --- Container --- */
.container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --- Sections --- */
.section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* --- Label (small caps) --- */
.label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.label-gray {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Accent text --- */
.text-accent {
  color: var(--blue);
}

/* --- Announcement banner --- */
.announcement-bar {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.875rem;
  position: relative;
}

.announcement-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  margin-left: 4px;
}

.announcement-bar a:hover {
  opacity: 0.9;
}

.announcement-dismiss {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.announcement-dismiss:hover {
  color: #fff;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: 64px;
}

.navbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-weight: 700;
  color: var(--text);
  font-size: 1.125rem;
  letter-spacing: -0.025em;
}

.nav-links-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-actions-desktop {
  display: none;
  align-items: center;
  gap: 12px;
}

.nav-blur {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 450;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-link-pad {
  padding-top: 4px;
  padding-bottom: 4px;
}

.nav-signup {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.15s;
}

.nav-signup:hover {
  background: var(--blue-hover);
}

.nav-signup-mobile {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.15s;
  color: var(--text);
}

.nav-icon-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-menu-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
  padding-top: 128px;
  padding-bottom: 96px;
}

.hero-title {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 576px;
}

/* --- Bracket Button Group --- */
.bracket-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px;
  margin-bottom: 32px;
}

.bracket-group-center {
  margin-left: auto;
  margin-right: auto;
}

.bracket-group::before,
.bracket-group::after,
.bracket-group .corner-br,
.bracket-group .corner-bl {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: #bbb;
  border-style: dashed;
}

.bracket-group::before {
  content: '';
  top: 0;
  left: 0;
  border-width: 1.5px 0 0 1.5px;
}

.bracket-group::after {
  content: '';
  top: 0;
  right: 0;
  border-width: 1.5px 1.5px 0 0;
}

.bracket-group .corner-bl {
  content: '';
  bottom: 0;
  left: 0;
  border-width: 0 0 1.5px 1.5px;
}

.bracket-group .corner-br {
  content: '';
  bottom: 0;
  right: 0;
  border-width: 0 1.5px 1.5px 0;
}

/* --- Primary Button (solid blue, sharp) --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--blue);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.15s ease;
  text-decoration: none;
}

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

.btn-primary-block {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--blue);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.15s ease;
  text-decoration: none;
}

.btn-primary-block:hover {
  background: var(--blue-hover);
}

/* --- Secondary Button (outline with border, sharp) --- */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* --- Outline Button (sharp) --- */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: transparent;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

.btn-outline-sm:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ============================================
   MOCK DASHBOARD UI
   ============================================ */
.mock-ui {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  overflow: hidden;
}

.mock-ui-header {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-ui-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
}

.mock-ui-path {
  margin-left: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.mock-ui-body {
  padding: 20px;
}

.mock-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.mock-stat-card {
  border: 1px solid var(--border);
  padding: 16px;
}

.mock-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.mock-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
}

.mock-stat-change {
  font-size: 0.75rem;
  color: var(--text);
  margin-top: 4px;
}

.mock-stat-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.mock-chart {
  border: 1px solid var(--border);
  padding: 16px;
}

.mock-chart-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.mock-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 64px;
}

.mock-bar {
  flex: 1;
  background: var(--text);
}

.mock-bar-alt {
  flex: 1;
  background: #333;
}

.mock-chart-labels {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.mock-chart-label {
  flex: 1;
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   LOGOS BAR
   ============================================ */
.logos-container {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scroll-logos 30s linear infinite;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-name {
  font-weight: 700;
  color: var(--text);
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  white-space: nowrap;
  opacity: 0.6;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.section-subtitle-narrow {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 672px;
}

.section-header-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.section-intro {
  max-width: 672px;
  margin-bottom: 56px;
}

/* ============================================
   PERFORMANCE AT SCALE
   ============================================ */
.tabs-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.use-case-tab {
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 0;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color 0.15s;
}

.use-case-tab:hover {
  color: var(--text);
}

.use-case-tab.active {
  color: var(--text);
  font-weight: 500;
}

/* --- Stats bordered section --- */
.stats-bordered {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stats-bordered-header {
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
}

.stats-bordered-header p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.stats-bordered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stats-bordered-grid > div {
  padding: 32px;
}

.stats-bordered-grid > div:not(:last-child) {
  border-right: 1px solid var(--border);
}

.stat-number {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--text);
  paint-order: stroke fill;
  margin-bottom: 12px;
}

.stat-desc {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ============================================
   CASE STUDIES
   ============================================ */
.grid-2-md {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.case-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}

.case-card:hover {
  border-color: #bbb;
}

.case-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.case-company {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.025em;
}

.case-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   DEVELOPER EXPERIENCE
   ============================================ */
.grid-2-lg-start {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: flex-start;
}

.dev-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
}

.feature-list-accented {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list-accented li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-list-accented li:last-child {
  border-bottom: none;
}

.feature-list-accented .feature-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.feature-list-accented .feature-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- Code block (dark) --- */
.code-block {
  background: #0a0a0a;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.code-block pre {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.75;
  overflow-x: auto;
  padding: 1.5rem;
  margin: 0;
  color: #e5e5e5;
}

.code-header-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.code-header-tabs .tab-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #999;
  padding: 10px 0;
}

.code-header-tabs .tab-link {
  font-size: 0.75rem;
  color: var(--blue);
  text-decoration: none;
}

.line-number {
  color: #555;
  user-select: none;
  display: inline-block;
  width: 24px;
  text-align: right;
  margin-right: 16px;
}

/* Code token colors */
.token-keyword { color: #c084fc; }
.token-string { color: #86efac; }
.token-comment { color: #666; }
.token-function { color: #60a5fa; }
.token-tag { color: #f472b6; }
.token-attr { color: #fbbf24; }
.token-punctuation { color: #888; }

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.feature-card {
  border: 1px solid var(--border);
  padding: 24px;
  transition: border-color 0.2s ease;
}

.feature-card:hover {
  border-color: #bbb;
}

.feature-icon {
  margin-bottom: 16px;
  opacity: 0.5;
}

.feature-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.65;
}

.feature-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* ============================================
   INTEGRATIONS + ENTERPRISE
   ============================================ */
.grid-2-lg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card-lg {
  border: 1px solid var(--border);
  padding: 40px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.card-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.integration-tile {
  border: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.enterprise-feature {
  display: flex;
  gap: 16px;
  padding: 20px 0;
}

.enterprise-feature:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.enterprise-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.enterprise-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 4px;
}

.enterprise-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-label {
  display: block;
  margin-bottom: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}

.pricing-card:hover {
  border-color: #bbb;
}

.pricing-popular {
  border: 2px solid var(--blue);
  position: relative;
}

.pricing-popular:hover {
  border-color: var(--blue);
}

.popular-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.pricing-tier {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.pricing-price-wrap {
  margin-bottom: 24px;
}

.pricing-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-period {
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.check-icon {
  color: var(--blue);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.coming-soon {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta-content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.cta-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover {
  color: var(--blue);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-legal {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.social-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.15s, color 0.15s;
}

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

.icon-sm {
  width: 16px;
  height: 16px;
}

/* ============================================
   LAUNCH MODAL
   ============================================ */
.launch-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.launch-modal {
  background: #fff;
  border: 1px solid var(--border);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
}

.launch-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.launch-modal-close:hover {
  color: var(--text);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.modal-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Bar chart (unused but keeping) --- */
.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-track {
  flex: 1;
  height: 20px;
  background: #f5f5f5;
  overflow: hidden;
  border-radius: 0;
}

.bar-fill {
  height: 100%;
  background: var(--text);
  border-radius: 0;
}

.bar-fill-accent {
  height: 100%;
  background: var(--blue);
  border-radius: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    flex-direction: row;
    align-items: center;
  }

  .footer-logo {
    margin-bottom: 0;
  }

  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .nav-links-desktop {
    display: flex;
  }

  .nav-actions-desktop {
    display: flex;
  }

  .hamburger-btn {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

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

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

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

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2-lg-start {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2-lg {
    grid-template-columns: 1fr 1fr;
  }

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

  .section-header-row {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .bracket-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .stats-bordered-grid {
    grid-template-columns: 1fr;
  }

  .stats-bordered-grid > div:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

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