/* ============================================================
   Shelf Screenshot — marketing site
   Self-contained. No external fonts, scripts or CDNs.
   ============================================================ */

:root {
  color-scheme: dark;

  /* Brand */
  --violet: #4F2EC7;
  --blue:   #2152E6;
  --cyan:   #0E8CD9;
  --accent: #FF9E38;

  --grad-brand: linear-gradient(120deg, #6A3FE0 0%, #2152E6 52%, #0E8CD9 100%);
  --grad-text:  linear-gradient(120deg, #b9a4ff 0%, #8db4ff 45%, #6fd0ff 100%);

  /* Surface */
  --bg:      #080912;
  --bg-soft: #0d0f1b;
  --panel:   rgba(255,255,255,.045);
  --panel-2: rgba(255,255,255,.07);
  --border:  rgba(255,255,255,.09);
  --border-strong: rgba(255,255,255,.16);

  /* Text */
  --text:  #f1f3fb;
  --muted: #9aa4bd;
  --faint: #6f7890;

  --radius: 16px;
  --maxw: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
               "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient brand glow behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1000px 600px at 78% -8%, rgba(33,82,230,.30), transparent 60%),
    radial-gradient(760px 520px at 8% 4%, rgba(79,46,199,.28), transparent 62%),
    radial-gradient(900px 700px at 50% 108%, rgba(14,140,217,.18), transparent 60%);
  pointer-events: none;
}
/* subtle grid texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 78%);
  pointer-events: none;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography helpers ---------- */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #a9b4d8;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--panel);
}

.section {
  padding: 88px 0;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 4.4vw, 40px);
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.12;
  margin: 16px 0 12px;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  background: rgba(8,9,18,.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.01em;
  text-decoration: none;
  color: var(--text);
}
.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 30px rgba(33,82,230,.42), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn-primary:hover { box-shadow: 0 14px 38px rgba(33,82,230,.55), inset 0 1px 0 rgba(255,255,255,.22); }
.btn-ghost {
  background: var(--panel-2);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,.11); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; border-radius: 10px; }
.btn .store {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}
.btn .store small { font-size: 10px; font-weight: 500; opacity: .85; letter-spacing: .04em; }
.btn .store span { font-size: 15.5px; font-weight: 700; }

/* ---------- kbd ---------- */
kbd {
  display: inline-block;
  font-family: inherit;
  font-size: .82em;
  font-weight: 650;
  line-height: 1.5;
  padding: 1px 8px;
  border-radius: 7px;
  color: #e9edfb;
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 2px 0 rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.12);
  white-space: nowrap;
}

/* ---------- Hero ---------- */
.hero {
  padding: 76px 0 40px;
  text-align: center;
}
.hero-icon {
  width: 108px;
  height: 108px;
  margin: 0 auto 26px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.06);
}
.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.02;
  margin-bottom: 20px;
}
.hero .tagline {
  font-size: clamp(18px, 2.6vw, 23px);
  color: #cdd5ea;
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto 14px;
}
.hero .sub {
  font-size: 16.5px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 34px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--faint);
}

/* ---------- Hero mockup ---------- */
.mock-wrap {
  max-width: 940px;
  margin: 60px auto 0;
  position: relative;
}
.window {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 120px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
  background: #0c1020;
}
.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.window-title {
  margin-left: 10px;
  font-size: 12.5px;
  color: var(--faint);
}
/* desktop canvas inside window */
.canvas {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(700px 380px at 70% 20%, rgba(33,82,230,.45), transparent 60%),
    radial-gradient(600px 400px at 15% 90%, rgba(79,46,199,.5), transparent 60%),
    linear-gradient(135deg, #17213f, #0e1830);
}
/* selection rectangle */
.selection {
  position: absolute;
  left: 22%; top: 20%;
  width: 46%; height: 52%;
  border: 1.5px solid rgba(255,255,255,.9);
  box-shadow: 0 0 0 9999px rgba(6,8,18,.55);
  border-radius: 3px;
}
.selection .handle {
  position: absolute;
  width: 9px; height: 9px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(33,82,230,.6);
}
.handle.tl { left: -5px; top: -5px; }
.handle.tr { right: -5px; top: -5px; }
.handle.bl { left: -5px; bottom: -5px; }
.handle.br { right: -5px; bottom: -5px; }
.handle.tm { left: 50%; top: -5px; transform: translateX(-50%); }
.handle.bm { left: 50%; bottom: -5px; transform: translateX(-50%); }
.handle.ml { left: -5px; top: 50%; transform: translateY(-50%); }
.handle.mr { right: -5px; top: 50%; transform: translateY(-50%); }
.dims {
  position: absolute;
  top: -30px; left: 0;
  font-size: 11.5px;
  font-weight: 650;
  padding: 3px 9px;
  border-radius: 7px;
  background: rgba(8,9,18,.9);
  border: 1px solid var(--border-strong);
  color: #eaf0ff;
  letter-spacing: .02em;
}
/* floating annotate toolbar */
.mini-toolbar {
  position: absolute;
  bottom: -22px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3px;
  padding: 6px;
  border-radius: 12px;
  background: rgba(12,14,26,.94);
  border: 1px solid var(--border-strong);
  box-shadow: 0 14px 34px rgba(0,0,0,.5);
}
.mini-toolbar span {
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 15px;
}
.mini-toolbar span.on { background: var(--grad-brand); }
/* magnifier bubble */
.magnifier {
  position: absolute;
  right: 8%; bottom: 12%;
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.85);
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,60,60,.9) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255,60,60,.9) 49% 51%, transparent 51%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.14) 0 7px, transparent 7px 8px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 7px, transparent 7px 8px),
    linear-gradient(135deg, #2a3a66, #16224a);
  overflow: hidden;
}
/* pinned cards floating on the right */
.pins {
  position: absolute;
  right: -14px;
  top: 46px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pin {
  width: 128px;
  height: 82px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  background: linear-gradient(135deg, #24325c, #131c38);
  position: relative;
  overflow: hidden;
}
.pin::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60px 40px at 30% 30%, rgba(111,208,255,.5), transparent 70%);
}
.pin:nth-child(2) { transform: translateX(-8px) rotate(-2deg); }
.pin:nth-child(3) { transform: translateX(-4px) rotate(1.5deg); background: linear-gradient(135deg, #3a2f66, #1c1638); }
.pin-badge {
  position: absolute;
  right: -6px; top: -6px;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--accent);
  box-shadow: 0 6px 16px rgba(255,158,56,.5);
  z-index: 2;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
}
.step .num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #8db4ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(33,82,230,.18);
  border: 1px solid rgba(33,82,230,.3);
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ---------- Feature grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .16s ease, border-color .2s ease, background .2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--panel-2);
}
.feature .ico {
  font-size: 26px;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.feature p { font-size: 14.5px; color: var(--muted); }

/* ---------- Split / highlight blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split .lead {
  font-size: clamp(26px, 3.6vw, 34px);
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 14px 0 16px;
}
.split p.body { color: var(--muted); font-size: 16.5px; margin-bottom: 20px; }
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li {
  display: flex;
  gap: 12px;
  font-size: 15.5px;
  color: #d3d9ea;
}
.checklist li b { color: var(--text); font-weight: 650; }
.check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #fff;
  margin-top: 1px;
}

/* OCR mock */
.ocr-card, .visual-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
}
.ocr-shot {
  border-radius: 11px;
  padding: 18px;
  background: linear-gradient(135deg, #1a2647, #0f1830);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  position: relative;
}
.ocr-line {
  height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,.16);
  margin: 9px 0;
}
.ocr-line.w1 { width: 82%; }
.ocr-line.w2 { width: 94%; }
.ocr-line.w3 { width: 68%; }
.ocr-line.sel {
  background: linear-gradient(90deg, rgba(255,158,56,.55), rgba(255,158,56,.2));
  box-shadow: 0 0 0 1px rgba(255,158,56,.5);
}
.ocr-out {
  border-radius: 11px;
  padding: 14px 16px;
  background: rgba(6,8,18,.6);
  border: 1px solid var(--border);
  font-size: 13.5px;
  color: #cdd5ea;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ocr-out .txt { flex: 1; }
.ocr-out .copy {
  font-size: 12px;
  font-weight: 650;
  padding: 5px 11px;
  border-radius: 8px;
  background: var(--grad-brand);
  color: #fff;
}

/* shortcut chips row */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--border);
  font-size: 13.5px;
  color: #cdd5ea;
}

/* ---------- Pricing ---------- */
.price-note {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 36px;
}
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box,
    var(--grad-brand) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 30px 70px rgba(33,82,230,.28);
}
.plan .tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--grad-brand);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(33,82,230,.5);
}
.plan .tag.alt { background: rgba(255,158,56,.16); color: var(--accent); border: 1px solid rgba(255,158,56,.4); box-shadow: none; }
.plan h3 { font-size: 15px; font-weight: 650; color: var(--muted); letter-spacing: .02em; text-transform: uppercase; margin-bottom: 14px; }
.plan .price {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}
.plan .price small { font-size: 16px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.plan .cadence { color: var(--faint); font-size: 13.5px; margin-top: 8px; }
.plan ul {
  list-style: none;
  margin: 22px 0 26px;
  display: grid;
  gap: 12px;
}
.plan ul li {
  font-size: 14.5px;
  color: #cdd5ea;
  display: flex;
  gap: 10px;
}
.plan ul li::before {
  content: "✓";
  color: #6fd0ff;
  font-weight: 700;
}
.plan .btn { margin-top: auto; width: 100%; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  border-radius: 24px;
  padding: 60px 32px;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(33,82,230,.35), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
}
.cta-band h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 780;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}
.cta-band p { color: var(--muted); font-size: 17px; margin-bottom: 28px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 40px 0;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer .brand { font-size: 15px; }
.footer-links {
  margin-left: auto;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.footer-links a:hover { color: var(--text); }
.copyright {
  max-width: var(--maxw);
  margin: 18px auto 0;
  padding: 0 24px;
  color: var(--faint);
  font-size: 13px;
}

/* ---------- Page hero (features) ---------- */
.page-hero {
  padding: 64px 0 20px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(34px, 5.4vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 16px 0 14px;
  line-height: 1.05;
}
.page-hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto;
}

/* Detailed feature section (features page) */
.detail {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.detail.rev { grid-template-columns: .9fr 1.1fr; }
.detail.rev .detail-visual { order: -1; }
.detail .kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.detail h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 750;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.detail p.lede { color: var(--muted); font-size: 16.5px; margin-bottom: 18px; }
.detail .sub-list { list-style: none; display: grid; gap: 14px; }
.detail .sub-list li { display: flex; gap: 12px; font-size: 15px; color: #cfd6e8; }
.detail .sub-list li b { color: var(--text); }
.detail-visual {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  min-height: 220px;
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
}

/* tool palette visual */
.palette {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.tool {
  aspect-ratio: 1;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  gap: 4px;
  font-size: 22px;
  position: relative;
}
.tool small {
  position: absolute;
  bottom: 6px;
  font-size: 9.5px;
  color: var(--faint);
  font-weight: 700;
  letter-spacing: .04em;
}
.tool.active {
  background: var(--grad-brand);
  border-color: transparent;
}
.tool.active small { color: rgba(255,255,255,.85); }

/* swatch row */
.swatches { display: flex; gap: 10px; margin-top: 6px; }
.sw { width: 26px; height: 26px; border-radius: 50%; border: 2px solid rgba(255,255,255,.25); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .pricing { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan.featured { order: -1; }
  .detail, .detail.rev { grid-template-columns: 1fr; gap: 26px; }
  .detail.rev .detail-visual { order: 0; }
  .pins { display: none; }
}
@media (max-width: 620px) {
  .section { padding: 62px 0; }
  .nav-links { display: none; }
  .nav-links.always { display: flex; }
  .steps { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 20px; }
  .mock-wrap { margin-top: 44px; }
  .mini-toolbar { transform: translateX(-50%) scale(.82); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { margin-left: 0; }
}
