/* Helmr marketing — light mode only · Clash Display + Satoshi · signal orange on warm ink/paper */
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@600,700&f[]=satoshi@400,500,700&display=swap');

:root {
  --paper: #FAF7F2; --paper-2: #F1ECE3;
  --ink: #171C21;
  --text: #22282E; --muted: #575E66; --faint: #8B9096;
  --line: #E4DFD4; --panel: #FFFFFF; --panel-line: #E9E4DA;
  --orange: #E8590C; --orange-hover: #C94D09; --orange-soft: #FBE8DC;
  --money: #237446; --money-soft: #E7F1EA;
  --on-ink: #F0EDE6; --on-ink-muted: #A9AFB4;
  --display: "Clash Display", -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --body: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --radius: 10px; --radius-lg: 16px;
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
body {
  margin: 0; background: var(--paper); color: var(--text);
  font-family: var(--body); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; touch-action: manipulation;
}
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
a { color: var(--orange); cursor: pointer; }
a:hover { color: var(--orange-hover); }
:focus-visible { outline: 2.5px solid var(--orange); outline-offset: 2px; border-radius: 2px; }

/* ---------- nav ---------- */
nav.top {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
nav.top .nav-inner {
  display: flex; align-items: center; gap: var(--s5);
  max-width: 74rem; margin: 0 auto; padding: var(--s3) var(--s5);
}
nav.top .logo { display: flex; align-items: center; margin-right: auto; }
nav.top a:not(.btn) { color: var(--muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; padding: var(--s3) 0; }
nav.top a:not(.btn):hover { color: var(--text); }
nav.top a.active { color: var(--text); font-weight: 700; box-shadow: inset 0 -2.5px 0 var(--orange); }
@media (max-width: 40rem) { nav.top .nav-inner { gap: var(--s4); } nav.top .btn { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  text-decoration: none; font-weight: 700; font-size: 1rem; font-family: var(--body);
  padding: 0.75rem 1.5rem; border-radius: var(--radius); cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 120ms ease;
}
.btn:active { transform: scale(0.98); }
.btn.primary { background: var(--orange); color: #fff; }
.btn.primary:hover { background: var(--orange-hover); color: #fff; }
.btn.ghost { color: var(--text); box-shadow: inset 0 0 0 1.5px var(--line); background: var(--panel); }
.btn.ghost:hover { box-shadow: inset 0 0 0 1.5px var(--faint); color: var(--text); }
nav.top .btn { min-height: 42px; padding: 0.5rem 1.15rem; font-size: 0.93rem; }

/* ---------- layout ---------- */
.wrap { max-width: 74rem; margin: 0 auto; padding: 0 var(--s5); }
section.band { padding: var(--s10) 0; }
section.band.tight { padding: var(--s8) 0; }
@media (max-width: 48rem) { section.band { padding: var(--s8) 0; } section.band.tight { padding: var(--s7) 0; } }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.015em; text-wrap: balance; margin: 0; font-weight: 600; }
h1 { font-size: clamp(2.7rem, 7vw, 4.6rem); line-height: 1.02; font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.1; }
h3 { font-size: 1.25rem; line-height: 1.3; }
p { margin: 0; max-width: 60ch; }
.eyebrow {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange); font-weight: 600;
}
.dek { font-size: 1.22rem; color: var(--muted); line-height: 1.55; font-weight: 500; }
.small { font-size: 0.88rem; color: var(--muted); }

/* ---------- hero ---------- */
.hero { padding: var(--s9) 0 var(--s10); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: var(--s8); align-items: center; }
@media (max-width: 56rem) { .hero { padding: var(--s7) 0 var(--s8); } .hero-grid { grid-template-columns: 1fr; gap: var(--s7); } }
.hero .cta-row { display: flex; gap: var(--s4); flex-wrap: wrap; margin-top: var(--s6); }
.hero .under { margin-top: var(--s5); font-size: 0.92rem; color: var(--faint); }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual::before {
  content: ""; position: absolute; inset: -12% -8%;
  background: var(--paper-2); border-radius: var(--radius-lg); z-index: -1; transform: rotate(-2deg);
}

/* ---------- ink band (promises) ---------- */
.ink-band { background: var(--ink); color: var(--on-ink); }
.promises { display: grid; grid-template-columns: repeat(3, 1fr); }
.promise { padding: var(--s6) var(--s6) var(--s6) 0; }
.promise + .promise { border-left: 1px solid rgba(255,255,255,0.14); padding-left: var(--s6); }
.promise .big { font-family: var(--display); font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 700; letter-spacing: -0.015em; line-height: 1.05; font-variant-numeric: tabular-nums; }
.promise .big .accent { color: var(--orange); }
.promise p { color: var(--on-ink-muted); font-size: 0.97rem; margin-top: var(--s3); }
.promise p strong { color: var(--on-ink); }
@media (max-width: 48rem) {
  .promises { grid-template-columns: 1fr; }
  .promise { padding: var(--s5) 0; }
  .promise + .promise { border-left: none; border-top: 1px solid rgba(255,255,255,0.14); padding-left: 0; }
}

/* ---------- feature rows ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: center; }
.feature.flip .f-visual { order: -1; }
@media (max-width: 56rem) { .feature { grid-template-columns: 1fr; gap: var(--s6); } .feature.flip .f-visual { order: 0; } }
ul.checks { list-style: none; margin: var(--s5) 0 0; padding: 0; }
ul.checks li { position: relative; padding-left: 1.8rem; margin-top: var(--s4); max-width: 54ch; }
ul.checks li::before {
  content: ""; position: absolute; left: 0; top: 0.44em; width: 0.95rem; height: 0.5rem;
  border-left: 3px solid var(--orange); border-bottom: 3px solid var(--orange); transform: rotate(-45deg); border-radius: 1px;
}
.f-visual { display: flex; justify-content: center; }

/* ---------- vignettes ---------- */
.phone {
  width: min(320px, 86vw); border-radius: 30px; background: var(--ink); padding: 13px;
  box-shadow: 0 32px 64px -32px rgba(23,28,33,0.5);
}
.phone .screen { background: #EAE2D6; border-radius: 20px; padding: 14px 12px; min-height: 380px; display: flex; flex-direction: column; gap: 10px; }
.chat-head { font-size: 0.82rem; font-weight: 700; color: var(--text); background: var(--panel); border-radius: 11px; padding: 9px 12px; display: flex; align-items: center; gap: 8px; }
.chat-head .dot { width: 27px; height: 27px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 0.74rem; }
.bubble { max-width: 86%; border-radius: 13px; padding: 10px 13px; font-size: 0.87rem; line-height: 1.45; background: var(--panel); color: var(--text); box-shadow: 0 1px 2px rgba(23,28,33,0.08); }
.bubble .b-link { display: inline-block; margin-top: 6px; color: var(--orange); font-weight: 700; text-decoration: none; font-size: 0.85rem; }
.bubble.me { align-self: flex-end; background: var(--money-soft); }
.bubble .time { display: block; font-size: 0.66rem; color: var(--faint); margin-top: 5px; text-align: right; }
.bubble.receipt { border-left: 3.5px solid var(--money); }
.bubble.receipt .amt { color: var(--money); font-weight: 800; }

.dash-card {
  width: min(410px, 90vw); background: var(--panel); border: 1px solid var(--panel-line);
  border-radius: var(--radius-lg); padding: var(--s6); box-shadow: 0 28px 56px -36px rgba(23,28,33,0.4);
}
.dash-card .label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); font-family: var(--mono); }
.dash-card .money { font-family: var(--display); font-size: 2.9rem; font-weight: 700; letter-spacing: -0.02em; color: var(--money); font-variant-numeric: tabular-nums; margin-top: var(--s2); }
.dash-card .sub { color: var(--muted); font-size: 0.95rem; margin-top: var(--s2); }
.dash-bars { display: flex; align-items: flex-end; gap: 7px; height: 68px; margin-top: var(--s5); }
.dash-bars i { flex: 1; background: var(--paper-2); border-radius: 4px 4px 0 0; }
.dash-bars i.hot { background: var(--orange); }
.dash-bars i:nth-child(1){height:78%} .dash-bars i:nth-child(2){height:70%} .dash-bars i:nth-child(3){height:82%}
.dash-bars i:nth-child(4){height:64%} .dash-bars i:nth-child(5){height:52%} .dash-bars i:nth-child(6){height:44%}
.dash-legend { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--faint); margin-top: var(--s2); font-family: var(--mono); }

.browser {
  width: min(450px, 90vw); background: var(--panel); border: 1px solid var(--panel-line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 28px 56px -36px rgba(23,28,33,0.4);
}
.browser .bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-bottom: 1px solid var(--panel-line); }
.browser .bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.browser .bar .url { margin-left: 6px; font-family: var(--mono); font-size: 0.72rem; color: var(--muted); background: var(--paper-2); border-radius: 6px; padding: 3px 11px; }
.site-mock { background: #1D2A4A; color: #fff; padding: 24px 22px 28px; }
.site-mock .sm-name { font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.02em; }
.site-mock .sm-hero { font-family: var(--display); font-size: 1.7rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.08; margin-top: 15px; }
.site-mock .sm-hero em { font-style: normal; color: #F5A623; }
.site-mock .sm-plans { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 9px; margin-top: 20px; }
.site-mock .sm-plan { background: rgba(255,255,255,0.09); border-radius: 9px; padding: 11px 9px; font-size: 0.68rem; }
.site-mock .sm-plan b { display: block; font-size: 0.95rem; font-variant-numeric: tabular-nums; }
.site-mock .sm-plan.hi { background: #F5A623; color: #1D2A4A; }
.browser .sync { display: flex; align-items: center; gap: 8px; padding: 11px 14px; font-size: 0.8rem; color: var(--muted); }
.browser .sync .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--money); }

/* ---------- two doors ---------- */
.doors { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
@media (max-width: 48rem) { .doors { grid-template-columns: 1fr; } }
.door { border-radius: var(--radius-lg); padding: var(--s7) var(--s6); text-decoration: none; display: block; transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; }
.door:hover { transform: translateY(-3px); }
.door.run { background: var(--ink); color: var(--on-ink); }
.door.run:hover { box-shadow: 0 24px 48px -24px rgba(23,28,33,0.55); }
.door.open-g { background: var(--panel); border: 1.5px solid var(--panel-line); color: var(--text); }
.door.open-g:hover { border-color: var(--orange); box-shadow: 0 24px 48px -30px rgba(232,89,12,0.4); }
.door .d-eyebrow { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.75; }
.door h3 { font-size: 1.55rem; margin-top: var(--s3); }
.door p { margin-top: var(--s3); font-size: 0.99rem; opacity: 0.87; }
.door .go { display: inline-block; margin-top: var(--s5); font-weight: 700; color: var(--orange); }

/* ---------- pricing ---------- */
.plan-card { background: var(--panel); border: 1.5px solid var(--panel-line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 48px -36px rgba(23,28,33,0.3); }
.plan-card .plan-head { padding: var(--s6); border-bottom: 1px solid var(--panel-line); display: flex; align-items: baseline; gap: var(--s4); flex-wrap: wrap; }
.plan-card .price { font-family: var(--display); font-size: 3rem; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.plan-card .per { color: var(--muted); font-size: 1.05rem; }
.plan-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--s7); padding: var(--s6); }
@media (max-width: 48rem) { .plan-cols { grid-template-columns: 1fr; } }
.plan-cols ul { list-style: none; margin: 0; padding: 0; }
.plan-cols li { position: relative; padding-left: 1.8rem; margin-top: var(--s4); font-size: 0.99rem; }
.plan-cols li::before {
  content: ""; position: absolute; left: 0; top: 0.44em; width: 0.9rem; height: 0.48rem;
  border-left: 3px solid var(--money); border-bottom: 3px solid var(--money); transform: rotate(-45deg); border-radius: 1px;
}
.ceiling {
  background: var(--ink); color: var(--on-ink); border-radius: var(--radius-lg); padding: var(--s6) var(--s7);
  display: grid; grid-template-columns: auto 1fr; gap: var(--s7); align-items: center;
}
.ceiling .cap { font-family: var(--display); font-size: 2.5rem; font-weight: 700; letter-spacing: -0.02em; color: var(--orange); white-space: nowrap; font-variant-numeric: tabular-nums; }
.ceiling .cap small { font-size: 1rem; color: var(--on-ink-muted); font-weight: 500; font-family: var(--body); }
.ceiling p { color: var(--on-ink-muted); font-size: 0.99rem; }
@media (max-width: 44rem) { .ceiling { grid-template-columns: 1fr; gap: var(--s3); padding: var(--s6); } }

.table-scroll { overflow-x: auto; border: 1px solid var(--panel-line); border-radius: var(--radius); background: var(--panel); }
table { border-collapse: collapse; width: 100%; font-size: 0.96rem; min-width: 38rem; }
th, td { text-align: left; padding: 0.8rem 1.1rem; vertical-align: top; border-top: 1px solid var(--panel-line); }
thead th { border-top: none; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); font-weight: 600; }
td.mono, .price-cell { font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 600; }
tbody tr:hover { background: color-mix(in srgb, var(--paper-2) 40%, transparent); }

details.faq { border-bottom: 1px solid var(--line); padding: var(--s5) 0; max-width: 46rem; }
details.faq summary { cursor: pointer; font-weight: 700; font-size: 1.06rem; list-style: none; display: flex; justify-content: space-between; gap: var(--s4); min-height: 44px; align-items: center; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; color: var(--orange); font-weight: 700; font-size: 1.4rem; line-height: 1; font-family: var(--display); }
details.faq[open] summary::after { content: "–"; }
details.faq p { margin-top: var(--s3); color: var(--muted); }

/* ---------- CTA band + footer ---------- */
.cta-band { background: var(--ink); color: var(--on-ink); border-radius: var(--radius-lg); padding: var(--s8) var(--s7); display: grid; grid-template-columns: 1fr auto; gap: var(--s6); align-items: center; }
@media (max-width: 48rem) { .cta-band { grid-template-columns: 1fr; padding: var(--s7) var(--s6); } }
.cta-band h2 { color: var(--on-ink); }
.cta-band p { color: var(--on-ink-muted); margin-top: var(--s3); }
footer.site { border-top: 1px solid var(--line); margin-top: var(--s9); padding: var(--s6) 0 var(--s8); }
footer.site .cols { display: flex; justify-content: space-between; gap: var(--s5); flex-wrap: wrap; align-items: baseline; }
footer.site, footer.site a { color: var(--muted); font-size: 0.9rem; }
footer.site .promise-line { font-weight: 700; color: var(--text); }

/* ---------- inner/legal pages ---------- */
header.page { padding: var(--s8) 0 var(--s5); }
header.page h1 { font-size: clamp(2rem, 4.8vw, 3rem); }
header.page .dek { margin-top: var(--s4); }
.wrap > h2 { margin-top: var(--s8); }
.wrap > h3 { margin-top: var(--s6); }
.wrap > p, .wrap > ul { margin-top: var(--s3); }
.wrap > .table-scroll { margin-top: var(--s4); }
.wrap ul:not(.checks) { padding-left: 1.3rem; }
.wrap li { margin-top: var(--s2); }
.card { border: 1px solid var(--panel-line); background: var(--panel); border-radius: var(--radius); padding: var(--s5) var(--s6); margin-top: var(--s4); max-width: 48rem; }
.card.accent { border-left: 4px solid var(--orange); }
.grid2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: var(--s4); margin-top: var(--s5); }
.grid2 .card { margin-top: 0; }

/* ---------- invoice vignette (billing section) ---------- */
.invoice-card {
  width: min(400px, 90vw); background: var(--panel); border: 1px solid var(--panel-line);
  border-radius: var(--radius-lg); box-shadow: 0 28px 56px -36px rgba(23,28,33,0.4); overflow: hidden;
}
.invoice-card .inv-head { display: flex; justify-content: space-between; align-items: center; padding: var(--s4) var(--s5); border-bottom: 1px solid var(--panel-line); }
.invoice-card .inv-no { font-family: var(--mono); font-size: 0.8rem; color: var(--muted); }
.invoice-card .badge { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 5px; background: var(--orange-soft); color: var(--orange); }
.invoice-card .inv-body { padding: var(--s5); }
.invoice-card .inv-member { font-family: var(--display); font-weight: 600; font-size: 1.1rem; }
.invoice-card .inv-plan { color: var(--muted); font-size: 0.88rem; margin-top: 2px; }
.invoice-card .inv-lines { margin-top: var(--s4); border-top: 1px dashed var(--line); padding-top: var(--s4); }
.invoice-card .inv-line { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 3px 0; }
.invoice-card .inv-line .amt { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.invoice-card .inv-line.total { font-weight: 700; border-top: 1px solid var(--panel-line); margin-top: var(--s2); padding-top: var(--s3); font-size: 0.98rem; }
.invoice-card .inv-foot { background: var(--money-soft); padding: var(--s3) var(--s5); font-size: 0.85rem; color: var(--money); font-weight: 600; display: flex; justify-content: space-between; }
.invoice-card .inv-foot .mono-amt { font-family: var(--mono); }

/* ---------- how-it-works steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); counter-reset: step; margin-top: var(--s6); }
@media (max-width: 48rem) { .steps { grid-template-columns: 1fr; } }
.step { counter-increment: step; background: var(--panel); border: 1px solid var(--panel-line); border-radius: var(--radius-lg); padding: var(--s6); position: relative; }
.step::before {
  content: counter(step, decimal-leading-zero); font-family: var(--mono); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--orange);
}
.step h3 { margin-top: var(--s3); font-size: 1.2rem; }
.step p { margin-top: var(--s3); font-size: 0.95rem; color: var(--muted); }

/* ---------- add-ons strip ---------- */
.addon-strip { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s5); }
.addon-strip a {
  text-decoration: none; color: var(--text); background: var(--panel); border: 1px solid var(--panel-line);
  border-radius: 999px; padding: 0.5rem 1.1rem; font-size: 0.92rem; font-weight: 600; transition: border-color 160ms ease, color 160ms ease;
}
.addon-strip a:hover { border-color: var(--orange); color: var(--orange); }
.addon-strip a .p { font-family: var(--mono); color: var(--muted); font-weight: 500; font-size: 0.82rem; }
.addon-strip a:hover .p { color: var(--orange); }

/* ---------- pricing example bundles ---------- */
.bundles { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); margin-top: var(--s5); }
@media (max-width: 48rem) { .bundles { grid-template-columns: 1fr; } }
.bundle { background: var(--panel); border: 1px solid var(--panel-line); border-radius: var(--radius-lg); padding: var(--s5) var(--s6); }
.bundle .b-who { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.bundle .b-total { font-family: var(--display); font-size: 1.9rem; font-weight: 700; margin-top: var(--s2); font-variant-numeric: tabular-nums; }
.bundle .b-total small { font-size: 0.85rem; color: var(--muted); font-family: var(--body); font-weight: 500; }
.bundle p { font-size: 0.9rem; color: var(--muted); margin-top: var(--s2); }

/* ---------- theme variety row (builder section) ---------- */
.theme-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--s3); margin-top: var(--s4); width: min(450px, 90vw); }
.theme-chip { border-radius: 9px; padding: 12px 12px 10px; display: flex; flex-direction: column; gap: 8px; box-shadow: 0 8px 20px -14px rgba(23,28,33,0.4); }
.theme-chip span { font-family: var(--display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.04em; }
.theme-chip i { display: block; height: 5px; width: 55%; border-radius: 3px; }
.theme-note { grid-column: 1 / -1; font-size: 0.8rem; color: var(--faint); margin-top: 2px; }

/* ---------- WhatsApp float + button ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: inline-flex; align-items: center; gap: 8px;
  background: #1FA855; color: #fff; text-decoration: none; font-weight: 700; font-size: 0.95rem;
  padding: 0.75rem 1.2rem; border-radius: 999px; min-height: 48px;
  box-shadow: 0 12px 28px -12px rgba(31,168,85,0.55);
  transition: background 160ms ease, transform 120ms ease;
}
.wa-float:hover { background: #17954A; color: #fff; }
.wa-float:active { transform: scale(0.97); }
.wa-float .wa-dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; }
