/* landing.css — marketing entry screen. Own small palette (ink navy / paper white /
   signal blue), separate from the Treehouse (onboarding) and Ocean (dashboard)
   themes — this is a marketing surface, not a themed app view, so it doesn't hook
   into --bg/--accent etc.
   2026-07-28: "The Receipt, Transformed" — replaces the earlier dark-navbar +
   donut-chart hero (Barat: "change layout and color... give me idea" -> reviewed a
   standalone preview at public/landing-preview.html/.css -> "make it live"). The
   signature element is a recreation of Barat's real Telegram screenshot of the
   bot (see .tg-window below), not an abstract stat card — it tells "send a photo
   -> get structured data" as one visual instead of a headline. */

/* Full-bleed: cancel app.css's persistent chrome (.app-header/.app-main padding
   + centered max-width, the parchment body backdrop) only while landing.js has
   this class on <body> — every other screen is completely unaffected. */
body.landing-mode { background: #fbfaf7; }
body.landing-mode::before, body.landing-mode::after { display: none; }
body.landing-mode .app-header, body.landing-mode .app-footer { padding: 0; }
body.landing-mode .app-main { padding: 0; max-width: none; margin: 0; }

.landing-root {
  --lp-ink: #101826;
  --lp-navy: #101826;
  --lp-paper: #fbfaf7;
  --lp-paper-2: #f3f1ea;
  --lp-thermal: #6b7280;
  --lp-line: #e4e1d6;
  --lp-blue: #2563eb;
  --lp-blue-strong: #1d4ed8;
  --lp-mint: #10b981;
  min-height: 100vh;
  background: var(--lp-paper);
  color: var(--lp-ink);
  font-family: 'Inter', var(--font-body, system-ui, sans-serif);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}
.landing-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* --- nav --- */
/* 2026-08-14 (Barat: exact reference screenshot — plain white bar, ink "Snap", blue
   "Receipt"/AI badge, no navy): was var(--lp-navy) (dark). A light nav needs its own
   bottom border since the page body is ALSO --lp-paper — without one the nav would have
   no visible edge at all. */
.landing-nav {
  background: var(--lp-paper);
  border-bottom: 1px solid var(--lp-line);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-nav-brand { display: flex; align-items: center; gap: 10px; }

/* Shared brand asset: the supplied Snap Receipt AI wordmark is an SVG so it stays crisp
   across desktop, mobile, and downloadable marketing surfaces. */
.landing-wordmark {
  display: block;
  width: 184px;
  height: auto;
}
.landing-nav-actions { display: flex; align-items: center; gap: 10px; }
.landing-nav-btn {
  font: inherit;
  cursor: pointer;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
}
/* 2026-08-14: flipped for the light nav (were white-on-transparent, for the old navy
   bar — invisible against light paper). */
.landing-nav-btn--login {
  background: transparent;
  color: var(--lp-ink);
  border: 1px solid var(--lp-line);
}
.landing-nav-btn--login:hover { border-color: var(--lp-ink); }
.landing-nav-btn--register {
  background: transparent;
  color: var(--lp-thermal);
  border: none;
}
.landing-nav-btn--register:hover { color: var(--lp-ink); }
/* 2026-08-25: nav-sized version of .landing-btn--primary (the hero "Try for Free"
   solid-blue look) — used by the "Download App" nav link so it stands out as the
   primary nav action instead of blending in with the plain outlined Login button. */
.landing-nav-btn--primary {
  background: var(--lp-blue);
  color: #fff;
  border: 1px solid var(--lp-blue);
}
.landing-nav-btn--primary:hover { background: var(--lp-blue-strong); border-color: var(--lp-blue-strong); }

/* --- hero --- */
.landing-hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding: 88px 32px 64px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.landing-hero-copy { max-width: 480px; }
.landing-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .06em;
  color: var(--lp-blue); text-transform: uppercase; margin-bottom: 18px;
}
.landing-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--lp-blue); }
.landing-hero-title {
  margin: 0 0 18px;
  font-family: 'Inter', var(--font-display, sans-serif);
  font-weight: 800;
  font-size: 46px;
  line-height: 1.08;
  color: var(--lp-ink);
  letter-spacing: -.02em;
}
.landing-hero-title em { font-style: normal; color: var(--lp-blue); }
.landing-hero-sub { margin: 0 0 30px; color: var(--lp-thermal); font-size: 16px; line-height: 1.6; }

.landing-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.landing-btn {
  font: inherit;
  cursor: pointer;
  border-radius: 8px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 15px;
  /* 2026-08-25: .landing-btn is also used on the <a href="/download.html"> Download
     button (an anchor, not a <button>) — without this it inherits the browser's
     default link underline, which the <button>-based Try for Free never had. */
  text-decoration: none;
  display: inline-block;
}
.landing-btn--primary { background: var(--lp-blue); color: #fff; border: none; }
.landing-btn--primary:hover { background: var(--lp-blue-strong); }
.landing-btn--secondary { background: transparent; color: var(--lp-ink); border: 1px solid var(--lp-line); }
.landing-btn--secondary:hover { border-color: #c7cdd5; }
/* 2026-08-25: solid black/white CTA — Barat: "make [Try for Free] black and white"
   (swapped with Download App taking over the solid-blue .landing-btn--primary look). */
.landing-btn--mono { background: var(--lp-ink); color: #fff; border: none; }
.landing-btn--mono:hover { background: #000; }

/* --- Telegram chat window (the signature element) — a recreation of the real
   bot conversation: dark header, avatar, bot name/subtitle, a sent receipt
   photo (an original illustration, not a copy of any real photographed
   receipt), then the bot's replies. --- */
.landing-hero-visual { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; }
.tg-window {
  width: 320px;
  background: #0e1621;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(16, 24, 38, .45);
}
.tg-header {
  background: #17212b;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.tg-header-avatar {
  width: 34px; height: 34px; border-radius: 999px; flex-shrink: 0;
  background: linear-gradient(135deg, #ff9a52, #ef5d6a);
  color: #fff; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.tg-header-info { flex: 1; min-width: 0; }
.tg-header-name { color: #fff; font-weight: 600; font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tg-header-sub { color: #7d8b99; font-size: 11.5px; margin-top: 1px; }
.tg-header-icons { display: flex; gap: 14px; flex-shrink: 0; }

.tg-body {
  background: #0e1621;
  background-image: radial-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 16px 16px;
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tg-msg-row { display: flex; }
.tg-msg-row--sent { justify-content: flex-end; }

.tg-photo-mock {
  width: 168px;
  background: #f4f1ea;
  border-radius: 12px 12px 4px 12px;
  padding: 14px 12px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, .4);
}
.tg-photo-line { height: 6px; background: #c9c2ae; border-radius: 2px; margin-bottom: 7px; }
.tg-photo-line--total { height: 8px; background: #8a8267; margin-top: 3px; }
.tg-photo-corner {
  position: absolute; left: 10px; bottom: 8px; width: 12px; height: 12px;
  border-left: 2px solid rgba(0, 0, 0, .35); border-bottom: 2px solid rgba(0, 0, 0, .35);
  border-radius: 0 0 0 3px;
}
.tg-photo-meta {
  position: absolute; right: 10px; bottom: 8px;
  font-size: 9.5px; color: #7a745f;
  display: flex; align-items: center; gap: 3px;
}

/* the "analyze" animation — a scan-line sweeping down the sent photo, looping,
   so the bot visibly "reads" it rather than the process being invisible. */
.tg-scan-line {
  position: absolute; left: 0; right: 0; height: 26px; top: -26px; z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(37, 99, 235, .22) 40%, rgba(37, 99, 235, .4) 50%, rgba(37, 99, 235, .22) 60%, transparent);
  box-shadow: 0 0 14px 2px rgba(37, 99, 235, .35);
  animation: tg-scan 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes tg-scan {
  0%  { top: -26px; }
  55% { top: 100%; }
  100% { top: 100%; }
}

/* "bot is typing" indicator — pairs with the scan-line so the analysis reads as
   one continuous action: photo scans -> bot is composing -> reply lands. */
.tg-typing {
  background: #182533;
  border-radius: 4px 14px 14px 14px;
  padding: 12px 16px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.tg-typing-dot { width: 6px; height: 6px; border-radius: 999px; background: #7d8b99; animation: tg-typing-bounce 1.2s ease-in-out infinite; }
.tg-typing-dot:nth-child(2) { animation-delay: .15s; }
.tg-typing-dot:nth-child(3) { animation-delay: .3s; }
@keyframes tg-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* bot reply bubbles — incoming (left-aligned) */
.tg-msg {
  max-width: 230px;
  background: #182533;
  color: #dfe7ee;
  border-radius: 4px 14px 14px 14px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.5;
}
.tg-msg--success { border-left: 3px solid var(--lp-mint); padding-left: 9px; }
.tg-msg-icon { margin-right: 2px; }
.tg-msg-time { font-size: 10px; color: #5b6b7a; margin-top: 6px; text-align: right; }

.landing-hero-caption { text-align: center; font-size: 12px; color: var(--lp-thermal); margin-top: 16px; }

/* --- how it works strip --- */
.landing-steps {
  background: var(--lp-paper-2);
  border-top: 1px solid var(--lp-line);
  padding: 64px 32px;
}
.landing-steps-title {
  margin: 0 auto 32px;
  max-width: 1120px;
  font-size: 22px;
  font-weight: 800;
  color: var(--lp-ink);
  text-align: center;
}
.landing-steps-list {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.landing-step-card {
  flex: 1 1 260px;
  max-width: 320px;
  background: var(--lp-paper);
  border: 1px solid var(--lp-line);
  padding: 20px;
}
.landing-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--lp-blue);
  font-size: 13px;
  margin-bottom: 10px;
}
.landing-step-title { margin: 0 0 6px; font-size: 15px; font-weight: 700; color: var(--lp-ink); }
.landing-step-desc { margin: 0; font-size: 13px; color: var(--lp-thermal); line-height: 1.5; }

/* --- nav links row + dropdown menus --- */
.landing-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.landing-nav-dropdown {
  position: relative;
}
.landing-nav-dd-trigger {
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-ink);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color .15s;
}
.landing-nav-dd-trigger:hover { color: var(--lp-blue); }
.landing-nav-dd-trigger svg {
  width: 14px; height: 14px;
  transition: transform .2s;
}
.landing-nav-dropdown.is-open .landing-nav-dd-trigger svg {
  transform: rotate(180deg);
}
.landing-nav-dropdown.is-open .landing-nav-dd-trigger { color: var(--lp-blue); }

.landing-nav-dd-panel {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  box-shadow: 0 12px 40px -8px rgba(16, 24, 38, .15);
  padding: 8px 0;
  z-index: 100;
}
.landing-nav-dropdown.is-open .landing-nav-dd-panel { display: block; }

.landing-nav-dd-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-ink);
  text-decoration: none;
  transition: background .12s;
}
.landing-nav-dd-panel a:hover { background: #f5f5f4; }
.landing-nav-dd-panel a svg {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--lp-thermal);
}
.landing-nav-dd-divider {
  height: 1px;
  background: var(--lp-line);
  margin: 6px 0;
}

/* --- feature grid --- */
.landing-features {
  background: var(--lp-paper);
  border-top: 1px solid var(--lp-line);
  padding: 80px 32px;
}
.landing-features-title {
  margin: 0 auto 48px;
  max-width: 1120px;
  font-size: 28px;
  font-weight: 800;
  color: var(--lp-ink);
  text-align: center;
}
.landing-features-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.landing-feature-card {
  padding: 28px 24px;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  background: var(--lp-paper);
  transition: box-shadow .2s;
}
.landing-feature-card:hover {
  box-shadow: 0 8px 24px -8px rgba(16, 24, 38, .1);
}
.landing-feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: #eff6ff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.landing-feature-icon svg { width: 22px; height: 22px; }
.landing-feature-name {
  margin: 0 0 8px; font-size: 16px; font-weight: 700; color: var(--lp-ink);
}
.landing-feature-desc {
  margin: 0; font-size: 14px; color: var(--lp-thermal); line-height: 1.6;
}

/* --- dashboard preview --- */
.landing-preview {
  background: var(--lp-paper-2);
  border-top: 1px solid var(--lp-line);
  padding: 80px 32px;
  text-align: center;
}
.landing-preview-title {
  margin: 0 0 12px; font-size: 28px; font-weight: 800; color: var(--lp-ink);
}
.landing-preview-sub {
  margin: 0 auto 48px; max-width: 520px;
  font-size: 16px; color: var(--lp-thermal); line-height: 1.6;
}
.landing-preview-frame {
  max-width: 960px; margin: 0 auto;
  background: #f8f9fc;
  border-radius: 14px; border: 1px solid #cbd5e1;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(16, 24, 38, .18);
}
.landing-preview-bar {
  background: #fff; border-bottom: 1px solid #e2e8f0;
  padding: 10px 16px; display: flex; align-items: center; gap: 6px;
}
.landing-preview-dot { width: 10px; height: 10px; border-radius: 999px; }
.landing-preview-dot:nth-child(1) { background: #ef5d6a; }
.landing-preview-dot:nth-child(2) { background: #f5c542; }
.landing-preview-dot:nth-child(3) { background: #4ade80; }
.landing-preview-url {
  flex: 1; margin-left: 10px;
  background: #f8f9fc; border: 1px solid #e2e8f0; border-radius: 6px;
  padding: 4px 12px; font-size: 11px; color: #718096;
}
.landing-preview-body { padding: 20px; }

/* dashboard mockup elements */
.landing-ov-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.landing-ov-title {
  font-size: 18px; font-weight: 800; color: #1a1a2e;
}
.landing-ov-info {
  width: 16px; height: 16px; border-radius: 999px;
  border: 1.5px solid #718096;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #718096;
}
.landing-ov-tabs {
  display: inline-flex; gap: 0; margin-bottom: 16px;
  border-radius: 999px; overflow: hidden; border: 1px solid #e2e8f0;
}
.landing-ov-tab {
  padding: 7px 20px; font-size: 13px; font-weight: 600;
  border: none; background: #fff; color: #4a5568;
}
.landing-ov-tab--active {
  background: var(--lp-blue); color: #fff;
}
.landing-ov-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "spend  chart   chart    chart"
    "count  chart   chart    chart"
    "donut  donut   alltime  topcat";
  gap: 14px;
}
.landing-ov-kpi {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
  padding: 18px; display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.landing-ov-kpi--accent {
  background: var(--lp-blue); border-color: var(--lp-blue);
}
.landing-ov-kpi--accent .landing-ov-kpi-val { color: #fff; }
.landing-ov-kpi--accent .landing-ov-kpi-lbl { color: rgba(255,255,255,.75); }
.landing-ov-kpi--accent .landing-ov-kpi-sub { color: rgba(255,255,255,.55); }
.landing-ov-kpi-val {
  font-size: 28px; font-weight: 800; color: #1a1a2e; letter-spacing: -.02em; order: 1;
}
.landing-ov-kpi-lbl {
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #718096; order: 2; margin-top: 4px;
}
.landing-ov-kpi-sub {
  font-size: 10.5px; color: #718096; order: 3; margin-top: 4px;
}
.landing-ov-breakdown {
  list-style: none; width: 100%; margin-top: 10px; text-align: left;
}
.landing-ov-breakdown li {
  display: flex; justify-content: space-between; padding: 3px 0;
  font-size: 11px; color: #4a5568;
}
.landing-ov-breakdown-ct { font-weight: 700; color: #1a1a2e; }
.landing-ov-cell-spend { grid-area: spend; }
.landing-ov-cell-count { grid-area: count; }
.landing-ov-cell-alltime { grid-area: alltime; }
.landing-ov-cell-topcat { grid-area: topcat; }
.landing-ov-chart {
  grid-area: chart;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
  padding: 18px; text-align: left;
}
.landing-ov-chart-cap { font-size: 13px; color: #718096; margin-bottom: 10px; }
.landing-ov-chart svg { width: 100%; height: auto; display: block; }
.landing-ov-donut {
  grid-area: donut;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
  padding: 18px; text-align: left;
}
.landing-ov-donut-body {
  display: flex; align-items: center; gap: 24px; margin-top: 10px;
}
.landing-ov-donut-svg { width: 160px; height: 160px; flex-shrink: 0; }
.landing-ov-legend {
  list-style: none; display: flex; flex-direction: column; gap: 7px; flex: 1;
}
.landing-ov-legend li {
  display: flex; align-items: center; gap: 8px; font-size: 12px; color: #4a5568;
}
.landing-ov-swatch {
  width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0;
}
.landing-ov-legend-pct { margin-left: auto; font-weight: 700; color: #1a1a2e; }

/* --- trust strip --- */
.landing-trust {
  background: var(--lp-navy);
  padding: 72px 32px;
}
.landing-trust-heading {
  text-align: center; max-width: 1120px; margin: 0 auto 48px;
}
.landing-trust-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: #60a5fa; margin-bottom: 12px;
}
.landing-trust-h2 {
  font-size: 26px; font-weight: 800; color: #fff; margin: 0;
}
.landing-trust-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.landing-trust-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 20px;
}
.landing-trust-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(96,165,250,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.landing-trust-icon svg { width: 20px; height: 20px; }
.landing-trust-title {
  font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px;
}
.landing-trust-desc {
  font-size: 13px; color: #9ca3af; line-height: 1.55;
}

/* --- final CTA --- */
.landing-final-cta {
  background: var(--lp-paper);
  border-top: 1px solid var(--lp-line);
  padding: 88px 32px;
  text-align: center;
}
.landing-final-cta-title {
  margin: 0 0 14px; font-size: 36px; font-weight: 800;
  color: var(--lp-ink); letter-spacing: -.01em;
}
.landing-final-cta-sub {
  margin: 0 auto 32px; max-width: 460px;
  font-size: 16px; color: var(--lp-thermal); line-height: 1.6;
}
.landing-final-cta .landing-cta-row { justify-content: center; }

/* --- footer --- */
.landing-footer {
  background: var(--lp-paper-2);
  border-top: 1px solid var(--lp-line);
  padding: 40px 32px 32px;
}
.landing-footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.landing-footer-links {
  display: flex; gap: 24px; list-style: none;
}
.landing-footer-links a {
  font-size: 13px; color: var(--lp-thermal); text-decoration: none;
  transition: color .15s;
}
.landing-footer-links a:hover { color: var(--lp-ink); }
.landing-footer-legal {
  width: 100%; text-align: center; font-size: 12px; color: var(--lp-thermal);
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--lp-line);
}

@media (max-width: 760px) {
  .landing-hero { padding: 56px 20px; gap: 36px; }
  .landing-hero-title { font-size: 34px; }
  .landing-nav-links { display: none; }
  .landing-features { padding: 56px 20px; }
  .landing-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .landing-features-title { font-size: 24px; }
  .landing-preview { padding: 56px 16px; }
  .landing-preview-title { font-size: 24px; }
  .landing-ov-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "spend" "count" "chart" "donut" "alltime" "topcat";
  }
  .landing-ov-donut-body { flex-direction: column; }
  .landing-trust { padding: 48px 20px; }
  .landing-trust-inner { grid-template-columns: 1fr; gap: 14px; }
  .landing-trust-h2 { font-size: 22px; }
  .landing-final-cta { padding: 56px 20px; }
  .landing-final-cta-title { font-size: 28px; }
  .landing-footer { padding: 32px 20px 24px; }
  .landing-footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .landing-footer-links { flex-wrap: wrap; justify-content: center; }
}
