/* AskBud marketing site — power-black + brand green (#83B842, from live askbud.io shared.css).
   Cream text #F4F1EB matches the logo's cream. Fonts: Inter Tight (display) + Inter. */

:root {
  --bg: #07080a;
  --bg-soft: #0b0d10;
  --panel: #0e1013;
  --panel-2: #14171b;
  --line: rgba(244, 241, 235, 0.09);
  --line-soft: rgba(244, 241, 235, 0.05);
  --text: #f4f1eb;
  --muted: #a6a8a3;
  --accent: #83b842;
  --accent-bright: #d2fb9d;
  --accent-deep: #486c1e;
  --accent-glow: rgba(131, 184, 66, 0.16);
  --display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
::selection { background: var(--accent); color: #07080a; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ── type ─────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--display); margin: 0; letter-spacing: -0.02em; }
h1 { font-size: clamp(40px, 5.6vw, 68px); line-height: 1.03; font-weight: 800; }
h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; font-weight: 700; }
h3 { font-size: 22px; font-weight: 700; }
h1 em, h2 em {
  font-style: normal;
  color: var(--accent-bright);
  background: linear-gradient(180deg, transparent 62%, rgba(131,184,66,.28) 62%);
  border-radius: 2px; padding: 0 .06em;
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.lede, .section-lede {
  font-size: clamp(16.5px, 1.35vw, 18.5px);
  color: var(--muted);
  max-width: 620px;
}
.section-lede strong { color: var(--text); font-weight: 600; }

/* ── buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 600; font-size: 15.5px;
  padding: 12px 22px; border-radius: 12px; border: 1px solid var(--line);
  cursor: pointer; transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent); color: #0b1200; border-color: transparent;
  box-shadow: 0 4px 26px var(--accent-glow);
}
.btn-primary:hover { background: #92c94f; box-shadow: 0 6px 34px rgba(131,184,66,.3); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { border-color: rgba(244,241,235,.28); background: rgba(244,241,235,.03); }
.btn-small { padding: 8px 16px; font-size: 14px; background: var(--accent); color: #0b1200; border-color: transparent; }
.btn-lg { padding: 15px 28px; font-size: 16.5px; border-radius: 14px; }

/* ── nav ──────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 8, 10, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { display: inline-flex; width: 30px; height: 30px; color: var(--text); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-mark-sm { width: 20px; height: 20px; color: var(--accent); }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 15px; color: var(--muted); }
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-login {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 14px;
  color: var(--text);
}
.nav-login:hover { border-color: rgba(244,241,235,.3); }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text, #f4f1eb); margin: 5px 0; border-radius: 2px; }
@media (max-width: 720px) {
  .nav-burger { display: block; }
  .nav-links { display: none; }
  .nav-links.nav-open { display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0; gap: 4px;
    background: #0e1013; border-bottom: 1px solid rgba(244,241,235,.09); padding: 12px 20px 16px; }
  .nav-links.nav-open a { padding: 8px 0; }
  .nav { position: relative; }
}

/* ── hero ─────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(60px, 9vw, 110px) 0 clamp(56px, 7vw, 96px);
}
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto;
  height: 130%;
  background:
    radial-gradient(600px 420px at 78% 30%, rgba(131,184,66,.13), transparent 65%),
    radial-gradient(500px 400px at 12% 80%, rgba(131,184,66,.05), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 940px) { .hero-inner { grid-template-columns: 1fr; } }
.hero-copy h1 { margin: 0 0 22px; }
.hero-ctas { display: flex; gap: 14px; margin: 30px 0 0; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: rgba(166,168,163,.75); margin: 22px 0 0; max-width: 480px; }

/* hero chat card */
.hero-chat { min-width: 0; }
.chat-window {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.4), 0 10px 44px var(--accent-glow);
  overflow: hidden;
}
.chat-head {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px; color: var(--muted);
}
.chat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.chat-body {
  padding: 20px 18px 22px;
  height: 440px;            /* FIXED frame: window never resizes between messages */
  overflow: hidden;         /* older messages clip off the top, latest anchored at bottom */
  display: flex; flex-direction: column; gap: 14px; justify-content: flex-end;
}
@media (max-width: 500px) { .chat-body { height: 480px; } }
.msg { max-width: 88%; border-radius: 16px; padding: 11px 15px; font-size: 14.5px; line-height: 1.5; animation: msgIn .35s ease both; }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.msg-q {
  align-self: flex-end;
  background: rgba(244,241,235,.1);
  border: 1px solid rgba(244,241,235,.12);
  border-bottom-right-radius: 5px;
}
.msg-a {
  align-self: flex-start;
  background: rgba(131,184,66,.1);
  border: 1px solid rgba(131,184,66,.22);
  border-bottom-left-radius: 5px;
  white-space: pre-line; /* multi-line tool-style answers */
}
.msg .caret { display: inline-block; width: 2px; height: 1.05em; vertical-align: -0.15em; background: var(--text); margin-left: 1px; animation: blink .8s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.typing { display: inline-flex; gap: 4px; align-items: center; padding: 4px 2px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: tybob 1s ease infinite; }
.typing i:nth-child(2) { animation-delay: .15s; }
.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes tybob { 30% { transform: translateY(-4px); opacity: 1; } }
/* (bar-graph viz removed — hero answers are clean text only) */

/* ── sections ─────────────────────────────────────────── */
.section { padding: clamp(64px, 8vw, 110px) 0; border-top: 1px solid var(--line-soft); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 4.5vw, 56px); }
.section-head h2 { margin-bottom: 16px; }

/* qa grid */
.qa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 940px) { .qa-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .qa-grid { grid-template-columns: 1fr; } }
.qa-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 20px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.qa-card:hover { transform: translateY(-3px); border-color: rgba(131,184,66,.34); background: var(--panel-2); }
.qa-q { font-family: var(--display); font-weight: 600; font-size: 17.5px; margin: 0 0 10px; letter-spacing: -0.01em; }
.qa-a { margin: 0; font-size: 14.5px; color: var(--muted); }
.qa-a strong { color: var(--accent-bright); font-weight: 600; }
.qa-featured { border-color: rgba(131,184,66,.4); background: linear-gradient(180deg, rgba(131,184,66,.08), var(--panel)); }
.qa-tag {
  position: absolute; top: 14px; right: 14px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-bright); background: rgba(131,184,66,.14);
  border: 1px solid rgba(131,184,66,.3);
  padding: 3px 8px; border-radius: 99px;
}
.qa-more { margin: 26px 4px 0; font-size: 14px; color: rgba(166,168,163,.8); max-width: 760px; }

/* ── try it ───────────────────────────────────────────── */
.section-try { background: var(--bg-soft); }
.try-box { max-width: 780px; }
.try-form { display: flex; gap: 10px; }
.try-form input {
  flex: 1; min-width: 0;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  font: 500 16px var(--sans);
  padding: 14px 18px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.try-form input:focus { border-color: rgba(131,184,66,.55); box-shadow: 0 0 0 4px rgba(131,184,66,.12); }
.try-form input::placeholder { color: rgba(166,168,163,.6); }
.try-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.chip {
  font: 500 13.5px var(--sans);
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 14px;
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
}
.chip:hover { color: var(--text); border-color: rgba(131,184,66,.45); background: rgba(131,184,66,.07); }
.try-answer {
  margin-top: 22px;
  background: var(--panel);
  border: 1px solid rgba(131,184,66,.25);
  border-radius: 16px;
  padding: 18px 20px;
}
.try-answer-head { display: flex; align-items: center; gap: 8px; font: 600 13px var(--display); color: var(--accent); margin-bottom: 10px; }
.try-answer-body {
  font-size: 15.5px; line-height: 1.6; color: var(--text); white-space: pre-wrap;
  height: 230px;            /* FIXED frame: box never resizes as answers arrive */
  overflow-y: auto;         /* long answers scroll inside */
  scrollbar-width: thin; scrollbar-color: rgba(244,241,235,.25) transparent;
}
.try-answer-body .typing i { background: var(--accent); }
.try-placeholder { color: rgba(166,168,163,.65); }
.try-note { margin: 18px 2px 0; font-size: 13px; color: rgba(166,168,163,.75); }
.try-phone { color: var(--accent-bright); font-weight: 600; white-space: nowrap; }
.try-phone:hover { text-decoration: underline; }

/* ── lead funnel panel ────────────────────────────────── */
.lead-panel {
  margin-top: 22px;
  background: linear-gradient(180deg, rgba(131,184,66,.1), var(--panel));
  border: 1px solid rgba(131,184,66,.45);
  border-radius: 16px;
  padding: 24px 24px 20px;
  animation: msgIn .3s ease both;
}
.lead-panel h3 { margin: 0 0 8px; font-size: 20px; }
.lead-lede { margin: 0 0 16px; font-size: 14.5px; color: var(--muted); }
.lead-phone { color: var(--accent-bright); font-weight: 700; white-space: nowrap; }
.lead-phone:hover { text-decoration: underline; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 600px) { .lead-form { grid-template-columns: 1fr; } }
.lead-form input {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--text);
  font: 500 15px var(--sans);
  padding: 12px 15px;
  outline: none;
  min-width: 0;
}
.lead-form input:focus { border-color: rgba(131,184,66,.55); box-shadow: 0 0 0 3px rgba(131,184,66,.12); }
.lead-form input::placeholder { color: rgba(166,168,163,.6); }
.lead-form #leadPhone { grid-column: 1 / -1; }
.lead-form .btn { grid-column: 1 / -1; }
.lead-oregon { margin: 14px 0 0; font-size: 12.5px; color: rgba(166,168,163,.8); }
.lead-oregon strong { color: var(--accent-bright); }
.lead-dismiss {
  margin-top: 10px;
  background: none; border: none; cursor: pointer;
  font: 500 13px var(--sans); color: var(--muted);
  padding: 4px 0;
}
.lead-dismiss:hover { color: var(--text); text-decoration: underline; }
.lead-done { margin: 14px 0 0; font-size: 15px; color: var(--accent-bright); }
.lead-done a { color: var(--accent-bright); font-weight: 700; }

/* CTA + footer helpers */
.cta-oregon { margin: 18px 0 0; font-size: 13.5px; color: rgba(166,168,163,.85); }
.cta-oregon strong { color: var(--accent-bright); }
.product-desc a { color: var(--accent-bright); white-space: nowrap; }

/* ── products ─────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 940px) { .product-grid { grid-template-columns: 1fr; max-width: 560px; } }
.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px 22px;
  display: flex; flex-direction: column;
  transition: transform .18s ease, border-color .18s ease;
}
.product-card:hover { transform: translateY(-3px); border-color: rgba(244,241,235,.2); }
.product-card h3 { margin: 0 0 4px; }   /* name first */
.product-tag { font-size: 13.5px; font-weight: 600; color: var(--accent); margin: 0 0 10px; }
.product-desc { font-size: 14.5px; color: var(--muted); margin: 0 0 18px; }
.product-mock {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  padding: 16px;
  min-height: 172px;
  margin-top: auto;         /* example last, aligned across cards */
  display: flex; align-items: center; justify-content: center;
}
/* flora phone mock */
.mock-phone { width: 100%; display: flex; flex-direction: column; gap: 8px; font-size: 12.5px; }
.mock-call { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 11.5px; margin-bottom: 2px; }
.mock-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 1.6s ease infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(131,184,66,.12); } }
.mock-bubble { border-radius: 11px; padding: 8px 11px; line-height: 1.45; max-width: 92%; }
.mock-them { background: rgba(244,241,235,.08); align-self: flex-start; }
.mock-flora { background: rgba(131,184,66,.13); border: 1px solid rgba(131,184,66,.2); align-self: flex-end; }
/* ledger invoice mock */
.mock-invoice { width: 100%; display: flex; flex-direction: column; gap: 7px; font-size: 12px; }
.mock-line { display: flex; justify-content: space-between; gap: 10px; padding: 7px 10px; border-radius: 8px; background: rgba(244,241,235,.05); color: var(--muted); }
.mock-line .ok { color: var(--accent); white-space: nowrap; }
.mock-flag { background: rgba(214, 84, 64, .1); border: 1px solid rgba(214, 84, 64, .3); color: var(--text); }
.mock-flag .bad { color: #ff9d8a; white-space: nowrap; }
.mock-line-note { font-size: 11px; color: #ff9d8a; padding: 0 2px; }
/* marketplace mock */
.mock-market { width: 100%; display: flex; flex-direction: column; gap: 7px; font-size: 12px; }
.mock-listing { display: flex; gap: 10px; align-items: center; padding: 7px 10px; border-radius: 9px; background: rgba(244,241,235,.05); color: var(--muted); }
.mock-listing strong { color: var(--text); font-weight: 600; }
.mock-swatch { width: 30px; height: 30px; border-radius: 8px; flex: none; }
.s1 { background: linear-gradient(135deg, #557a2b, #83b842); }
.s2 { background: linear-gradient(135deg, #3c5a22, #6a9a37); }
.s3 { background: linear-gradient(135deg, #2c431a, #557a2b); }

/* ── trust / metrc ────────────────────────────────────── */
.section-trust { background: var(--bg-soft); }
.trust-inner { display: grid; grid-template-columns: 340px 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (max-width: 820px) { .trust-inner { grid-template-columns: 1fr; } }
.trust-badgecard {
  background: #f4f1eb;
  border-radius: 18px;
  padding: 30px 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
}
.trust-metrc { width: 100%; max-width: 260px; height: auto; }
.trust-badge {
  display: inline-block;
  font: 600 13px var(--display);
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent-bright);
  background: rgba(131,184,66,.12);
  border: 1px solid rgba(131,184,66,.35);
  padding: 6px 13px; border-radius: 99px;
  margin-bottom: 16px;
}
.trust-copy h2 { margin-bottom: 14px; }
.trust-copy p { color: var(--muted); max-width: 560px; margin: 0; }

/* ── why ──────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px; background: var(--panel); }
.why-num { font: 700 13px var(--display); color: var(--accent); letter-spacing: .12em; }
.why-card h3 { margin: 12px 0 10px; }
.why-card p { margin: 0; font-size: 14.5px; color: var(--muted); }
.why-card em { font-style: normal; color: var(--accent-bright); }

/* ── cta ──────────────────────────────────────────────── */
.section-cta {
  background:
    radial-gradient(640px 300px at 50% 0%, rgba(131,184,66,.14), transparent 70%),
    var(--bg-soft);
  text-align: center;
}
.cta-inner { max-width: 640px; }
.cta-inner h2 { margin-bottom: 14px; }
.cta-inner p { color: var(--muted); margin: 0 0 30px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── footer ───────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line-soft); padding: 40px 0 48px; }
.footer-inner { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-line { font-size: 13.5px; color: var(--muted); margin: 0; }
.footer-line a:hover { color: var(--text); }
.footer-fine { font-size: 12px; color: rgba(166,168,163,.6); margin: 0; max-width: 560px; }

/* ── Claude-styled hero chat (integration look: warm, minimal Anthropic feel) ──
   The chat FRAME reads as Claude (cream, warm ink, coral spark); the page around
   it stays power-black + green. Attribution, not imitation of ownership. */
:root {
  --claude-bg: #faf9f5;        /* warm ivory */
  --claude-bg-2: #f0eee6;      /* soft bone */
  --claude-ink: #3d3929;       /* warm dark text */
  --claude-ink-soft: #6e6a5b;
  --claude-line: rgba(61, 57, 41, 0.12);
  --claude-coral: #d97757;     /* Claude spark coral */
}
.claude-spark { width: 15px; height: 15px; fill: var(--claude-coral); flex: none; }
.claude-spark-head { width: 17px; height: 17px; }

.chat-claude {
  background: var(--claude-bg);
  border: 1px solid rgba(244, 241, 235, 0.16);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 10px 44px var(--accent-glow);
}
.chat-claude .chat-head {
  background: var(--claude-bg-2);
  border-bottom: 1px solid var(--claude-line);
  color: var(--claude-ink-soft);
  gap: 8px;
}
.chat-title-claude {
  font-family: var(--display);
  font-weight: 700; font-size: 14.5px;
  color: var(--claude-ink);
  letter-spacing: -0.01em;
}
.chat-context {
  margin-left: auto;
  font-size: 11.5px; color: var(--claude-ink-soft);
  background: rgba(61,57,41,.06);
  border: 1px solid var(--claude-line);
  padding: 3px 9px; border-radius: 99px;
  white-space: nowrap;
}
@media (max-width: 500px) { .chat-context { display: none; } }

/* messages inside the Claude frame: warm light theme, clean text only */
.chat-claude .msg-q {
  background: var(--claude-bg-2);
  border: 1px solid var(--claude-line);
  color: var(--claude-ink);
}
.chat-claude .msg-a {
  background: transparent;
  border: 1px solid transparent;
  color: var(--claude-ink);
  padding-left: 2px;
}
.chat-claude .msg .caret { background: var(--claude-ink); }
.chat-claude .typing i { background: var(--claude-ink-soft); }

/* attribution under the card + hero line */
.chat-attrib {
  margin: 12px 4px 0;
  font-size: 12.5px;
  color: rgba(166,168,163,.85);
}
.chat-attrib strong { color: var(--text); font-weight: 600; }
.hero-claude-line {
  display: flex; align-items: center; gap: 8px;
  margin: 18px 0 0;
  font-size: 15px; color: var(--muted);
}
.hero-claude-line strong { color: var(--text); font-weight: 600; }

/* motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .msg, .try-answer { animation: none; }
  .mock-pulse { animation: none; }
}

/* market-first pass (2026-07-20): product-card links */
.product-link { color: var(--accent-bright, #d2fb9d); text-decoration: none; border-bottom: 1px solid rgba(131,184,66,.4); }
.product-link:hover { color: #fff; border-color: rgba(131,184,66,.8); }
.product-cta { margin-top: 14px; }

/* Route Generator card (2026-07-21): FREE badge chip */
.free-badge { display:inline-block; vertical-align:middle; margin-left:8px; padding:2px 10px; border-radius:99px; font:600 11px/1.6 var(--sans, 'Inter', sans-serif); letter-spacing:.08em; text-transform:uppercase; color:#0b1200; background:var(--accent, #83b842); }

/* demo-first CTA pass (2026-07-21) */
.hero-signin-line { margin-top: 10px; font-size: 14px; color: var(--muted, #a6a8a3); }
.hero-signin-line a { color: var(--accent-bright, #d2fb9d); text-decoration: none; border-bottom: 1px solid rgba(131,184,66,.4); }
