/* ── treadwell.ai shared styles ── */

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

:root {
  --teal:        #1D9E75;
  --teal-dim:    rgba(29,158,117,0.15);
  --teal-border: rgba(29,158,117,0.3);
  --teal-light:  #9FE1CB;
  --teal-dark:   #0F6E56;
  --ink:         #2C2C2A;
  --ink-2:       #1a1a18;
  --ink-3:       #111110;
  --bd:          rgba(255,255,255,0.07);
  --bd-2:        rgba(255,255,255,0.08);
  --muted:       rgba(255,255,255,0.35);
  --mid:         rgba(255,255,255,0.55);
  --font:        'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: #fff;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  border-bottom: 0.5px solid var(--bd);
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
}
.logo { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.5px; text-decoration: none; }
.logo em { font-style: normal; color: var(--teal); }
.nlinks { display: flex; gap: 28px; }
.nlinks a { font-size: 13px; color: var(--muted); text-decoration: none; font-weight: 500; transition: color .15s; }
.nlinks a:hover, .nlinks a.act { color: #fff; }
.nbtn {
  padding: 8px 20px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: none;
  display: inline-block;
  transition: opacity .15s;
}
.nbtn:hover { opacity: 0.88; }

/* ── BUTTONS ── */
.btn-teal {
  padding: 11px 26px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: none;
  display: inline-block;
  transition: opacity .15s;
}
.btn-teal:hover { opacity: 0.88; }
.btn-ghost {
  padding: 11px 26px;
  background: transparent;
  color: var(--mid);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: none;
  display: inline-block;
  transition: border-color .15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); }

/* ── EYEBROW PILL ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--teal-dim);
  border: 0.5px solid var(--teal-border);
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}

/* ── SECTION ── */
.sec {
  padding: 64px 48px;
  border-bottom: 0.5px solid var(--bd);
}
.sec:last-child { border-bottom: none; }
.sec.dark { background: var(--ink-2); }
.sec-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.sec-title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.sec-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 40px;
}

/* ── 3-COL GRID ── */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid3.g2 { grid-template-columns: repeat(2, 1fr); }
.gcard {
  background: var(--ink-2);
  border: 0.5px solid var(--bd-2);
  border-radius: 12px;
  padding: 24px;
}
.sec.dark .gcard { background: var(--ink-3); }
.gcard .ico {
  width: 38px;
  height: 38px;
  background: var(--teal-dim);
  border: 0.5px solid var(--teal-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--teal);
}
.gcard h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: rgba(255,255,255,0.85); }
.gcard p  { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 0.5px solid var(--bd);
  padding: 22px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 0.5px solid var(--bd); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  gap: 16px;
}
.faq-toggle { color: var(--teal); font-size: 20px; font-weight: 400; flex-shrink: 0; transition: transform .2s; }
.faq-a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 700px;
  margin-top: 14px;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ── CTA BANNER ── */
.cta-ban {
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 0.5px solid var(--bd);
}
.cta-ban h2 { font-size: 26px; font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; }
.cta-ban p  { font-size: 14px; color: var(--muted); max-width: 460px; line-height: 1.7; }
.cta-right  { display: flex; flex-direction: column; gap: 10px; align-items: stretch; flex-shrink: 0; }

/* ── CODE BLOCK ── */
.code-wrap { background: #0d1117; border: 0.5px solid var(--bd-2); border-radius: 12px; overflow: hidden; }
.code-hdr  {
  background: #161b22;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.cdots { display: flex; gap: 6px; }
.cdot  { width: 10px; height: 10px; border-radius: 50%; }
.cdr   { background: rgba(255,95,86,0.55); }
.cdy   { background: rgba(255,189,46,0.55); }
.cdg   { background: rgba(39,201,63,0.55); }
.cfn   { font-size: 12px; color: rgba(255,255,255,0.25); font-family: monospace; }
.code-body {
  padding: 22px;
  font-family: monospace;
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,0.72);
}
.ct { color: rgba(255,255,255,0.22); }
.ck { color: #FDA4AF; }
.ca { color: #FDE68A; }
.cv { color: #A7F3D0; }
.cs { color: #BAE6FD; }

/* ── VIS CARD ── */
.step-vis {
  background: var(--ink-2);
  border: 0.5px solid var(--bd-2);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vis-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.8px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.vis-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}
.vis-row.teal-row { background: var(--teal-dim); border-color: var(--teal-border); }
.vis-ico {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: var(--teal-dim);
  border: 0.5px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.vis-txt b    { display: block; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 2px; }
.vis-txt span { font-size: 11px; color: var(--muted); }
.vis-badge    { margin-left: auto; font-size: 9px; padding: 3px 8px; border-radius: 4px; font-weight: 700; flex-shrink: 0; }
.vb-teal      { background: var(--teal); color: #fff; }
.vb-dim       { background: rgba(255,255,255,0.06); color: var(--muted); }

/* ── STEP ROW ── */
.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.step-row:last-child { margin-bottom: 0; }
.step-row.flip { direction: rtl; }
.step-row.flip > * { direction: ltr; }
.step-num { font-size: 11px; font-weight: 700; color: var(--teal); letter-spacing: 1px; margin-bottom: 10px; }
.step-row h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.8px; margin-bottom: 12px; }
.step-row p  { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.step-row p:last-child { margin-bottom: 0; }

/* ── CENTERED HERO ── */
.hero-c {
  padding: 80px 48px 64px;
  text-align: center;
  border-bottom: 0.5px solid var(--bd);
}
.hero-c h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.04;
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto; margin-right: auto;
}
.hero-c h1 em { font-style: normal; color: var(--teal); }
.hero-c .sub {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* ── PUBLISHER HERO ── */
.phero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 68px 48px;
  border-bottom: 0.5px solid var(--bd);
  align-items: center;
}
.phero h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.07;
  margin-bottom: 18px;
}
.phero h1 em { font-style: normal; color: var(--teal); }
.phero .sub { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 28px; }
.proof-panel {
  background: var(--ink-2);
  border: 0.5px solid var(--bd-2);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.proof-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.proof-row:first-child { padding-top: 0; }
.proof-row:last-child  { border-bottom: none; padding-bottom: 0; }
.proof-n { font-size: 34px; font-weight: 800; color: var(--teal); letter-spacing: -1.5px; line-height: 1; min-width: 72px; }
.proof-l { font-size: 13px; color: var(--muted); line-height: 1.65; margin-top: 4px; }

/* ── VERT PILLS ── */
.vert-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.vp {
  padding: 7px 16px;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: var(--muted);
}
.vp.act {
  background: var(--teal-dim);
  border-color: var(--teal-border);
  color: var(--teal-light);
}

/* ── FOUNDING PARTNER CARD ── */
.fp-card {
  background: linear-gradient(135deg, rgba(29,158,117,0.12), rgba(29,158,117,0.04));
  border: 0.5px solid var(--teal-border);
  border-radius: 14px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.fp-card h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.8px; margin-bottom: 12px; }
.fp-card > div > p { font-size: 14px; color: var(--mid); line-height: 1.7; }
.fp-list { display: flex; flex-direction: column; gap: 12px; }
.fp-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--mid); line-height: 1.5; }
.fp-check { color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── WAITLIST FORM ── */
.wl-outer { background: var(--ink-2); }
.wl-wrap  { max-width: 580px; margin: 0 auto; padding: 72px 48px; }
.wl-wrap h1 { font-size: 40px; font-weight: 800; letter-spacing: -1.8px; margin-bottom: 10px; }
.wl-wrap h1 em { font-style: normal; color: var(--teal); }
.wl-sub { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 32px; }
.wl-spots { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.spot-bar  { flex: 1; height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.spot-fill { height: 100%; width: 38%; background: var(--teal); border-radius: 2px; }
.spot-txt  { font-size: 12px; color: var(--muted); font-weight: 600; white-space: nowrap; }
.spot-txt em { font-style: normal; color: var(--teal-light); }

.form-card {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid var(--bd-2);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.55); letter-spacing: 0.3px; }
.field input,
.field select {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  color: #fff;
  font-family: var(--font);
  outline: none;
  transition: border-color .15s;
  -webkit-appearance: none;
}
.field input:focus,
.field select:focus { border-color: var(--teal); }
.field input::placeholder { color: rgba(255,255,255,0.2); }
.field select option { background: #1a1a18; color: #fff; }

.submit-btn {
  padding: 14px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  margin-top: 4px;
  transition: opacity .15s;
}
.submit-btn:hover { opacity: 0.88; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.65; }
.form-note em { font-style: normal; color: var(--teal-light); }

/* ── SUCCESS STATE ── */
.success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 28px;
  gap: 18px;
}
.success-state.show { display: flex; }
.success-ico {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 0.5px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.success-state h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.8px; }
.success-state p  { font-size: 14px; color: var(--mid); line-height: 1.7; max-width: 380px; }

/* ── HOME HERO ── */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 60px 48px 52px;
  align-items: center;
  border-bottom: 0.5px solid var(--bd);
}
.home-hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 18px;
  color: #fff;
}
.home-hero h1 em { font-style: normal; color: var(--teal); }
.home-hero .sub  { font-size: 14px; line-height: 1.8; color: var(--mid); margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.c1 {
  padding: 11px 24px;
  background: var(--teal);
  color: #fff; border: none;
  border-radius: 8px; font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: var(--font); text-decoration: none;
  display: inline-block; transition: opacity .15s;
}
.c1:hover { opacity: 0.88; }
.c2 {
  padding: 11px 24px;
  background: transparent;
  color: var(--mid);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 8px; font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: var(--font); text-decoration: none;
  display: inline-block; transition: border-color .15s;
}
.c2:hover { border-color: rgba(255,255,255,0.3); }

/* ── BROWSER MOCKUP ── */
.browser {
  background: var(--ink-3);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}
.bchrome {
  background: #0d0d0c;
  padding: 9px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.bdots { display: flex; gap: 6px; }
.bdot  { width: 9px; height: 9px; border-radius: 50%; }
.bdr   { background: rgba(255,95,86,0.55); }
.bdy   { background: rgba(255,189,46,0.55); }
.bdg   { background: rgba(39,201,63,0.55); }
.burl  {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  font-family: monospace;
}
.bbody { padding: 16px 18px; }
.category-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  color: rgba(255,255,255,0.3); margin-bottom: 7px;
}
.ahed {
  font-size: 16px; font-weight: 800; line-height: 1.25;
  margin-bottom: 9px; color: rgba(255,255,255,0.9);
}
.ameta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.aavatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal-dim); border: 0.5px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: var(--teal-light);
}
.aauthor { font-size: 11px; color: rgba(255,255,255,0.35); font-weight: 500; }
.adot    { color: rgba(255,255,255,0.15); }
.adate   { font-size: 11px; color: rgba(255,255,255,0.2); }
.blur-fade { position: relative; overflow: hidden; margin-bottom: 14px; }
.blur-fade::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 40px;
  background: linear-gradient(transparent, var(--ink-3));
}
.atxt { font-size: 12px; line-height: 1.75; color: rgba(255,255,255,0.35); }
.pwbox {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 14px 16px;
}
.pwhead {
  display: block; width: 100%;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.7); margin-bottom: 12px;
}
.pwhead em { font-style: normal; color: var(--teal); }
.plan {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
.plan-name  { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.75); }
.plan-desc  { font-size: 10px; color: rgba(255,255,255,0.25); line-height: 1.4; margin-top: 2px; }
.plan-price { font-size: 14px; font-weight: 800; color: rgba(255,255,255,0.6); text-align: right; flex-shrink: 0; }
.plan-yr    { font-size: 10px; color: rgba(255,255,255,0.25); font-weight: 400; }
.twrow {
  display: flex; align-items: center; gap: 8px;
  margin: 10px 0;
}
.twline { flex: 1; height: 0.5px; background: rgba(255,255,255,0.08); }
.twor   { font-size: 10px; color: rgba(255,255,255,0.2); font-weight: 500; }
.pwtw {
  padding: 10px;
  background: var(--teal-dim);
  color: var(--teal-light);
  border: 0.5px solid var(--teal-border);
  border-radius: 8px; font-size: 12px; font-weight: 700;
  cursor: pointer; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); transition: background .15s;
}
.pwtw:hover { background: rgba(29,158,117,0.25); }
.twbadge {
  font-size: 10px; background: var(--teal); color: #fff;
  padding: 2px 7px; border-radius: 4px; font-weight: 700;
}

/* ── HOME STATS ── */
.stats {
  display: flex; justify-content: space-around;
  padding: 32px 48px;
  border-bottom: 0.5px solid var(--bd);
}
.stat-n { font-size: 36px; font-weight: 800; color: var(--teal); line-height: 1; letter-spacing: -1.5px; }
.stat-l { font-size: 12px; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* ── HOME HOW IT WORKS ── */
.hiw { padding: 64px 48px; border-bottom: 0.5px solid var(--bd); }
.flow-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 0.5px solid var(--bd-2); border-radius: 12px; overflow: hidden;
}
.fcell { padding: 22px; border-right: 0.5px solid rgba(255,255,255,0.06); }
.fcell:last-child { border-right: none; background: rgba(29,158,117,0.08); border-left: 2px solid var(--teal); }
.fnum { font-size: 11px; font-weight: 700; color: var(--teal-dark); letter-spacing: 0.8px; margin-bottom: 10px; }
.fcell:last-child .fnum { color: var(--teal-light); }
.fcell h4 { font-size: 13px; font-weight: 700; margin-bottom: 7px; color: rgba(255,255,255,0.85); }
.fcell p  { font-size: 12px; color: var(--muted); line-height: 1.7; }
.fcell:last-child p { color: rgba(29,158,117,0.8); }

/* ── HOME VALUE CARDS ── */
.vcards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
}
.vc { background: var(--ink); padding: 28px 32px; }
.vc-ico {
  width: 38px; height: 38px;
  background: var(--teal-dim); border: 0.5px solid var(--teal-border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--teal); font-size: 19px;
}
.vc h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: rgba(255,255,255,0.85); }
.vc p  { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ── HOME BOTTOM CTA ── */
.home-cta {
  padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.home-cta h2 { font-size: 26px; font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; }
.home-cta p  { font-size: 14px; color: var(--muted); max-width: 460px; line-height: 1.7; }
.home-cta-right { display: flex; flex-direction: column; gap: 8px; align-items: stretch; flex-shrink: 0; }
.c1lg { padding: 13px 30px; background: var(--teal); color: #fff; border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--font); text-decoration: none; display: inline-block; transition: opacity .15s; }
.c1lg:hover { opacity: 0.88; }
.cprivate { font-size: 11px; color: rgba(255,255,255,0.25); text-align: center; font-weight: 500; }

/* ── UTILITY ── */
.divider-line {
  display: flex; align-items: center; gap: 8px;
  margin: 4px 0;
}
.divider-line .line { flex: 1; height: 1px; background: rgba(255,255,255,0.06); }
.divider-line .label { font-size: 10px; color: rgba(255,255,255,0.2); font-weight: 500; }
