:root {
  --bg: #050608;
  --bg-elevated: #0b0d11;
  --bg-soft: #0f1116;
  --fg: #f5f7fb;
  --fg-muted: #9ca3b5;
  --accent: #4f46e5;
  --accent-soft: rgba(79, 70, 229, 0.12);
  --accent-2: #22c55e;
  --accent-2-soft: rgba(34, 197, 94, 0.12);
  --accent-3: #eab308;
  --accent-3-soft: rgba(234, 179, 8, 0.12);
  --border-subtle: #1b1f2a;
  --code-font: "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 10px 40px rgba(0, 0, 0, 0.45);
  --transition-fast: 180ms ease-out;
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  background: radial-gradient(circle at top, #111827 0, #020617 52%, #000 100%);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 20px 96px;
}

/* ===== HEADER & NAV ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.5);
  margin-bottom: 20px;
}

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

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: conic-gradient(from 210deg, #4f46e5, #22c55e, #eab308, #4f46e5);
  position: relative;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9), 0 0 40px rgba(79, 70, 229, 0.5);
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 8px;
  background: radial-gradient(circle at 20% 0, rgba(248, 250, 252, 0.18), transparent 55%),
              radial-gradient(circle at 80% 100%, rgba(15, 23, 42, 0.9), #020617);
}

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

.brand-name {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
}

.nav-menu { display: flex; align-items: center; gap: 28px; }

.nav-menu a {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-menu a:hover { color: var(--fg); }

.nav-cta {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #4f46e5, #22c55e);
  color: #f9fafb !important;
  font-size: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.9; }

.nav-cta span.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #bbf7d0;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

@media (max-width: 900px) {
  .nav-menu a:not(.nav-cta) { display: none; }
}

/* ===== CAROUSEL WRAPPER ===== */
.carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 50px 32px;
  box-sizing: border-box;
  margin-bottom: 16px;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.carousel-container {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 520px;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.carousel-slide .hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  gap: 40px;
}

.carousel-slide .hero-panel-body .image-container {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide > .hero-panel-inner {
  height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fg-muted);
  transition: all 0.2s ease;
  z-index: 10;
  padding: 0;
}

.carousel-arrow:hover {
  background: rgba(79, 70, 229, 0.2);
  border-color: var(--accent);
  color: var(--fg);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }
.carousel-arrow:active { transform: translateY(-50%) scale(0.95); }

.carousel-dots {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(148, 163, 184, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover { background: rgba(148, 163, 184, 0.7); transform: scale(1.2); }

.dot.active {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
  transform: scale(1.1);
}

.hero-carousel.touch-dragging { cursor: grabbing; }
.hero-carousel.touch-dragging .carousel-container { transition: none; }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 3.1fr);
  gap: 40px;
  align-items: center;
  padding: 20px 0 48px;
}

.hero-copy-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: #f9fafb;
}

.hero-title span {
  background: linear-gradient(120deg, #e5e7eb, #a5b4fc);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 420px;
  margin-bottom: 20px;
}

.hero-tags { display: inline-flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }

.hero-tag {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-tag-dot { width: 6px; height: 6px; border-radius: 999px; background: #4f46e5; }
.hero-tag-dot.ai { background: #22c55e; }
.hero-tag-dot.local { background: #eab308; }

.hero-footnote { font-size: 11px; color: var(--fg-muted); }
.hero-footnote strong { color: #e5e7eb; font-weight: 500; }

/* ===== HERO PANEL ===== */
.hero-panel {
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.16), transparent 55%),
              radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.9), #020617);
  border-radius: 24px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "THE NEXUS FINDS";
  position: absolute;
  top: 10px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.7);
}

.hero-panel-inner {
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.9);
  padding: 14px 14px 12px;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 11px;
  color: var(--fg-muted);
}

.hero-panel-header-left { display: flex; align-items: center; gap: 8px; }

.hero-panel-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.hero-panel-header-right { display: flex; align-items: center; gap: 6px; font-family: var(--code-font); }

.hero-panel-header-pill {
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 10px;
  color: rgba(209, 213, 219, 0.9);
  background: rgba(15, 23, 42, 0.9);
}

.hero-panel-body { font-family: var(--code-font); font-size: 13px; color: #e5e7eb; }

.hero-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 4px;
}

.hero-query {
  color: rgba(148, 163, 184, 0.9);
  font-size: 12px;
  margin-bottom: 8px;
}

.hero-query span.q-prefix { color: rgba(148, 163, 184, 0.7); margin-right: 6px; }

/* ===== DIAGRAM STYLES ===== */
.diagram-flow { display: flex; flex-direction: column; gap: 6px; margin: 10px 0; }

.diagram-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  flex-wrap: nowrap;
}

.diagram-node {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 6px;
  padding: 3px 8px;
  font-family: var(--sans);
  font-weight: 500;
  color: #e5e7eb;
  white-space: nowrap;
}

.diagram-node.primary { background: rgba(79, 70, 229, 0.15); border-color: rgba(79, 70, 229, 0.4); }
.diagram-node.critical { background: rgba(234, 179, 8, 0.15); border-color: rgba(234, 179, 8, 0.4); }

.diagram-relationship {
  color: rgba(148, 163, 184, 0.8);
  font-family: var(--code-font);
  font-size: 11px;
  white-space: nowrap;
}
.diagram-relationship::before { content: "—["; color: rgba(148, 163, 184, 0.5); }
.diagram-relationship::after { content: "]→"; color: rgba(148, 163, 184, 0.5); }

.hero-answer-footnote {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.5;
  font-family: var(--sans);
}

/* ===== KEY FEATURES (PILLARS) ===== */
.pillars-section {
  padding: 32px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
  margin-bottom: 32px;
}

.pillars-track { position: relative; overflow: hidden; padding: 14px 0; }

.pillars-inner {
  display: flex;
  gap: 18px;
  transform: translateX(40%);
  animation: pillarsSlideIn 900ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes pillarsSlideIn { to { transform: translateX(0); } }

.pillar-card {
  min-width: 260px;
  max-width: 320px;
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.18), transparent 55%), #020617;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(148, 163, 184, 0.9); }
.pillar-title { font-size: 15px; font-weight: 500; color: #e5e7eb; }
.pillar-body { font-size: 12px; color: var(--fg-muted); }

.pillar-tag {
  margin-top: 6px;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: rgba(209, 213, 219, 0.9);
  align-self: flex-start;
  background: rgba(15, 23, 42, 0.9);
}

/* ===== CORE CONCEPTS ===== */
.concepts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

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

.concept-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.concept-number {
  font-family: var(--code-font);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.concept-title { font-size: 16px; font-weight: 500; color: #e5e7eb; }
.concept-body { font-size: 12.5px; color: var(--fg-muted); line-height: 1.6; }

.concept-diagram {
  font-family: var(--code-font);
  font-size: 11px;
  color: rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px;
  margin-top: 8px;
  line-height: 1.8;
}

.concept-diagram .node-inline {
  color: #e5e7eb;
  padding: 1px 6px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
}

.concept-diagram .arrow { color: rgba(148, 163, 184, 0.5); margin: 0 4px; }

/* ===== SECTIONS GENERAL ===== */
.section { padding: 48px 0 10px; }
.section-header { margin-bottom: 18px; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.section-title { font-size: 20px; color: #e5e7eb; margin-bottom: 6px; }
.section-sub { font-size: 13px; color: var(--fg-muted); padding-right: 20px; }

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1000px) { .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .feature-grid { grid-template-columns: minmax(0, 1fr); } }

.feature-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 12px 12px 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-title { font-size: 13px; color: #e5e7eb; }
.feature-body { font-size: 11.5px; color: var(--fg-muted); }
.feature-tag { margin-top: 4px; font-size: 10px; color: rgba(148, 163, 184, 0.9); }

/* ===== COMPARISON ===== */
.comparison-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 900px) { .comparison-layout { grid-template-columns: minmax(0, 1fr); } }

.comparison-column-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.comparison-column-label span { font-weight: 500; color: #e5e7eb; }

.comparison-stack { display: flex; flex-direction: column; gap: 10px; }

.comparison-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 10px 11px 11px;
  font-size: 11.5px;
  color: var(--fg-muted);
}
.comparison-card strong { color: #e5e7eb; font-weight: 500; }
.comparison-question {
  font-size: 11px;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.comparison-answer { font-family: var(--code-font); font-size: 11.5px; color: #e5e7eb; }
.comparison-answer span.label { color: rgba(148, 163, 184, 0.9); }
.comparison-answer span.unanswerable { color: #f97373; }

/* ===== KNOWLEDGE GRAPH ===== */
.graph-section {
  padding: 48px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.graph-visual {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.5);
  padding: 40px;
  text-align: center;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.graph-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(34, 197, 94, 0.08) 0%, transparent 40%);
}

.graph-placeholder { position: relative; z-index: 1; color: var(--fg-muted); font-size: 13px; }

.graph-placeholder-text {
  font-family: var(--code-font);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.6);
  margin-bottom: 8px;
}

.graph-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

@media (max-width: 900px) { .graph-features { grid-template-columns: 1fr; } }

.graph-feature {
  padding: 18px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.graph-feature h3 { font-size: 14px; font-weight: 500; color: #e5e7eb; margin-bottom: 8px; }
.graph-feature p { font-size: 12px; color: var(--fg-muted); line-height: 1.6; }

/* ===== IMAGE CONTAINER ===== */

.image-container {
  width: 100%;
  height: 100%;          /* fills parent */
  max-height: 420px;     /* cap the height */
  border-radius: 12px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;         /* optional breathing room */
}

.image-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;   /* scales to fit without cropping */
  display: block;
}

.hero-panel-body .image-container {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panel-body .image-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ===== WAITLIST ===== */
.waitlist-section {
  padding: 80px 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(79, 70, 229, 0.03) 0%, transparent 60%);
}

.waitlist-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 14px;
}

.waitlist-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.1;
}

.waitlist-title .italic { font-style: italic; color: var(--fg-muted); font-weight: 400; }

.waitlist-sub {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.waitlist-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto 16px;
  gap: 0;
}

.waitlist-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: 8px 0 0 8px;
  color: var(--fg);
  font-size: 14px;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-form input:focus { border-color: var(--accent); }
.waitlist-form input::placeholder { color: var(--fg-muted); }

.waitlist-form button {
  padding: 14px 32px;
  background: #0a0a0a;
  border: 1px solid #0a0a0a;
  border-radius: 0 8px 8px 0;
  color: var(--fg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.waitlist-form button:hover { background: #111; border-color: #111; }

.waitlist-note {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  margin-top: 20px;
}

/* ===== FOOTER ===== */
footer {
  padding-top: 32px;
  font-size: 11px;
  color: var(--fg-muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  margin-top: 32px;
}
@media (max-width: 720px) { footer { flex-direction: column; } }
footer span strong { color: #e5e7eb; font-weight: 500; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: minmax(0, 1fr); padding-top: 8px; }
  .carousel-wrapper { padding: 0 30px 32px; }
  .carousel-arrow { width: 38px; height: 38px; }
  .carousel-slide { height: auto; min-height: 600px; }
  .carousel-slide .hero { grid-template-columns: minmax(0, 1fr); gap: 24px; padding: 20px 0; }
  .carousel-slide .hero-panel-body .image-container { height: 300px; }
}

@media (max-width: 600px) {
  .carousel-wrapper { padding: 0 0 32px; }
  .carousel-arrow { display: none; }
  .carousel-dots { bottom: -24px; }
}