/* ===============================================
   SPOROS — Marketing Site
   Brand: editorial / earthy / premium farm-craft
   =============================================== */

:root {
  /* Brand palette (from SPOROS_Brand_Guidelines.pdf) */
  --soft-bone:     #F4F1EC;
  --warm-taupe:    #B1A18F;
  --stone-beige:   #8D8374;
  --graphite:      #2C2B2A;
  --deep-charcoal: #151515;

  /* Derived */
  --bg:            var(--soft-bone);
  --surface:       #FBF9F5;
  --line:          rgba(44, 43, 42, 0.10);
  --line-strong:   rgba(44, 43, 42, 0.18);
  --text:          var(--graphite);
  --text-2:        rgba(44, 43, 42, 0.66);
  --text-3:        rgba(44, 43, 42, 0.40);
  --accent:        var(--stone-beige);
  --accent-soft:   var(--warm-taupe);

  /* Type */
  --font-display:  'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:     'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Layout */
  --max-w:         1280px;
  --gutter:        clamp(20px, 4vw, 56px);
  --section-y:     clamp(80px, 10vw, 140px);
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

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

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

/* ============= TYPOGRAPHY ============= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--deep-charcoal);
  letter-spacing: -0.01em;
  line-height: 1.05;
  font-weight: 300;
}

h1 {
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.0;
}

h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 250;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

h3 {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h4 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.005em;
}

p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  max-width: 60ch;
}

.lede {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 56ch;
  font-weight: 350;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

/* ============= BUTTONS ============= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 160ms ease;
  white-space: nowrap;
}

.btn-dark {
  background: var(--deep-charcoal);
  color: var(--soft-bone);
  border-color: var(--deep-charcoal);
}
.btn-dark:hover {
  background: var(--graphite);
  transform: translateY(-1px);
}

/* Softer button variant for nav (less harsh than full charcoal in the nav context) */
.nav .btn-dark {
  background: var(--stone-beige);
  border-color: var(--stone-beige);
  color: var(--soft-bone);
  padding: 11px 20px;
  font-size: 13px;
}
.nav .btn-dark:hover {
  background: var(--graphite);
  border-color: var(--graphite);
  transform: none;
}

.btn-ghost {
  background: transparent;
  color: var(--graphite);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--graphite);
  background: rgba(44, 43, 42, 0.03);
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.btn-large {
  padding: 18px 32px;
  font-size: 15px;
}

/* ============= NAV ============= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 236, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--graphite);
}

.nav-logo {
  height: 80px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

@media (max-width: 760px) {
  .nav-logo { height: 60px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-2);
  transition: color 160ms ease;
}
.nav-links a:hover { color: var(--graphite); }
.nav-links .btn { padding: 11px 20px; }

@media (max-width: 760px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ============= HERO ============= */

.hero {
  padding: clamp(40px, 5vw, 72px) var(--gutter) clamp(64px, 7vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(177, 161, 143, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 75%, rgba(141, 131, 116, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(36px, 4.5vw, 64px);
  align-items: center;
}

.hero-text { max-width: 640px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--graphite);
  margin-bottom: 32px;
  font-family: var(--font-mono);
}

.pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(141, 131, 116, 0.18);
}

.hero-accent {
  font-style: italic;
  font-weight: 200;
  color: var(--accent);
}

.cta-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.meta-row {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  list-style: none;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.meta-row li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--graphite);
  font-family: var(--font-display);
  font-weight: 500;
}
.meta-row .meta-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.meta-row .meta-pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6b8a4f;
  flex-shrink: 0;
  margin-left: 4px;
  margin-right: 1px;
}
.meta-row .meta-pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(107, 138, 79, 0.32);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.4); opacity: 0; }
}
.meta-row .meta-price {
  padding: 6px 14px 6px 10px;
  background: rgba(177, 161, 143, 0.16);
  border: 1px solid rgba(141, 131, 116, 0.30);
  border-radius: 999px;
  color: var(--graphite);
}
.meta-row .meta-price strong {
  color: var(--deep-charcoal);
  font-weight: 600;
}
.meta-row .meta-icon-halo {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.hero-shot {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-shot .browser-frame {
  width: 100%;
  max-width: 820px;
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-shot { order: -1; padding: 0 0 8px; }
  .hero-shot .browser-frame { max-width: 540px; margin: 0 auto; }
}

.lede { margin-top: 16px; }

/* ============= ORIGIN ============= */

.origin {
  padding: var(--section-y) var(--gutter);
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.origin-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.origin h2 {
  margin-bottom: 56px;
  max-width: 18ch;
}

/* Editorial quote with big bookend quotation marks */
.quote {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(20px, 2.6vw, 36px);
  align-items: start;
}

.quote-mark {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(110px, 12vw, 160px);
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
  display: block;
}

.quote-mark-open {
  grid-column: 1;
  grid-row: 1;
  margin-top: -8px;
}

.quote-content {
  grid-column: 2;
  grid-row: 1;
  padding-top: 18px;
}

.quote-mark-close {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  margin-top: 8px;
  margin-bottom: -16px;
}

.quote-cite {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}
.cite-rule {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.quote-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--deep-charcoal);
  margin: 0 0 28px;
  max-width: 24ch;
}

.quote-body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.7;
  font-weight: 350;
  color: var(--text);
  max-width: 60ch;
  margin: 0;
}

@media (max-width: 600px) {
  .quote {
    display: block;
  }
  .quote-mark-open {
    margin-bottom: -20px;
  }
  .quote-mark-close {
    text-align: right;
    margin-top: 0;
    margin-bottom: -24px;
  }
  .quote-content {
    padding-top: 0;
  }
}

/* ============= HOW IT WORKS ============= */

.how {
  padding: var(--section-y) var(--gutter);
}

.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 10vw, 140px);
}

.how-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.how-row-reverse .how-text { order: 2; }
.how-row-reverse .how-visual { order: 1; }

.how-text { max-width: 480px; }
.how-text h3 { margin-bottom: 20px; }
.how-text p { color: var(--text-2); }

@media (max-width: 880px) {
  .how-row,
  .how-row-reverse {
    grid-template-columns: 1fr;
  }
  .how-row-reverse .how-text { order: initial; }
  .how-row-reverse .how-visual { order: initial; }
}

/* ============= BROWSER FRAME (for screenshots) ============= */

.browser-frame {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 30px 80px -20px rgba(44, 43, 42, 0.18),
    0 12px 30px -15px rgba(141, 131, 116, 0.20);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #ECE6DC;
  border-bottom: 1px solid var(--line);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(44, 43, 42, 0.16);
}

.browser-url {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

.browser-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ============= DATA CARDS (visual mocks) ============= */

.data-card {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 30px 80px -30px rgba(44, 43, 42, 0.18),
    0 12px 30px -15px rgba(141, 131, 116, 0.20);
}

.data-card header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.data-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--graphite);
  letter-spacing: 0.04em;
}

.data-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}

.data-rows { display: flex; flex-direction: column; }

.data-row {
  display: grid;
  grid-template-columns: 70px 1fr 100px 70px;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.data-row:last-child { border-bottom: none; }

.data-id {
  color: var(--text-3);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.data-name {
  font-family: var(--font-display);
  color: var(--graphite);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.data-tag {
  display: inline-flex;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
  border: 1px solid var(--line-strong);
  color: var(--graphite);
  background: rgba(177, 161, 143, 0.10);
}
.data-tag.tag-mid {
  background: rgba(141, 131, 116, 0.12);
  color: var(--stone-beige);
}
.data-tag.tag-warm {
  background: rgba(177, 161, 143, 0.20);
  color: #8B6F4E;
}

.data-num {
  text-align: right;
  color: var(--graphite);
  font-weight: 500;
}

/* Contamination grid */
.contam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 4px;
}
.contam-cell { display: flex; flex-direction: column; gap: 10px; }
.contam-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.bar-row {
  display: grid;
  grid-template-columns: 1fr 80px 24px;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--text-2);
}
.bar-row > span:first-child {
  font-family: var(--font-display);
  color: var(--graphite);
  font-size: 13px;
}
.bar {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.bar > span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}
.bar-row .num {
  text-align: right;
  color: var(--graphite);
  font-size: 12px;
}

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

/* Doc card */
.data-card-doc { font-family: var(--font-display); }
.data-card-doc .data-title {
  font-family: var(--font-mono);
  letter-spacing: 0.10em;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
}
.doc-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
  font-size: 14px;
}
.doc-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--text);
}
.doc-row .doc-k { color: var(--text-2); }
.doc-row .doc-v { color: var(--graphite); font-weight: 400; }
.doc-body hr {
  border: none;
  border-top: 1px dashed var(--line);
  margin: 6px 0;
}
.doc-row.doc-total .doc-k,
.doc-row.doc-total .doc-v {
  font-weight: 600;
  color: var(--deep-charcoal);
  font-size: 16px;
}

/* ============= PRICING ============= */

.pricing {
  padding: var(--section-y) var(--gutter);
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing-head { text-align: center; margin-bottom: 64px; }
.pricing-head h2 { margin: 0 auto 20px; }
.pricing-head p {
  margin: 0 auto;
  text-align: center;
  color: var(--text-2);
  max-width: 56ch;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

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

.plan {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.plan-featured {
  background: var(--deep-charcoal);
  color: var(--soft-bone);
  border-color: var(--deep-charcoal);
}
.plan-featured h4,
.plan-featured .price-num { color: var(--soft-bone); }
.plan-featured .price-unit { color: rgba(244, 241, 236, 0.55); }
.plan-featured .plan-alt,
.plan-featured .plan-feats li { color: rgba(244, 241, 236, 0.7); }
.plan-featured .plan-feats li::before { background: var(--accent); }
.plan-featured .plan-feats em { color: var(--soft-bone); font-style: normal; font-weight: 600; }

.plan-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(177, 161, 143, 0.18);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 22px;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-weight: 500;
}
.plan-badge-muted {
  color: var(--text-3);
  background: rgba(44, 43, 42, 0.05);
}
.plan-featured .plan-badge {
  background: rgba(177, 161, 143, 0.20);
  color: var(--accent);
}

.plan h4 { margin-bottom: 18px; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.price-num {
  font-size: 56px;
  font-weight: 200;
  letter-spacing: -0.03em;
  color: var(--deep-charcoal);
}
.price-unit {
  font-size: 14px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

.plan-alt {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.plan-feats li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}
.plan-feats li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.plan-feats em {
  font-style: normal;
  font-weight: 600;
  color: var(--graphite);
}

/* ============= FAQ ============= */

.faq {
  padding: var(--section-y) var(--gutter);
}

.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}

.faq-inner h2 { margin-bottom: 48px; }

.faq-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.q {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}

.q summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--graphite);
  letter-spacing: -0.005em;
  list-style: none;
  cursor: pointer;
}
.q summary::-webkit-details-marker { display: none; }
.q summary::after {
  content: '+';
  font-size: 22px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 200ms ease;
}
.q[open] summary::after { content: '−'; }

.q p {
  margin-top: 16px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 70ch;
}

/* ============= CTA ============= */

.cta {
  padding: var(--section-y) var(--gutter);
  background: var(--deep-charcoal);
  color: var(--soft-bone);
  text-align: center;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta h2 {
  color: var(--soft-bone);
  margin-bottom: 24px;
  font-weight: 200;
}

.cta p {
  color: rgba(244, 241, 236, 0.75);
  margin: 0 auto 36px;
  text-align: center;
  max-width: 56ch;
  font-size: 17px;
}

.cta .btn-dark {
  background: var(--soft-bone);
  color: var(--deep-charcoal);
  border-color: var(--soft-bone);
}
.cta .btn-dark:hover {
  background: var(--warm-taupe);
  border-color: var(--warm-taupe);
}

.cta .cta-fineprint {
  margin-top: 48px;
  margin-bottom: 0;
  font-size: 13px;
  color: rgba(244, 241, 236, 0.55);
  letter-spacing: 0.04em;
}
.cta-fineprint a {
  color: var(--accent);
  border-bottom: 1px solid rgba(141, 131, 116, 0.4);
}
.cta-spacer { height: 16px; }

/* ============= FOOTER ============= */

.footer {
  padding: 48px var(--gutter);
  background: var(--deep-charcoal);
  border-top: 1px solid rgba(244, 241, 236, 0.08);
  color: rgba(244, 241, 236, 0.6);
}

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

.footer-brand { display: flex; align-items: baseline; gap: 16px; }
.footer-wordmark {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--soft-bone);
}
.footer-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(244, 241, 236, 0.4);
  text-transform: uppercase;
}

.footer-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: rgba(244, 241, 236, 0.5);
  letter-spacing: 0.02em;
}
.footer-meta a:hover { color: var(--soft-bone); }

@media (max-width: 600px) {
  .footer-brand { flex-direction: column; align-items: flex-start; gap: 4px; }
}
