:root {
  --bg: #0b1020;
  --surface: #161d3d;
  --surface-2: #1d254a;
  --border: rgba(255,255,255,0.08);
  --text: #e7ecff;
  --muted: #9aa4c7;
  --accent: #6ea8ff;
  --accent-2: #8b5cf6;
  --danger: #f87171;
  --success: #4ade80;
  --radius: 14px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); line-height: 1.55; scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }

/* ─── Header ─── */
.landing-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(11,16,32,0.6);
  border-bottom: 1px solid var(--border);
}
.landing-header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 24px;
}
.landing-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px; letter-spacing: -0.5px;
}
.landing-brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 20px rgba(110,168,255,0.25);
}
.landing-nav { display: flex; align-items: center; gap: 24px; }
.landing-nav a {
  color: var(--muted); font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.landing-nav a:hover { color: var(--text); }
.landing-nav .btn { margin-left: 4px; }

/* ─── Hero ─── */
.landing-hero {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px; text-align: center;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.35;
  will-change: transform;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(110,168,255,0.6), transparent 70%);
  top: -250px; left: -150px;
  animation: orb1 20s ease-in-out infinite;
}
.hero-orb-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(139,92,246,0.55), transparent 70%);
  bottom: -150px; right: -100px;
  animation: orb2 25s ease-in-out infinite;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,114,182,0.35), transparent 70%);
  top: 40%; left: 55%;
  animation: orb3 18s ease-in-out infinite;
}
@keyframes orb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(80px,50px) scale(1.1); }
  66%     { transform: translate(-40px,80px) scale(0.95); }
}
@keyframes orb2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(-60px,-40px) scale(1.05); }
  66%     { transform: translate(50px,-60px) scale(0.9); }
}
@keyframes orb3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-80px,40px) scale(1.15); }
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent);
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 999px;
  background: rgba(110,168,255,0.08);
  border: 1px solid rgba(110,168,255,0.2);
  color: var(--accent); font-size: 13px; font-weight: 600;
  letter-spacing: 0.3px; margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 900; line-height: 1; margin: 0 0 24px;
  letter-spacing: -3px;
  background: linear-gradient(135deg, #fff 0%, #c3d0ff 25%, #6ea8ff 50%, #8b5cf6 75%, #f472b6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 8s ease-in-out infinite;
}
@keyframes gradient-shift {
  0%,100% { background-position: 0% center; }
  50%     { background-position: 100% center; }
}

.hero-subtitle {
  font-size: clamp(17px, 2.5vw, 22px);
  color: var(--muted); line-height: 1.6;
  margin: 0 auto 36px; max-width: 560px;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 1; color: var(--muted); font-size: 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: hint-bob 2s ease-in-out infinite;
  opacity: 0.6;
}
.hero-scroll-hint svg { width: 20px; height: 20px; }
@keyframes hint-bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(6px); }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 20px; border-radius: 10px; font-weight: 600; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; font-family: inherit;
  transition: transform 0.1s, background 0.2s, border-color 0.2s, color 0.2s, filter 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 7px 12px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }

/* ─── Stats Bar ─── */
.landing-stats {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(22,29,61,0.5);
  backdrop-filter: blur(12px);
}
.landing-stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 16px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 32px; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ─── Section Layout ─── */
.landing-section {
  max-width: 1200px; margin: 0 auto;
  padding: 100px 24px;
}
.section-eyebrow {
  text-transform: uppercase; letter-spacing: 2px;
  font-size: 12px; color: var(--accent); font-weight: 700;
  margin: 0 0 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; line-height: 1.1; margin: 0 0 16px;
  letter-spacing: -1px;
}
.section-subtitle {
  font-size: 17px; color: var(--muted); line-height: 1.6;
  margin: 0 0 48px; max-width: 560px;
}
.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ─── Bento Grid ─── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-rows: minmax(220px, auto);
}
.bento-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.bento-card:hover {
  border-color: rgba(110,168,255,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.bento-card-link {
  position: absolute; inset: 0; z-index: 2;
}

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

.bento-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; flex-shrink: 0;
}
.bento-icon svg { width: 22px; height: 22px; }

.bento-card h3 {
  font-size: 18px; font-weight: 700; margin: 0 0 6px;
}
.bento-card p {
  font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5;
}

.bento-preview {
  flex: 1; margin-top: 18px;
  border-radius: 10px;
  background: rgba(0,0,0,0.2);
  overflow: hidden; position: relative;
  min-height: 80px;
}

/* Bento card accent colors */
.bento-charts .bento-icon { background: rgba(110,168,255,0.15); color: #6ea8ff; }
.bento-board  .bento-icon { background: rgba(74,222,128,0.15); color: #4ade80; }
.bento-slides .bento-icon { background: rgba(251,146,60,0.15); color: #fb923c; }
.bento-notes  .bento-icon { background: rgba(250,204,21,0.15); color: #facc15; }
.bento-canvas .bento-icon { background: rgba(244,114,182,0.15); color: #f472b6; }
.bento-docs   .bento-icon { background: rgba(139,92,246,0.15); color: #8b5cf6; }
.bento-collections .bento-icon { background: rgba(56,189,248,0.15); color: #38bdf8; }
.bento-agents .bento-icon { background: rgba(248,113,113,0.15); color: #f87171; }

.bento-charts:hover { border-color: rgba(110,168,255,0.3); box-shadow: 0 12px 40px rgba(110,168,255,0.08); }
.bento-board:hover  { border-color: rgba(74,222,128,0.3);  box-shadow: 0 12px 40px rgba(74,222,128,0.08); }
.bento-slides:hover { border-color: rgba(251,146,60,0.3);  box-shadow: 0 12px 40px rgba(251,146,60,0.08); }
.bento-notes:hover  { border-color: rgba(250,204,21,0.3);  box-shadow: 0 12px 40px rgba(250,204,21,0.08); }
.bento-canvas:hover { border-color: rgba(244,114,182,0.3); box-shadow: 0 12px 40px rgba(244,114,182,0.08); }
.bento-docs:hover   { border-color: rgba(139,92,246,0.3);  box-shadow: 0 12px 40px rgba(139,92,246,0.08); }
.bento-collections:hover { border-color: rgba(56,189,248,0.3); box-shadow: 0 12px 40px rgba(56,189,248,0.08); }
.bento-agents:hover { border-color: rgba(248,113,113,0.3); box-shadow: 0 12px 40px rgba(248,113,113,0.08); }

/* ─── Bento Previews (CSS-only mockups) ─── */
.preview-bars {
  display: flex; align-items: flex-end; gap: 6px;
  padding: 16px; height: 100%;
}
.preview-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  transition: height 0.6s ease;
}

.preview-kanban {
  display: flex; gap: 8px; padding: 12px; height: 100%;
}
.preview-kanban-col {
  flex: 1; display: flex; flex-direction: column; gap: 6px;
}
.preview-kanban-header {
  height: 6px; border-radius: 3px; opacity: 0.6;
}
.preview-kanban-card {
  border-radius: 6px; background: var(--surface-2);
  border: 1px solid var(--border);
}

.preview-notes {
  padding: 16px; display: flex; flex-direction: column; gap: 8px;
}
.preview-note-line {
  height: 6px; border-radius: 3px; background: var(--surface-2);
}

.preview-canvas-shapes {
  position: relative; height: 100%; padding: 12px;
}
.preview-shape {
  position: absolute; border: 2px solid;
}
.preview-shape-circle {
  width: 40px; height: 40px; border-radius: 50%;
  border-color: #f472b6; top: 20%; left: 15%;
}
.preview-shape-rect {
  width: 50px; height: 32px; border-radius: 6px;
  border-color: #6ea8ff; top: 30%; left: 50%;
}
.preview-shape-tri {
  width: 0; height: 0; border: none;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 34px solid rgba(250,204,21,0.5);
  bottom: 20%; right: 20%;
}
.preview-shape-line {
  width: 60px; height: 0; border: none;
  border-top: 2px dashed rgba(74,222,128,0.5);
  top: 55%; left: 30%;
  transform: rotate(-15deg);
}

.preview-slides {
  padding: 16px; display: flex; flex-direction: column; height: 100%;
}
.preview-slide-frame {
  flex: 1; border-radius: 6px; background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 12px; display: flex; flex-direction: column; gap: 6px;
}
.preview-slide-title {
  height: 8px; width: 60%; border-radius: 4px; background: rgba(251,146,60,0.4);
}
.preview-slide-body {
  height: 5px; border-radius: 3px; background: rgba(255,255,255,0.06);
}
.preview-slide-dots {
  display: flex; gap: 4px; justify-content: center; margin-top: 8px;
}
.preview-slide-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.preview-slide-dot.active { background: rgba(251,146,60,0.6); }

.preview-docs {
  padding: 16px; display: flex; flex-direction: column; gap: 6px;
}
.preview-doc-heading {
  height: 8px; width: 50%; border-radius: 4px;
  background: rgba(139,92,246,0.4); margin-bottom: 4px;
}
.preview-doc-line {
  height: 5px; border-radius: 3px; background: rgba(255,255,255,0.06);
}
.preview-doc-check {
  display: flex; align-items: center; gap: 6px; margin-top: 4px;
}
.preview-doc-checkbox {
  width: 10px; height: 10px; border-radius: 3px;
  border: 1.5px solid rgba(139,92,246,0.5);
  flex-shrink: 0;
}
.preview-doc-checkbox.checked {
  background: rgba(139,92,246,0.4);
}

.preview-collections {
  padding: 16px; position: relative; height: 100%;
}
.preview-coll-card {
  position: absolute; border-radius: 8px;
  background: var(--surface-2); border: 1px solid var(--border);
  padding: 10px;
}

.preview-agents {
  padding: 16px; display: flex; flex-direction: column; gap: 8px;
  justify-content: flex-end; height: 100%;
}
.preview-chat-bubble {
  padding: 8px 12px; border-radius: 10px;
  font-size: 10px; max-width: 75%;
}
.preview-chat-user {
  background: rgba(110,168,255,0.15);
  border: 1px solid rgba(110,168,255,0.2);
  align-self: flex-end;
  color: var(--muted);
}
.preview-chat-ai {
  background: var(--surface-2);
  border: 1px solid var(--border);
  align-self: flex-start;
  color: var(--muted);
}

/* ─── Feature Split Sections ─── */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }

.feature-text { }
.feature-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; margin: 0 0 16px; line-height: 1.15;
  letter-spacing: -0.5px;
}
.feature-text p {
  font-size: 16px; color: var(--muted); line-height: 1.65;
  margin: 0 0 24px;
}
.feature-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--muted);
}
.feature-list-icon {
  width: 20px; height: 20px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0; margin-top: 1px;
}

.feature-visual {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 24px;
  min-height: 320px;
  display: flex; flex-direction: column;
}

/* Collab visual: presence mock */
.collab-mock-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.collab-mock-page {
  font-size: 13px; font-weight: 600; color: var(--text);
  background: var(--surface-2); padding: 4px 10px;
  border-radius: 6px;
}
.collab-mock-avatars {
  display: flex; margin-left: auto;
}
.collab-mock-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  border: 2px solid var(--surface);
  margin-left: -6px;
}
.collab-mock-body {
  flex: 1; display: flex; flex-direction: column; gap: 10px;
}
.collab-mock-card {
  padding: 12px; border-radius: 8px;
  background: var(--surface-2); border: 1px solid var(--border);
}
.collab-mock-card-title {
  height: 7px; width: 65%; border-radius: 4px;
  background: rgba(255,255,255,0.1); margin-bottom: 8px;
}
.collab-mock-card-body {
  height: 5px; border-radius: 3px;
  background: rgba(255,255,255,0.05); margin-bottom: 4px;
}
.collab-mock-cursor {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 8px;
}
.collab-mock-cursor-icon {
  width: 12px; height: 12px;
}
.collab-mock-cursor-label {
  font-size: 10px; padding: 2px 6px;
  border-radius: 4px; color: #fff; font-weight: 600;
}
.collab-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* AI visual: chat mock */
.ai-mock {
  flex: 1; display: flex; flex-direction: column;
}
.ai-mock-header {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
  margin-bottom: 14px; font-size: 13px; font-weight: 600;
}
.ai-mock-messages {
  flex: 1; display: flex; flex-direction: column; gap: 10px;
  justify-content: flex-end;
}
.ai-mock-msg {
  padding: 10px 14px; border-radius: 10px;
  font-size: 12px; line-height: 1.5; max-width: 85%;
}
.ai-mock-user {
  align-self: flex-end;
  background: rgba(110,168,255,0.15);
  border: 1px solid rgba(110,168,255,0.2);
  color: var(--text);
}
.ai-mock-bot {
  align-self: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--muted);
}
.ai-mock-input {
  margin-top: 14px; padding: 10px 14px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 12px; color: var(--muted);
}

/* ─── Divider Section (full-width gradient) ─── */
.landing-divider {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, transparent 100%);
}

/* ─── CTA Section ─── */
.landing-cta {
  position: relative; overflow: hidden;
  text-align: center; padding: 100px 24px;
}
.landing-cta .hero-bg { opacity: 0.5; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; margin: 0 0 12px;
  letter-spacing: -1px;
}
.cta-content p {
  font-size: 17px; color: var(--muted); margin: 0 0 32px;
}

/* ─── Dashboard section (for logged-in users) ─── */
.landing-dashboard {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px 80px;
}
.landing-dashboard:empty { display: none; }

.dash-label {
  font-size: 13px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin: 0 0 16px;
}

.home-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.home-project-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
  cursor: pointer;
}
.home-project-card:hover { border-color: rgba(110,168,255,0.3); }
.home-project-card h3 {
  font-size: 14px; font-weight: 700; margin: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.home-project-card p {
  font-size: 13px; color: var(--muted); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-project-card p.muted { font-style: italic; }
.home-project-more {
  align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--muted);
}
.projects-empty {
  text-align: center; padding: 40px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.projects-empty p { margin: 4px 0; color: var(--muted); font-size: 14px; }
.projects-empty a { color: var(--accent); font-weight: 600; }
.projects-empty a:hover { text-decoration: underline; }

/* ─── Footer ─── */
.landing-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.landing-footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px;
}
.footer-brand-mark {
  width: 18px; height: 18px; border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 13px; color: var(--muted); margin: 0; }

/* ─── Scroll Reveal Animations ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-span-2 { grid-column: span 2; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .landing-nav a:not(.btn) { display: none; }
  .landing-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .hero-title { letter-spacing: -2px; }
  .bento-span-2 { grid-column: span 2; }
  .section-title { letter-spacing: -0.5px; }
}

@media (max-width: 520px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2 { grid-column: span 1; }
  .landing-stats-inner { grid-template-columns: 1fr 1fr; }
  .landing-section { padding: 64px 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-scroll-hint { display: none; }
  .landing-footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
