/* ── SENSOR FABRIC SECTION ─────────────────────────── */
.sf { position: relative; overflow: hidden; padding: 120px 0 140px; border-top: 1px solid var(--hair); }
.sf__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 600px at 18% 12%, rgba(59,130,246,0.10), transparent 60%),
    radial-gradient(700px 500px at 82% 88%, rgba(59,130,246,0.06), transparent 60%);
}
.sf .container { position: relative; z-index: 1; }

/* Hero */
.sf__hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 140px;
}
.sf__copy h2.sf__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink-100);
  margin: 18px 0 22px;
}
.sf__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-70);
  max-width: 560px;
  margin-bottom: 32px;
}
.sf__lead strong { color: var(--ink-100); font-weight: 600; }
.sf__sig {
  display: flex;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 22px 0;
  margin-bottom: 24px;
}
.sf__sig-item { flex: 1; padding-right: 22px; }
.sf__sig-item + .sf__sig-item { border-left: 1px solid var(--hair); padding-left: 22px; }
.sf__sig-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-100);
  line-height: 1;
}
.sf__sig-lab {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-70);
  margin-top: 8px;
}
.sf__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sf__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-80);
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: rgba(255,255,255,0.015);
}
.sf__chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: sf-dot 1.8s ease-in-out infinite;
}
.sf__chip:nth-child(2) .sf__chip-dot { animation-delay: 0.3s; }
.sf__chip:nth-child(3) .sf__chip-dot { animation-delay: 0.6s; }
.sf__chip:nth-child(4) .sf__chip-dot { animation-delay: 0.9s; }
@keyframes sf-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Motion panel — live device matrix */
.sf__motion { position: relative; padding: 14px; zoom: 0.8; }
.sf__panel {
  border: 1px solid var(--hair);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(8,13,24,0.96), rgba(8,13,24,0.86));
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.6),
    0 0 0 1px rgba(59,130,246,0.10),
    inset 0 1px 0 rgba(255,255,255,0.03);
  overflow: hidden;
}
.sf__panel-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hair);
  background: rgba(255,255,255,0.02);
}
.sf__panel-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.sf__panel-dot--r { background: #ff5f57; }
.sf__panel-dot--y { background: #febc2e; }
.sf__panel-dot--g { background: #28c840; }
.sf__panel-name {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-70);
}
.sf__panel-pill {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #28c840;
  border: 1px solid rgba(40,200,64,0.4);
  border-radius: 999px;
  padding: 4px 10px;
  display: inline-flex; align-items: center; gap: 6px;
}
.sf__panel-pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #28c840; box-shadow: 0 0 8px #28c840;
  animation: sf-pulse 1.6s ease-out infinite;
}
@keyframes sf-pulse { 0%,100% {opacity:1;} 50% {opacity:0.4;} }

/* Channel rows */
.sf__channels { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.sf__channel {
  display: grid;
  grid-template-columns: 40px 1fr 130px 90px;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(96,165,250,0.10);
  border-radius: 8px;
  background: rgba(8,13,24,0.5);
  opacity: 0;
  transform: translateX(-6px);
  animation: sf-row-in 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}
.sf__channel:nth-child(1) { animation-delay: 0.10s; }
.sf__channel:nth-child(2) { animation-delay: 0.30s; }
.sf__channel:nth-child(3) { animation-delay: 0.50s; }
.sf__channel:nth-child(4) { animation-delay: 0.70s; }
.sf__channel:nth-child(5) { animation-delay: 0.90s; }
.sf__channel:nth-child(6) { animation-delay: 1.10s; }
@keyframes sf-row-in { to { opacity: 1; transform: translateX(0); } }

.sf__ch-ico {
  width: 28px; height: 28px;
  border: 1px solid rgba(96,165,250,0.30);
  background: rgba(59,130,246,0.05);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 6px;
  color: var(--accent);
  flex-shrink: 0;
}
.sf__ch-ico svg { width: 16px; height: 16px; display: block; }
.sf__ch-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sf__ch-name {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-100);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sf__ch-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-70);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sf__ch-spark {
  display: flex; align-items: flex-end; gap: 3px;
  height: 22px;
}
.sf__ch-spark span {
  display: block;
  flex: 1;
  background: var(--accent);
  border-radius: 1px;
  opacity: 0.55;
  animation: sf-spark 1.4s ease-in-out infinite;
}
.sf__ch-spark span:nth-child(2)  { animation-delay: 0.08s; }
.sf__ch-spark span:nth-child(3)  { animation-delay: 0.16s; }
.sf__ch-spark span:nth-child(4)  { animation-delay: 0.24s; }
.sf__ch-spark span:nth-child(5)  { animation-delay: 0.32s; }
.sf__ch-spark span:nth-child(6)  { animation-delay: 0.40s; }
.sf__ch-spark span:nth-child(7)  { animation-delay: 0.48s; }
.sf__ch-spark span:nth-child(8)  { animation-delay: 0.56s; }
@keyframes sf-spark {
  0%   { height: 22%; opacity: 0.4; }
  50%  { height: 95%; opacity: 0.95; }
  100% { height: 35%; opacity: 0.55; }
}
.sf__ch-rate {
  text-align: right;
  display: flex; flex-direction: column; gap: 2px;
}
.sf__ch-rate-v {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-90, var(--ink-80));
  letter-spacing: 0.02em;
}
.sf__ch-rate-k {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--ink-70);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Variant — offline / muted */
.sf__channel--muted .sf__ch-spark span { animation: none; opacity: 0.25; height: 30%; }
.sf__channel--muted .sf__ch-ico { color: var(--ink-70); border-color: var(--hair); background: rgba(255,255,255,0.02); }

.sf__panel-foot {
  display: flex; gap: 22px;
  padding: 14px 20px;
  border-top: 1px solid var(--hair);
  background: rgba(255,255,255,0.015);
  flex-wrap: wrap;
}
.sf__metric { display: flex; flex-direction: column; gap: 2px; }
.sf__metric-k { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-70); }
.sf__metric-v { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-90, var(--ink-80)); }

.sf__float {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-80);
  background: rgba(8,13,24,0.92);
  border: 1px solid rgba(96,165,250,0.30);
  border-radius: 999px;
  padding: 6px 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px -10px rgba(0,0,0,0.6);
  z-index: 2;
  animation: sf-float 5s ease-in-out infinite;
}
.sf__float--tl { top: -4px; right: -10px; }
.sf__float--tr { top: 38px; left: -14px; animation-delay: 1.6s; }
.sf__float--bl { bottom: 4px; right: -8px; animation-delay: 3s; }
@keyframes sf-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Section heads */
.sf__section-head { margin: 0 0 56px; max-width: 880px; }
.sf__section-head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* Pipeline (5 stages) */
.sf__pipe {
  list-style: none; padding: 0; margin: 0 0 140px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--hair);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8,13,24,0.4), rgba(8,13,24,0.15));
  position: relative;
}
.sf__stage {
  padding: 28px 24px 28px;
  border-right: 1px solid var(--hair);
  display: flex; flex-direction: column;
  position: relative;
  transition: background 280ms ease;
}
.sf__stage:hover { background: rgba(59,130,246,0.04); }
.sf__stage:last-child { border-right: 0; }
.sf__stage-mark {
  width: 36px; height: 36px;
  border: 1px solid rgba(96,165,250,0.28);
  background: rgba(8,13,24,0.92);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  color: var(--accent);
}
.sf__stage-mark svg { width: 22px; height: 22px; display: block; }
.sf__stage-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.sf__stage h4 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--ink-100);
  margin: 0 0 10px;
  line-height: 1.2;
}
.sf__stage p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-70);
  margin: 0;
}
.sf__stage p em { font-style: normal; color: var(--accent); font-family: var(--font-mono); font-size: 11.5px; }

/* Capabilities (3×2) */
.sf__caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 140px;
}
.sf__cap {
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 26px 24px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.005));
  transition: transform 280ms cubic-bezier(0.22,1,0.36,1), border-color 280ms ease, background 280ms ease;
}
.sf__cap:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.4);
  background: linear-gradient(180deg, rgba(59,130,246,0.06), rgba(59,130,246,0.015));
}
.sf__cap-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.sf__cap-mo {
  width: 36px; height: 36px;
  border: 1px solid rgba(96,165,250,0.28);
  background: rgba(59,130,246,0.05);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--accent);
  flex-shrink: 0;
}
.sf__cap-mo svg { width: 24px; height: 24px; display: block; }
.sf__cap:hover .sf__cap-mo {
  border-color: rgba(96,165,250,0.55);
  background: rgba(59,130,246,0.12);
}
.sf__cap-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.sf__cap h4 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink-100);
  margin: 0 0 10px;
  line-height: 1.2;
}
.sf__cap p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0 0 16px;
}
.sf__cap-meta {
  display: flex; flex-wrap: wrap; gap: 6px;
  border-top: 1px solid var(--hair);
  padding-top: 14px;
}
.sf__cap-meta span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--ink-70);
  padding: 4px 9px;
  border: 1px solid var(--hair);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
}

/* Business value */
.sf__value {
  border: 1px solid var(--hair);
  border-radius: 14px;
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(59,130,246,0.08), transparent 60%),
    linear-gradient(180deg, rgba(8,13,24,0.6), rgba(8,13,24,0.3));
  padding: 48px 48px 40px;
  margin-bottom: 32px;
}
.sf__value-head { margin-bottom: 36px; max-width: 720px; }
.sf__value-head h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-100);
  margin: 14px 0 0;
}
.sf__value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.sf__vcell {
  padding: 0 24px;
  border-right: 1px solid var(--hair);
}
.sf__vcell:last-child { border-right: 0; }
.sf__vcell:first-child { padding-left: 0; }
.sf__vnum {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink-100);
  margin-bottom: 10px;
}
.sf__vname {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.sf__vcell p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0;
}

.sf__closing {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-70);
  max-width: 900px;
  margin: 0;
}
.sf__closing strong { color: var(--ink-100); font-weight: 500; }

/* Responsive */
@media (max-width: 1080px) {
  .sf__hero { grid-template-columns: 1fr; gap: 40px; }
  .sf__pipe { grid-template-columns: repeat(3, 1fr); }
  .sf__pipe::before { display: none; }
  .sf__stage { border-bottom: 1px solid var(--hair); }
  .sf__stage:nth-child(3n) { border-right: 0; }
  .sf__caps { grid-template-columns: repeat(2, 1fr); }
  .sf__value-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .sf__vcell:nth-child(2) { border-right: 0; }
  .sf__vcell:nth-child(3), .sf__vcell:nth-child(4) { padding-left: 0; padding-top: 0; }
}
@media (max-width: 640px) {
  .sf { padding: 80px 0 90px; }
  .sf__pipe { grid-template-columns: 1fr; }
  .sf__stage { border-right: 0; border-bottom: 1px solid var(--hair); }
  .sf__stage:last-child { border-bottom: 0; }
  .sf__caps { grid-template-columns: 1fr; }
  .sf__sig { flex-wrap: wrap; gap: 20px 0; }
  .sf__sig-item + .sf__sig-item { border-left: 0; padding-left: 0; }
  .sf__channel { grid-template-columns: 32px 1fr 80px; }
  .sf__channel > :nth-child(3) { display: none; }
  .sf__value { padding: 32px 24px 24px; }
  .sf__value-grid { grid-template-columns: 1fr; }
  .sf__vcell { border-right: 0; padding: 0 0 18px; border-bottom: 1px solid var(--hair); }
  .sf__vcell:last-child { border-bottom: 0; padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .sf__channel, .sf__chip-dot, .sf__panel-pill::before, .sf__float, .sf__ch-spark span { animation: none !important; opacity: 1 !important; transform: none !important; }
}


/* ── Deck-sourced sensing detail (Layer 02) ── */
.sfx-sec { margin-top: 96px; }
.sfx-fam h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #7dd3fc; margin-bottom: 16px; }
.sfx-fam ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.sfx-fam li { position: relative; padding-left: 16px; font-size: 13.5px; line-height: 1.45; color: var(--ink-90); }
.sfx-fam li::before { content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: 0.75; }
.sfx-bands { display: grid; gap: 12px; }
.sfx-band { display: grid; grid-template-columns: 160px 1fr auto; gap: 20px; align-items: center; padding: 16px 20px; border: 1px solid var(--hair); border-radius: 10px; background: var(--bg-1); }
.sfx-band__t { font-family: var(--font-mono); font-size: 15px; color: #7dd3fc; }
.sfx-band__n { font-size: 14.5px; color: var(--ink-100); }
.sfx-band__d { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-70); letter-spacing: 0.06em; }
.sfx-note { padding: 20px 22px; border: 1px solid rgba(59,130,246,0.28); border-radius: 10px; background: rgba(59,130,246,0.05); }
.sfx-note h5 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: #7dd3fc; margin-bottom: 10px; }
.sfx-note p { font-size: 13.5px; line-height: 1.55; color: var(--ink-70); }
.sfx-tamper { display: grid; gap: 10px; }
.sfx-trow { display: grid; grid-template-columns: 200px 1fr 260px; gap: 20px; align-items: baseline; padding: 15px 20px; border: 1px solid var(--hair); border-radius: 10px; background: var(--bg-1); }
.sfx-trow__c { font-family: var(--font-mono); font-size: 13px; color: var(--ink-100); }
.sfx-trow__s { font-size: 13px; color: var(--ink-70); line-height: 1.45; }
.sfx-trow__r { font-size: 13px; color: #7dd3fc; line-height: 1.45; }
.sfx-caveat { font-family: var(--font-mono); font-size: 12px; line-height: 1.6; letter-spacing: 0.02em; color: var(--ink-70); margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--hair); }
@media (max-width: 1024px) {
  .sfx-band { grid-template-columns: 1fr; gap: 8px; }
  .sfx-trow { grid-template-columns: 1fr; gap: 8px; }
}
