/* ============================================================
   DevX Partners — brand stylesheet v2 (de-templated)
   Palette: near-black navy base, #00CCFF brand cyan (from logo)
   Type: Space Grotesk (display) / Inter (body) / IBM Plex Mono (utility)
   Devices: code-comment eyebrows, ruled rows over boxed cards,
            live timezone readout as the signature element
   ============================================================ */

:root {
  --bg: #060b14;
  --bg-raised: #0a1120;
  --bg-card: #0d1626;
  --rule: rgba(148, 184, 255, 0.16);
  --rule-strong: rgba(148, 184, 255, 0.30);
  --text: #eaf2ff;
  --text-muted: #9fb0c9;
  --text-dim: #66788f;
  --cyan: #00ccff;
  --cyan-ink: #04121c;
  --cyan-soft: rgba(0, 204, 255, 0.10);
  --red: #ff7a7a;
  --radius: 8px;
  --radius-sm: 6px;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: rgba(0, 204, 255, 0.3); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

/* ---------- Code-comment eyebrows ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.eyebrow::before { content: "// "; opacity: 0.7; }
.eyebrow-red { color: var(--red); }

/* solid accent (replaces gradient text) */
.grad-text { color: var(--cyan); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--cyan);
  color: var(--cyan-ink);
}
.btn-primary:hover { background: #45dcff; }
.btn-secondary {
  background: transparent;
  border-color: var(--rule-strong);
  color: var(--text);
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(6, 11, 20, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}
.nav-logo img { height: 25px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--cyan); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 20px; font-size: 14.5px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  cursor: pointer;
  color: var(--text);
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 180px 0 96px;
  border-bottom: 1px solid var(--rule);
}
.hero-inner { max-width: 780px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 64px;
  align-items: start;
}
.hero-media {
  aspect-ratio: 1 / 1;
  max-width: 520px;
  justify-self: end;
  margin-top: 44px; /* aligns panel top with the h1, below the eyebrow */
}
.hero-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-frame video { width: 100%; height: 100%; object-fit: cover; }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 62px);
  margin-bottom: 24px;
}
.hero .lede {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

/* ---------- Signature: live timezone readout ---------- */
.tzbar {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14.5px;
  color: var(--text-dim);
}
.tzbar .tz {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}
.tzbar .tz-city { min-width: 150px; }
.tzbar .tz-city { color: var(--text-muted); }
.tzbar .tz-clock { color: var(--cyan); font-weight: 500; font-variant-numeric: tabular-nums; }
.tzbar .tz-note { color: var(--text-dim); }
.tzbar .tz-note::before { content: "→ "; color: var(--cyan); }

/* page hero (inner pages) */
.page-hero { padding: 168px 0 64px; border-bottom: 1px solid var(--rule); }
.page-hero h1 { font-size: clamp(36px, 5vw, 52px); margin-bottom: 20px; max-width: 760px; }
.page-hero .lede { font-size: 18.5px; color: var(--text-muted); max-width: 640px; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; position: relative; }
.section-tight { padding: 60px 0; }
.section-alt { background: var(--bg-raised); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(28px, 3.8vw, 40px); margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 17px; }
.section-head.center { margin-left: 0; margin-right: auto; text-align: left; }

/* ---------- Stats readout (boxless) ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 40px;
}
.stat {
  border-top: 2px solid var(--rule-strong);
  padding: 20px 0 0;
  text-align: left;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat:first-child .num { color: var(--cyan); }
.stat .label {
  font-family: var(--font-mono);
  font-size: 14.5px;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: lowercase;
}

/* ---------- Ledger rows (problem section) ---------- */
.ledger { max-width: 880px; }
.ledger-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--rule);
}
.ledger-row:last-child { border-bottom: 1px solid var(--rule); }
.ledger-row .idx {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--red);
  padding-top: 4px;
}
.ledger-row h3 { font-size: 20px; }
.ledger-row p { color: var(--text-muted); font-size: 15.5px; }

/* ---------- Ruled columns (replaces boxed cards) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

.card {
  border-top: 2px solid var(--rule-strong);
  padding: 22px 0 0;
  transition: border-color 0.25s ease;
}
.card:hover { border-top-color: var(--cyan); }
.card h3 { font-size: 19px; margin: 16px 0 10px; }
.card p { color: var(--text-muted); font-size: 15px; }
.card .icon { width: auto; height: auto; }
.card .icon svg { width: 24px; height: 24px; color: var(--cyan); }
.card-problem .icon svg { color: var(--red); }

/* ---------- Steps (true sequence — numbering stays) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.step {
  border-top: 2px solid var(--rule-strong);
  padding: 22px 0 0;
  transition: border-color 0.25s ease;
}
.step:hover { border-top-color: var(--cyan); }
.step .step-num {
  font-family: var(--font-mono);
  font-size: 14.5px;
  color: var(--cyan);
  text-transform: lowercase;
  margin-bottom: 14px;
  display: block;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 15px; }

/* vertical detailed steps (how-it-works) */
.timeline { position: relative; max-width: 800px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 25px; top: 10px; bottom: 10px;
  width: 1px;
  background: var(--rule-strong);
}
.t-item { position: relative; padding: 0 0 56px 88px; }
.t-item:last-child { padding-bottom: 0; }
.t-item .t-dot {
  position: absolute;
  left: 0; top: 0;
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 16px;
  color: var(--cyan);
}
.t-item .t-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14.5px;
  text-transform: lowercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.t-item .t-tag::before { content: "// "; opacity: 0.7; }
.t-item h3 { font-size: 23px; margin-bottom: 10px; }
.t-item p { color: var(--text-muted); margin-bottom: 14px; }
.t-item ul { list-style: none; display: grid; gap: 9px; }
.t-item li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
  font-size: 15.5px;
}
.t-item li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ccff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* ---------- Checklist ---------- */
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li {
  position: relative;
  padding-left: 32px;
  color: var(--text-muted);
}
.checklist li strong { color: var(--text); font-weight: 600; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ccff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split h2 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 18px; }
.split .lede { color: var(--text-muted); margin-bottom: 26px; }

.img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rule-strong);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 204, 255, 0.14), rgba(6, 11, 20, 0.42) 70%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ---------- Tech stack (package-name chips) ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.tech {
  font-family: var(--font-mono);
  text-transform: lowercase;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.tech:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---------- Testimonials (pull quotes, no stars) ---------- */
.quote-card {
  border-top: 2px solid var(--rule-strong);
  padding: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote-card .stars { display: none; }
.quote-card blockquote {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  flex: 1;
}
.quote-attr { display: flex; align-items: center; gap: 12px; }
.quote-attr .avatar {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--rule-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan);
}
.quote-attr .who strong { display: block; font-size: 14.5px; }
.quote-attr .who span { font-family: var(--font-mono); font-size: 13.5px; color: var(--text-dim); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0; display: grid; }
.faq details { border-top: 1px solid var(--rule); }
.faq details:last-child { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  font-weight: 600;
  font-size: 16.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--cyan);
  flex: none;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 4px 24px; color: var(--text-muted); font-size: 15.5px; max-width: 640px; }

/* ---------- CTA band ---------- */
.cta-band {
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  padding: 64px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}
.cta-band h2 { font-size: clamp(28px, 3.8vw, 42px); margin-bottom: 12px; }
.cta-band p { color: var(--text-muted); max-width: 520px; margin: 0; font-size: 17px; }
.cta-band .hero-actions { justify-content: flex-start; margin-bottom: 0; flex: none; }

/* ---------- Founder ---------- */
.founder-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.founder-photo {
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  background: var(--bg-card);
  border: 1px solid var(--rule-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo .initials {
  width: 90px; height: 90px;
  border-radius: var(--radius);
  border: 1px solid var(--rule-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 30px;
  color: var(--cyan);
}
.founder-photo .cap { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-dim); }

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--rule-strong);
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--text-muted);
}
.badge svg { width: 14px; height: 14px; color: var(--cyan); flex: none; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-raised);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font: inherit;
  font-size: 15.5px;
  transition: border-color 0.2s ease;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: var(--cyan); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--cyan); outline: none; }
.form-note { font-size: 13.5px; color: var(--text-dim); margin-top: 14px; }
.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 204, 255, 0.4);
  background: var(--cyan-soft);
  color: var(--text);
  font-weight: 500;
}
.form-success.show { display: block; }

/* scheduler placeholder */
.scheduler {
  border: 1px dashed rgba(0, 204, 255, 0.45);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
}
.scheduler h3 { font-size: 22px; margin-bottom: 10px; }
.scheduler p { color: var(--text-muted); max-width: 460px; margin: 0 auto 24px; }

/* ---------- Timezone strip (talent page) ---------- */
.tz-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.tz-cell {
  border-top: 2px solid var(--rule-strong);
  padding: 20px 0 0;
  text-align: left;
}
.tz-cell .tz-time {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 500;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}
.tz-cell .tz-city { font-size: 15px; font-weight: 600; margin-top: 8px; }
.tz-cell .tz-note { font-family: var(--font-mono); font-size: 13.5px; color: var(--text-dim); margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--rule);
  background: var(--bg-raised);
  padding: 64px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-grid .f-brand img { height: 23px; width: auto; margin-bottom: 18px; }
.footer-grid .f-brand p { color: var(--text-dim); font-size: 14.5px; max-width: 300px; }
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 500;
  text-transform: lowercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-grid h4::before { content: "// "; opacity: 0.7; }
.footer-grid ul { list-style: none; display: grid; gap: 11px; }
.footer-grid ul a { color: var(--text-muted); font-size: 15px; transition: color 0.2s ease; }
.footer-grid ul a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 12.5px;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4, .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .split { gap: 44px; }
}

@media (max-width: 820px) {
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--rule);
    padding: 12px 24px 20px;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: 13px 0; font-size: 17px; }
  .grid-3, .grid-2, .split, .founder-card { grid-template-columns: 1fr; gap: 32px; }
  /* mobile: video slots between the lede and the CTA row */
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { display: contents; }
  .hero-copy .eyebrow { order: 1; }
  .hero-copy h1 { order: 2; }
  .hero-copy .lede { order: 3; }
  .hero-media { order: 4; justify-self: start; max-width: 420px; width: 100%; margin: 0 0 32px; }
  .hero-copy .hero-actions { order: 5; }
  .hero-copy .tzbar { order: 6; }
  .founder-photo { max-width: 340px; }
  .hero { padding: 148px 0 72px; }
  .page-hero { padding: 138px 0 52px; }
  .section { padding: 68px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .tz-strip { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .ledger-row { grid-template-columns: 56px 1fr; }
  .ledger-row p { grid-column: 2; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 52px 0; }
}

@media (max-width: 520px) {
  .grid-4, .steps, .stats { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions .btn { width: 100%; }
  .tzbar { flex-direction: column; gap: 10px; }
}
