/* ═══════════════════════════════════════════════════════════════
   NovaSpire SSI — Technical Documentation Stylesheet
   Copyright © 2026 Tobias Østen. All rights reserved.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #0d1117;
  --surface: #161b22;
  --surface-2: #1c2331;
  --surface-3: #222d3f;
  --border: #30363d;
  --border-light: #484f58;
  --text: #e6edf3;
  --text-dim: #8b949e;
  --text-faint: #6e7681;
  --accent: #58a6ff;
  --accent-2: #79c0ff;
  --accent-dim: rgba(88, 166, 255, 0.12);
  --green: #3fb950;
  --yellow: #d29922;
  --red: #f85149;
  --purple: #bc8cff;
  --orange: #e8873a;
  --mono: 'SF Mono', 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --sidebar-w: 280px;
  --header-h: 180px;
  --radius: 8px;
  --radius-sm: 6px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-light); }

/* ═══════════════════════════════════════════════════════════════
   HEADER BANNER
   ═══════════════════════════════════════════════════════════════ */
.header-banner {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #1a2332 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 64px 40px;
  position: relative;
  overflow: hidden;
}
.header-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(88, 166, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.header-banner h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  position: relative;
}
.header-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  margin-bottom: 16px;
  display: block;
  position: relative;
  box-shadow: 0 2px 12px rgba(88, 166, 255, 0.15);
}
.header-banner .subtitle {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 20px;
  position: relative;
}
.header-banner .meta-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.header-banner .meta-item {
  font-size: 13px;
  color: var(--text-dim);
}
.header-banner .meta-item strong {
  color: var(--text);
  font-weight: 600;
}
.version-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(88, 166, 255, 0.3);
  color: var(--accent);
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 12px;
  vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.layout {
  display: flex;
  min-height: calc(100vh - var(--header-h));
}

/* ═══════════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════════ */
.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 32px 0;
}
.sidebar nav { padding: 0 20px; }
.sidebar nav a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 2px;
  transition: all 0.15s ease;
  font-weight: 500;
}
.sidebar nav a:hover {
  color: var(--text);
  background: var(--surface-2);
}
.sidebar nav a.active {
  color: var(--accent);
  background: var(--accent-dim);
  border-left: 2px solid var(--accent);
  padding-left: 10px;
}
.sidebar nav a.sub {
  padding-left: 28px;
  font-size: 12px;
}
.sidebar .nav-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-faint);
  padding: 16px 12px 6px;
  font-weight: 700;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
  font-family: var(--sans);
}

/* ═══════════════════════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════════════════════ */
.main {
  flex: 1;
  padding: 48px 64px;
  max-width: 1100px;
  overflow-x: auto;
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */
h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-top: 56px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
h2:first-of-type { margin-top: 0; }
h3 {
  font-size: 19px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--accent-2);
}
h4 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--text);
}
p { margin-bottom: 14px; }
strong { font-weight: 600; color: var(--text); }
em { color: var(--text-dim); font-style: italic; }
ul, ol { margin: 12px 0 12px 24px; }
li { margin-bottom: 6px; font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   CODE
   ═══════════════════════════════════════════════════════════════ */
pre {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  overflow-x: auto;
  margin: 16px 0;
}
code {
  font-family: var(--mono);
  font-size: 13px;
}
pre code {
  color: var(--accent-2);
  line-height: 1.6;
}
p code, li code, td code {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent-2);
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   TABLES
   ═══════════════════════════════════════════════════════════════ */
.table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
thead { background: var(--surface-2); }
th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(48, 54, 61, 0.5);
  vertical-align: top;
}
tbody tr:hover { background: rgba(88, 166, 255, 0.04); }
tbody tr:last-child td { border-bottom: none; }
td code { font-size: 11px; }

/* ═══════════════════════════════════════════════════════════════
   CALLOUTS
   ═══════════════════════════════════════════════════════════════ */
.callout {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
}
.callout .callout-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.callout p { margin-bottom: 8px; }
.callout p:last-child { margin-bottom: 0; }
.callout.warning { border-left-color: var(--yellow); }
.callout.warning .callout-title { color: var(--yellow); }
.callout.critical { border-left-color: var(--red); }
.callout.critical .callout-title { color: var(--red); }
.callout.success { border-left-color: var(--green); }
.callout.success .callout-title { color: var(--green); }

/* ═══════════════════════════════════════════════════════════════
   EMOTION DIAGRAM
   ═══════════════════════════════════════════════════════════════ */
.emotion-diagram {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.emotion-layer {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  position: relative;
  transition: border-color 0.2s, transform 0.15s;
}
.emotion-layer:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.emotion-layer .layer-num {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-faint);
  font-family: var(--mono);
}
.emotion-layer .layer-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 6px;
}
.emotion-layer .layer-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── Emotion Values Grid ── */
.emotion-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
  margin: 20px 0;
}
.emotion-value {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  text-align: center;
}
.emotion-value .val-name {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-2);
}
.emotion-value .val-range {
  font-size: 10px;
  color: var(--text-faint);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   TEST RESULTS
   ═══════════════════════════════════════════════════════════════ */
.test-result {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 12px 0;
}
.test-result .test-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.test-result .test-title { font-size: 14px; font-weight: 600; }
.test-result .test-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.test-status.pass {
  background: rgba(63, 185, 80, 0.12);
  color: var(--green);
  border: 1px solid rgba(63, 185, 80, 0.3);
}
.test-result .test-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   FIX ITEMS
   ═══════════════════════════════════════════════════════════════ */
.fix-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 12px 0;
}
.fix-item .fix-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.fix-item .fix-reason {
  font-size: 13px;
  color: var(--text-dim);
  padding-top: 8px;
  border-top: 1px solid rgba(48, 54, 61, 0.5);
  margin-top: 8px;
}
.fix-item .fix-reason strong { color: var(--yellow); }

/* ═══════════════════════════════════════════════════════════════
   SECTION DIVIDER
   ═══════════════════════════════════════════════════════════════ */
.section-sep {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 64px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}
.footer strong { color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   APPENDIX
   ═══════════════════════════════════════════════════════════════ */
.appendix-entry {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 10px 0;
}
.appendix-entry .ax-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 4px;
}
.appendix-entry .ax-path {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-faint);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    width: 260px;
  }
  .sidebar.open { transform: translateX(0); }
  .main { padding: 32px 24px; }
  .header-banner { padding: 32px 24px; }
  .footer { padding: 24px; }
  .emotion-diagram { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   BENCHMARK PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── Pillars ── */
.bench-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.bench-pillar {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.15s;
}
.bench-pillar:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.bench-pillar .pillar-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.bench-pillar .pillar-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.bench-pillar .pillar-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Controls ── */
.bench-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.bench-btn {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 24px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bench-btn.primary {
  background: var(--accent-dim);
  border-color: rgba(88, 166, 255, 0.4);
  color: var(--accent);
}
.bench-btn.primary:hover:not(:disabled) {
  background: rgba(88, 166, 255, 0.2);
  border-color: var(--accent);
}
.bench-btn.secondary {
  background: var(--surface-2);
  color: var(--text-dim);
}
.bench-btn.secondary:hover:not(:disabled) {
  color: var(--text);
  border-color: var(--border-light);
}
.bench-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.bench-btn .btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(88, 166, 255, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.bench-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
}
.bench-checkbox input {
  accent-color: var(--accent);
}

/* ── Status Bar ── */
.bench-status-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin: 16px 0;
}
.bench-status-bar .status-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(88, 166, 255, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.bench-status-bar .status-text {
  font-size: 14px;
  color: var(--text);
}
.bench-status-bar .status-timer {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-dim);
  margin-left: auto;
}

/* ── Summary Grid ── */
.bench-summary {
  margin: 24px 0;
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.summary-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.summary-card .card-label {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.summary-card .card-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}
.summary-card .card-value.pass { color: var(--green); }
.summary-card .card-value.fail { color: var(--red); }
.summary-card .card-sub {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 4px;
}

/* ── Results Container ── */
.bench-results-container {
  margin: 20px 0;
}
.bench-placeholder {
  color: var(--text-faint);
  font-size: 14px;
  font-style: italic;
  padding: 24px;
  text-align: center;
  background: var(--surface-2);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

/* ── Test Result Card ── */
.bench-test-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 12px 0;
  overflow: hidden;
}
.bench-test-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(48, 54, 61, 0.5);
  cursor: pointer;
  transition: background 0.15s;
}
.bench-test-card .card-header:hover {
  background: rgba(88, 166, 255, 0.04);
}
.bench-test-card .card-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bench-test-card .card-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bench-test-card .card-status.pass {
  background: rgba(63, 185, 80, 0.12);
  color: var(--green);
  border: 1px solid rgba(63, 185, 80, 0.3);
}
.bench-test-card .card-status.fail {
  background: rgba(248, 81, 73, 0.12);
  color: var(--red);
  border: 1px solid rgba(248, 81, 73, 0.3);
}
.bench-test-card .card-time {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-faint);
}
.bench-test-card .card-body {
  padding: 16px 18px;
  display: none;
}
.bench-test-card.expanded .card-body {
  display: block;
}
.bench-test-card .card-detail {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

/* ── Trace Table ── */
.trace-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin: 12px 0;
}
.trace-table th {
  text-align: left;
  padding: 8px 12px;
  color: var(--text-dim);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.trace-table td {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(48, 54, 61, 0.3);
  vertical-align: top;
}
.trace-table td code {
  font-size: 11px;
}

/* ── Evidence Chain ── */
.evidence-chain {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}
.evidence-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
}
.evidence-link .ev-stage {
  font-family: var(--mono);
  color: var(--accent-2);
  font-weight: 600;
  white-space: nowrap;
  min-width: 160px;
}
.evidence-link .ev-arrow {
  color: var(--text-faint);
}
.evidence-link .ev-source {
  color: var(--purple);
  font-weight: 600;
  white-space: nowrap;
}
.evidence-link .ev-summary {
  color: var(--text-dim);
  flex: 1;
}

/* ── Hash Badge ── */
.hash-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  color: var(--text-dim);
}

/* ── Output Preview ── */
.output-preview {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 12px;
  color: var(--text-dim);
  margin: 10px 0;
  max-height: 200px;
  overflow-y: auto;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

/* ── Benchmark Table ── */
.bench-table-wrapper {
  overflow-x: auto;
  margin: 16px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.bench-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.bench-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--surface-2);
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.bench-table td {
  padding: 8px 14px;
  border-bottom: 1px solid rgba(48, 54, 61, 0.3);
}
.bench-table tr:hover {
  background: rgba(88, 166, 255, 0.04);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .bench-pillars { grid-template-columns: 1fr; }
  .summary-grid { grid-template-columns: 1fr 1fr; }
  .bench-controls { flex-direction: column; align-items: stretch; }
  .bench-btn { width: 100%; justify-content: center; }
  .ssi-def-grid { grid-template-columns: 1fr; }
}

/* ── SSI Definition ── */
.ssi-def-intro {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0 0 28px;
}
.ssi-def-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ssi-def-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.15s;
}
.ssi-def-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.ssi-def-letter {
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  font-family: 'JetBrains Mono', 'Inter', monospace;
  line-height: 1;
  margin-bottom: 12px;
}
.ssi-def-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}
.ssi-def-tagline {
  font-size: 13px;
  color: var(--accent-2);
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.4;
}
.ssi-def-card p:last-of-type {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}
