/* ══════════════════════════════════════════════════════════════════════════
   MARKETING SITE — Neo-Industrial Design System
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Foundations ──────────────────────────────────────────────────────── */

.mkt-body {
  background-color: #08080d !important;
  color: #e4e4e7 !important;
  color-scheme: dark;
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.mkt-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mkt-container-wide {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Color tokens ─────────────────────────────────────────────────────── */

.mkt-text-accent { color: #3b82f6; }
.mkt-text-muted  { color: #52525b; }
.mkt-text-dim    { color: #3f3f46; }
.mkt-text-bold   { font-weight: 700; }


/* ── Navigation ───────────────────────────────────────────────────────── */

.mkt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(8, 8, 13, 0.6);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.mkt-nav--scrolled {
  background: rgba(8, 8, 13, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.mkt-nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mkt-nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mkt-nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.mkt-nav-logo:hover { opacity: 0.8; }

.mkt-nav-status {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (min-width: 640px) {
  .mkt-nav-status { display: inline-flex; }
}

.mkt-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
  animation: mkt-pulse-dot 2s ease-in-out infinite;
}

@keyframes mkt-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.mkt-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.mkt-nav-link {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  text-decoration: none;
}

.mkt-nav-link:hover { color: #f4f4f5; }

.mkt-nav-right {
  display: flex;
  align-items: center;
}


/* ── Buttons ──────────────────────────────────────────────────────────── */

.mkt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  background-color: #3b82f6;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
  text-decoration: none;
}

.mkt-btn-primary:hover {
  background-color: #2563eb;
  transform: translateY(-1px);
}

.mkt-btn-primary:active { transform: translateY(0); }

.mkt-btn-primary--lg {
  padding: 1rem 2.5rem;
  font-size: 13px;
}

.mkt-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 11px;
  font-family: inherit;
  border: 1px solid #52525b;
  background: transparent;
  color: #d4d4d8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.mkt-btn-outline:hover {
  border-color: #71717a;
  color: #fff;
}


/* ── Badge ────────────────────────────────────────────────────────────── */

.mkt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 10px;
  border: 1px solid #27272a;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
}


/* ── Hero ─────────────────────────────────────────────────────────────── */

.mkt-hero {
  position: relative;
  padding: 10rem 1.5rem 5rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .mkt-hero { padding-top: 11rem; padding-bottom: 6rem; }
}

.mkt-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(63, 63, 70, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 63, 70, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}

.mkt-hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mkt-hero-content {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}

.mkt-hero-title {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.mkt-hero-sub {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #a1a1aa;
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.mkt-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.mkt-hero-proof {
  font-size: 11px;
  color: #3f3f46;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ── Command bar (hero) ───────────────────────────────────────────────── */

.mkt-cmd-bar {
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.5rem;
  background: rgba(24, 24, 27, 0.6);
  border: 1px solid #27272a;
}

@media (min-width: 640px) {
  .mkt-cmd-bar { display: inline-flex; }
}

.mkt-cmd-keys {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mkt-cmd-keys kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.625rem;
  font-size: 13px;
  font-family: inherit;
  background: #27272a;
  border: 1px solid #3f3f46;
  color: #d4d4d8;
  border-radius: 3px;
}

.mkt-cmd-keys span {
  font-size: 12px;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mkt-cmd-sep { color: #27272a; }

.mkt-cmd-label {
  font-size: 10px;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ── Sections ─────────────────────────────────────────────────────────── */

.mkt-section {
  padding: 6rem 1.5rem;
}

.mkt-section--flush { padding-top: 0; }

.mkt-section--border {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.mkt-section--cta {
  text-align: center;
  padding: 8rem 1.5rem;
}

.mkt-section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #52525b;
}

.mkt-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #27272a, transparent);
}

.mkt-section-title {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.mkt-section-sub {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  color: #71717a;
  max-width: 32rem;
  margin-bottom: 2.5rem;
}


/* ── Screenshot ───────────────────────────────────────────────────────── */

.mkt-screenshot-frame {
  position: relative;
  padding: 1px;
}

/* Corner markers */
.mkt-screenshot-frame::before,
.mkt-screenshot-frame::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 2;
}

.mkt-screenshot-frame::before {
  top: -1px;
  left: -1px;
  border-top: 1.5px solid #3f3f46;
  border-left: 1.5px solid #3f3f46;
}

.mkt-screenshot-frame::after {
  top: -1px;
  right: -1px;
  border-top: 1.5px solid #3f3f46;
  border-right: 1.5px solid #3f3f46;
}

.mkt-screenshot-inner {
  position: relative;
  overflow: hidden;
  border: 1px solid #27272a;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.06),
    0 8px 80px -16px rgba(59, 130, 246, 0.12),
    0 32px 80px -32px rgba(0, 0, 0, 0.6);
}

/* Bottom corner markers */
.mkt-screenshot-inner::before,
.mkt-screenshot-inner::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 2;
}

.mkt-screenshot-inner::before {
  bottom: -1px;
  left: -1px;
  border-bottom: 1.5px solid #3f3f46;
  border-left: 1.5px solid #3f3f46;
}

.mkt-screenshot-inner::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1.5px solid #3f3f46;
  border-right: 1.5px solid #3f3f46;
}

.mkt-screenshot-img {
  display: block;
  width: 100%;
  height: auto;
}


/* ── Feature Carousel ─────────────────────────────────────────────────── */

.mkt-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.mkt-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.mkt-carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 0.25rem;
}

@media (min-width: 768px) {
  .mkt-carousel-slide {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

/* Slide visual (mockup) */
.mkt-slide-visual {
  background: rgba(24, 24, 27, 0.4);
  border: 1px solid #27272a;
  border-radius: 6px;
  overflow: hidden;
}

.mkt-slide-mockup {
  display: flex;
  flex-direction: column;
}

.mkt-mockup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #27272a;
  background: rgba(24, 24, 27, 0.6);
}

.mkt-mockup-dots {
  display: flex;
  gap: 5px;
}

.mkt-mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27272a;
}

.mkt-mockup-title {
  font-size: 10px;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mkt-mockup-body {
  padding: 1.25rem;
  min-height: 240px;
}

@media (min-width: 768px) {
  .mkt-mockup-body { min-height: 280px; }
}

/* Slide text */
.mkt-slide-text {
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .mkt-slide-text { padding: 2rem 0; }
}

.mkt-slide-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #27272a;
  color: #3b82f6;
  margin-bottom: 1.25rem;
}

.mkt-slide-title {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.mkt-slide-desc {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: #a1a1aa;
  line-height: 1.7;
}

/* Carousel controls */
.mkt-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1a1a1f;
}

.mkt-carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.mkt-carousel-dot {
  width: 32px;
  height: 3px;
  background: #27272a;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, width 0.3s;
  padding: 0;
}

.mkt-carousel-dot--active {
  background: #3b82f6;
  width: 48px;
}

.mkt-carousel-arrows {
  display: flex;
  gap: 0.5rem;
}

.mkt-carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #27272a;
  background: transparent;
  color: #71717a;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  padding: 0;
}

.mkt-carousel-arrow:hover {
  border-color: #3f3f46;
  color: #e4e4e7;
}


/* ── Carousel Mockup: Command Palette ─────────────────────────────────── */

.mkt-cmd-mock {
  border: 1px solid #27272a;
  border-radius: 4px;
  overflow: hidden;
}

.mkt-cmd-mock-input {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #27272a;
  color: #71717a;
  font-size: 12px;
}

.mkt-cmd-mock-input kbd {
  margin-left: auto;
  padding: 2px 6px;
  font-size: 10px;
  font-family: inherit;
  background: #18181b;
  border: 1px solid #27272a;
  color: #52525b;
  border-radius: 2px;
}

.mkt-cmd-mock-results {
  display: flex;
  flex-direction: column;
}

.mkt-cmd-mock-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1rem;
  font-size: 12px;
  color: #a1a1aa;
  transition: background-color 0.15s;
}

.mkt-cmd-mock-item--active {
  background: rgba(59, 130, 246, 0.08);
  color: #e4e4e7;
}

.mkt-cmd-mock-item kbd {
  margin-left: auto;
  padding: 2px 6px;
  font-size: 10px;
  font-family: inherit;
  background: #18181b;
  border: 1px solid #27272a;
  color: #52525b;
  border-radius: 2px;
}


/* ── Carousel Mockup: AI Chat ─────────────────────────────────────────── */

.mkt-ai-mock {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mkt-ai-mock-msg {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.mkt-ai-mock-role {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #52525b;
}

.mkt-ai-mock-msg p {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 12px;
  color: #d4d4d8;
  line-height: 1.6;
}

.mkt-ai-mock-msg--user {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #1a1a1f;
}

.mkt-ai-mock-tool {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem;
  font-size: 10px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.12);
  color: #71717a;
  border-radius: 3px;
  width: fit-content;
  font-family: 'IBM Plex Mono', monospace;
}

.mkt-ai-mock-check {
  color: #22c55e;
  font-size: 11px;
}


/* ── Carousel Mockup: Privacy ─────────────────────────────────────────── */

.mkt-privacy-mock {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mkt-privacy-mock-map {
  display: flex;
  justify-content: center;
}

.mkt-privacy-map-svg {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.mkt-pulse-ring {
  animation: mkt-pulse-ring 2.5s ease-in-out infinite;
}

.mkt-pulse-ring--delay {
  animation-delay: 0.5s;
}

@keyframes mkt-pulse-ring {
  0%, 100% { opacity: 0.3; transform-origin: center; }
  50% { opacity: 0.1; }
}

.mkt-privacy-mock-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.mkt-privacy-fact {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 11px;
  color: #a1a1aa;
}

.mkt-privacy-fact-icon {
  color: #22c55e;
  font-size: 12px;
}


/* ── AI Mockup: Memory indicator ───────────────────────────────────────── */

.mkt-ai-mock-tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.mkt-ai-mock-memory {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  padding: 0.375rem 0.625rem;
  font-size: 10px;
  color: #52525b;
  border-top: 1px solid #1a1a1f;
  font-family: 'IBM Plex Mono', monospace;
}

.mkt-ai-mock-memory svg {
  color: #3b82f6;
  flex-shrink: 0;
}


/* ── Carousel Mockup: Task Extraction ─────────────────────────────────── */

.mkt-tasks-mock {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mkt-tasks-mock-note {
  border: 1px solid #27272a;
  border-radius: 4px;
  overflow: hidden;
}

.mkt-tasks-mock-note-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 11px;
  font-weight: 700;
  color: #e4e4e7;
  background: rgba(24, 24, 27, 0.6);
  border-bottom: 1px solid #27272a;
}

.mkt-tasks-mock-checklist {
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.mkt-tasks-mock-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 11px;
  color: #a1a1aa;
}

.mkt-tasks-mock-check--done {
  color: #52525b;
  text-decoration: line-through;
}

.mkt-tasks-mock-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border: 1px solid #3f3f46;
  border-radius: 2px;
  font-size: 9px;
  flex-shrink: 0;
}

.mkt-tasks-mock-checkbox--checked {
  background: rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
  color: #3b82f6;
}

.mkt-tasks-mock-priority {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 0 4px;
  border-radius: 2px;
}

.mkt-tasks-mock-due {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  padding: 0 4px;
  border-radius: 2px;
}

.mkt-tasks-mock-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  color: #3f3f46;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.125rem 0;
}

.mkt-tasks-mock-cards {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.mkt-tasks-mock-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #27272a;
  border-radius: 4px;
  border-left: 3px solid;
}

.mkt-tasks-mock-card--high {
  border-left-color: #ef4444;
}

.mkt-tasks-mock-card--medium {
  border-left-color: #3b82f6;
}

.mkt-tasks-mock-card-title {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 11px;
  color: #e4e4e7;
}

.mkt-tasks-mock-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 9px;
}

.mkt-tasks-mock-card-badge {
  padding: 0 4px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'IBM Plex Mono', monospace;
}

.mkt-tasks-mock-card-badge--high {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.mkt-tasks-mock-card-badge--date {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

.mkt-tasks-mock-card-link {
  color: #52525b;
  font-family: 'IBM Plex Mono', monospace;
}


/* ── Comparison ───────────────────────────────────────────────────────── */

.mkt-comparison {
  text-align: center;
  padding: 2rem 0;
}

.mkt-comparison-line {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.8;
}


/* ── Features Grid ────────────────────────────────────────────────────── */

.mkt-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #1a1a1f;
  border: 1px solid #1a1a1f;
}

@media (min-width: 640px) {
  .mkt-features-grid { grid-template-columns: 1fr 1fr; }
}

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

.mkt-feature-card {
  padding: 2rem;
  background: #08080d;
  position: relative;
  transition: background-color 0.3s;
}

.mkt-feature-card:hover {
  background: rgba(24, 24, 27, 0.4);
}

/* Accent bar on hover */
.mkt-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.mkt-feature-card:hover::after { opacity: 1; }

.mkt-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #27272a;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.mkt-feature-title {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.mkt-feature-desc {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 13px;
  color: #a1a1aa;
  line-height: 1.65;
}


/* ── Video ────────────────────────────────────────────────────────────── */

.mkt-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #27272a;
  background: rgba(24, 24, 27, 0.4);
}

.mkt-video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.mkt-video-caption {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 11px;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ── Platforms / Downloads ────────────────────────────────────────────── */

.mkt-platforms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .mkt-platforms { grid-template-columns: repeat(3, 1fr); }
}

.mkt-platform-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  border: 1px solid #27272a;
  background: rgba(24, 24, 27, 0.2);
  text-align: center;
  transition: border-color 0.2s, background-color 0.2s;
  text-decoration: none;
  color: #a1a1aa;
}

.mkt-platform-tile:hover {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.04);
  color: #fff;
}

.mkt-platform-tile--disabled {
  opacity: 0.4;
  pointer-events: none;
}

.mkt-platform-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mkt-platform-arch {
  font-size: 10px;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mkt-platform-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 11px;
  border: 1px solid #3f3f46;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: border-color 0.2s;
}

.mkt-platform-tile:hover .mkt-platform-action {
  border-color: #3b82f6;
}


/* ── Mobile install ───────────────────────────────────────────────────── */

.mkt-mobile-install {
  margin-top: 2rem;
}

.mkt-mobile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .mkt-mobile-grid { grid-template-columns: 1fr 1fr; }
}

.mkt-mobile-card {
  padding: 1.5rem;
  border: 1px solid #27272a;
  background: rgba(24, 24, 27, 0.2);
}

.mkt-mobile-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: #a1a1aa;
}

.mkt-mobile-card-header h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mkt-mobile-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mkt-mobile-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 13px;
  color: #a1a1aa;
}

.mkt-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 10px;
  font-family: 'IBM Plex Mono', monospace;
  border: 1px solid #27272a;
  color: #52525b;
  flex-shrink: 0;
  margin-top: 1px;
}

.mkt-mobile-steps code {
  padding: 0.125rem 0.375rem;
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  background: rgba(24, 24, 27, 0.6);
  color: #d4d4d8;
}

.mkt-mobile-steps strong {
  color: #d4d4d8;
}


/* ── Final CTA ────────────────────────────────────────────────────────── */

.mkt-cta-title {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.mkt-cta-sub {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: #71717a;
  margin-bottom: 2rem;
}


/* ── Footer ───────────────────────────────────────────────────────────── */

.mkt-footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.mkt-footer-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.mkt-footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .mkt-footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.mkt-footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mkt-footer-version {
  font-size: 10px;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mkt-footer-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 10px;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mkt-footer-sep { color: #3f3f46; }

.mkt-footer-social {
  display: flex;
  gap: 1rem;
}

.mkt-footer-social a {
  font-size: 11px;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s;
}

.mkt-footer-social a:hover { color: #f4f4f5; }

.mkt-footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mkt-footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mkt-footer-links a {
  font-size: 10px;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s;
}

.mkt-footer-links a:hover { color: #f4f4f5; }

.mkt-footer-dot { color: #52525b; }

.mkt-footer-copy {
  font-size: 10px;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


/* ── Scroll reveal animations ─────────────────────────────────────────── */

.mkt-scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered hero reveals */
.mkt-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--delay, 0) * 0.1s);
}

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


/* ── Misc ─────────────────────────────────────────────────────────────── */

/* Scrollbar for marketing pages */
.mkt-body::-webkit-scrollbar {
  width: 6px;
}

.mkt-body::-webkit-scrollbar-track {
  background: #08080d;
}

.mkt-body::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 3px;
}

.mkt-body::-webkit-scrollbar-thumb:hover {
  background: #3f3f46;
}

/* Smooth scrolling for anchor links */
.mkt-body {
  scroll-behavior: smooth;
}

/* ── News & Resources ────────────────────────────────────────────────── */

.mkt-news-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 3rem;
  border-top: 1px solid #27272a;
}

.mkt-news-card {
  display: block;
  padding: 2rem 0;
  border-bottom: 1px solid #27272a;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
}

.mkt-news-card:hover {
  background-color: rgba(59, 130, 246, 0.04);
}

.mkt-news-date {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: #52525b;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
}

.mkt-news-card-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  font-weight: 500;
  color: #e4e4e7;
  margin-bottom: 0.5rem;
}

.mkt-news-card-summary {
  font-size: 0.875rem;
  color: #71717a;
  line-height: 1.6;
}

/* ── Resources Grid ──────────────────────────────────────────────────── */

.mkt-resource-group {
  margin-top: 3rem;
}

.mkt-resource-group:first-child {
  margin-top: 2rem;
}

.mkt-resource-category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3b82f6;
  margin-bottom: 1.25rem;
}

.mkt-resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 1rem;
}

.mkt-resource-card {
  display: block;
  padding: 1.5rem;
  border: 1px solid #27272a;
  border-radius: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.mkt-resource-card:hover {
  border-color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.04);
}

.mkt-resource-card-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1rem;
  font-weight: 500;
  color: #e4e4e7;
  margin-bottom: 0.5rem;
}

.mkt-resource-card-summary {
  font-size: 0.8125rem;
  color: #71717a;
  line-height: 1.6;
}

/* ── Article (shared news/resource detail) ───────────────────────────── */

.mkt-article-header {
  margin-bottom: 2.5rem;
}

.mkt-article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: #52525b;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.15s ease;
}

.mkt-article-back:hover {
  color: #3b82f6;
}

.mkt-article-date {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: #52525b;
  letter-spacing: 0.025em;
  margin-bottom: 0.75rem;
}

.mkt-article-category {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3b82f6;
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.mkt-article-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2rem;
  font-weight: 600;
  color: #e4e4e7;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.mkt-article-author {
  font-size: 0.8125rem;
  color: #52525b;
}

/* ── Article Body (rendered Markdown) ────────────────────────────────── */

.mkt-article-body {
  font-size: 0.9375rem;
  color: #a1a1aa;
  line-height: 1.75;
}

.mkt-article-body h2 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.375rem;
  font-weight: 600;
  color: #e4e4e7;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.mkt-article-body h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.125rem;
  font-weight: 500;
  color: #e4e4e7;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.mkt-article-body p {
  margin-bottom: 1.25rem;
}

.mkt-article-body a {
  color: #3b82f6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mkt-article-body a:hover {
  color: #60a5fa;
}

.mkt-article-body ul,
.mkt-article-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.mkt-article-body ul { list-style-type: disc; }
.mkt-article-body ol { list-style-type: decimal; }

.mkt-article-body li {
  margin-bottom: 0.375rem;
}

.mkt-article-body code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  background-color: #18181b;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  color: #e4e4e7;
}

.mkt-article-body pre {
  background-color: #18181b;
  border: 1px solid #27272a;
  border-radius: 0.5rem;
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.mkt-article-body pre code {
  background: none;
  padding: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.mkt-article-body blockquote {
  border-left: 2px solid #3b82f6;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #71717a;
  font-style: italic;
}

.mkt-article-body hr {
  border: none;
  border-top: 1px solid #27272a;
  margin: 2rem 0;
}

.mkt-article-body img {
  max-width: 100%;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.mkt-article-body strong {
  color: #e4e4e7;
  font-weight: 600;
}

.mkt-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

.mkt-article-body th,
.mkt-article-body td {
  padding: 0.625rem 1rem;
  border: 1px solid #27272a;
  text-align: left;
}

.mkt-article-body th {
  background-color: #18181b;
  color: #e4e4e7;
  font-weight: 500;
}

