/**
 * BlueArkive | Final Landing Page Styles
 * Aesthetic: "Zen Glass" — Calm, Premium, Information-Dense (Hybrid)
 */

:root {
  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Color Palette: Calm / Zen */
  --bg-page: #fcfcfc;
  --bg-surface: #ffffff;
  --bg-subtle: #f3f4f6;

  --text-main: #2d3748; /* Deep charcoal, avoiding pure black */
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --brand-lavender: #a78bfa;
  --brand-lavender-dark: #8b5cf6;
  --brand-sage: #86efac;

  --border-light: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.12);

  /* Layout & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --shadow-float: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.03);

  /* Animation */
  --ease-calm: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.4s var(--ease-calm);
}

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

.text-center {
  text-align: center;
}

kbd {
  background: var(--bg-page);
  border: 1px solid var(--border-strong);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--text-muted);
  box-shadow: 0 2px 0 var(--border-light);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 999px; /* Pill shape for calm aesthetic */
  transition: all 0.4s var(--ease-calm);
  cursor: pointer;
  border: none;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}

.btn-sm {
  flex-direction: row;
  height: 40px;
  padding: 0 24px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--text-main);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(167, 139, 250, 0.4);
  background-color: var(--brand-lavender-dark);
  color: white;
}

.btn-primary .btn-subtext {
  color: rgba(255, 255, 255, 0.7);
}

.btn-outline {
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  color: var(--text-main);
  border-radius: 999px;
  padding: 16px 36px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
}

.btn-outline:hover {
  border-color: var(--brand-lavender);
  color: var(--brand-lavender-dark);
  box-shadow: 0 4px 14px 0 rgba(167, 139, 250, 0.15);
  transform: translateY(-2px);
}

.btn-subtext {
  font-size: 0.75rem;
  margin-top: 4px;
  font-weight: 400;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(252, 252, 252, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand svg {
  color: var(--brand-lavender-dark);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.nav-links a:hover {
  color: var(--text-main);
}

/* ── Ambient Hero ── */
.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
}

.ambient-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 900px;
  background:
    radial-gradient(circle at 15% 50%, rgba(167, 139, 250, 0.15), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(134, 239, 172, 0.15), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.12), transparent 50%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
  animation: ambient-drift 15s ease-in-out infinite alternate;
}

@keyframes ambient-drift {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  50% {
    transform: translateX(-48%) translateY(-2%) scale(1.05);
  }
  100% {
    transform: translateX(-52%) translateY(2%) scale(0.95);
  }
}

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

.badge-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-lavender-dark);
  background: rgba(167, 139, 250, 0.1);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-main) 0%, #475569 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 480px;
}

.trust-microcopy {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ── Breathing Widget Demo ── */
.hero-visual {
  perspective: 1000px;
}

.widget-demo {
  background: transparent;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 1s var(--ease-calm);
}
.widget-demo:hover {
  transform: rotateY(0) rotateX(0);
}

.widget-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 24px 48px -12px rgba(0, 0, 0, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 320px;
  margin: 0 auto;
}

.pulse-ring {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22d3ee;
  position: absolute;
  animation: pulse 3s infinite;
}

.pulse-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 10px #22d3ee;
  position: relative;
  z-index: 2;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.widget-text {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-main);
}

.widget-time {
  margin-left: auto;
  font-family: monospace;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.widget-caption {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── Scroll Reveal System ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease-calm),
    transform 0.8s var(--ease-calm);
  will-change: opacity, transform;
}
.reveal.active {
  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;
}

/* ── Metrics Grid ── */
.metrics-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-surface);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.metric h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-lavender-dark);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.metric p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ── Feature Bento Grid ── */
.features {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  transition:
    transform 0.4s var(--ease-calm),
    box-shadow 0.4s var(--ease-calm),
    border-color 0.4s var(--ease-calm);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.4s var(--ease-calm);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow:
    var(--shadow-float),
    inset 0 0 0 1px rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.3);
}

.bento-card:hover::before {
  background: linear-gradient(90deg, var(--brand-lavender), var(--brand-sage));
}

.col-span-2 {
  grid-column: span 2;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-lavender-dark);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.bento-card h3 {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.bento-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.check-list {
  list-style: none;
  margin-top: 32px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--text-main);
  font-weight: 500;
  font-size: 1.05rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: #fff;
  background: var(--brand-sage);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Split Card for Hardware Config */
.split-card {
  display: flex;
  align-items: center;
  gap: 64px;
}

.split-card .bento-content {
  flex: 1;
}

.tier-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tier {
  background: var(--bg-page);
  border: 1px solid var(--border-strong);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tier strong {
  font-size: 1.1rem;
  color: var(--text-main);
}
.tier span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: monospace;
}
.tier:nth-child(2) {
  border-color: var(--brand-lavender);
  box-shadow: 0 0 0 1px var(--brand-lavender);
}

/* ── Architecture / Comparison ── */
.architecture {
  padding: 120px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  border-bottom: 1px solid var(--border-light);
}
.row:last-child {
  border-bottom: none;
}

.header-row {
  background: var(--bg-subtle);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.cell {
  padding: 24px;
}

.our-cell {
  background: rgba(167, 139, 250, 0.05);
  border-inline: 1px solid var(--border-light);
  font-weight: 500;
}
.header-row .our-cell {
  color: var(--brand-lavender-dark);
  font-weight: 700;
  border-top: 3px solid var(--brand-lavender-dark);
}

.positive {
  color: #059669;
}
.negative {
  color: var(--text-light);
}

/* ── Pricing ── */
.pricing {
  padding: 120px 0;
  background: var(--bg-page);
}

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

.pricing-grid.single-tier {
  grid-template-columns: 1fr;
  max-width: 480px;
}

.price-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  transition: transform 0.4s var(--ease-calm);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}

.price-card h3 {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-card .price {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin: 16px 0 8px;
}

.period {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.price-card.pro {
  border-color: var(--brand-lavender);
  box-shadow:
    0 0 0 1px var(--brand-lavender),
    var(--shadow-subtle);
}

.price-card.pro .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-lavender-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-list {
  list-style: none;
  margin-bottom: 40px;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-main);
}
.feature-list li:last-child {
  border-bottom: none;
}

/* ── Download Block ── */
/* ── Install Guide ──────────────────────── */
.install-guide {
  padding: 80px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
}

.install-guide h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.install-steps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.install-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.install-step:hover {
  border-color: var(--brand-lavender);
  box-shadow: 0 2px 12px rgba(167, 139, 250, 0.08);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-lavender);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-content h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.download {
  padding: 120px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
}

.tab-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.tab-active {
  background: var(--bg-surface);
  color: var(--text-main);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.download h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.download p {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.alt-downloads {
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.dot-divider {
  margin: 0 16px;
  opacity: 0.3;
}

/* ── Footer ── */
.footer {
  padding: 80px 0;
  background: var(--bg-page);
  border-top: 1px solid var(--border-light);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
}

.footer-brand strong {
  font-size: 1.25rem;
  color: var(--text-main);
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--text-muted);
}
.copyright {
  margin-top: 24px;
  font-size: 0.85rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--brand-lavender-dark);
}

/* ── Visual Install Guide (Zero Friction) ── */
.visual-guide-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  margin-top: 16px;
}

.mac-window {
  display: flex;
  flex-direction: column;
}

.mac-header {
  background: rgba(0, 0, 0, 0.03);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.mac-dots {
  display: flex;
  gap: 8px;
  z-index: 10;
}

.mac-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e2e2;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.mac-dots .dot.red {
  background: #ff5f56;
}
.mac-dots .dot.yellow {
  background: #ffbd2e;
}
.mac-dots .dot.green {
  background: #27c93f;
}

.mac-title {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mac-body {
  padding: 40px;
  background: var(--bg-page);
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drag-animation {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.app-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.app-logo,
.folder-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-lavender-dark);
}

.folder-icon {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid var(--border-light);
  box-shadow: none;
}

.icon-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
}

.drag-arrow {
  color: var(--text-muted);
  opacity: 0.3;
}

/* Base states for animation */
.drag-source {
  animation: dragDrop 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.context-menu {
  position: absolute;
  top: 60%;
  right: -20px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  padding: 4px;
  width: 180px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  animation: showContextMenu 6s ease infinite;
}

.menu-item {
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--text-main);
  border-radius: 4px;
  text-align: left;
}

.menu-item.highlight {
  background: #0066cc; /* Mac native highlight blue */
  color: white;
}

@keyframes dragDrop {
  0%,
  15% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  /* Pick up */
  25% {
    transform: translate(0, -10px) scale(1.05);
    opacity: 1;
  }
  /* Drag across */
  45% {
    transform: translate(120px, -10px) scale(1.05);
    opacity: 0.9;
  }
  /* Drop */
  50% {
    transform: translate(120px, 0) scale(1);
    opacity: 0;
  }
  /* Invisible to let the context menu show on the target folder */
  51%,
  85% {
    opacity: 0;
    transform: translate(120px, 0) scale(1);
  }
  /* Reset */
  90%,
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes showContextMenu {
  0%,
  55% {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  /* Pop open */
  60%,
  80% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  /* Fade out */
  85%,
  100% {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 64px;
  }

  .widget-demo {
    transform: none !important;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

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

  .col-span-2 {
    grid-column: span 1;
  }

  .split-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .tier-visual {
    width: 100%;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

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

  .ambient-glow {
    width: 100%;
    height: 600px;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .header-row {
    display: none;
  }

  .cell {
    padding: 8px 0;
    text-align: left;
    border: none !important;
  }

  .feature-cell {
    font-weight: 700;
    color: var(--text-main);
    padding-bottom: 4px;
    font-size: 1.1rem;
  }

  .our-cell {
    background: transparent;
    padding-left: 12px;
    border-left: 3px solid var(--brand-lavender) !important;
  }

  .their-cell {
    padding-left: 12px;
    border-left: 3px solid var(--border-strong) !important;
    margin-bottom: 16px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .download h2 {
    font-size: 2.5rem;
  }

  .mac-body {
    padding: 32px 16px;
    min-height: 200px;
    overflow: hidden;
  }

  .drag-animation {
    transform: scale(0.75);
    transform-origin: center center;
  }
}
