/* ============================================================
   Ycodify — Design System
   Two directions toggleable via [data-direction]
   A "Console"  — escuro profundo + ciano elétrico, mono presente
   B "Quartz"   — escuro azulado + âmbar editorial
   ============================================================ */

:root {
  --font-sans: "Inter", "Söhne", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-display: "Inter", system-ui, sans-serif;

  /* Default = Direction A "Console" */
  --bg: #0f1115;
  --bg-elev: #0d1014;
  --bg-elev-2: #14181d;
  --line: #1c2128;
  --line-strong: #2a313a;
  --fg: #e7ecf2;
  --fg-mute: #8b95a3;
  --fg-faint: #4d5664;
  --accent: #00d66e;       /* experimento — verde */
  --accent-ink: #04110d;
  --accent-soft: rgba(0, 214, 110, 0.12);
  --accent-line: rgba(0, 214, 110, 0.32);
  --warn: #ffb454;
  --grid: rgba(255, 255, 255, 0.04);
}

[data-direction="quartz"] {
  --bg: #0a0e16;
  --bg-elev: #111728;
  --bg-elev-2: #18203a;
  --line: #1f2741;
  --line-strong: #2d375a;
  --fg: #ecead8;
  --fg-mute: #9aa1bb;
  --fg-faint: #5a6285;
  --accent: #f4b860;       /* âmbar/gold */
  --accent-ink: #1a1004;
  --accent-soft: rgba(244, 184, 96, 0.12);
  --accent-line: rgba(244, 184, 96, 0.32);
  --warn: #ff7d6b;
  --grid: rgba(255, 255, 255, 0.035);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
}

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

::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- TYPOGRAPHY ---------- */
.mono { font-family: var(--font-mono); font-feature-settings: "ss01"; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.025em; margin: 0; }
h1 { font-size: clamp(48px, 7vw, 104px); line-height: 0.98; letter-spacing: -0.04em; font-weight: 500; }
h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 2vw, 28px); line-height: 1.2; }
h4 { font-size: 16px; line-height: 1.3; }

p { margin: 0; }
.lead { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.5; color: var(--fg-mute); max-width: 56ch; }

/* ---------- LAYOUT ---------- */
.shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .shell { padding: 0 20px; }
}

section { padding: 96px 0; border-top: 1px solid var(--line); position: relative; }
section:first-of-type { border-top: 0; }
@media (max-width: 720px) {
  section { padding: 64px 0; }
}

/* ---------- TOP NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 28px; height: 28px;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  position: relative;
  background: var(--accent-soft);
}
.brand-mark::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 8px;
  border: 1px dashed var(--accent-line);
  opacity: 0.6;
  pointer-events: none;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--fg-mute);
}
.nav-links a { transition: color 0.18s; }
.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--fg); }
@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  background: transparent;
  color: var(--fg);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  font-weight: 600;
}
.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--accent-soft);
}
.btn-ghost {
  background: var(--bg-elev);
  border-color: var(--line-strong);
  color: var(--fg);
}
.btn-ghost:hover {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  color: var(--fg);
}
.btn-lg { padding: 16px 28px; font-size: 15px; border-radius: 10px; }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- CARDS ---------- */
.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--line-strong); }
.card-feature { padding: 32px; }

/* small bracketed labels */
.bracket {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.bracket::before { content: "["; margin-right: 4px; }
.bracket::after { content: "]"; margin-left: 4px; }

/* ---------- HERO ---------- */
.hero {
  padding: 80px 0 96px;
  border-top: 0;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: end;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.hero-meta .dot { width: 4px; height: 4px; background: var(--fg-faint); border-radius: 50%; }
.hero h1 .accent { color: var(--accent); font-style: italic; font-weight: 400; }
.hero h1 .strike { text-decoration: line-through; text-decoration-color: var(--fg-faint); text-decoration-thickness: 2px; color: var(--fg-mute); }
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px;
}
.hero-foot {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.hero-foot .stat { display: flex; flex-direction: column; gap: 6px; }
.hero-foot .stat-num { font-family: var(--font-mono); font-size: 24px; color: var(--fg); letter-spacing: -0.02em; }
.hero-foot .stat-lbl { font-size: 12px; color: var(--fg-mute); line-height: 1.4; }
@media (max-width: 720px) {
  .hero-foot { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ---------- HERO VISUAL (terminal-ish) ---------- */
.hero-canvas {
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-elev);
  overflow: hidden;
  position: relative;
}
.hero-canvas-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-mute);
  background: var(--bg-elev-2);
}
.hero-canvas-bar .dots { display: flex; gap: 6px; margin-right: 12px; }
.hero-canvas-bar .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.hero-canvas-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 320px;
}
.hero-canvas-side {
  border-right: 1px solid var(--line);
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-mute);
  display: flex; flex-direction: column; gap: 10px;
}
.hero-canvas-side .row { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 6px; }
.hero-canvas-side .row.active { background: var(--accent-soft); color: var(--fg); }
.hero-canvas-side .row .glyph { width: 14px; color: var(--accent); }
.hero-canvas-main { padding: 24px; font-family: var(--font-mono); font-size: 13px; color: var(--fg-mute); line-height: 1.7; overflow: hidden; }
.hero-canvas-main .ln { display: flex; gap: 16px; }
.hero-canvas-main .ln-num { color: var(--fg-faint); width: 24px; text-align: right; user-select: none; }
.hero-canvas-main .k { color: var(--accent); }
.hero-canvas-main .s { color: var(--fg); }
.hero-canvas-main .c { color: var(--fg-faint); font-style: italic; }
@media (max-width: 720px) {
  .hero-canvas-body { grid-template-columns: 1fr; }
  .hero-canvas-side { display: none; }
}

/* ---------- COMPARISON TABLE ---------- */
.compare {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-elev);
}
.compare > div {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.compare .col-head {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-mute);
  background: var(--bg-elev-2);
}
.compare .col-head.us { color: var(--accent); }
.compare .row-head {
  background: var(--bg-elev-2);
  color: var(--fg-mute);
  font-family: var(--font-mono);
  font-size: 13px;
}
.compare .cell-bad { color: var(--fg-mute); }
.compare .cell-good { color: var(--fg); font-weight: 500; }
.compare .cell-good::before {
  content: "→ ";
  color: var(--accent);
}
.compare > div:nth-last-child(-n+3) { border-bottom: 0; }
@media (max-width: 720px) {
  .compare { grid-template-columns: 1fr 1fr; }
  .compare .row-head { grid-column: 1 / -1; }
}

/* ---------- PILL / BADGE ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.pill.live::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- STATS ROW ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stats > div {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s;
}
.stats > div:hover { border-color: var(--line-strong); }
.stats .num {
  font-family: var(--font-mono);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
}
.stats .num .accent { color: var(--accent); }
.stats .lbl { font-size: 13px; color: var(--fg-mute); margin-top: 12px; line-height: 1.4; }
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .stats > div:nth-child(2n) { border-right: 0; }
  .stats > div:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ---------- SECTION HEADER ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .desc { color: var(--fg-mute); max-width: 50ch; }
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- TESTIMONIAL ---------- */
.quote-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px;
}
.quote-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--fg);
}
.quote-card blockquote::before {
  content: "“";
  font-size: 56px;
  line-height: 0;
  color: var(--accent);
  margin-right: 4px;
  vertical-align: -16px;
}
.quote-card .who {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-mute);
}
.quote-card .who .metric {
  color: var(--accent);
  font-weight: 500;
}

/* ---------- PEOPLE ---------- */
.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.person {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.person-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  background:
    repeating-linear-gradient(45deg, var(--bg-elev-2) 0 8px, transparent 8px 16px),
    var(--bg-elev-2);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.person-photo::after {
  content: "[ photo ]";
}
.person-name { font-weight: 500; font-size: 16px; }
.person-role { font-family: var(--font-mono); font-size: 12px; color: var(--fg-mute); line-height: 1.5; }
@media (max-width: 720px) {
  .people { grid-template-columns: 1fr; }
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  padding-left: 32px;
  display: flex; flex-direction: column;
  gap: 48px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--line), var(--line-strong), transparent);
}
.tl-item { position: relative; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -32px; top: 8px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line-strong);
}
.tl-item.tl-now::before {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}
.tl-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 8px;
}
.tl-title { font-size: 20px; font-weight: 500; margin-bottom: 8px; letter-spacing: -0.015em; }
.tl-body { color: var(--fg-mute); font-size: 15px; max-width: 60ch; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-grid h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-mute); font-weight: 500; margin-bottom: 16px; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--fg-mute); }
.foot-grid li a { transition: color 0.18s; }
.foot-grid li a:hover { color: var(--fg); }
.foot-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-mute);
  margin-top: 12px;
  max-width: 32ch;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-faint);
}
@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- PRICING ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.plan.featured {
  border-color: var(--accent-line);
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg-elev) 40%);
}
.plan.featured::before {
  content: "RECOMENDADO";
  position: absolute;
  top: -10px; left: 24px;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  border-radius: 999px;
  font-weight: 600;
}
.plan-name { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-mute); }
.plan-price { font-family: var(--font-display); font-size: 44px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.plan-price .small { font-size: 14px; font-family: var(--font-mono); color: var(--fg-mute); margin-left: 4px; }
.plan-desc { color: var(--fg-mute); font-size: 14px; line-height: 1.5; min-height: 64px; }
.plan-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.plan-features li { display: flex; gap: 10px; align-items: flex-start; color: var(--fg); }
.plan-features li::before {
  content: "+";
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 600;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
}

/* ---------- LIFECYCLE STEPPER ---------- */
.lifecycle {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  overflow: hidden;
}
.lc-step {
  background: var(--bg-elev);
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.lc-step:hover { background: var(--bg-elev-2); }
.lc-step.active { background: var(--accent-soft); }
.lc-num { font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint); }
.lc-title { font-size: 14px; font-weight: 500; line-height: 1.3; }
.lc-meta { font-family: var(--font-mono); font-size: 11px; color: var(--fg-mute); margin-top: auto; }
@media (max-width: 900px) {
  .lifecycle { grid-template-columns: repeat(2, 1fr); }
}

.lc-detail {
  border: 1px solid var(--line-strong);
  background: var(--bg-elev);
  border-radius: 14px;
  padding: 32px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.lc-detail h4 { font-family: var(--font-mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; font-weight: 500; }
.lc-detail p { color: var(--fg); font-size: 14px; line-height: 1.5; }
@media (max-width: 720px) {
  .lc-detail { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- CONTACT FORM ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-grid .full { grid-column: 1 / -1; }
input, textarea, select {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--fg);
  border-radius: 8px;
  width: 100%;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}
select option { background: var(--bg-elev); color: var(--fg); }
input:focus, textarea:focus, select:focus { border-color: var(--accent-line); background: var(--bg); }
textarea { resize: vertical; min-height: 120px; font-family: var(--font-sans); }
label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-mute); display: block; margin-bottom: 6px; }
@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- BIG MANIFESTO TEXT (landing) ---------- */
.manifesto {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
  max-width: 22ch;
}
.manifesto .accent { color: var(--accent); font-style: italic; font-weight: 400; }
.manifesto .mute { color: var(--fg-mute); }

/* ---------- LANDING SPECIFIC ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.split .card {
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 16px;
}
.split .card h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
}
.split .card.bad ul li::before { content: "—"; color: var(--fg-faint); }
.split .card.good { border-color: var(--accent-line); background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg-elev) 60%); }
.split .card.good ul li::before { content: "→"; color: var(--accent); }
.split .card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.split .card li { display: flex; gap: 12px; font-size: 16px; line-height: 1.4; }
.split .card li b { font-weight: 600; color: var(--fg); }
@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- LOGO TYPE (text only) ---------- */
.logotype {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: inherit;
}
.logotype .y { color: var(--accent); }

/* ---------- INLINE BLOCK QUOTE  / LIVE BADGE ---------- */
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.live-badge::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.6s infinite;
}

/* ---------- AURORA / AMBIENT BACKDROP ---------- */
.aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.aurora::before, .aurora::after {
  content: "";
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}
.aurora::before {
  background: var(--accent);
  top: -200px; right: -200px;
}
.aurora::after {
  background: var(--accent);
  bottom: -300px; left: -200px;
  opacity: 0.08;
}
.hero > * { position: relative; z-index: 1; }

/* ---------- TWEAKS PANEL OVERRIDE (smaller) ---------- */
.tweaks-panel { font-family: var(--font-mono) !important; }
