/* Sections + components */

/* NAV */
.nav.scrolled { background: color-mix(in oklch, var(--bg) 92%, transparent); }
.nav-cta { height: 36px; font-size: 12px; padding: 0 14px; }

/* HERO — shared */
.hero { padding-top: 80px; padding-bottom: 120px; position: relative; overflow: hidden; }
.accent-text { color: var(--accent); }
.hero-title {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.hero-sub {
  margin-top: 22px;
  font-size: 15px;
  color: var(--fg-dim);
  max-width: 520px;
  line-height: 1.55;
}
.hero-ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 56px;
  display: flex; gap: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }
.hero-stats span { font-size: 12px; color: var(--fg-dim); margin-top: 2px; }

/* HERO — monitor variant */
.hero-monitor .hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 60px;
}
@media (max-width: 960px) {
  .hero-monitor .hero-inner { grid-template-columns: 1fr; }
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, color-mix(in oklch, var(--accent) 22%, transparent) 0%, transparent 60%),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
  opacity: 0.6;
  pointer-events: none;
}
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 560px; }

/* Device mockup */
.device { position: relative; }
.device-frame {
  width: 300px;
  height: 600px;
  border-radius: 42px;
  background: linear-gradient(180deg, #0a2d3e 0%, #041C2C 100%);
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.06),
    0 50px 120px -20px rgba(0,0,0,0.6),
    0 0 80px -10px color-mix(in oklch, var(--accent) 40%, transparent);
  position: relative;
}
.device-notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: #000; border-radius: 12px;
  z-index: 2;
}
.device-screen {
  width: 100%; height: 100%;
  background: #041C2C;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  color: #F4F6F7;
}
.device-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle at center, color-mix(in oklch, var(--accent) 30%, transparent), transparent 60%);
  filter: blur(40px); z-index: -1; opacity: 0.6;
}

.dash { padding: 38px 22px 22px; height: 100%; display: flex; flex-direction: column; gap: 18px; }
.dash-top { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: #A7B3BC; }
.dash-bars { display: flex; gap: 3px; }
.dash-bars span { width: 3px; height: 10px; background: #A7B3BC; border-radius: 1px; }
.dash-bars span:nth-child(1) { height: 4px; }
.dash-bars span:nth-child(2) { height: 6px; }
.dash-bars span:nth-child(3) { height: 8px; }
.dash-title { margin-top: 4px; }
.dash-eyebrow { font-size: 9px; letter-spacing: 0.14em; color: #82A84C; }
.dash-heading { font-family: var(--font-display); font-size: 18px; margin-top: 6px; font-weight: 500; }

.gauge-wrap { position: relative; width: 100%; aspect-ratio: 1; margin: 6px auto 0; max-width: 220px; }
.gauge { width: 100%; height: 100%; }
.gauge-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.gauge-num { font-family: var(--font-display); font-size: 54px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.gauge-num span { font-size: 22px; color: #A7B3BC; margin-left: 2px; }
.gauge-label { font-size: 9px; letter-spacing: 0.18em; color: #A7B3BC; margin-top: 8px; }

.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.kpi { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 12px; }
.kpi-label { font-size: 9px; letter-spacing: 0.14em; color: #A7B3BC; }
.kpi-row { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.kpi-val { font-family: var(--font-display); font-size: 16px; font-weight: 500; margin-top: 4px; display: block; }
.kpi-unit { font-size: 11px; color: #A7B3BC; font-weight: 400; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.ok { background: #82A84C; box-shadow: 0 0 0 3px rgba(130,168,76,0.2); }
.dot.off { background: #8F9293; }

.alert {
  margin-top: auto;
  display: flex; gap: 10px; align-items: center;
  background: color-mix(in oklch, var(--accent) 18%, transparent);
  border: 1px solid color-mix(in oklch, var(--accent) 30%, transparent);
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--accent);
}
.alert-t { font-size: 12px; font-weight: 500; }
.alert-s { font-size: 10px; opacity: 0.8; font-family: var(--font-mono); margin-top: 2px; }

.floating-card {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  animation: floaty 6s ease-in-out infinite;
}
.fc-1 { top: 12%; left: -8%; animation-delay: 0s; }
.fc-2 { bottom: 14%; right: -10%; animation-delay: 2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.fc-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  color: var(--accent);
}
.fc-t { font-size: 13px; font-weight: 500; }
.fc-s { font-size: 10px; color: var(--fg-dim); margin-top: 2px; }
@media (max-width: 960px) {
  .fc-1 { left: 0; }
  .fc-2 { right: 0; }
}

/* HERO — statement variant */
.hero-statement { padding: 100px 0 80px; }
.hero-huge {
  font-size: clamp(44px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.hero-huge em { font-style: normal; color: var(--accent); font-family: var(--font-display); }
.hero-huge .strike { position: relative; color: var(--fg-dim); }
.hero-huge .strike::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 50%;
  height: 6px; background: var(--accent); transform: rotate(-3deg);
}
.hero-huge-bottom {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-top: 56px; align-items: end;
}
@media (max-width: 820px) { .hero-huge-bottom { grid-template-columns: 1fr; } }
.hero-huge-sub { font-size: 15px; color: var(--fg-dim); max-width: 480px; }

.hero-ticker {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.ticker-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--fg-dim); letter-spacing: 0.06em;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* HERO — split variant */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; padding: 0; min-height: 92vh; }
@media (max-width: 960px) { .hero-split { grid-template-columns: 1fr; } }
.hero-split-left { display: flex; align-items: center; padding: 80px 32px; }
.hero-split-left .container-inner { max-width: 560px; margin-left: auto; }
.hero-split-right {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.hero-split-right::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
[data-theme="light"] .hero-split-right { color: var(--white); }
[data-theme="light"] .hero-split-right .device-frame { box-shadow: 0 50px 120px -20px rgba(0,0,0,0.5); }

.trust-row {
  margin-top: 48px;
  display: flex; gap: 20px; align-items: center;
  color: var(--fg-dim); font-size: 12px;
}
.trust-item strong { color: var(--fg); font-family: var(--font-display); margin-right: 6px; }
.trust-sep { width: 1px; height: 16px; background: var(--line); }

/* PROBLEMS */
.section-problems { background: var(--bg); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: var(--bg);
  padding: 32px 28px;
  position: relative;
  transition: background 0.2s ease;
}
.problem-card:hover { background: var(--bg-2); }
.problem-num {
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.14em;
}
.problem-x {
  position: absolute; top: 28px; right: 28px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: color-mix(in oklch, var(--accent) 14%, transparent);
  color: var(--accent);
}
.problem-q {
  font-size: 19px;
  margin: 14px 0 8px;
  max-width: 260px;
  line-height: 1.22;
}
.problem-a { color: var(--fg-dim); font-size: 13px; max-width: 280px; }

/* HOW — timeline */
.section-how { background: var(--bg-2); }
[data-theme="dark"] .section-how { background: #071E2E; }

.timeline { max-width: 820px; }
.tl-step { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding-bottom: 48px; position: relative; }
.tl-step:last-child { padding-bottom: 0; }
.tl-col { display: flex; flex-direction: column; align-items: center; }
.tl-num {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 600;
  padding-top: 2px;
}
.tl-line { flex: 1; width: 1px; background: var(--line); margin-top: 8px; }
.tl-step:last-child .tl-line { display: none; }
.tl-body { padding-bottom: 8px; }
.tl-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: color-mix(in oklch, var(--accent) 14%, transparent);
  color: var(--accent);
  margin-bottom: 16px;
}
.tl-title { font-size: 22px; margin-bottom: 8px; }
.tl-desc { color: var(--fg-dim); max-width: 560px; font-size: 14px; }

/* HOW — cards */
.how-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .how-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .how-cards { grid-template-columns: 1fr; } }
.how-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  min-height: 240px;
  display: flex; flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.how-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.how-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.how-card-num { color: var(--accent); font-size: 13px; letter-spacing: 0.1em; font-weight: 600; }
.how-card-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: color-mix(in oklch, var(--accent) 14%, transparent);
  color: var(--accent);
}
.how-card h3 { font-size: 18px; margin-bottom: 8px; }
.how-card p { color: var(--fg-dim); font-size: 13px; }

/* HOW — horizontal */
.horiz { display: flex; align-items: stretch; gap: 16px; overflow-x: auto; padding-bottom: 8px; }
.horiz-step { flex: 1 1 240px; min-width: 240px; padding: 28px 0; border-top: 2px solid var(--line); position: relative; }
.horiz-step::before { content: ""; position: absolute; top: -6px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.horiz-num { color: var(--accent); font-size: 12px; letter-spacing: 0.1em; font-weight: 600; }
.horiz-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: color-mix(in oklch, var(--accent) 14%, transparent);
  color: var(--accent); display: grid; place-items: center; margin: 14px 0 16px;
}
.horiz-step h3 { font-size: 18px; margin-bottom: 6px; }
.horiz-step p { color: var(--fg-dim); font-size: 13px; max-width: 240px; }
.horiz-arrow { display: flex; align-items: center; color: var(--fg-dim); padding-top: 28px; }
@media (max-width: 820px) { .horiz-arrow { display: none; } }

/* DIFF strip */
.section-diff { padding: 40px 0 80px; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, color-mix(in oklch, var(--accent) 10%, transparent), transparent);
  border: 1px solid var(--line);
  position: relative;
}
.diff-k {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #041C2C;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.diff-card h3 { font-size: 19px; margin-bottom: 8px; line-height: 1.25; }
.diff-card p { color: var(--fg-dim); font-size: 13px; }

/* FAQ */
.section-faq { background: var(--bg); }
.faq-container { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .faq-container { grid-template-columns: 1fr; gap: 40px; } }
.faq-head h2 { font-size: 34px; line-height: 1.08; margin-top: 12px; }
.faq-head p { color: var(--fg-dim); margin-top: 18px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--accent); }
.faq-plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: transform 0.25s, background 0.2s, color 0.2s;
  color: var(--fg-dim);
  flex-shrink: 0;
}
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--accent); color: #041C2C; border-color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--fg-dim);
  font-size: 14px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 0 22px; }

/* CONTACT */
.section-contact { padding: 60px 0 40px; }
.contact-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 72px 64px;
  background: var(--navy);
  color: var(--white);
}
.contact-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, color-mix(in oklch, var(--accent) 45%, transparent), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, #0a2d3e 100%);
  pointer-events: none;
}
.contact-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 20% 80%, black 10%, transparent 70%);
}
.contact-inner { position: relative; max-width: 760px; }
.contact-title { font-size: clamp(28px, 3.8vw, 48px); line-height: 1.08; margin-top: 14px; color: var(--white); }
.contact-sub { color: rgba(255,255,255,0.7); font-size: 15px; margin-top: 20px; max-width: 540px; }
.contact-ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn-ghost-onblue { color: var(--white); border-color: rgba(255,255,255,0.2); }
.btn-ghost-onblue:hover { background: rgba(255,255,255,0.08); border-color: var(--accent); }
.contact-grid {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } .contact-card { padding: 48px 28px; } }
.contact-grid > div { display: flex; flex-direction: column; gap: 6px; }
.c-label { font-size: 11px; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); }
.c-val { font-size: 14px; color: var(--white); }

/* FOOTER */
.footer { padding: 60px 0 32px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 820px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-left p { color: var(--fg-dim); font-size: 13px; margin-top: 16px; max-width: 340px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--fg-dim); font-size: 13px; transition: color 0.15s; }
.footer-col a:hover { color: var(--fg); }
.footer-h { font-size: 11px; color: var(--fg); letter-spacing: 0.14em; margin-bottom: 6px; }
.footer-bottom {
  display: flex; justify-content: space-between;
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--fg-dim);
}

/* Testimonials */
.section-testimonials { background: var(--bg); padding-top: 60px; padding-bottom: 60px; }
.testimonial-card {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 48px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, color-mix(in oklch, var(--accent) 8%, transparent), var(--bg-2));
  border: 1px solid var(--line);
}
.testimonial-quote {
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 20px;
}
.testimonial-quotes { display: flex; flex-direction: column; gap: 18px; }
.testimonial-line {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.4;
  color: var(--fg);
  font-weight: 400;
}
.testimonial-line::before { content: "— "; color: var(--accent); }
.testimonial-author {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--accent) 25%, transparent);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.testimonial-name { font-size: 15px; font-weight: 500; color: var(--fg); white-space: nowrap; }
.testimonial-role { font-size: 11px; color: var(--fg-dim); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; }
@media (max-width: 700px) {
  .testimonial-card { padding: 32px 24px 28px; }
}

/* Product icon variant for Solutions section */
.problem-product-icon {
  background: color-mix(in oklch, var(--accent) 14%, transparent) !important;
  color: var(--accent) !important;
}

/* Floating WhatsApp */
.fab-whatsapp {
  position: fixed; bottom: 28px; right: 28px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s;
}
.fab-whatsapp:hover { transform: scale(1.08); }

/* Tweaks panel */
.tw-fab {
  position: fixed; bottom: 28px; left: 28px; z-index: 100;
  background: var(--bg-2); color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  box-shadow: 0 10px 24px -4px rgba(0,0,0,0.3);
}
.tweaks-panel {
  position: fixed; bottom: 28px; left: 28px; z-index: 100;
  width: 320px;
  background: var(--bg-2); color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.4);
}
.tw-head { display: flex; justify-content: space-between; align-items: start; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.tw-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; }
.tw-sub { font-size: 10px; color: var(--fg-dim); letter-spacing: 0.14em; margin-top: 2px; text-transform: uppercase; }
.tw-close { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; color: var(--fg-dim); }
.tw-close:hover { background: var(--card); color: var(--fg); }
.tw-row { margin-bottom: 14px; }
.tw-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 8px; font-family: var(--font-mono); }
.tw-opts { display: flex; gap: 6px; flex-wrap: wrap; }
.tw-opt { padding: 8px 12px; border-radius: 8px; border: 1px solid var(--line); font-size: 12px; transition: all 0.15s; }
.tw-opt:hover { border-color: var(--accent); }
.tw-opt.active { background: var(--accent); color: #041C2C; border-color: var(--accent); font-weight: 500; }
.tw-swatches { display: flex; gap: 8px; }
.tw-swatch { width: 32px; height: 32px; border-radius: 8px; border: 2px solid transparent; cursor: pointer; transition: transform 0.15s; }
.tw-swatch:hover { transform: scale(1.08); }
.tw-swatch.active { border-color: var(--fg); box-shadow: 0 0 0 2px var(--bg-2), 0 0 0 4px var(--fg); }
