/* ============================================================
   DIGIFANA — theme.css (site-wide dark theme)
   Design system: near-black + orange glow + glassmorphism.
   Brand DNA: orange #E8430A · black #0A0A0A · white #FFFFFF (mono-orange).
   Dipakai: / (hub) dan /master-prompt. Halaman /auto pakai auto.css
   (token-nya sama persis — kalau ganti warna, ganti di dua file).
   ============================================================ */
:root {
  --bg: #0a0a0a;
  --panel: rgba(26, 16, 12, 0.55);
  --line: rgba(232, 67, 10, 0.16);
  --acc: #e8430a;
  --acc2: #ff7a3c;
  --txt: #ffffff;
  --mut: #b9ada6;
  --good: #34d399;
  --warn: #e8430a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--txt);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
.wrap { max-width: 980px; margin: 0 auto; padding: 0 22px; position: relative; }
a { color: var(--acc); text-decoration: none; }

/* ---------- background layers ---------- */
.bg-grid, .bg-glow { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.bg-grid {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 80%);
}
.bg-glow {
  background:
    radial-gradient(ellipse 60% 40% at 50% -5%, rgba(232, 67, 10, 0.22), transparent 65%),
    radial-gradient(ellipse 40% 30% at 85% 25%, rgba(255, 122, 60, 0.10), transparent 70%),
    radial-gradient(ellipse 50% 35% at 10% 70%, rgba(232, 67, 10, 0.07), transparent 70%);
}
header, section, footer { position: relative; z-index: 1; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { font-weight: 800; letter-spacing: 0.06em; color: var(--txt); font-size: 17px; }
.logo span { color: var(--acc); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--acc), #ff6a2b);
  color: #fff; font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 10px; border: 0; cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255, 122, 60, 0.35) inset, 0 8px 30px rgba(232, 67, 10, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255, 150, 100, 0.5) inset, 0 14px 40px rgba(232, 67, 10, 0.5); }
.btn .arr {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.18); font-size: 13px;
}
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #f5d7c8; font-weight: 700; font-size: 14px;
  padding: 11px 20px; border-radius: 10px; border: 1px solid rgba(232, 67, 10, 0.4);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.btn-ghost:hover { border-color: rgba(255, 122, 60, 0.7); color: var(--txt); }
.btn-note { display: block; font-size: 13px; color: var(--mut); margin-top: 12px; }

/* ---------- type ---------- */
.kicker {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--acc); text-transform: uppercase; margin-bottom: 14px;
}
h1 { font-size: clamp(34px, 6vw, 58px); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(24px, 4vw, 36px); line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 14px; }
h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.grad {
  background: linear-gradient(95deg, #ff7a3c, var(--acc));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sub, .sec-sub { color: var(--mut); font-size: clamp(15px, 2vw, 17px); max-width: 640px; }
.sub strong, .sec-sub strong { color: var(--txt); }
.center { text-align: center; }
.center .sub, .center .sec-sub { margin-left: auto; margin-right: auto; }

/* ---------- sections ---------- */
.hero { padding: 80px 0 60px; text-align: center; }
.hero .sub { margin: 18px auto 28px; }
section.block { padding: 60px 0 20px; }
section.block:last-of-type { padding-bottom: 80px; }

/* ---------- glass ---------- */
.glass {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.glow { position: relative; }
.glow::before {
  content: ""; position: absolute; inset: -1px; border-radius: 19px; z-index: -1;
  background: linear-gradient(135deg, rgba(232, 67, 10, 0.55), rgba(255, 122, 60, 0.25), transparent 60%);
  filter: blur(10px); opacity: 0.55;
}
.card { padding: 26px; transition: border-color 0.25s ease; }
.card:hover { border-color: rgba(232, 67, 10, 0.4); }
.card p { color: var(--mut); font-size: 14.5px; }
.card h3 { color: var(--txt); }

/* ---------- grids ---------- */
.grid { display: grid; gap: 18px; margin-top: 28px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- badge ---------- */
.badge {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--good);
  border: 1px solid rgba(52, 211, 153, 0.4); border-radius: 999px;
  padding: 4px 12px; margin-bottom: 14px;
}
.badge.soon { color: var(--warn); border-color: rgba(232, 67, 10, 0.4); }

/* ---------- step number (01/02/03) ---------- */
.hnum {
  display: inline-block; font-size: 13px; font-weight: 800; color: var(--acc);
  border: 1px solid rgba(232, 67, 10, 0.4); border-radius: 8px;
  padding: 4px 10px; margin-bottom: 16px; letter-spacing: 0.1em;
}

/* ---------- checklist ---------- */
.vlist li {
  list-style: none; padding: 9px 0 9px 32px; position: relative;
  color: #e7ddd6; font-size: 16px;
}
.vlist li::before { content: "✓"; color: var(--good); position: absolute; left: 0; top: 9px; font-weight: 800; }
.vlist li strong { color: var(--txt); }

/* ---------- callout math ---------- */
.math {
  border-left: 4px solid var(--warn);
  background: var(--panel);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px; margin: 22px 0; color: #e7ddd6;
}
.math .accent { color: var(--warn); }

/* ---------- proof placeholder ---------- */
.proof-placeholder {
  border: 2px dashed rgba(232, 67, 10, 0.3); border-radius: 18px;
  padding: 44px 24px; text-align: center; color: var(--mut); margin-top: 24px;
}

/* ---------- price box ---------- */
.price-box {
  max-width: 480px; margin: 30px auto 0; padding: 40px 34px; text-align: center;
}
.price { font-size: clamp(40px, 7vw, 56px); font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(95deg, #ff7a3c, var(--acc));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-box p { color: var(--mut); }
.anchor { text-decoration: line-through; color: var(--warn); font-weight: 700; }

/* ---------- bonus stack (/master-prompt) ---------- */
.bonus-stack {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px; align-items: center; margin-top: 28px;
}
/* portal preview (native render, bukan gambar) */
.bonus-shot { margin: 0; padding: 0; overflow: hidden; }
.portal-bar {
  display: flex; gap: 7px; padding: 13px 16px;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.portal-bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, 0.16); }
.portal-body { padding: 22px 24px 26px; }
.portal-pin {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--acc2); margin-bottom: 10px;
}
.portal-title { font-size: clamp(18px, 2.4vw, 23px); line-height: 1.22; color: #fff; margin-bottom: 16px; }
.portal-nav { list-style: none; counter-reset: pn; }
.portal-nav li {
  counter-increment: pn; position: relative;
  padding: 9px 0 9px 32px; font-size: 14px; color: #d8cfc8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.portal-nav li:last-child { border-bottom: 0; }
.portal-nav li::before {
  content: counter(pn); position: absolute; left: 0; top: 8px;
  width: 19px; height: 19px; border-radius: 5px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800; color: var(--acc);
  border: 1px solid rgba(232, 67, 10, 0.4);
}
.bonus-copy .vlist li { font-size: 15px; }
.bonus-worth { margin-top: 14px; font-size: 13.5px; color: var(--mut); }
.bonus-worth strong { color: #e8a08a; }
@media (max-width: 760px) {
  .bonus-stack { grid-template-columns: 1fr; gap: 22px; }
}

/* ---------- FAQ ---------- */
.faq details {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 20px; margin-top: 12px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.faq summary { cursor: pointer; font-weight: 700; color: var(--txt); list-style: none; position: relative; padding-right: 28px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: -2px; font-size: 20px; color: var(--acc); transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 10px; color: var(--mut); font-size: 14.5px; }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); padding: 40px 0 0; text-align: center; overflow: hidden; margin-top: 40px; }
.foot-links { font-size: 14px; color: var(--mut); margin-bottom: 6px; }
.foot-links a { color: var(--mut); }
.foot-links a:hover { color: var(--txt); }
.foot-copy { font-size: 12.5px; color: var(--mut); opacity: 0.7; }
.foot-mark {
  font-size: clamp(70px, 16vw, 170px); font-weight: 800; letter-spacing: 0.04em;
  line-height: 1; transform: translateY(18%);
  background: linear-gradient(180deg, rgba(232, 67, 10, 0.22), transparent 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  user-select: none;
}

/* ---------- orbit 3D (hero /master-prompt) ---------- */
.orbit-mp { position: relative; height: 340px; margin-top: 6px; }
#mp-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.mchip {
  position: absolute; top: 50%; left: 50%;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  background: rgba(26, 16, 12, 0.85);
  border: 1px solid rgba(232, 67, 10, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  will-change: transform;
}
.mchip-core {
  z-index: 6; padding: 11px 18px; font-size: 14px; color: var(--txt);
  border-color: rgba(232, 67, 10, 0.5);
  box-shadow: 0 0 36px rgba(232, 67, 10, 0.26), 0 0 80px rgba(255, 122, 60, 0.2);
  animation: mpPulse 3.2s ease-in-out infinite;
}
.mchip-sat { color: #f5d7c8; }
.mchip-sat::before { content: "✦ "; color: var(--warn); }
@keyframes mpPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(232, 67, 10, 0.2), 0 0 70px rgba(255, 122, 60, 0.16); }
  50% { box-shadow: 0 0 46px rgba(232, 67, 10, 0.36), 0 0 110px rgba(255, 122, 60, 0.3); }
}
@media (max-width: 760px) {
  .orbit-mp { height: 270px; }
  .mchip { font-size: 11.5px; padding: 6px 11px; }
  .mchip-core { font-size: 13px; padding: 9px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .mchip-core { animation: none; }
}

/* Hero /course — Hub → 3 Platform (aksen hijau automation, samain /auto) */
.orbit-course { position: relative; height: 340px; margin-top: 6px; }
#course-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.cchip {
  position: absolute; top: 50%; left: 50%;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  background: rgba(26, 16, 12, 0.85);
  border: 1px solid rgba(232, 67, 10, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cchip-core {
  z-index: 6; padding: 11px 18px; font-size: 14px; color: var(--txt);
  border-color: rgba(52, 211, 153, 0.45);
  box-shadow: 0 0 36px rgba(52, 211, 153, 0.22), 0 0 80px rgba(232, 67, 10, 0.2);
  animation: coursePulse 3.2s ease-in-out infinite;
}
.cchip-sat { color: #f5d7c8; }
@keyframes coursePulse {
  0%, 100% { box-shadow: 0 0 30px rgba(52, 211, 153, 0.18), 0 0 70px rgba(232, 67, 10, 0.16); }
  50% { box-shadow: 0 0 46px rgba(52, 211, 153, 0.32), 0 0 110px rgba(232, 67, 10, 0.3); }
}
@media (max-width: 760px) {
  .orbit-course { height: 270px; }
  .cchip { font-size: 11.5px; padding: 6px 11px; }
  .cchip-core { font-size: 13px; padding: 9px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .cchip-core { animation: none; }
}

/* ---------- badge trust Claude ---------- */
.claude-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(217, 119, 87, 0.35);
  background: rgba(217, 119, 87, 0.08);
  font-size: 13px; color: var(--mut);
}
.claude-badge strong { color: #e8a08a; }

/* ---------- testimonial gaya chat (WA / IG DM) ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.proof-grid.one { grid-template-columns: minmax(0, 430px); justify-content: center; }
.proof-grid.two { grid-template-columns: repeat(2, minmax(0, 400px)); justify-content: center; }
.chat-card {
  border-radius: 18px; overflow: hidden; margin: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.chat-head {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.chat-head strong { display: block; font-size: 13.5px; color: var(--txt); line-height: 1.2; }
.chat-head em { font-style: normal; font-size: 11px; }
.ava {
  width: 34px; height: 34px; border-radius: 50%; flex: 0 0 34px;
  display: grid; place-items: center; font-weight: 800; font-size: 14px; color: #fff;
}
.chat-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; min-height: 150px; }
.cb {
  max-width: 88%; padding: 8px 11px; border-radius: 12px;
  font-size: 12.5px; line-height: 1.45; color: #e6e9f5; position: relative;
}
.cb .ct { display: block; text-align: right; font-size: 9.5px; opacity: 0.55; margin-top: 3px; }
.chat-card figcaption { font-size: 11px; color: var(--mut); padding: 0 14px 12px; text-align: right; }
/* WhatsApp dark */
.chat-wa .chat-head { background: #1f2c34; }
.chat-wa .chat-head em { color: #8696a0; }
.chat-wa .ava { background: #00a884; }
.chat-wa .chat-body { background: #0b141a; }
.chat-wa .cb-in { background: #202c33; align-self: flex-start; border-top-left-radius: 4px; }
.chat-wa .cb-out { background: #005c4b; align-self: flex-end; border-top-right-radius: 4px; }
/* Instagram DM dark */
.chat-ig .chat-head { background: #101010; }
.chat-ig .chat-head em { color: #8e8e8e; }
.chat-ig .ava { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.chat-ig .chat-body { background: #000; }
.chat-ig .cb-in { background: #262626; align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-ig .cb-out { background: linear-gradient(135deg, #3797f0, #7b5dfa); align-self: flex-end; border-bottom-right-radius: 4px; }
@media (max-width: 760px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* ---------- reveal & tilt ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].in { opacity: 1; transform: none; }
[data-tilt] { transform-style: preserve-3d; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- mobile ---------- */
@media (max-width: 760px) {
  .hero { padding: 56px 0 40px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .price-box { padding: 30px 20px; }
}

/* ===== /master-prompt — demo flow (prompt -> hasil) ===== */
.demo-flow { display: grid; gap: 22px; margin-top: 28px; }
.demo-shot { margin: 0; border-radius: 18px; overflow: hidden; }
.demo-shot img { display: block; width: 100%; height: auto; }
.demo-shot figcaption {
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--mut);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.demo-shot figcaption strong { color: var(--txt); }
.demo-shot figcaption .hnum { flex: 0 0 auto; font-size: 15px; margin-bottom: 0; }
@media (min-width: 880px) {
  .demo-flow { grid-template-columns: 1fr 1fr; }
  .demo-shot:last-child { grid-column: 1 / -1; }
}

/* ============================================================
   STACK STRIP (logo cloud) — dipakai di SEMUA landing page.
   Port dari pola shadcn "logo-cloud-2" ke static CSS:
   grid berbingkai 2 kolom (mobile) / 4 kolom (desktop),
   checkerboard halus + tanda "+" di tiap persilangan grid.
   Logo di /assets/logos/*.svg — wordmark versi light, dibikin
   putih via filter biar mono (sesuai DNA mono-orange).
   Token-nya sama dengan auto.css — kalau ganti, ganti dua file.
   ============================================================ */
.stack-cloud { padding: 54px 0 30px; }
.stack-cloud .wrap { text-align: center; }
.stack-cloud .sec-sub { margin: 0 auto 30px; }
.stack-fine { margin-top: 18px; font-size: 12px; color: var(--mut); opacity: 0.6; }

.logo-cloud {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
/* garis atas & bawah full-bleed (nembus lebar viewport) */
.logo-cloud::before,
.logo-cloud::after {
  content: ""; position: absolute; left: 50%; width: 100vw;
  transform: translateX(-50%); border-top: 1px solid var(--line);
  pointer-events: none;
}
.logo-cloud::before { top: -1px; }
.logo-cloud::after { bottom: -1px; }

.lc-cell {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 26px 14px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.01em;
  color: var(--mut); opacity: 0.78;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: opacity 0.2s ease, color 0.2s ease;
}
.lc-cell:hover { opacity: 1; color: var(--txt); }
.lc-cell img {
  display: block; height: 20px; width: auto;
  filter: brightness(0) invert(1);
  pointer-events: none; user-select: none;
}
/* YouTube: logonya multi-warna — brightness(0) bikin play-triangle-nya ilang,
   jadi dia pakai invert+grayscale biar detailnya tetep kebaca */
.lc-cell img[alt="YouTube"] { filter: invert(1) grayscale(1); }
.lc-cell svg { flex: 0 0 auto; width: 19px; height: 19px; }

/* checkerboard — mobile (2 kolom): sel 1,4,5,8 */
.lc-cell:nth-child(4n+1), .lc-cell:nth-child(4n) { background: rgba(232, 67, 10, 0.05); }
.lc-cell:nth-child(2n) { border-right: 0; }
.lc-cell:nth-child(n+7) { border-bottom: 0; }

/* tanda "+" di persilangan grid */
.lc-plus { position: absolute; right: -11px; bottom: -11px; width: 22px; height: 22px; z-index: 2; }
.lc-plus::before, .lc-plus::after { content: ""; position: absolute; background: var(--acc); opacity: 0.5; }
.lc-plus::before { left: 50%; top: 4px; bottom: 4px; width: 1px; transform: translateX(-50%); }
.lc-plus::after { top: 50%; left: 4px; right: 4px; height: 1px; transform: translateY(-50%); }
.lc-cell:nth-child(2) .lc-plus { display: none; }

@media (min-width: 760px) {
  .logo-cloud { grid-template-columns: repeat(4, 1fr); }
  .lc-cell { padding: 30px 16px; }
  /* checkerboard — desktop (4 kolom): sel 1,3,6,8 */
  .lc-cell:nth-child(4n+1), .lc-cell:nth-child(4n) { background: none; }
  .lc-cell:nth-child(8n+1), .lc-cell:nth-child(8n+3),
  .lc-cell:nth-child(8n+6), .lc-cell:nth-child(8n) { background: rgba(232, 67, 10, 0.05); }
  .lc-cell:nth-child(2n) { border-right: 1px solid var(--line); }
  .lc-cell:nth-child(4n) { border-right: 0; }
  .lc-cell:nth-child(n+5) { border-bottom: 0; }
  .lc-cell:nth-child(2) .lc-plus { display: block; }
  .lc-cell:nth-child(5) .lc-plus { display: none; }
}
@media (max-width: 420px) {
  .lc-cell { font-size: 13px; gap: 7px; padding: 22px 9px; }
  .lc-cell img { height: 17px; }
  .lc-cell svg { width: 17px; height: 17px; }
}
