/* ===== TOKENS ===== */
:root {
  --blue: #006BFF;
  --blue-hover: #0055CC;
  --navy: #092640;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --text: #0D1B2A;
  --muted: #64748B;
  --border: rgba(9,38,64,0.08);
  --r-card: 32px;
  --r-ui: 12px;
  --r-btn: 100px;

  /* tweakable */
  --accent: #006BFF;
  --hero-bg: #092640;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden !important;
  position: relative;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 600px) {
  .container { padding: 0 20px; width: 100%; }
}
* { max-width: 100%; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,107,255,0.1); color: var(--blue);
  border: 1px solid rgba(0,107,255,0.2);
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  transition: color 0.4s;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .logo-img { height: 32px; }
}

nav { display: flex; align-items: center; gap: 36px; }
@media (max-width: 768px) {
  nav a:not(.btn-access) { display: none; }
  nav { gap: 12px; }
}

.btn-access {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 14px;
  background: var(--blue); color: #fff;
  border: none; padding: 10px 22px; border-radius: var(--r-btn);
  cursor: pointer; transition: all 0.3s ease;
  text-decoration: none; display: inline-block;
  box-shadow: 0 4px 12px rgba(0,107,255,0.2);
}
.btn-access:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,107,255,0.3); }

header.scrolled .btn-access {
  background: var(--navy);
  box-shadow: 0 4px 12px rgba(9,38,64,0.1);
  color: #fff;
}
header.scrolled .btn-access:hover {
  background: #000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  background: var(--hero-bg);
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  padding: 140px 0 80px;
}

/* grid texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* glow orb */
.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,107,255,0.25) 0%, transparent 65%);
  pointer-events: none;
  max-width: none; /* Glows can overflow their parent as long as parent is overflow:hidden */
}
.hero-glow-2 {
  position: absolute; bottom: -200px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,107,255,0.12) 0%, transparent 65%);
  pointer-events: none;
  max-width: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-tag { margin-bottom: 28px; }
.hero-tag .tag {
  background: rgba(0,107,255,0.15); border-color: rgba(0,107,255,0.3); color: #6BABFF;
}
.hero-tag .tag::before { background: #6BABFF; }

h1 {
  font-family: 'Outfit', sans-serif; font-weight: 900;
  font-size: clamp(32px, 7vw, 88px);
  line-height: 1.1; letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
}
h1 em { font-style: normal; color: var(--blue); }

.hero-sub {
  margin-top: 28px;
  font-size: clamp(16px, 2vw, 20px); font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.7;
  max-width: 560px;
}

.hero-ctas {
  margin-top: 44px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.btn-primary {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 16px;
  background: var(--blue); color: #fff;
  border: none; padding: 16px 32px; border-radius: var(--r-btn);
  cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0,107,255,0.4);
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,107,255,0.5); }

.btn-ghost {
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 16px;
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2); padding: 15px 32px; border-radius: var(--r-btn);
  cursor: pointer; transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; transform: translateY(-2px); }

.hero-stats {
  margin-top: 72px;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
}
.stat-num {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 36px;
  color: #fff; letter-spacing: -0.03em;
}
.stat-num span { color: var(--blue); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; font-weight: 400; }

/* hero mockup */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  z-index: 2;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1100px) { 
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 40px; width: 100%; }
  .hero-content { margin-bottom: 40px; }
  .hero-visual { margin: 0 auto; transform: scale(0.95); }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; gap: 20px; }
}
@media (max-width: 600px) {
  .hero-visual { transform: scale(0.85); transform-origin: center; margin-top: -20px; }
  .hero-card-2 { right: 0; bottom: -40px; scale: 0.8; }
}

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-card);
  backdrop-filter: blur(20px);
  padding: 28px;
  position: relative;
}
.hero-card-top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px;
}
.hc-label { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.hc-badge {
  background: rgba(0,107,255,0.2); color: #6BABFF;
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
}
.hc-booking-link {
  background: rgba(255,255,255,0.08); border-radius: 10px; padding: 14px 18px;
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.hc-link-text { font-size: 13px; color: rgba(255,255,255,0.5); }
.hc-link-url { font-size: 13px; color: #6BABFF; font-weight: 500; }

.hc-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 20px; }
.slot {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 10px 8px; text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.6); cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.slot:hover, .slot.active { background: rgba(0,107,255,0.25); border-color: rgba(0,107,255,0.5); color: #6BABFF; }
.slot.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.hc-confirm {
  width: 100%; background: var(--blue); color: #fff;
  border: none; border-radius: 12px; padding: 14px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 14px; cursor: pointer;
  transition: background 0.2s;
}
.hc-confirm:hover { background: var(--blue-hover); }

.hero-card-2 {
  position: absolute; bottom: -60px; right: -30px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; backdrop-filter: blur(20px); padding: 20px 24px;
  display: flex; align-items: center; gap: 14px;
  width: 260px;
}
.cfdi-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,107,255,0.3), rgba(0,107,255,0.1));
  border: 1px solid rgba(0,107,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.cfdi-t { font-size: 13px; font-weight: 600; color: #fff; }
.cfdi-s { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ===== SECTION SHARED ===== */
section { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 72px; }
h2 {
  font-family: 'Outfit', sans-serif; font-weight: 900;
  font-size: clamp(28px, 5vw, 60px);
  letter-spacing: -0.03em; line-height: 1.1;
  color: var(--navy);
}
h2 em { font-style: normal; color: var(--blue); }
.section-sub {
  font-size: 18px; color: var(--muted); line-height: 1.7; margin-top: 16px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ===== FEATURES ===== */
.features { background: var(--bg); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }

.feat-card {
  background: var(--surface); border-radius: var(--r-card);
  padding: 40px 36px; border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(9,38,64,0.08);
}
.feat-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,107,255,0.1), rgba(0,107,255,0.05));
  border: 1px solid rgba(0,107,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.feat-icon svg { width: 26px; height: 26px; }
.feat-title {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 22px;
  color: var(--navy); margin-bottom: 12px; letter-spacing: -0.02em;
}
.feat-desc { font-size: 15px; color: var(--muted); line-height: 1.7; }
.feat-bullets {
  margin-top: 20px; display: flex; flex-direction: column; gap: 8px; list-style: none;
}
.feat-bullets li {
  font-size: 13px; color: var(--muted); padding-left: 16px; position: relative;
}
.feat-bullets li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--blue);
}

/* FEATURED (large) */
.feat-card.large {
  grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (max-width: 900px) { .feat-card.large { grid-column: span 1; grid-template-columns: 1fr; } }
.feat-card.dark {
  background: var(--navy); border-color: rgba(255,255,255,0.06);
}
.feat-card.dark .feat-title { color: #fff; }
.feat-card.dark .feat-desc { color: rgba(255,255,255,0.5); }
.feat-card.dark .feat-bullets li { color: rgba(255,255,255,0.5); }
.feat-card.dark .feat-bullets li::before { background: #6BABFF; }
.feat-card.dark .feat-icon {
  background: rgba(0,107,255,0.2); border-color: rgba(0,107,255,0.3);
}

/* SAT mockup inside card */
.sat-mockup {
  background: rgba(0,0,0,0.25); border-radius: 20px; padding: 20px;
  border: 1px solid rgba(255,255,255,0.07);
}
.sat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 12px;
}
.sat-row:last-child { border-bottom: none; }
.sat-key { color: rgba(255,255,255,0.35); }
.sat-val { color: #fff; font-weight: 500; font-family: 'Outfit', sans-serif; }
.sat-val.blue { color: #6BABFF; }
.sat-val.green { color: #4ADE80; }
.sat-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(74,222,128,0.15); border: 1px solid rgba(74,222,128,0.2);
  border-radius: 100px; padding: 4px 10px; font-size: 11px; color: #4ADE80; font-weight: 600;
  margin-top: 14px;
}
.sat-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; }

/* ===== AI SECTION ===== */
.ai-section { background: var(--navy); overflow: hidden; }
.ai-section h2 { color: #fff; }
.ai-section .section-sub { color: rgba(255,255,255,0.5); }

.ai-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
@media (max-width: 900px) { .ai-grid { grid-template-columns: 1fr; gap: 40px; } }

.ai-steps { display: flex; flex-direction: column; gap: 0; }
.ai-step {
  display: flex; gap: 20px; padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07); cursor: pointer;
  transition: padding-left 0.2s;
}
.ai-step:last-child { border-bottom: none; }
.ai-step:hover { padding-left: 8px; }
.ai-step.active { padding-left: 8px; }
.step-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(0,107,255,0.15); border: 1px solid rgba(0,107,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 14px; color: #6BABFF;
  flex-shrink: 0; transition: background 0.2s;
}
.ai-step.active .step-num { background: var(--blue); color: #fff; border-color: var(--blue); }
.step-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 6px; transition: color 0.2s; }
.ai-step.active .step-title { color: #fff; }
.step-desc { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; }

.ai-visual {
  position: relative;
}
.csf-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-card); padding: 28px; overflow: hidden;
}
.csf-top { font-size: 11px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.csf-doc {
  background: rgba(255,255,255,0.06); border-radius: 16px; padding: 20px;
  border: 1px dashed rgba(255,255,255,0.1); text-align: center; margin-bottom: 20px;
}
.csf-doc-icon { font-size: 32px; margin-bottom: 8px; }
.csf-doc-name { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }
.csf-doc-sub { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 4px; }

.csf-extracted { display: flex; flex-direction: column; gap: 8px; }
.csf-field {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,107,255,0.08); border: 1px solid rgba(0,107,255,0.15);
  border-radius: 10px; padding: 10px 14px;
}
.csf-field-icon { color: #6BABFF; font-size: 13px; }
.csf-field-label { font-size: 11px; color: rgba(255,255,255,0.3); width: 60px; flex-shrink: 0; }
.csf-field-val { font-size: 13px; color: #fff; font-weight: 500; font-family: 'Outfit', sans-serif; }
.csf-field-badge { margin-left: auto; background: rgba(74,222,128,0.15); color: #4ADE80; font-size: 10px; padding: 2px 8px; border-radius: 100px; font-weight: 600; }

/* ===== CRM STRIP ===== */
.crm-section { background: var(--bg); }
.crm-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .crm-grid { grid-template-columns: 1fr; } }
.mini-card {
  background: var(--surface); border-radius: 24px; padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.mini-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(9,38,64,0.07); }
.mini-num {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 48px;
  letter-spacing: -0.04em; color: var(--navy); line-height: 1;
  margin-bottom: 4px;
}
.mini-num span { color: var(--blue); }
.mini-label { font-size: 14px; color: var(--muted); font-weight: 500; }
.mini-chart {
  margin-top: 20px; height: 48px; display: flex; align-items: flex-end; gap: 4px;
}
.mini-bar {
  flex: 1; background: var(--blue); border-radius: 4px; opacity: 0.15;
  transition: opacity 0.2s;
}
.mini-bar.hi { opacity: 0.5; }
.mini-bar.peak { opacity: 1; }

/* ===== DEMO FORM ===== */
.demo-section { background: var(--surface); }
.demo-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 900px) { 
  .demo-inner { grid-template-columns: 1fr; gap: 48px; }
  .demo-left h2 { text-align: center; }
  .demo-left .section-sub { text-align: center; }
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.demo-perks { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.perk {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--text); font-weight: 500;
}
.perk-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

.demo-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.01em; }
.form-group input,
.form-group select {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-ui); padding: 14px 18px;
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--text);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input::placeholder { color: #A0AABA; }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,107,255,0.12);
}
.btn-submit {
  margin-top: 8px;
  width: 100%; background: var(--blue); color: #fff;
  border: none; border-radius: var(--r-btn); padding: 18px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 16px;
  cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0,107,255,0.3);
  position: relative; overflow: hidden;
}
.btn-submit:hover { background: var(--blue-hover); transform: translateY(-2px); }
.btn-submit.success { background: #16A34A; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 4px; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy); padding: 64px 0 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-logo {
  margin-bottom: 24px;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 240px; }
.footer-col-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); font-weight: 600; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ===== TWEAKS PANEL ===== */
#tweaks-panel {
  display: none;
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  box-shadow: 0 16px 60px rgba(9,38,64,0.15);
  padding: 24px; width: 280px;
}
#tweaks-panel.open { display: block; }
.tweaks-title {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 16px;
  color: var(--navy); margin-bottom: 20px;
}
.tweak-row { margin-bottom: 16px; }
.tweak-label { font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.tweak-options { display: flex; gap: 8px; flex-wrap: wrap; }
.tweak-opt {
  padding: 6px 14px; border-radius: 100px; border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s;
  color: var(--muted);
}
.tweak-opt.active { border-color: var(--blue); color: var(--blue); background: rgba(0,107,255,0.06); }
.tweak-color-row { display: flex; gap: 8px; }
.tweak-color {
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.2s; flex-shrink: 0;
}
.tweak-color.active { border-color: var(--navy); }
