/* ── Design tokens ──────────────────────────────────────────────────────── */
:root {
  --bg:        #111111;
  --surface:   #1a1a1a;
  --panel:     #242424;
  --border:    #2c2c2c;
  --text:      #cccccc;
  --text-dim:  #888888;
  --accent:    #0078d4;
  --accent-hi: #3fa0ff;
  --white:     #f0f0f0;
  --radius:    12px;
  --max-w:     1100px;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font: 17px/1.7 system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Utility ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
}
.btn-primary:hover  { background: var(--accent-hi); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: #555; color: var(--white); }

/* ── Nav ────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.nav-logo svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

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

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0,120,212,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.logo {
  width: 26px;
  height: 26px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 24px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-hi), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.hero-note {
  font-size: 13px;
  color: #555;
  margin-top: -56px;
  margin-bottom: 72px;
}

/* App mockup */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 50% 60%, rgba(0,120,212,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.app-mockup {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #1e1e1e;
  border-radius: 14px;
  border: 1px solid #333;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
}

.app-mockup-bar {
  height: 32px;
  background: #2a2a2a;
  border-bottom: 1px solid #333;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
}
.app-mockup-dot {
  width: 11px; height: 11px; border-radius: 50%;
}
.app-mockup-dot:nth-child(1) { background: #ff5f57; }
.app-mockup-dot:nth-child(2) { background: #febc2e; }
.app-mockup-dot:nth-child(3) { background: #28c840; }

.app-mockup-body {
  display: grid;
  grid-template-columns: 44px 1fr 220px;
  height: calc(100% - 32px);
}

.app-mock-toolbar {
  background: #2e2e2e;
  border-right: 1px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  gap: 4px;
}
.app-mock-tool {
  width: 30px; height: 30px;
  border-radius: 4px;
  background: #3a3a3a;
}
.app-mock-tool.active { background: var(--accent); }

.app-mock-canvas {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.app-mock-canvas-inner {
  width: 70%;
  aspect-ratio: 4/3;
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.app-mock-layer-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a6bb5 0%, #0a3d6e 100%);
}
.app-mock-layer-2 {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.app-mock-layer-3 {
  position: absolute;
  top: 20%; left: 15%; right: 15%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.15), transparent 70%);
  border-radius: 50%;
}

.app-mock-panels {
  background: #2e2e2e;
  border-left: 1px solid #333;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.app-mock-panel-block {
  background: #383838;
  border-radius: 6px;
  padding: 8px;
}
.app-mock-panel-title {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 6px;
}
.app-mock-layer-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 4px;
  background: #444;
  margin-bottom: 3px;
}
.app-mock-layer-row.active-layer { background: #0078d4; }
.app-mock-layer-thumb {
  width: 20px; height: 14px;
  border-radius: 2px;
  background: #666;
  flex-shrink: 0;
}
.app-mock-layer-name {
  font-size: 9px;
  color: #bbb;
  flex: 1;
}
.app-mock-swatch-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.app-mock-swatch {
  aspect-ratio: 1;
  border-radius: 3px;
}

/* ── Highlights strip ───────────────────────────────────────────────────── */
.highlights {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.highlight-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,120,212,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.highlight-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.highlight-card p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Feature blocks ─────────────────────────────────────────────────────── */
#features { padding: 100px 0; }

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.feature-block:first-child { border-top: none; }

.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-text {}

.feature-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.feature-text p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 16px;
}

.feature-visual {
  position: relative;
}

.mockup-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1e2535 0%, #1a1a2e 100%);
  border-radius: var(--radius);
  border: 1px solid #2a3040;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 13px;
  letter-spacing: 0.5px;
  overflow: hidden;
  position: relative;
}

/* Selection mockup */
.mock-selection {
  width: 85%;
  height: 80%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-sel-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #2a4a7a, #1a6b5a);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.mock-sel-ants {
  position: absolute;
  top: 18%; left: 12%; right: 18%; bottom: 22%;
  border: 2px dashed rgba(255,255,255,0.8);
  border-radius: 3px;
  animation: march 0.6s linear infinite;
}
@keyframes march {
  0%   { border-dash-offset: 0; }
  100% { stroke-dashoffset: -16px; }
}

/* Layers mockup */
.mock-layers {
  width: 88%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-layer-r {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #2e2e2e;
  border-radius: 5px;
  padding: 7px 10px;
  border: 1px solid #3a3a3a;
}
.mock-layer-r.act { background: #1a3a5c; border-color: #0078d4; }
.mock-layer-t {
  width: 28px; height: 20px;
  border-radius: 3px;
  flex-shrink: 0;
}
.mock-layer-n { font-size: 11px; color: #bbb; flex: 1; }
.mock-layer-b { font-size: 10px; color: #666; }

/* Brush mockup */
.mock-brush {
  width: 88%;
  height: 78%;
  position: relative;
}
.mock-brush-canvas {
  width: 100%;
  height: 100%;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.mock-brush-stroke {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

/* Pen mockup */
.mock-pen {
  width: 85%;
  height: 78%;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.mock-pen-path {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Adjustments ────────────────────────────────────────────────────────── */
#adjustments {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#adjustments .section-header {
  text-align: center;
  margin-bottom: 64px;
}

#adjustments h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

#adjustments .section-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto;
}

.adj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.adj-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.adj-card:hover {
  border-color: rgba(0,120,212,0.4);
  transform: translateY(-2px);
}

.adj-icon {
  width: 36px; height: 36px;
  background: rgba(0,120,212,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-hi);
  margin-bottom: 14px;
}

.adj-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.adj-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ── Export section ─────────────────────────────────────────────────────── */
#export { padding: 100px 0; }

.export-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.export-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.export-text p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 20px;
}

.format-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.format-pill {
  padding: 6px 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}

/* Export dialog mockup */
.mock-export {
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  padding: 20px;
  font-size: 12px;
}
.mock-export-header {
  font-weight: 600;
  color: #ccc;
  margin-bottom: 14px;
  font-size: 13px;
}
.mock-export-body {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 16px;
}
.mock-export-preview {
  aspect-ratio: 4/3;
  background: repeating-conic-gradient(#2a2a2a 0% 25%, #222 0% 50%) 0 0 / 16px 16px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.mock-export-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a4a8a, #0d7a5f);
  opacity: 0.9;
}
.mock-export-settings { display: flex; flex-direction: column; gap: 10px; }
.mock-export-row { display: flex; flex-direction: column; gap: 4px; }
.mock-export-label { font-size: 10px; color: #666; letter-spacing: 0.5px; text-transform: uppercase; }
.mock-export-value {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 4px;
  padding: 5px 8px;
  color: #bbb;
  font-size: 12px;
}
.mock-export-slider {
  height: 3px;
  background: linear-gradient(to right, var(--accent) 78%, #3a3a3a 78%);
  border-radius: 2px;
  margin-top: 4px;
}
.mock-export-size {
  font-size: 11px;
  color: #666;
  text-align: right;
  margin-top: 4px;
}
.mock-export-btn {
  background: var(--accent);
  color: white;
  border-radius: 5px;
  padding: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  margin-top: auto;
}

/* ── .pixel format ──────────────────────────────────────────────────────── */
#format {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

#format h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

#format .section-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.format-features {
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 44px;
}

.format-feature-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--text);
}

.format-check {
  width: 22px;
  height: 22px;
  background: rgba(0,120,212,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-hi);
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
}

/* ── Workflow grid ───────────────────────────────────────────────────────── */
#workflow { padding: 100px 0; }

#workflow .section-header {
  text-align: center;
  margin-bottom: 64px;
}

#workflow h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.workflow-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.workflow-card:hover { border-color: rgba(0,120,212,0.3); }

.workflow-icon {
  width: 40px; height: 40px;
  background: rgba(0,120,212,0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.workflow-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.workflow-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Final CTA ──────────────────────────────────────────────────────────── */
.final-cta {
  padding: 120px 32px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #0d1f35 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,120,212,0.2), transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto 40px;
}

.final-cta-sub {
  margin-top: 20px;
  font-size: 13px;
  color: #444;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.footer-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  color: #555;
  margin-top: 4px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-legal {
  font-size: 12px;
  color: #444;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .highlights-grid   { grid-template-columns: 1fr; }
  .adj-grid          { grid-template-columns: 1fr 1fr; }
  .workflow-grid     { grid-template-columns: 1fr 1fr; }
  .feature-block     { grid-template-columns: 1fr; gap: 40px; }
  .feature-block.reverse { direction: ltr; }
  .export-grid       { grid-template-columns: 1fr; gap: 40px; }
  .nav-links         { display: none; }
}

@media (max-width: 540px) {
  .adj-grid      { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: 1fr; }
  .container     { padding: 0 20px; }
  .hero          { padding: 100px 20px 60px; }
  .format-features { padding: 24px 24px; }
  .app-mockup-body { grid-template-columns: 36px 1fr 0; }
  .app-mock-panels { display: none; }
  .faq-inner     { padding: 0 20px; }
}

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq {
  padding: 0 0 100px;
}

.faq-divider {
  max-width: 800px;
  margin: 0 auto 80px;
  height: 1px;
  background: var(--border);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.faq-intro {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 56px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--accent-hi);
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--text-dim);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-answer p {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
