:root {
  --efact-font: "OpenAI Sans", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #050505;
  --surface: #0d0d0d;
  --surface-2: #131313;
  --text: #f6f3ea;
  --muted: #aca594;
  --line: #2a2a2a;
  --line-2: #3a3a3a;
  --yellow: #ffe04a;
  --yellow-strong: #ffd000;
  --max-width: 1320px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.efact-ai-news-preview {
  padding-bottom: clamp(3.8rem, 6vw, 6rem);
}

.efact-ai-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--efact-line);
}

.efact-ai-news-card {
  border-bottom: 1px solid var(--efact-line);
}

.efact-ai-news-card:nth-child(odd) {
  border-right: 1px solid var(--efact-line);
}

.efact-ai-news-card a {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(140px, 0.36fr) minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.2vw, 1.7rem);
  align-items: center;
  color: var(--efact-ink);
  padding: clamp(1rem, 2vw, 1.35rem);
  transition: background 0.22s ease, padding-left 0.22s ease;
}

.efact-ai-news-card a:hover {
  background: #fafafa;
  padding-left: clamp(1.25rem, 2.4vw, 1.75rem);
}

.efact-ai-news-card p,
.efact-ai-news-card small,
.efact-news-detail-grid span,
.efact-news-detail-grid p {
  margin: 0;
  color: var(--efact-muted);
}

.efact-ai-news-card h3 {
  margin: 0.55rem 0 0.65rem;
  max-width: 28ch;
  font-family: var(--efact-font);
  font-size: clamp(1.32rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.06;
}

.efact-ai-news-card strong {
  justify-self: end;
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transform: translateX(-6px);
  opacity: 0.72;
  transition: transform 0.22s ease, opacity 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.efact-ai-news-card a:hover strong {
  transform: translateX(0);
  opacity: 1;
  background: var(--efact-ink);
  color: #ffffff;
}

.efact-news-thumb {
  position: relative;
  min-height: 160px;
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 34px 34px;
  overflow: hidden;
}

.efact-news-thumb::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  animation: efactMiniRotate 10s linear infinite;
}

.efact-news-thumb span,
.efact-news-thumb i,
.efact-news-thumb b {
  position: absolute;
  display: block;
}

.efact-news-thumb-rules span {
  left: 18%;
  right: 18%;
  height: 2px;
  background: var(--efact-ink);
}

.efact-news-thumb-rules span:nth-child(1) { top: 34%; }
.efact-news-thumb-rules span:nth-child(2) { top: 48%; width: 50%; }
.efact-news-thumb-rules span:nth-child(3) { top: 62%; width: 68%; }
.efact-news-thumb-rules i {
  right: 18%;
  top: 46%;
  width: 2.4rem;
  height: 2.4rem;
  border: 2px solid var(--efact-ink);
  border-radius: 999px;
  background: #ffffff;
}

.efact-news-thumb-agents span {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--efact-ink);
  border-radius: 999px;
  background: #ffffff;
}

.efact-news-thumb-agents span:nth-child(1) { left: 16%; top: 22%; }
.efact-news-thumb-agents span:nth-child(2) { right: 16%; top: 22%; }
.efact-news-thumb-agents span:nth-child(3) { left: 20%; bottom: 20%; }
.efact-news-thumb-agents span:nth-child(4) { right: 20%; bottom: 20%; background: var(--efact-ink); }
.efact-news-thumb-agents i {
  left: 50%;
  top: 50%;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: var(--efact-ink);
  transform: translate(-50%, -50%);
}

.efact-news-thumb-rag span {
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  background: #ffffff;
  padding: 0.35rem 0.55rem;
  font-size: 0.82rem;
}

.efact-news-thumb-rag span:nth-child(1) { left: 12%; top: 18%; }
.efact-news-thumb-rag span:nth-child(2) { right: 13%; top: 42%; }
.efact-news-thumb-rag span:nth-child(3) { left: 30%; bottom: 18%; border-color: var(--efact-ink); }
.efact-news-thumb-rag i {
  left: 16%;
  right: 16%;
  top: 50%;
  height: 2px;
  background-image: linear-gradient(90deg, transparent 0%, var(--efact-ink) 42%, transparent 72%);
  background-size: 180% 100%;
  animation: efactFlow 2.4s ease-in-out infinite;
}

.efact-news-thumb-voice {
  display: grid;
  grid-template-columns: repeat(5, 0.75rem);
  place-content: center;
  gap: 0.5rem;
}

.efact-news-thumb-voice i {
  position: static;
  width: 0.75rem;
  min-height: 4.6rem;
  border-radius: 999px;
  background: var(--efact-ink);
  animation: efactVoice 1.2s ease-in-out infinite;
}

.efact-news-thumb-voice i:nth-child(2) { animation-delay: 0.1s; }
.efact-news-thumb-voice i:nth-child(3) { animation-delay: 0.2s; }
.efact-news-thumb-voice i:nth-child(4) { animation-delay: 0.3s; }
.efact-news-thumb-voice i:nth-child(5) { animation-delay: 0.4s; }

.efact-news-thumb-search span {
  left: 16%;
  height: 2px;
  background: var(--efact-ink);
}

.efact-news-thumb-search span:nth-child(1) { top: 34%; width: 68%; }
.efact-news-thumb-search span:nth-child(2) { top: 49%; width: 48%; }
.efact-news-thumb-search span:nth-child(3) { top: 64%; width: 76%; }
.efact-news-thumb-search b {
  right: 15%;
  top: 20%;
  width: 2.6rem;
  height: 2.6rem;
  border: 2px solid var(--efact-ink);
  border-radius: 999px;
  background: #ffffff;
}

.efact-news-thumb-social span {
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid var(--efact-ink);
  border-radius: 999px;
  background: #ffffff;
}

.efact-news-thumb-social span:nth-child(1) { left: 18%; top: 30%; }
.efact-news-thumb-social span:nth-child(2) { left: 44%; top: 18%; background: var(--efact-ink); }
.efact-news-thumb-social span:nth-child(3) { right: 18%; bottom: 28%; }
.efact-news-thumb-social i {
  left: 18%;
  right: 18%;
  bottom: 22%;
  height: 2px;
  background-image: linear-gradient(90deg, transparent 0%, var(--efact-ink) 42%, transparent 72%);
  background-size: 180% 100%;
  animation: efactFlow 2.5s ease-in-out infinite;
}

.efact-signal-newsroom {
  min-height: 680px;
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 48px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.72fr);
  overflow: hidden;
}

.efact-signal-radar {
  position: relative;
  min-height: 680px;
  border-right: 1px solid var(--efact-line);
}

.efact-signal-radar::before,
.efact-signal-radar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.efact-signal-radar::before {
  width: min(74%, 560px);
  aspect-ratio: 1;
  animation: efactMiniRotate 14s linear infinite;
}

.efact-signal-radar::after {
  width: min(48%, 360px);
  aspect-ratio: 1;
  animation: efactMiniRotate 9s linear reverse infinite;
}

.signal-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: clamp(8rem, 14vw, 11rem);
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--efact-ink);
  color: #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 600;
  transform: translate(-50%, -50%);
}

.signal-node {
  position: absolute;
  z-index: 3;
  width: clamp(8.4rem, 13vw, 12rem);
  min-height: 4.7rem;
  border: 1px solid var(--efact-ink);
  border-radius: 999px;
  background: #ffffff;
  color: var(--efact-ink);
  display: grid;
  place-items: center;
  gap: 0.16rem;
  text-align: center;
  font: inherit;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.signal-node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 92%;
  height: 2px;
  background-image: linear-gradient(90deg, transparent 0%, var(--efact-ink) 45%, transparent 82%);
  background-size: 180% 100%;
  background-position: -180% 0;
  transform-origin: left center;
  opacity: 0.38;
  animation: efactFlow 2.8s ease-in-out infinite;
}

.signal-node span {
  font-weight: 600;
}

.signal-node small {
  color: var(--efact-muted);
  font-size: 0.78rem;
  transition: color 0.22s ease;
}

.signal-node:hover,
.signal-node.is-active {
  background: var(--efact-ink);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(17, 17, 17, 0.12);
}

.signal-node:hover small,
.signal-node.is-active small {
  color: rgba(255, 255, 255, 0.72);
}

.signal-node-one { left: 9%; top: 18%; }
.signal-node-two { right: 11%; top: 16%; }
.signal-node-three { right: 7%; top: 44%; }
.signal-node-four { right: 18%; bottom: 14%; }
.signal-node-five { left: 10%; bottom: 16%; }
.signal-node-six { left: 6%; top: 46%; }

.efact-signal-briefing {
  padding: clamp(1rem, 2.4vw, 1.7rem);
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  background: #ffffff;
}

.efact-signal-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--efact-line);
}

.efact-signal-flow span {
  min-height: 5rem;
  border-right: 1px solid var(--efact-line);
  display: grid;
  place-items: center;
  color: var(--efact-muted);
  font-size: 0.82rem;
  background-image: linear-gradient(90deg, transparent 0%, var(--efact-ink) 42%, transparent 72%);
  background-repeat: no-repeat;
  background-size: 180% 3px;
  background-position: -180% 100%;
  animation: efactFlow 2.4s ease-in-out infinite;
}

.efact-signal-flow span:nth-child(2) { animation-delay: 0.14s; }
.efact-signal-flow span:nth-child(3) { animation-delay: 0.28s; }
.efact-signal-flow span:nth-child(4) { animation-delay: 0.42s; border-right: 0; }

.efact-signal-briefing p {
  margin: 0;
  color: var(--efact-muted);
  line-height: 1.45;
}

.efact-signal-briefing h3 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(2.05rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
}

.efact-signal-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--efact-line);
  border-bottom: 1px solid var(--efact-line);
}

.efact-signal-metrics article {
  min-height: 150px;
  border-right: 1px solid var(--efact-line);
  padding: 0.9rem;
  display: grid;
  align-content: space-between;
  gap: 0.5rem;
}

.efact-signal-metrics article:last-child {
  border-right: 0;
}

.efact-signal-metrics span {
  color: var(--efact-muted);
}

.efact-signal-metrics strong {
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1;
}

.efact-signal-metrics i {
  width: 100%;
  height: 4px;
  background: var(--efact-soft-line);
  overflow: hidden;
}

.efact-signal-metrics i::after {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  background: var(--efact-ink);
  animation: efactMetricPulse 0.85s ease;
}

.efact-signal-briefing > a {
  width: fit-content;
  border: 1px solid var(--efact-ink);
  border-radius: 999px;
  background: var(--efact-ink);
  color: #ffffff;
  padding: 0.72rem 1rem;
  font-weight: 600;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.efact-signal-briefing > a:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: var(--efact-ink);
}

.efact-news-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--efact-line);
  border-left: 1px solid var(--efact-line);
}

.efact-news-detail-grid article {
  min-height: 360px;
  border-right: 1px solid var(--efact-line);
  border-bottom: 1px solid var(--efact-line);
  padding: clamp(1rem, 2vw, 1.35rem);
  display: grid;
  align-content: space-between;
  gap: 1rem;
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 46px 46px;
}

.efact-news-detail-grid h3 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(1.45rem, 2.4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.04;
}

.efact-news-detail-grid a {
  width: fit-content;
  color: var(--efact-ink);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

@media (max-width: 1100px) {
  .efact-ai-news-grid,
  .efact-news-detail-grid,
  .efact-signal-newsroom {
    grid-template-columns: 1fr;
  }

  .efact-signal-radar {
    min-height: 560px;
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .efact-ai-news-card:nth-child(odd) {
    border-right: 0;
  }

  .efact-ai-news-card a {
    grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
  }

  .efact-ai-news-card strong {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .efact-signal-newsroom {
    min-height: auto;
  }

  .efact-signal-radar {
    min-height: auto;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .efact-signal-radar::before,
  .efact-signal-radar::after,
  .signal-core,
  .signal-node::before {
    display: none;
  }

  .signal-node,
  .signal-node-one,
  .signal-node-two,
  .signal-node-three,
  .signal-node-four,
  .signal-node-five,
  .signal-node-six {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: 4rem;
  }

  .efact-signal-metrics {
    grid-template-columns: 1fr;
  }

  .efact-signal-metrics article {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .efact-signal-metrics article:last-child {
    border-bottom: 0;
  }

  .efact-ai-news-card a {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .efact-news-thumb {
    min-height: 220px;
  }

  .efact-news-detail-grid article {
    min-height: 280px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--text);
  background: radial-gradient(circle at 88% 0%, rgba(255, 224, 74, 0.14) 0%, rgba(255, 224, 74, 0) 22%),
              radial-gradient(circle at 0% 70%, rgba(255, 224, 74, 0.08) 0%, rgba(255, 224, 74, 0) 26%),
              var(--bg);
  font-family: var(--efact-font);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body.is-leaving .site-shell {
  opacity: 0;
  transform: translateY(10px);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: var(--yellow);
  z-index: 200;
  pointer-events: none;
}

.page-wipe {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #111 0%, #050505 100%);
  z-index: 180;
  pointer-events: none;
  transform: translateY(0);
  animation: pageWipe 0.8s cubic-bezier(0.7, 0, 0.2, 1) forwards;
}

@keyframes pageWipe {
  to {
    transform: translateY(-100%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 260;
  width: min(var(--max-width), 94vw);
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  margin-top: 0.4rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line-2);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(8px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--efact-font);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-size: 0.9rem;
}

.logo-text {
  font-size: 0.92rem;
  text-transform: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.main-nav a {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--yellow);
}

.main-nav a.is-active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.nav-cta {
  border: 1px solid var(--yellow);
  color: var(--yellow) !important;
  padding: 0.42rem 0.66rem;
  font-weight: 700;
  background: rgba(255, 224, 74, 0.06);
}

.menu-toggle {
  display: none;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid var(--yellow);
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  background: var(--yellow);
}

main,
.site-footer,
.bottom-bar {
  width: min(var(--max-width), 94vw);
  margin: 0 auto;
}

.section {
  border-top: 1px solid var(--line);
  padding: 5rem 0;
}

.section-tight {
  padding-top: 2.2rem;
}

.page-intro {
  border-top: 0;
  padding-top: 3.3rem;
  padding-bottom: 3rem;
}

.page-overview .page-hero {
  padding-bottom: 4.4rem;
}

.page-overview {
  --tbwa-blue: #0d42d3;
}

.page-overview .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.56rem clamp(1rem, 3.5vw, 2.8rem);
  border-top: 8px solid #000;
  border-bottom: 1px solid rgba(20, 21, 25, 0.14);
  background: rgba(239, 239, 236, 0.94);
  z-index: 280;
}

.page-overview .site-header.scrolled {
  margin-top: 0;
  border-top: 0;
  border-bottom: 1px solid var(--line-2);
  background: rgba(5, 5, 5, 0.92);
}

.page-overview .logo-mark {
  display: none;
}

.page-overview .logo-text {
  font-family: var(--efact-font);
  font-weight: 900;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--tbwa-blue);
}

.page-overview .main-nav {
  gap: clamp(0.8rem, 2.2vw, 2rem);
}

.page-overview .main-nav a {
  color: var(--tbwa-blue);
  font-family: var(--efact-font);
  font-size: clamp(0.95rem, 1.2vw, 1.5rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.page-overview .main-nav a.is-active {
  color: var(--tbwa-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page-overview .site-header.scrolled .logo-text,
.page-overview .site-header.scrolled .main-nav a,
.page-overview .site-header.scrolled .search-btn {
  color: var(--yellow);
}

.search-btn {
  border: 0;
  background: transparent;
  color: var(--tbwa-blue);
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.page-work {
  background: #efefec;
  color: #141519;
}

.page-work .site-shell {
  background: #efefec;
}

.page-work main,
.page-work .site-footer,
.page-work .bottom-bar {
  width: min(1680px, 98vw);
}

.page-work .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.8rem clamp(1rem, 2.8vw, 2.2rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(20, 21, 25, 0.14);
  background: rgba(239, 239, 236, 0.94);
  z-index: 280;
}

.page-work .site-header.scrolled {
  margin-top: 0;
  border: 0;
  border-bottom: 1px solid rgba(20, 21, 25, 0.15);
  background: rgba(239, 239, 236, 0.92);
  backdrop-filter: blur(7px);
}

.page-work .logo-mark {
  display: none;
}

.page-work .logo-text {
  font-family: var(--efact-font);
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1b20;
}

.page-work .work-main-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: clamp(1rem, 1.7vw, 1.7rem);
}

.page-work .main-nav a {
  color: #191a1f;
  font-family: var(--efact-font);
  font-size: clamp(1rem, 1.15vw, 1.3rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.page-work .main-nav a.is-active {
  color: #121317;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.work-pricing-link {
  justify-self: end;
  font-family: var(--efact-font);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.work-header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.work-readmore-circle {
  width: clamp(72px, 5.2vw, 94px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #1b1c20;
  background: #efefec;
  color: #1b1c20;
  font-family: var(--efact-font);
  font-size: clamp(0.84rem, 0.9vw, 1rem);
  line-height: 1.05;
  text-align: center;
  padding: 0.35rem;
  flex: 0 0 auto;
  overflow: hidden;
}

.work-page-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100vh;
  padding-top: clamp(4.8rem, 8vw, 6.2rem);
}

.work-page-hero-inner {
  width: min(1680px, 98vw);
  margin: 0 auto;
  min-height: calc(100vh - 5.4rem);
  display: grid;
  align-content: end;
}

.work-page-meta {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 1rem;
  align-items: end;
  margin-bottom: clamp(1.7rem, 3.6vw, 3.2rem);
}

.work-page-labels {
  display: grid;
  gap: 0.15rem;
}

.work-page-labels p {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(1rem, 1.08vw, 1.25rem);
}

.work-page-copy {
  margin: 0;
  max-width: 16.8ch;
  font-family: var(--efact-font);
  font-size: clamp(2.3rem, 4.5vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.work-page-wordmark {
  position: relative;
  padding-left: clamp(2.3rem, 4vw, 4.2rem);
}

.work-page-wordmark h1 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(8.6rem, 28vw, 27rem);
  line-height: 0.78;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.work-page-cutout {
  position: absolute;
  left: 0;
  bottom: clamp(0.2rem, 1.1vw, 1rem);
  margin: 0;
  width: clamp(70px, 7.8vw, 130px);
  aspect-ratio: 0.42 / 1;
  overflow: hidden;
}

.work-page-cutout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-page-projects {
  border-top: 1px solid rgba(20, 21, 25, 0.12);
}

.page-work .home-work-title {
  font-family: var(--efact-font);
  font-weight: 700;
  text-transform: none;
}

.page-work .site-footer {
  border-top: 1px solid rgba(20, 21, 25, 0.18);
}

.page-work .site-footer h4 {
  color: #131418;
}

.page-work .site-footer a,
.page-work .site-footer p {
  color: #565852;
}

.page-work .bottom-bar {
  border-top: 1px solid rgba(20, 21, 25, 0.18);
  color: #6a6c67;
}

.page-work .bottom-bar button {
  border-color: #1b1c20;
  color: #1b1c20;
}

.no-fluff-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #efefec;
  color: #141519;
  padding: clamp(5.2rem, 8.6vw, 7.6rem) 0 clamp(3.4rem, 7.4vw, 5.8rem);
}

.no-fluff-meta,
.no-fluff-display,
.no-fluff-benefits {
  width: min(var(--max-width), 98vw);
  margin: 0 auto;
}

.no-fluff-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  font-family: var(--efact-font);
  font-size: clamp(0.95rem, 1.1vw, 1.35rem);
}

.no-fluff-meta p {
  margin: 0;
}

.no-fluff-meta-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 1.4vw, 1.6rem);
}

.no-fluff-meta-right {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.no-fluff-meta-right a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.no-fluff-display {
  margin-top: clamp(1.2rem, 2.4vw, 2.1rem);
}

.no-fluff-line {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(6.4rem, 21vw, 21rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.no-fluff-line-media {
  display: grid;
  grid-template-columns: auto clamp(280px, 29vw, 520px);
  align-items: end;
  gap: clamp(0.7rem, 1.8vw, 1.4rem);
}

.no-fluff-line-media > span {
  display: block;
}

.no-fluff-thumb {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 1.52 / 1;
  overflow: hidden;
  align-self: center;
}

.no-fluff-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.no-fluff-thumb::after {
  content: "WHAT";
  position: absolute;
  right: 0.4rem;
  top: 0.6rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.22em;
  font-family: var(--efact-font);
  font-size: clamp(0.74rem, 0.95vw, 1rem);
  color: rgba(229, 230, 228, 0.7);
}

.no-fluff-benefits {
  margin-top: clamp(6.8rem, 14vw, 11rem);
  display: grid;
  grid-template-columns: 0.95fr 1fr 1fr;
  gap: clamp(1rem, 2vw, 2rem);
}

.no-fluff-benefit {
  display: grid;
  align-content: start;
  gap: clamp(0.75rem, 1.3vw, 1.1rem);
}

.no-fluff-benefit p,
.no-fluff-benefit h2 {
  margin: 0;
}

.no-fluff-benefit-intro p {
  max-width: 14.5ch;
  font-size: clamp(1.55rem, 1.85vw, 2.2rem);
  line-height: 1.24;
}

.no-fluff-benefit:not(.no-fluff-benefit-intro) {
  border-top: 1px solid rgba(20, 21, 25, 0.18);
  padding-top: 0.95rem;
}

.no-fluff-index {
  font-family: var(--efact-font);
  font-size: clamp(1.25rem, 1.55vw, 1.95rem);
}

.no-fluff-benefit h2 {
  max-width: 18ch;
  font-family: var(--efact-font);
  font-size: clamp(2rem, 2.4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.no-fluff-benefit:not(.no-fluff-benefit-intro) p:last-child {
  max-width: 28ch;
  color: #7f807b;
  font-size: clamp(1.2rem, 1.45vw, 1.75rem);
  line-height: 1.32;
}

.page-work .page-intro,
.page-pricing .page-intro {
  padding-bottom: 2.3rem;
}

.page-pricing .page-title {
  max-width: 11ch;
}

.page-title,
.section-title,
.hero h1,
.hero-side h2,
.benefit-hero p,
.contact-shell h2,
.about-main h2,
.cta-banner h2 {
  font-family: var(--efact-font);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-title {
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  line-height: 0.9;
  max-width: 15ch;
}

.page-lead {
  max-width: 72ch;
  margin: 1rem 0 0;
  color: var(--muted);
}

.hero {
  border-top: 0;
  padding-top: 3.4rem;
}

.hero-carousel {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 100vh;
  border-top: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hero-slider {
  position: relative;
  min-height: calc(100vh - 150px);
  background: var(--yellow);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(6%);
  transition: opacity 0.75s ease, transform 0.75s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-slide-stage {
  min-height: calc(100vh - 230px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(5.2rem, 8vw, 7.4rem) clamp(1rem, 4vw, 2.8rem) 2rem;
  color: #101010;
}

.slide-brand {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(1.5rem, 3vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.slide-copy {
  position: relative;
  z-index: 2;
  max-width: 24ch;
  justify-self: end;
}

.slide-kicker {
  margin: 0 0 0.7rem;
  font-family: var(--efact-font);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-slide h1 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(3.1rem, 8.5vw, 7.8rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: none;
}

.slide-slash {
  position: absolute;
  right: clamp(11rem, 24vw, 24rem);
  top: clamp(4.2rem, 11vh, 8.6rem);
  width: clamp(86px, 8vw, 146px);
  height: clamp(380px, 62vh, 620px);
  background: linear-gradient(165deg, #f7f7f7 0%, #dcdcdc 100%);
  box-shadow: inset -12px 0 rgba(0, 0, 0, 0.24), 0 28px 34px rgba(0, 0, 0, 0.24);
  transform: rotate(-16deg);
  transform-origin: center;
  z-index: 1;
}

.hero-slide.is-active .slide-slash {
  animation: slashPulse 1.2s ease-out;
}

@keyframes slashPulse {
  from {
    transform: rotate(-20deg) translateY(12px);
  }
  to {
    transform: rotate(-16deg) translateY(0);
  }
}

.slide-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.24);
  background: #060606;
  color: #ece7dd;
  padding: 1rem clamp(1rem, 4vw, 2.8rem) 1.3rem;
}

.slide-caption p {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.85rem);
}

.slide-caption a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: #dfdfdf;
  color: #111;
  font-size: 1rem;
  text-transform: lowercase;
}

.hero-controls {
  margin-top: -64px;
  padding: 0 clamp(1rem, 4vw, 2.8rem) 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  position: relative;
  z-index: 6;
}

.hero-nav,
.hero-toggle {
  border: 1px solid rgba(0, 0, 0, 0.28);
  background: rgba(180, 154, 24, 0.9);
  color: #f8f4dc;
  font-family: var(--efact-font);
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.46rem 0.78rem;
  cursor: pointer;
}

.hero-status {
  min-width: 176px;
  border-radius: 999px;
  background: rgba(180, 154, 24, 0.9);
  color: #f8f4dc;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.85rem;
}

.hero-status span {
  min-width: 42px;
  font-family: var(--efact-font);
  font-size: 0.88rem;
}

.hero-progress-track {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(248, 244, 220, 0.4);
  overflow: hidden;
}

.hero-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: #f8f4dc;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1rem;
}

.hero-spotlight {
  position: relative;
}

.hero-spotlight::before {
  content: "";
  position: absolute;
  inset: 1.2rem -1.2rem auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 224, 74, 0.7) 45%, transparent 100%);
  pointer-events: none;
}

.kicker,
.side-kicker,
.marker,
.marker-code,
.card-kicker,
.about-label,
.contact-kicker {
  margin: 0;
  font-family: var(--efact-font);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--yellow);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.3rem, 9vw, 8rem);
  line-height: 0.88;
  max-width: 12.5ch;
}

.hero-lead {
  max-width: 62ch;
  margin: 1.4rem 0 1.2rem;
  color: #d6d1c5;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-bottom: 1.1rem;
}

.hero-sub {
  margin: 0;
  color: var(--muted);
}

.hero-copy [data-hero-item] {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready .hero-copy [data-hero-item] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition-delay: calc(var(--hero-order, 0) * 0.12s);
}

body.motion-ready .hero-copy.hero-animated [data-hero-item] {
  opacity: 1;
  transform: translateY(0);
}

.hero-meta-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-meta {
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.7rem;
}

.hero-meta-value {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 0.9;
  color: var(--yellow);
}

.hero-meta-label {
  margin: 0.35rem 0 0;
  color: #d8d1be;
  font-size: 0.82rem;
}

.hero-side {
  border: 1px solid var(--yellow);
  background: linear-gradient(165deg, #ffd400 0%, #ffd400 55%, #f0c300 100%);
  color: #0f0f0f;
  padding: 1.4rem;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  box-shadow: var(--shadow);
}

.hero-side .side-kicker {
  color: #1a1a1a;
}

.side-stamp {
  margin: 0;
  font-family: var(--efact-font);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.62);
}

.hero-side h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 0.9;
}

.hero-side p,
.hero-side ul {
  margin: 0;
}

.hero-side ul {
  padding-left: 1rem;
  display: grid;
  gap: 0.34rem;
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0a0a;
  overflow: hidden;
}

.page-overview .signal-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.signal-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  white-space: nowrap;
  padding: 0.9rem 0;
  font-family: var(--efact-font);
  font-size: 0.74rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  will-change: transform;
  animation: marquee 26s linear infinite;
}

.signal-track span::before {
  content: "/";
  margin-right: 0.8rem;
  color: rgba(255, 224, 74, 0.65);
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.home-work-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #efefed;
  color: #0c0c0c;
  padding: clamp(3.2rem, 6vw, 5.3rem) 0 clamp(3.6rem, 6.2vw, 5.6rem);
}

.home-work-inner {
  width: min(var(--max-width), 94vw);
  margin: 0 auto;
}

.home-work-title {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0b0b0b;
}

.home-work-grid {
  margin-top: clamp(2rem, 5vw, 4.2rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.1vw, 1.8rem);
}

.home-work-card {
  min-width: 0;
}

.home-work-link {
  display: grid;
  gap: 1.15rem;
  color: #0d0d0d;
}

.home-work-link img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  background: #d4d4d4;
}

.home-work-brand {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.9rem);
  color: #4d4d4d;
}

.home-work-card h3 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(2rem, 2.9vw, 3.25rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: #090909;
}

.home-work-card p {
  margin: 0;
}

.home-work-card p:last-child {
  color: #3d3d3d;
  font-size: clamp(1.02rem, 1.35vw, 1.9rem);
  line-height: 1.34;
  max-width: 30ch;
}

.know-us-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #efefec;
  color: #131418;
  padding: clamp(1.2rem, 2.6vw, 2.2rem) 0 clamp(3.2rem, 7vw, 5.8rem);
}

.know-us-meta,
.know-us-display,
.know-us-bottom {
  width: min(var(--max-width), 98vw);
  margin: 0 auto;
}

.know-us-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  font-family: var(--efact-font);
  font-size: clamp(1rem, 1.15vw, 1.45rem);
}

.know-us-meta p {
  margin: 0;
}

.know-us-meta-center {
  text-align: center;
}

.know-us-meta-right {
  text-align: right;
}

.know-us-display {
  margin-top: clamp(1.8rem, 3.8vw, 3.1rem);
}

.know-us-line {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(6.2rem, 20vw, 20rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.know-us-line-top {
  display: grid;
  grid-template-columns: auto clamp(300px, 31vw, 540px) auto;
  align-items: end;
  gap: clamp(0.7rem, 1.9vw, 1.5rem);
}

.know-us-thumb-main {
  margin: 0;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
}

.know-us-thumb-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.know-us-bottom {
  margin-top: clamp(4.1rem, 8vw, 6.8rem);
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: clamp(1rem, 2.3vw, 2.5rem);
  align-items: start;
}

.know-us-article img {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1.45 / 0.8;
  object-fit: cover;
  display: block;
}

.know-us-article-title,
.know-us-article-meta {
  margin: 0;
  font-family: var(--efact-font);
}

.know-us-article-title {
  margin-top: 0.7rem;
  font-size: clamp(1.2rem, 1.45vw, 1.75rem);
}

.know-us-article-meta {
  margin-top: 0.3rem;
  color: #8a8b86;
  font-size: clamp(1.04rem, 1.2vw, 1.44rem);
}

.know-us-copy {
  margin: 0;
  max-width: 28ch;
  font-family: var(--efact-font);
  font-size: clamp(2.2rem, 3.55vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.marker-row {
  margin-bottom: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bullet {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
  display: inline-block;
  margin-right: 0.44rem;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 6.4vw, 4.8rem);
  line-height: 0.9;
}

.section-lead {
  margin: 1rem 0 2rem;
  max-width: 70ch;
  color: var(--muted);
}

.core-grid,
.services-grid,
.work-grid,
.pricing-grid,
.about-grid,
.page-grid,
.feed-grid {
  display: grid;
  gap: 1rem;
}

.core-grid,
.services-grid,
.work-grid,
.pricing-grid,
.page-grid,
.feed-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.core-grid article,
.service-card,
.work-card,
.pricing-card,
.about-card,
.about-main,
.contact-shell,
.contact-form,
.page-card,
.feed-card,
.cta-banner,
.testimonial-shell {
  border: 1px solid var(--line-2);
  background: var(--surface);
}

.core-grid article,
.service-card,
.work-card,
.pricing-card,
.about-card,
.about-main,
.page-card,
.feed-card {
  padding: 1.24rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.core-grid article:hover,
.service-card:hover,
.work-card:hover,
.pricing-card:hover,
.page-card:hover,
.feed-card:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
}

.core-grid article {
  min-height: 220px;
}

.core-card-primary {
  grid-column: span 2;
  background: linear-gradient(140deg, #151515 0%, #0d0d0d 70%);
  border-color: rgba(255, 224, 74, 0.45);
}

.core-grid h3,
.service-card h3,
.work-card h3,
.about-card h3,
.about-main h2,
.page-card h3,
.feed-card h3,
.plan-name {
  margin: 0;
  font-family: var(--efact-font);
  letter-spacing: -0.01em;
}

.core-grid h3,
.service-head h3,
.page-card h3,
.feed-card h3,
.plan-name {
  font-size: 1.34rem;
}

.core-grid p,
.service-card p,
.work-card p,
.about-main p,
.about-card p,
.page-card p,
.feed-card p,
.contact-shell p,
.cta-banner p {
  margin: 0;
  color: #ddd7c9;
}

.service-card {
  display: grid;
  gap: 0.9rem;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.service-head span {
  width: 1.65rem;
  height: 1.65rem;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-family: var(--efact-font);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-card ul,
.pricing-card ul {
  margin: 0;
  padding-left: 1.08rem;
  display: grid;
  gap: 0.34rem;
  color: #d5cdbb;
}

.work-card {
  min-height: 270px;
  display: grid;
  align-content: space-between;
  gap: 0.9rem;
}

.work-label,
.plan-badge {
  display: inline-block;
  width: fit-content;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 0.2rem 0.5rem;
  font-family: var(--efact-font);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.work-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.work-metrics span {
  border: 1px solid var(--line-2);
  background: var(--surface-2);
  color: #d9d1c0;
  padding: 0.27rem 0.5rem;
  font-size: 0.78rem;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 320px;
  overflow: hidden;
}

.testimonial-meta {
  padding: 1.2rem;
  border-right: 1px solid var(--line-2);
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.counter {
  margin: 0;
  font-family: var(--efact-font);
  font-size: 2.6rem;
  color: var(--yellow);
  letter-spacing: 0.02em;
}

.testimonial-controls {
  display: grid;
  gap: 0.5rem;
}

.mini-btn {
  border: 1px solid var(--yellow);
  background: transparent;
  color: var(--yellow);
  padding: 0.52rem 0.7rem;
  font-family: var(--efact-font);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.mini-btn:hover {
  background: rgba(255, 224, 74, 0.1);
}

.testimonial-main {
  padding: 1.35rem;
  display: grid;
  align-content: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #0d0d0d 0%, #151515 100%);
}

.testimonial-quote {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(1.4rem, 2.7vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  max-width: 27ch;
}

.testimonial-who,
.testimonial-role {
  margin: 0;
  color: #d7ceba;
}

.logo-rail {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.logo-track {
  display: inline-flex;
  gap: 1.7rem;
  white-space: nowrap;
  padding: 0.85rem 0;
  font-family: var(--efact-font);
  font-size: 0.72rem;
  color: #d0c8b6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: marquee 16s linear infinite;
}

.case-ribbon {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.case-ribbon span {
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--yellow);
  padding: 0.25rem 0.5rem;
  font-family: var(--efact-font);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.work-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.work-kpi-grid article {
  border: 1px solid var(--line-2);
  background: var(--surface);
  padding: 0.72rem;
}

.work-kpi-value {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 0.9;
  color: var(--yellow);
}

.work-kpi-label {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: #d2cab8;
}

.showcase-grid .work-card:nth-child(3n + 2) {
  transform: translateY(10px);
}

.showcase-grid .work-card:nth-child(3n + 2):hover {
  transform: translateY(7px);
}

.testimonial-shell-featured {
  border-color: rgba(255, 224, 74, 0.55);
}

.case-structure,
.engagement-structure {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.case-structure article,
.engagement-structure article {
  border: 1px solid var(--line-2);
  background: var(--surface);
  padding: 0.95rem;
  display: grid;
  gap: 0.55rem;
}

.case-structure h3,
.engagement-structure h3 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: 1.2rem;
}

.case-structure p,
.engagement-structure p {
  margin: 0;
  color: #d7cfbc;
}

.benefit-hero p {
  margin: 0;
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: 0.82;
}

.benefit-hero .highlight {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--yellow);
  text-stroke: 1.4px var(--yellow);
}

.benefit-list {
  border-top: 1px solid var(--line);
  margin-top: 1.2rem;
}

.benefit-list article {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 120px 1fr 1.2fr;
  gap: 1rem;
  align-items: start;
}

.benefit-id {
  margin: 0;
  color: var(--yellow);
  font-family: var(--efact-font);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.benefit-list h4 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: 1.03rem;
}

.benefit-list article p {
  margin: 0;
  color: #d8d0bd;
}

.plan-tabs {
  display: inline-flex;
  border: 1px solid var(--yellow);
}

.plan-tab {
  border: 0;
  border-right: 1px solid var(--yellow);
  background: transparent;
  color: var(--yellow);
  padding: 0.64rem 1rem;
  font-family: var(--efact-font);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.plan-tab:last-child {
  border-right: 0;
}

.plan-tab.active {
  background: var(--yellow);
  color: #111;
}

.plan-copy {
  margin: 0.8rem 0 1.3rem;
}

.plan-copy p {
  margin: 0;
  color: var(--muted);
  display: none;
  max-width: 76ch;
}

.plan-copy .active-copy {
  display: block;
}

.pricing-tags {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pricing-tags span {
  border: 1px solid var(--line-2);
  padding: 0.28rem 0.52rem;
  font-family: var(--efact-font);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.pricing-note {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 70ch;
}

.pricing-card.featured {
  border-color: var(--yellow);
  box-shadow: 0 0 0 1px rgba(255, 224, 74, 0.12) inset;
}

.pricing-grid-detailed .pricing-card {
  min-height: 430px;
}

.price-matrix {
  border: 1px solid var(--line-2);
  background: var(--surface);
}

.matrix-head,
.matrix-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
}

.matrix-head {
  border-bottom: 1px solid var(--line-2);
  background: #0a0a0a;
}

.matrix-row {
  border-bottom: 1px solid var(--line);
}

.matrix-row:last-child {
  border-bottom: 0;
}

.matrix-head p {
  margin: 0;
  font-family: var(--efact-font);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
}

.matrix-row p {
  margin: 0;
  color: #d8d1bf;
  font-size: 0.9rem;
}

.matrix-row p:first-child {
  color: #f0ebdf;
}

.plan-price {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 0.9;
  color: var(--yellow);
}

.plan-note {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 1rem 0;
  text-align: left;
  font-size: 1rem;
  font-family: var(--efact-font);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}

.faq-item span:last-child {
  font-family: var(--efact-font);
  color: var(--yellow);
  font-size: 1.2rem;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-panel p {
  margin: 0;
  color: #d3cbb8;
  padding-bottom: 1rem;
}

.page-card,
.feed-card {
  display: grid;
  gap: 0.76rem;
  min-height: 230px;
}

.page-grid-tilt .page-card:nth-child(2n) {
  transform: translateY(12px);
}

.page-grid-tilt .page-card:nth-child(2n):hover {
  transform: translateY(9px);
}

.page-card::after,
.feed-card::after {
  content: "->";
  font-family: var(--efact-font);
  color: var(--yellow);
  letter-spacing: 0.08em;
}

.split-banner {
  border: 1px solid var(--line-2);
  background: linear-gradient(120deg, #0f0f0f 0%, #141414 100%);
  padding: 1.4rem;
  display: grid;
  gap: 0.7rem;
}

.split-banner h2 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(2rem, 6vw, 4.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.split-kicker {
  margin: 0;
  font-family: var(--efact-font);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--yellow);
}

.split-banner p {
  margin: 0;
  color: #d9d1be;
  max-width: 70ch;
}

.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.flow-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 1.5rem;
  height: 1px;
  background: var(--line-2);
}

.flow-step {
  position: relative;
  border: 1px solid var(--line-2);
  background: var(--surface);
  padding: 0.95rem;
  display: grid;
  gap: 0.6rem;
}

.flow-step h3 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: 1.18rem;
}

.flow-step p {
  margin: 0;
  color: #d9d2c0;
}

.flow-index {
  margin: 0;
  width: fit-content;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 0.18rem 0.45rem;
  font-family: var(--efact-font);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.about-main {
  padding: 1.2rem;
}

.about-main h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 0.9;
}

.about-main p {
  margin: 0;
}

.about-card {
  border-color: var(--yellow);
  background: linear-gradient(165deg, #ffd400 0%, #f3c300 100%);
  color: #111;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.about-card p {
  color: #111;
}

.about-card .about-label {
  color: #111;
}

.contact-shell {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-shell h2 {
  margin: 0.45rem 0 0.7rem;
  font-size: clamp(2.2rem, 5.8vw, 4.2rem);
  line-height: 0.9;
}

.contact-meta {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.contact-form {
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-2);
  background: #0a0a0a;
  color: var(--text);
  padding: 0.72rem 0.8rem;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7f7a70;
}

.cta-banner {
  padding: 1.3rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.cta-banner h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4.8vw, 3.4rem);
  line-height: 0.92;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.1rem 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.site-footer h4 {
  margin: 0 0 0.65rem;
  font-family: var(--efact-font);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
}

.site-footer a,
.site-footer p {
  margin: 0;
  display: block;
  margin-top: 0.35rem;
  color: #d8d0bc;
}

.bottom-bar {
  border-top: 1px solid var(--line);
  padding: 0.75rem 0 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bottom-bar p {
  margin: 0;
}

.bottom-bar button {
  border: 1px solid var(--yellow);
  background: transparent;
  color: var(--yellow);
  font-family: var(--efact-font);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.34rem 0.6rem;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--efact-font);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.72rem 0.94rem;
  background: transparent;
  cursor: pointer;
}

.button.primary {
  background: var(--yellow);
  color: #111;
}

.button.ghost {
  background: transparent;
  color: var(--yellow);
}

.text-link {
  display: inline-block;
  border-bottom: 1px solid var(--yellow);
  color: var(--yellow);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--stagger-delay, 0ms);
}

.stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .page-work .site-header {
    grid-template-columns: auto 1fr auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .work-page-meta {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .work-page-copy {
    max-width: 22ch;
    font-size: clamp(2rem, 5.4vw, 3.8rem);
  }

  .work-page-wordmark h1 {
    font-size: clamp(7rem, 26vw, 18rem);
  }

  .work-page-cutout {
    width: clamp(62px, 8vw, 96px);
  }

  .no-fluff-meta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.55rem;
  }

  .no-fluff-meta-center,
  .no-fluff-meta-right {
    justify-content: flex-start;
  }

  .no-fluff-line {
    font-size: clamp(4.9rem, 18vw, 12rem);
    line-height: 0.88;
  }

  .no-fluff-line-media {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.75rem;
  }

  .no-fluff-thumb {
    width: min(74vw, 460px);
  }

  .no-fluff-benefits {
    grid-template-columns: 1fr;
    margin-top: clamp(3.4rem, 8vw, 5rem);
    gap: 1.5rem;
  }

  .no-fluff-benefit-intro p {
    max-width: 28ch;
  }

  .know-us-meta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.55rem;
  }

  .know-us-meta-center,
  .know-us-meta-right {
    text-align: left;
  }

  .know-us-line {
    font-size: clamp(4.8rem, 17vw, 11rem);
    line-height: 0.88;
  }

  .know-us-line-top {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.8rem;
  }

  .know-us-thumb-main {
    width: min(78vw, 500px);
  }

  .know-us-bottom {
    grid-template-columns: 1fr;
    margin-top: clamp(2.8rem, 7vw, 4.4rem);
    gap: 1.6rem;
  }

  .know-us-copy {
    max-width: 26ch;
  }

  .hero-grid,
  .services-grid,
  .pricing-grid,
  .page-grid,
  .feed-grid,
  .about-grid,
  .contact-shell,
  .case-structure,
  .engagement-structure {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-track::before {
    display: none;
  }

  .hero-meta-grid {
    grid-template-columns: 1fr;
  }

  .work-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .matrix-head,
  .matrix-row {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }

  .benefit-list article {
    grid-template-columns: 90px 1fr;
  }
}

@media (max-width: 780px) {
  .page-work .site-header {
    width: 100%;
    padding: 0.66rem 4vw;
    display: flex;
    gap: 0.7rem;
  }

  .page-work .site-header.scrolled {
    border-bottom-color: rgba(20, 21, 25, 0.18);
    background: rgba(239, 239, 236, 0.95);
  }

  .page-work .menu-toggle {
    border-color: #1a1b20;
    margin-left: auto;
  }

  .page-work .menu-toggle span {
    background: #1a1b20;
  }

  .page-work .main-nav {
    border: 1px solid rgba(20, 21, 25, 0.22);
    background: rgba(239, 239, 236, 0.98);
  }

  .page-work .main-nav a {
    font-size: 1rem;
  }

  .work-header-actions {
    display: none;
  }

  .work-pricing-link {
    display: none;
  }

  .work-page-hero {
    min-height: auto;
    padding-top: 4.6rem;
  }

  .work-page-hero-inner {
    min-height: auto;
  }

  .work-page-copy {
    max-width: 100%;
    font-size: clamp(1.8rem, 8.4vw, 2.9rem);
  }

  .work-page-wordmark {
    padding-left: clamp(1.45rem, 5vw, 2rem);
  }

  .work-page-wordmark h1 {
    font-size: clamp(4.3rem, 24vw, 8.2rem);
    line-height: 0.82;
  }

  .work-page-cutout {
    width: clamp(38px, 8vw, 56px);
  }

  .page-work .home-work-section {
    padding-top: 2.4rem;
  }

  .no-fluff-hero {
    padding-top: 4.5rem;
    padding-bottom: 3rem;
  }

  .no-fluff-meta,
  .no-fluff-display,
  .no-fluff-benefits {
    width: 94vw;
  }

  .no-fluff-meta {
    font-size: 0.98rem;
  }

  .no-fluff-meta-center {
    flex-wrap: wrap;
    gap: 0.65rem 1.1rem;
  }

  .no-fluff-meta-right {
    flex-wrap: wrap;
  }

  .no-fluff-line {
    font-size: clamp(3.9rem, 19vw, 7.2rem);
  }

  .no-fluff-thumb {
    width: 100%;
  }

  .no-fluff-benefit h2 {
    font-size: clamp(1.85rem, 8.2vw, 2.55rem);
  }

  .no-fluff-benefit:not(.no-fluff-benefit-intro) p:last-child,
  .no-fluff-benefit-intro p {
    font-size: 1.22rem;
  }

  .know-us-section {
    padding-top: 1rem;
    padding-bottom: 2.8rem;
  }

  .know-us-meta,
  .know-us-display,
  .know-us-bottom {
    width: 94vw;
  }

  .know-us-meta {
    font-size: 0.98rem;
  }

  .know-us-line {
    font-size: clamp(3.7rem, 18vw, 7rem);
  }

  .know-us-thumb-main {
    width: 100%;
  }

  .know-us-copy {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    max-width: 100%;
  }

  .know-us-article img {
    max-width: none;
  }

  .site-header {
    width: 92vw;
    padding: 0.75rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.35rem);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line-2);
    background: rgba(9, 9, 9, 0.98);
    padding: 0.92rem;
    gap: 0.8rem;
  }

  .main-nav.open {
    display: flex;
  }

  .page-overview .site-header {
    padding: 0.54rem 4vw;
    border-top-width: 6px;
  }

  .page-overview .logo-text {
    font-size: clamp(1.65rem, 9vw, 2.4rem);
  }

  .page-overview .main-nav a {
    font-size: 1rem;
  }

  .hero-carousel {
    min-height: auto;
  }

  .hero-slider {
    min-height: auto;
  }

  .hero-slide-stage {
    min-height: 64vh;
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: clamp(4.4rem, 16vw, 6rem);
  }

  .slide-copy {
    justify-self: start;
    max-width: none;
  }

  .slide-slash {
    right: 1.4rem;
    top: 6.2rem;
    width: 72px;
    height: 300px;
  }

  .slide-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .slide-caption a {
    width: 74px;
    height: 74px;
    font-size: 0.9rem;
  }

  .hero-controls {
    margin-top: -56px;
    flex-wrap: wrap;
  }

  .home-work-section {
    padding-top: 2.8rem;
    padding-bottom: 3.2rem;
  }

  .home-work-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.2rem;
  }

  .home-work-link {
    gap: 0.9rem;
  }

  .home-work-card h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  main,
  .site-footer,
  .bottom-bar {
    width: 92vw;
  }

  .section {
    padding: 3.4rem 0;
  }

  .hero-grid,
  .core-grid,
  .services-grid,
  .work-grid,
  .pricing-grid,
  .about-grid,
  .page-grid,
  .feed-grid,
  .contact-shell,
  .flow-track,
  .case-structure,
  .engagement-structure,
  .site-footer,
  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .core-card-primary {
    grid-column: auto;
  }

  .page-grid-tilt .page-card:nth-child(2n),
  .showcase-grid .work-card:nth-child(3n + 2) {
    transform: none;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero h1 {
    max-width: 15ch;
  }

  .testimonial-meta {
    border-right: 0;
    border-bottom: 1px solid var(--line-2);
  }

  .benefit-list article {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .work-kpi-grid {
    grid-template-columns: 1fr;
  }

  .matrix-head {
    display: none;
  }

  .matrix-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .matrix-row p:first-child {
    color: var(--yellow);
    font-family: var(--efact-font);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

  .bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Strategy modules for the next layer of trust, proof and project-start clarity. */
.efact-roi-playbook,
.efact-trust-layers,
.efact-case-showcase,
.efact-signal-build {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 56px 56px;
}

.efact-case-showcase {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.efact-roi-playbook article,
.efact-trust-layers article,
.efact-case-showcase article,
.efact-signal-build article {
  min-height: clamp(17rem, 25vw, 25rem);
  padding: clamp(1rem, 2vw, 1.45rem);
  border-right: 1px solid var(--efact-line);
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.efact-roi-playbook article:last-child,
.efact-trust-layers article:last-child,
.efact-case-showcase article:last-child,
.efact-signal-build article:last-child {
  border-right: 0;
}

.efact-roi-playbook span,
.efact-trust-layers span,
.efact-case-showcase span,
.efact-signal-build span,
.efact-case-showcase small {
  color: var(--efact-muted);
  font-size: 0.95rem;
}

.efact-roi-playbook h3,
.efact-trust-layers h3,
.efact-case-showcase h3,
.efact-signal-build h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.55rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0;
}

.efact-roi-playbook p,
.efact-trust-layers p,
.efact-case-showcase p,
.efact-signal-build p {
  margin: 0;
  color: var(--efact-muted);
  line-height: 1.38;
}

.efact-case-showcase p strong {
  color: var(--efact-ink);
  font-weight: 600;
}

.efact-guided-intake {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(18rem, 0.9fr);
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 56px 56px;
}

.efact-guided-intake article,
.efact-guided-intake aside {
  min-height: 24rem;
  padding: clamp(1rem, 2vw, 1.45rem);
  border-right: 1px solid var(--efact-line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.72rem;
}

.efact-guided-intake aside {
  border-right: 0;
  background: rgba(15, 15, 15, 0.03);
  justify-content: space-between;
}

.efact-guided-intake span,
.efact-guided-intake p {
  color: var(--efact-muted);
  margin: 0;
}

.efact-guided-intake button,
.efact-guided-intake a {
  appearance: none;
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--efact-ink);
  padding: 0.58rem 0.78rem;
  font: inherit;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.efact-guided-intake button:hover,
.efact-guided-intake a:hover {
  transform: translateY(-2px);
  border-color: var(--efact-ink);
  background: #ffffff;
}

.efact-guided-intake h3 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1;
  font-weight: 500;
}

.efact-guided-intake strong {
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.1;
  font-weight: 500;
}

@media (max-width: 980px) {
  .efact-roi-playbook,
  .efact-trust-layers,
  .efact-signal-build,
  .efact-guided-intake {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .efact-case-showcase {
    grid-template-columns: 1fr;
  }

  .efact-case-showcase article,
  .efact-case-showcase article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }
}

@media (max-width: 780px) {
  .efact-roi-playbook,
  .efact-trust-layers,
  .efact-case-showcase,
  .efact-signal-build,
  .efact-guided-intake {
    grid-template-columns: 1fr !important;
  }

  .efact-roi-playbook article,
  .efact-trust-layers article,
  .efact-case-showcase article,
  .efact-signal-build article,
  .efact-guided-intake article,
  .efact-guided-intake aside {
    min-height: auto !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--efact-line) !important;
    padding: 1rem !important;
  }

  .efact-roi-playbook article:last-child,
  .efact-trust-layers article:last-child,
  .efact-case-showcase article:last-child,
  .efact-signal-build article:last-child,
  .efact-guided-intake aside {
    border-bottom: 0 !important;
  }

  .efact-roi-playbook h3,
  .efact-trust-layers h3,
  .efact-case-showcase h3,
  .efact-signal-build h3,
  .efact-guided-intake h3 {
    font-size: clamp(1.35rem, 6vw, 1.9rem) !important;
  }
}

/* Tablet/mobile browser guard: some in-app/mobile browsers report a wider layout viewport. */
@media (max-width: 1100px) {
  html,
  body,
  .site-shell {
    overflow-x: hidden !important;
  }

  .efact-template .efact-page-media,
  .efact-template .efact-visual-rhythm,
  .efact-template .efact-open-section,
  .efact-template .efact-link-lab {
    width: auto !important;
    max-width: none !important;
    margin-left: clamp(1rem, 5.6vw, 1.75rem) !important;
    margin-right: clamp(1rem, 5.6vw, 1.75rem) !important;
    box-sizing: border-box !important;
  }

  .efact-visual-rhythm {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }

  .efact-ambient-card {
    left: 0.75rem !important;
    right: 0.75rem !important;
    width: auto !important;
    max-width: none !important;
  }

  .efact-ambient-card strong {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }
}

/* EfactAI OpenAI-inspired template */
.efact-template {
  --efact-bg: #ffffff;
  --efact-ink: #111312;
  --efact-muted: #626862;
  --efact-soft: #ffffff;
  --efact-line: rgba(17, 19, 18, 0.14);
  --efact-panel: #ffffff;
  --efact-night: #111312;
  --efact-accent: #00a878;
  --efact-electric: #77d9ff;
  color: var(--efact-ink);
  background: var(--efact-bg);
  font-family: var(--efact-font);
  letter-spacing: 0;
}

.efact-template .site-shell {
  background: var(--efact-bg);
}

.efact-template main,
.efact-template .site-footer,
.efact-template .bottom-bar {
  width: 100%;
  max-width: none;
}

.efact-template .efact-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.78rem clamp(1rem, 4vw, 2.8rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border: 0;
  border-bottom: 0;
  background: #ffffff;
  color: var(--efact-ink);
  z-index: 300;
}

.efact-template .efact-header.scrolled {
  margin: 0;
  padding: 0.68rem clamp(1rem, 4vw, 2.8rem);
  border: 0;
  border-bottom: 0;
  background: #ffffff;
  color: var(--efact-ink);
}

.efact-template .efact-logo .logo-text {
  color: inherit;
  font-family: var(--efact-font);
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.efact-template .efact-nav {
  display: flex;
  justify-self: center;
  gap: 1.02rem;
}

.efact-template .efact-nav a,
.efact-template .efact-actions a {
  color: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.78;
}

.efact-template .efact-nav a:hover,
.efact-template .efact-nav a.is-active,
.efact-template .efact-actions a:hover {
  color: inherit;
  opacity: 1;
  text-decoration: none;
}

.efact-template .efact-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
}

.efact-template .efact-pill {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.48rem 0.78rem;
}

.efact-template .menu-toggle {
  border-color: currentColor;
  color: inherit;
}

.efact-template .menu-toggle span {
  background: currentColor;
}

.efact-hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--efact-ink);
  background: #ffffff;
}

.efact-hero-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.efact-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  display: none;
}

@keyframes efactHeroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes efactGridFlow {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 80px 80px, 80px 80px;
  }
}

.efact-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding: 7.8rem 0 4.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 4.4rem);
  align-items: end;
}

.efact-hero-main {
  display: grid;
  gap: 2rem;
}

.efact-hero-copy {
  display: grid;
  gap: 0.95rem;
}

.efact-eyebrow {
  margin: 0;
  color: var(--efact-muted);
  font-size: 1rem;
}

.efact-hero h1 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(4.4rem, 10vw, 8.4rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
}

.efact-hero-lead {
  max-width: 45rem;
  margin: 0;
  color: var(--efact-muted);
  font-size: 1.28rem;
  line-height: 1.42;
}

.efact-prompt {
  width: min(780px, 100%);
  display: grid;
  gap: 0.82rem;
  border: 1px solid var(--efact-line);
  border-radius: 0.6rem;
  background: #fff;
  color: var(--efact-ink);
  padding: 1rem;
  box-shadow: none;
}

.efact-prompt label {
  color: var(--efact-muted);
  font-size: 0.92rem;
}

.efact-prompt-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: center;
}

.efact-prompt input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--efact-ink);
  font: inherit;
  font-size: 1.22rem;
}

.efact-prompt input::placeholder {
  color: rgba(17, 19, 18, 0.48);
}

.efact-prompt button {
  width: 3rem;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 999px;
  background: var(--efact-night);
  color: #fffaf1;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.efact-prompt button:hover {
  transform: translateY(-2px);
  background: var(--efact-accent);
}

.efact-prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.efact-prompt-chips a {
  border: 1px solid rgba(17, 19, 18, 0.12);
  border-radius: 999px;
  padding: 0.42rem 0.68rem;
  color: var(--efact-muted);
  font-size: 0.88rem;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.efact-prompt-chips a:hover {
  border-color: var(--efact-accent);
  background: rgba(0, 168, 120, 0.08);
  color: var(--efact-ink);
}

.efact-hero-visual {
  display: grid;
  grid-template-columns: 0.74fr 0.48fr;
  gap: 0.9rem;
  align-items: end;
}

.efact-nature-card {
  margin: 0;
  display: grid;
  gap: 0.62rem;
}

.efact-nature-card img {
  width: 100%;
  display: block;
  border-radius: 0.25rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: none;
}

.efact-nature-card-large img {
  aspect-ratio: 4 / 5.7;
}

.efact-nature-card figcaption {
  color: var(--efact-muted);
  font-size: 0.88rem;
  text-align: left;
}

.efact-featured,
.efact-news,
.efact-stories,
.efact-business,
.efact-principles {
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding: 4.2rem 0;
  border-top: 1px solid var(--efact-line);
}

.efact-principles {
  border-top: 0;
  padding-top: 4.6rem;
}

.efact-featured {
  padding-top: 3.2rem;
}

.efact-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.efact-section-head h2 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.efact-section-head a {
  color: var(--efact-muted);
  font-size: 0.94rem;
}

.efact-section-head a:hover {
  color: var(--efact-ink);
}

.efact-feature-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr;
  gap: 1rem;
}

.efact-card {
  min-width: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.efact-card:first-child {
  grid-row: span 2;
}

.efact-card a,
.efact-story-grid article {
  display: grid;
  color: var(--efact-ink);
}

.efact-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  filter: saturate(0.95);
}

.efact-card-large img {
  aspect-ratio: 16 / 13;
}

.efact-card div {
  display: grid;
  gap: 0.42rem;
  padding: 1rem 0 0;
}

.efact-card p,
.efact-news-list span,
.efact-news-list small,
.efact-business-grid p {
  margin: 0;
  color: var(--efact-muted);
  font-size: 0.84rem;
}

.efact-card h3,
.efact-story-grid h3,
.efact-business-grid h3 {
  margin: 0;
  font-family: var(--efact-font);
  font-weight: 500;
  letter-spacing: 0;
}

.efact-card h3 {
  font-size: 1.32rem;
  line-height: 1.12;
}

.efact-card-large h3 {
  font-size: 2rem;
}

.efact-card:hover {
  box-shadow: none;
}

.efact-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.efact-principle-grid article {
  min-height: 14rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--efact-line);
  padding-top: 1rem;
}

.efact-principle-grid span {
  color: var(--efact-muted);
  font-size: 0.86rem;
}

.efact-principle-grid h3 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: 1.72rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.efact-principle-grid p {
  margin: 0;
  color: var(--efact-muted);
}

.efact-news-list {
  border-top: 1px solid var(--efact-line);
}

.efact-news-list a {
  min-height: 5.8rem;
  display: grid;
  grid-template-columns: 8rem 1fr 7rem;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--efact-line);
  color: var(--efact-ink);
  transition: background 0.18s ease, padding 0.18s ease;
}

.efact-news-list a:hover {
  padding-left: 0.8rem;
  background: #ffffff;
}

.efact-news-list strong {
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.28;
}

.efact-story-grid,
.efact-business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.efact-story-grid article,
.efact-business-grid article {
  min-width: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.efact-story-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 0.25rem;
}

.efact-story-grid h3,
.efact-story-grid p {
  padding-left: 1rem;
  padding-right: 1rem;
}

.efact-story-grid h3 {
  padding-top: 1rem;
  font-size: 1.32rem;
}

.efact-story-grid p {
  margin: 0;
  padding-top: 0.48rem;
  padding-bottom: 1.1rem;
  color: var(--efact-muted);
}

.efact-business {
  padding-bottom: 5.2rem;
}

.efact-business-grid article {
  min-height: 15rem;
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  padding: 1.15rem;
  border-top: 1px solid var(--efact-line);
  background: transparent;
  color: var(--efact-ink);
}

.efact-business-grid article:nth-child(2) {
  background: transparent;
}

.efact-business-grid article:nth-child(3) {
  background: transparent;
}

.efact-business-grid p {
  color: var(--efact-muted);
}

.efact-business-grid h3 {
  font-size: 2rem;
}

.efact-business-grid span {
  color: var(--efact-muted);
}

.efact-footer {
  width: min(1280px, 92vw);
  margin: 0 auto;
  border-top-color: var(--efact-line);
}

.efact-footer h4 {
  color: var(--efact-ink);
  letter-spacing: 0;
}

.efact-footer a,
.efact-footer p {
  color: var(--efact-muted);
}

.efact-bottom {
  width: min(1280px, 92vw);
  margin: 0 auto;
  border-top-color: var(--efact-line);
  color: var(--efact-muted);
  letter-spacing: 0;
}

.efact-bottom button {
  border-color: var(--efact-line);
  color: var(--efact-ink);
}

.efact-template .scroll-progress {
  background: var(--efact-accent);
}

.efact-product-stage {
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding: 4.8rem 0 4.2rem;
  display: grid;
  gap: 2rem;
  place-items: center;
  text-align: center;
}

.efact-product-copy {
  display: grid;
  gap: 0.6rem;
  place-items: center;
}

.efact-product-copy p {
  margin: 0;
  color: var(--efact-accent);
  font-weight: 700;
}

.efact-product-copy h2 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: 0;
}

.efact-product-copy span {
  max-width: 42rem;
  color: var(--efact-muted);
  font-size: 1.18rem;
  line-height: 1.42;
}

.efact-product-links {
  display: inline-flex;
  gap: 1.1rem;
  margin-top: 0.35rem;
}

.efact-product-links a,
.efact-tile a {
  color: #0066cc;
  font-size: 1rem;
}

.efact-product-links a::after,
.efact-tile a::after {
  content: " >";
}

.efact-device {
  width: min(920px, 100%);
  border: 1px solid rgba(17, 19, 18, 0.12);
  border-radius: 1.55rem;
  background: #ffffff;
  box-shadow: 0 38px 100px rgba(17, 19, 18, 0.16);
  overflow: hidden;
}

.efact-device-bar {
  height: 3.2rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(17, 19, 18, 0.09);
  background: #ffffff;
}

.efact-device-bar span {
  width: 0.74rem;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: #ff6159;
}

.efact-device-bar span:nth-child(2) {
  background: #ffbd2f;
}

.efact-device-bar span:nth-child(3) {
  background: #28c840;
}

.efact-device-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 19, 18, 0.08);
}

.efact-device-grid article {
  min-height: 13rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: 1.1rem;
  background: #ffffff;
  text-align: left;
}

.efact-device-grid p,
.efact-device-grid span {
  margin: 0;
  color: var(--efact-muted);
  font-size: 0.88rem;
}

.efact-device-grid strong {
  font-family: var(--efact-font);
  font-size: 2.45rem;
  line-height: 1;
}

.efact-tile-showcase {
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding-bottom: 4.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.efact-tile {
  min-height: 34rem;
  border-radius: 0.7rem;
  padding: 2rem;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.8rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.efact-tile::after {
  content: "";
  position: absolute;
  inset: auto 8% -28% 8%;
  height: 52%;
  border-radius: 2rem 2rem 0 0;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 18, 0.1);
}

.efact-tile-light::after {
  background:
    linear-gradient(180deg, rgba(17, 19, 18, 0.08), rgba(17, 19, 18, 0)),
    linear-gradient(90deg, rgba(0, 102, 204, 0.16), rgba(0, 168, 120, 0.18));
  border-color: rgba(17, 19, 18, 0.1);
}

.efact-tile h2 {
  width: min(24rem, 100%);
  margin: 0;
  font-family: var(--efact-font);
  font-size: 2.5rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.efact-tile p {
  width: min(26rem, 100%);
  margin: 0;
  color: rgba(255, 250, 241, 0.74);
  font-size: 1.05rem;
  line-height: 1.42;
}

.efact-tile-dark {
  background: #111312;
  color: #fffaf1;
}

.efact-tile-light {
  background: #fff;
  color: var(--efact-ink);
}

.efact-tile-light p {
  color: var(--efact-muted);
}

@media (prefers-reduced-motion: reduce) {
  .efact-hero-bg,
  .efact-hero-bg::after {
    animation: none;
  }
}

@media (max-width: 980px) {
  .efact-template .efact-header {
    grid-template-columns: auto auto;
  }

  .efact-template .efact-actions {
    display: none;
  }

  .efact-hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .efact-hero-visual {
    width: min(640px, 100%);
  }

  .efact-feature-grid,
  .efact-story-grid,
  .efact-business-grid,
  .efact-tile-showcase,
  .efact-principle-grid {
    grid-template-columns: 1fr;
  }

  .efact-card:first-child {
    grid-row: auto;
  }

  .efact-card-large h3 {
    font-size: 1.5rem;
  }

  .efact-device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .efact-template .efact-header {
    padding: 0.74rem 4vw;
  }

  .efact-template .efact-header.scrolled {
    padding: 0.74rem 4vw;
  }

  .efact-template .efact-nav {
    border: 1px solid var(--efact-line);
    border-radius: 0.8rem;
    background: #ffffff;
    color: var(--efact-ink);
  }

  .efact-hero {
    min-height: auto;
  }

  .efact-hero-inner {
    width: 92vw;
    padding-top: 6.4rem;
    padding-bottom: 3.1rem;
    gap: 2.5rem;
  }

  .efact-hero h1 {
    font-size: 4rem;
  }

  .efact-hero-lead {
    font-size: 1.06rem;
  }

  .efact-prompt {
    border-radius: 0.9rem;
  }

  .efact-prompt-row {
    grid-template-columns: 1fr;
  }

  .efact-prompt button {
    width: 100%;
    aspect-ratio: auto;
    padding: 0.74rem 1rem;
  }

  .efact-hero-visual {
    grid-template-columns: 1fr;
  }

  .efact-nature-card img,
  .efact-nature-card-large img {
    aspect-ratio: 16 / 11;
  }

  .efact-featured,
  .efact-news,
  .efact-stories,
  .efact-business,
  .efact-product-stage,
  .efact-principles {
    width: 92vw;
    padding: 3.1rem 0;
  }

  .efact-product-copy h2 {
    font-size: 3rem;
  }

  .efact-product-copy span {
    font-size: 1rem;
  }

  .efact-device-grid {
    grid-template-columns: 1fr;
  }

  .efact-device-grid article {
    min-height: 9rem;
  }

  .efact-tile-showcase {
    width: 92vw;
    padding-bottom: 3.1rem;
  }

  .efact-tile {
    min-height: 28rem;
    padding: 1.35rem;
  }

  .efact-tile h2 {
    font-size: 1.9rem;
  }

  .efact-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .efact-news-list a {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0.44rem;
    padding: 1rem 0;
  }

  .efact-news-list a:hover {
    padding-left: 0;
  }

  .efact-news-list strong {
    font-size: 1.04rem;
  }

  .efact-footer,
  .efact-bottom {
    width: 92vw;
  }
}

/* OpenAI-like editorial rebuild for EfactAI */
.efact-template {
  --efact-bg: #ffffff;
  --efact-ink: #111111;
  --efact-muted: #5f625f;
  --efact-line: #deded9;
  --efact-soft-line: #eeeeea;
  --efact-max: 1320px;
  --efact-font: "OpenAI Sans", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--efact-ink);
  background: #ffffff;
  font-family: var(--efact-font);
  letter-spacing: 0;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: geometricPrecision;
}

.efact-template .site-shell,
.efact-template main {
  background: #ffffff;
}

.efact-template main,
.efact-template .site-footer,
.efact-template .bottom-bar {
  width: 100%;
  max-width: none;
}

.efact-template .efact-header {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.86rem clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border: 0;
  border-bottom: 0;
  background: #ffffff;
  color: var(--efact-ink);
  z-index: 300;
}

.efact-template .efact-header.scrolled {
  margin: 0;
  padding: 0.82rem clamp(1rem, 3vw, 2rem);
  border: 0;
  border-bottom: 0;
  background: #ffffff;
}

.efact-template .efact-logo .logo-text {
  color: inherit;
  font-family: var(--efact-font);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
}

.efact-template .efact-nav {
  justify-self: center;
  display: flex;
  gap: clamp(0.72rem, 1.8vw, 1.45rem);
}

.efact-template .efact-nav a,
.efact-template .efact-actions a {
  color: rgba(17, 17, 17, 0.64);
  font-size: 0.84rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  opacity: 1;
}

.efact-template .efact-nav a:hover,
.efact-template .efact-nav a.is-active,
.efact-template .efact-actions a:hover {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.efact-template .efact-header .logo-text,
.efact-template .efact-header.scrolled .logo-text {
  color: #111111;
}

.efact-template .efact-header .main-nav a,
.efact-template .efact-header.scrolled .main-nav a {
  color: rgba(17, 17, 17, 0.64);
}

.efact-template .efact-header .main-nav a:hover,
.efact-template .efact-header .main-nav a.is-active,
.efact-template .efact-header.scrolled .main-nav a:hover,
.efact-template .efact-header.scrolled .main-nav a.is-active {
  color: #111111;
}

.efact-template .efact-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}

.efact-template .menu-toggle {
  border-color: var(--efact-ink);
}

.efact-template .menu-toggle span {
  background: var(--efact-ink);
}

.header-search,
.mobile-search,
.mobile-menu-divider,
.mobile-menu-action,
.mobile-menu-login {
  display: none;
}

.header-search {
  appearance: none;
  width: 1.7rem;
  height: 1.7rem;
  border: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.58);
  place-items: center;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.header-search:hover {
  color: #111111;
}

.header-search span {
  position: relative;
  width: 0.92rem;
  height: 0.92rem;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.header-search span::after {
  content: "";
  position: absolute;
  right: -0.38rem;
  bottom: -0.25rem;
  width: 0.5rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.efact-template .efact-actions .header-search {
  display: grid;
}

.efact-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: #ffffff;
  color: var(--efact-ink);
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.efact-search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.search-open {
  overflow: hidden;
}

.efact-search-close {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  top: clamp(1rem, 3vw, 2rem);
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  background: transparent;
  color: #666666;
  cursor: pointer;
}

.efact-search-close::before,
.efact-search-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.35rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.efact-search-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.efact-search-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.efact-search-form {
  width: min(100%, 780px);
  display: grid;
  gap: clamp(1rem, 2.8vw, 2rem);
}

.efact-search-form label {
  color: rgba(17, 17, 17, 0.48);
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
}

.efact-search-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid var(--efact-line);
  gap: clamp(0.55rem, 1.4vw, 0.9rem);
}

.efact-search-line input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--efact-ink);
  font-family: var(--efact-font);
  font-size: clamp(1.45rem, 3.6vw, 2.9rem);
  font-weight: 500;
  line-height: 1.08;
  padding: 0.35rem 0 0.7rem;
  text-overflow: ellipsis;
}

.efact-search-line input::placeholder {
  color: rgba(17, 17, 17, 0.42);
}

.efact-search-line button {
  width: clamp(2rem, 3.7vw, 2.75rem);
  aspect-ratio: 1;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.38);
  color: #ffffff;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.efact-search-line button:hover {
  background: #111111;
  transform: translateY(-2px);
}

.efact-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.efact-search-suggestions button {
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  background: #ffffff;
  color: rgba(17, 17, 17, 0.68);
  padding: 0.5rem 0.72rem;
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.efact-search-suggestions button:hover {
  color: #111111;
  border-color: #111111;
  transform: translateY(-2px);
}

@media (max-width: 780px) {
  .efact-search-overlay {
    align-items: start;
    place-items: start stretch;
    padding: 7rem 1.35rem 2rem;
  }

  .efact-search-form {
    width: 100%;
    gap: 0.95rem;
  }

  .efact-search-line {
    gap: 0.5rem;
  }

  .efact-search-line input {
    font-size: clamp(1.35rem, 8vw, 2.25rem) !important;
    line-height: 1.08 !important;
  }

  .efact-search-line button {
    width: 2.15rem !important;
    font-size: 1.25rem !important;
  }

  .efact-search-suggestions button {
    max-width: 100%;
    white-space: normal;
    text-align: left;
    line-height: 1.2;
  }
}

.efact-open-hero {
  width: min(var(--efact-max), calc(100vw - 2rem));
  margin: 0 auto;
  min-height: 58vh;
  padding: clamp(5.8rem, 10vw, 9rem) 0 clamp(4.2rem, 8vw, 7rem);
  display: grid;
  place-items: center;
  text-align: center;
  background: #ffffff;
}

.efact-open-hero-inner {
  width: min(760px, 100%);
  display: grid;
  place-items: center;
  gap: 1.15rem;
}

.efact-open-hero h1 {
  margin: 0 0 0.4rem;
  font-family: var(--efact-font);
  font-size: clamp(2.25rem, 5.6vw, 4.8rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.efact-open-prompt {
  width: 100%;
  display: grid;
  gap: 0.62rem;
  border: 1px solid var(--efact-line);
  border-radius: 1rem;
  background: #ffffff;
  padding: 0.82rem 0.88rem;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.efact-intake-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.efact-intake-top div {
  display: grid;
  gap: 0.22rem;
}

.efact-intake-top span {
  color: var(--efact-muted);
  font-size: 0.75rem;
}

.efact-intake-top strong {
  color: var(--efact-ink);
  font-size: 0.92rem;
  font-weight: 500;
}

.efact-intake-top p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--efact-muted);
  font-size: 0.74rem;
  white-space: nowrap;
}

.efact-intake-top i {
  width: 0.5rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--efact-ink);
  animation: efactSignalPulse 1.4s ease-in-out infinite;
}

.efact-open-prompt:focus-within,
.efact-open-prompt:hover {
  border-color: var(--efact-ink);
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.07);
}

.efact-open-prompt label {
  color: var(--efact-muted);
  font-size: 0.86rem;
}

.efact-open-prompt-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  align-items: center;
}

.efact-open-prompt input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: #ffffff;
  color: var(--efact-ink);
  font: inherit;
  font-size: 1.04rem;
}

.efact-open-prompt input::placeholder {
  color: #8b8d89;
}

.efact-open-prompt-row button {
  width: 2.45rem;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 999px;
  background: var(--efact-ink);
  color: #ffffff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.efact-open-prompt-row button:hover {
  transform: scale(1.04);
}

.efact-prompt-intel {
  border-top: 1px solid var(--efact-line);
  padding-top: 0.7rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.62rem;
  align-items: end;
}

.efact-prompt-signal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--efact-muted);
  font-size: 0.82rem;
}

.efact-prompt-signal span {
  width: 0.62rem;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: var(--efact-ink);
  animation: efactSignalPulse 1.4s ease-in-out infinite;
}

.efact-prompt-signal p,
.efact-prompt-score p {
  margin: 0;
}

.efact-prompt-plan {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.efact-prompt-plan span {
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  padding: 0.28rem 0.48rem;
  color: var(--efact-muted);
  font-size: 0.76rem;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.efact-prompt-plan span.is-active {
  border-color: var(--efact-ink);
  color: var(--efact-ink);
  transform: translateY(-1px);
}

.efact-intake-flow {
  grid-column: 1 / -1;
  position: relative;
  min-height: 4.35rem;
  border: 1px solid var(--efact-soft-line);
  border-radius: 0.55rem;
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 34px 34px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  padding: 0.58rem;
}

.efact-intake-flow::before,
.efact-intake-flow::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.3), transparent);
  transform: translateY(-50%);
  pointer-events: none;
}

.efact-intake-flow::after {
  width: 18%;
  left: -20%;
  right: auto;
  background: linear-gradient(90deg, transparent, var(--efact-ink), transparent);
  animation: efactIntakeSignal 3s ease-in-out infinite;
}

.efact-intake-flow span,
.efact-intake-flow strong {
  position: relative;
  z-index: 1;
  justify-self: center;
  max-width: 100%;
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--efact-muted);
  padding: 0.34rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

.efact-intake-flow strong {
  background: var(--efact-ink);
  color: #ffffff;
  border-color: var(--efact-ink);
  box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.16);
  animation: efactIntakeCore 2.6s ease-in-out infinite;
}

.efact-intake-result {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--efact-soft-line);
  border-radius: 0.55rem;
  overflow: hidden;
}

.efact-intake-result,
.efact-intake-live-preview,
.efact-intake-proof,
.efact-intake-actions,
.efact-intake-questions {
  display: none;
}

.efact-open-prompt.is-expanded .efact-intake-result,
.efact-open-prompt.is-expanded .efact-intake-live-preview,
.efact-open-prompt.is-expanded .efact-intake-proof,
.efact-open-prompt.is-expanded .efact-intake-actions,
.efact-open-prompt.is-expanded .efact-intake-questions,
.efact-open-prompt.is-briefing .efact-intake-result,
.efact-open-prompt.is-briefing .efact-intake-live-preview,
.efact-open-prompt.is-briefing .efact-intake-proof,
.efact-open-prompt.is-briefing .efact-intake-actions,
.efact-open-prompt.is-briefing .efact-intake-questions,
.efact-open-prompt.is-showcase .efact-intake-result,
.efact-open-prompt.is-showcase .efact-intake-live-preview,
.efact-open-prompt.is-showcase .efact-intake-proof,
.efact-open-prompt.is-showcase .efact-intake-actions,
.efact-open-prompt.is-showcase .efact-intake-questions {
  display: grid;
}

.efact-open-prompt.is-intake-focused:not(.is-expanded):not(.is-briefing):not(.is-showcase) .efact-intake-live-preview,
.efact-open-prompt.has-intake-value:not(.is-expanded):not(.is-briefing):not(.is-showcase) .efact-intake-live-preview {
  display: grid;
}

.efact-intake-result article {
  min-width: 0;
  padding: 0.62rem 0.7rem;
  border-right: 1px solid var(--efact-soft-line);
  border-bottom: 1px solid var(--efact-soft-line);
  display: grid;
  gap: 0.28rem;
}

.efact-intake-result article:nth-child(2n) {
  border-right: 0;
}

.efact-intake-result article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.efact-intake-result span {
  color: var(--efact-muted);
  font-size: 0.72rem;
}

.efact-intake-result strong {
  color: var(--efact-ink);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.2;
}

.efact-intake-live-preview {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  border: 1px solid var(--efact-line);
  border-radius: 0.55rem;
  background: #ffffff;
  overflow: hidden;
}

.efact-intake-live-preview::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--efact-ink) 0 38%, transparent 38% 52%, var(--efact-ink) 52% 70%, transparent 70%);
  opacity: 0.9;
  animation: efactPreviewRead 3.4s ease-in-out infinite;
}

.efact-intake-live-preview div,
.efact-intake-live-preview p {
  min-width: 0;
  margin: 0;
  padding: 0.66rem 0.72rem;
}

.efact-intake-live-preview div {
  border-right: 1px solid var(--efact-soft-line);
  display: grid;
  gap: 0.24rem;
}

.efact-intake-live-preview span {
  color: var(--efact-muted);
  font-size: 0.72rem;
}

.efact-intake-live-preview strong {
  color: var(--efact-ink);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.15;
}

.efact-intake-live-preview p {
  color: var(--efact-muted);
  font-size: 0.82rem;
  line-height: 1.32;
}

.efact-prompt-score {
  min-width: 160px;
  display: grid;
  gap: 0.35rem;
  justify-items: end;
}

.efact-prompt-score p {
  color: var(--efact-muted);
  font-size: 0.82rem;
}

.efact-prompt-score strong {
  font-size: 1.35rem;
  font-weight: 500;
}

.efact-prompt-score i {
  width: 100%;
  height: 3px;
  background: var(--efact-soft-line);
  overflow: hidden;
}

.efact-prompt-score i::after {
  content: "";
  width: var(--value);
  height: 100%;
  display: block;
  background: var(--efact-ink);
  transition: width 0.28s ease;
}

.efact-intake-readiness {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}

.efact-intake-readiness span {
  min-width: 0;
  border: 1px solid var(--efact-soft-line);
  border-radius: 999px;
  padding: 0.34rem 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  color: var(--efact-muted);
  font-size: 0.72rem;
  line-height: 1.1;
}

.efact-intake-readiness i {
  width: 0.38rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--efact-ink);
  flex: 0 0 auto;
  animation: efactSignalPulse 1.9s ease-in-out infinite;
}

.efact-intake-readiness span:nth-child(2) i {
  animation-delay: 0.18s;
}

.efact-intake-readiness span:nth-child(3) i {
  animation-delay: 0.36s;
}

.efact-intake-readiness strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--efact-ink);
  font-weight: 500;
}

.efact-intake-detail-toggle {
  grid-column: 1 / -1;
  justify-self: start;
  appearance: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--efact-ink);
  padding: 0;
  font: inherit;
  font-size: 0.78rem;
  line-height: 1.25;
  cursor: pointer;
}

.efact-intake-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.efact-intake-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--efact-soft-line);
  border-radius: 0.55rem;
  overflow: hidden;
}

.efact-intake-proof span {
  min-width: 0;
  padding: 0.5rem 0.62rem;
  border-right: 1px solid var(--efact-soft-line);
  color: var(--efact-muted);
  font-size: 0.76rem;
  line-height: 1.15;
}

.efact-intake-proof span:last-child {
  border-right: 0;
}

.efact-intake-proof strong {
  color: var(--efact-ink);
  font-weight: 500;
}

.efact-intake-actions button {
  appearance: none;
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--efact-ink);
  padding: 0.42rem 0.62rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.efact-intake-actions button:hover {
  border-color: var(--efact-ink);
  background: #f8f8f6;
  transform: translateY(-1px);
}

.efact-intake-questions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.efact-intake-questions button {
  min-width: 0;
  border: 1px solid var(--efact-soft-line);
  border-radius: 0.55rem;
  background: #ffffff;
  color: var(--efact-muted);
  padding: 0.5rem 0.55rem;
  font: inherit;
  font-size: 0.76rem;
  line-height: 1.18;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.efact-intake-questions button:hover {
  border-color: var(--efact-ink);
  color: var(--efact-ink);
  transform: translateY(-1px);
}

.efact-intake-briefing {
  grid-column: 1 / -1;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--efact-line);
  border-radius: 0.55rem;
  background: #ffffff;
  overflow: hidden;
  opacity: 0.72;
  transform: translateY(2px);
  transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.efact-open-prompt.is-briefing .efact-intake-briefing,
.efact-open-prompt.is-showcase .efact-intake-briefing {
  display: grid;
  opacity: 1;
  transform: translateY(0);
  border-color: var(--efact-ink);
}

.efact-intake-briefing > p,
.efact-intake-briefing > h2 {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.58rem 0.7rem;
}

.efact-intake-briefing > p {
  color: var(--efact-muted);
  font-size: 0.72rem;
  border-bottom: 1px solid var(--efact-soft-line);
}

.efact-intake-briefing > h2 {
  color: var(--efact-ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.18;
  border-bottom: 1px solid var(--efact-soft-line);
}

.efact-intake-briefing div {
  min-width: 0;
  padding: 0.62rem 0.7rem;
  border-right: 1px solid var(--efact-soft-line);
  border-bottom: 1px solid var(--efact-soft-line);
  display: grid;
  gap: 0.25rem;
}

.efact-intake-briefing div:nth-of-type(2n) {
  border-right: 0;
}

.efact-intake-briefing div:nth-last-of-type(-n + 2) {
  border-bottom: 0;
}

.efact-intake-briefing span {
  color: var(--efact-muted);
  font-size: 0.72rem;
}

.efact-intake-briefing strong {
  color: var(--efact-ink);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.22;
}

/* Compact AI intake: keep the first impression calm, reveal depth on intent. */
.efact-open-prompt:not(.is-expanded):not(.is-briefing):not(.is-showcase) .efact-intake-result,
.efact-open-prompt:not(.is-expanded):not(.is-briefing):not(.is-showcase) .efact-intake-proof,
.efact-open-prompt:not(.is-expanded):not(.is-briefing):not(.is-showcase) .efact-intake-actions,
.efact-open-prompt:not(.is-expanded):not(.is-briefing):not(.is-showcase) .efact-intake-questions {
  display: none !important;
}

.efact-open-prompt:not(.is-intake-focused):not(.has-intake-value):not(.is-expanded):not(.is-briefing):not(.is-showcase) .efact-intake-live-preview {
  display: none !important;
}

.efact-open-prompt.is-expanded .efact-intake-result,
.efact-open-prompt.is-briefing .efact-intake-result,
.efact-open-prompt.is-showcase .efact-intake-result,
.efact-open-prompt.is-expanded .efact-intake-live-preview,
.efact-open-prompt.is-briefing .efact-intake-live-preview,
.efact-open-prompt.is-showcase .efact-intake-live-preview,
.efact-open-prompt.is-expanded .efact-intake-proof,
.efact-open-prompt.is-briefing .efact-intake-proof,
.efact-open-prompt.is-showcase .efact-intake-proof,
.efact-open-prompt.is-expanded .efact-intake-actions,
.efact-open-prompt.is-briefing .efact-intake-actions,
.efact-open-prompt.is-showcase .efact-intake-actions,
.efact-open-prompt.is-expanded .efact-intake-questions,
.efact-open-prompt.is-briefing .efact-intake-questions,
.efact-open-prompt.is-showcase .efact-intake-questions {
  display: grid !important;
}

@keyframes efactSignalPulse {
  50% {
    opacity: 0.35;
    transform: scale(0.72);
  }
}

@keyframes efactIntakeSignal {
  0%,
  18% {
    transform: translateY(-50%) translateX(0);
    opacity: 0;
  }
  42% {
    opacity: 0.65;
  }
  82%,
  100% {
    transform: translateY(-50%) translateX(690%);
    opacity: 0;
  }
}

@keyframes efactIntakeCore {
  50% {
    box-shadow: 0 0 0 10px rgba(17, 17, 17, 0.06);
  }
}

@keyframes efactPreviewRead {
  50% {
    transform: translateX(16%);
    opacity: 0.45;
  }
}

@keyframes efactWorkflowNoise {
  50% {
    transform: translateY(-6px);
    border-color: rgba(17, 17, 17, 0.34);
    color: var(--efact-ink);
  }
}

@keyframes efactSystemLine {
  0%,
  18% {
    opacity: 0.18;
    clip-path: inset(0 100% 0 0);
  }
  58% {
    opacity: 0.75;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0.22;
    clip-path: inset(0 0 0 100%);
  }
}

.efact-open-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.efact-open-links a {
  position: relative;
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: var(--efact-ink);
  font-size: 0.92rem;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.efact-open-links a:hover {
  border-color: var(--efact-ink);
  background: #f8f8f6;
  transform: translateY(-2px);
}

.efact-top-stories,
.efact-open-section,
.efact-open-cta {
  width: min(var(--efact-max), calc(100vw - 2rem));
  margin: 0 auto;
  background: #ffffff;
}

.efact-top-stories {
  padding: 0 0 clamp(3.5rem, 6vw, 5.5rem);
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1rem;
}

.efact-open-card {
  min-width: 0;
}

.efact-open-card a {
  position: relative;
  display: grid;
  gap: 0.7rem;
  color: var(--efact-ink);
}

.efact-open-card a::before {
  content: "Open";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--efact-ink);
  padding: 0.35rem 0.56rem;
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.efact-open-card a::after {
  content: attr(data-card-note);
  min-height: 1.4rem;
  color: var(--efact-muted);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.efact-open-card a:not([data-card-note])::after {
  content: "Mehr Kontext anzeigen";
}

.efact-open-card a:hover::before,
.efact-open-card a:focus-visible::before,
.efact-open-card a:hover::after,
.efact-open-card a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.efact-open-card img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #ffffff;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.3s ease;
}

.efact-open-card a:hover img,
.efact-open-card a:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.018);
}

.efact-open-card-large {
  grid-row: span 2;
}

.efact-open-card-large img {
  aspect-ratio: 1.15 / 1;
}

.efact-open-card p {
  margin: 0.2rem 0 0;
  color: var(--efact-muted);
  font-size: 0.92rem;
}

.efact-open-card h2 {
  margin: 0;
  max-width: 34rem;
  font-family: var(--efact-font);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
}

.efact-open-card:not(.efact-open-card-large) h2 {
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.efact-open-section {
  border-top: 1px solid var(--efact-line);
  padding: 1.5rem 0 clamp(3.5rem, 6vw, 5.5rem);
}

.efact-open-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.efact-open-section-head h2,
.efact-open-cta h2 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(2.25rem, 4.8vw, 5.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.efact-open-section-head a,
.efact-open-cta a {
  color: var(--efact-ink);
  font-size: 0.98rem;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.efact-open-news,
.efact-open-research {
  border-top: 1px solid var(--efact-line);
}

.efact-news-intel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.56fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.efact-news-intel .efact-open-news {
  min-width: 0;
}

.efact-news-panel {
  position: sticky;
  top: 5.2rem;
  min-height: 560px;
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 46px 46px;
  padding: clamp(1rem, 1.6vw, 1.35rem);
  display: grid;
  align-content: space-between;
  gap: 1rem;
  overflow: hidden;
}

.efact-news-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--efact-line);
  background: #ffffff;
}

.efact-news-pipeline span {
  min-height: 4.6rem;
  border-right: 1px solid var(--efact-line);
  display: grid;
  place-items: center;
  color: var(--efact-muted);
  font-size: 0.78rem;
  background-image: linear-gradient(90deg, transparent 0%, var(--efact-ink) 42%, transparent 72%);
  background-repeat: no-repeat;
  background-size: 180% 3px;
  background-position: -180% 100%;
  animation: efactFlow 2.4s ease-in-out infinite;
}

.efact-news-pipeline span:nth-child(2) { animation-delay: 0.12s; }
.efact-news-pipeline span:nth-child(3) { animation-delay: 0.24s; }
.efact-news-pipeline span:nth-child(4) { animation-delay: 0.36s; border-right: 0; }

.efact-news-panel p {
  margin: 0;
  color: var(--efact-muted);
  line-height: 1.42;
}

.efact-news-panel h3 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(1.75rem, 2.5vw, 2.65rem);
  font-weight: 500;
  line-height: 1.05;
}

.efact-news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.efact-news-tags span {
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  background: #ffffff;
  padding: 0.36rem 0.58rem;
  color: var(--efact-muted);
  font-size: 0.84rem;
}

.efact-news-score {
  border-top: 1px solid var(--efact-line);
  padding-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.efact-news-score span {
  color: var(--efact-muted);
}

.efact-news-score strong {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
}

.efact-news-score i {
  width: 100%;
  height: 5px;
  background: var(--efact-soft-line);
  overflow: hidden;
}

.efact-news-score i::after {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  background: var(--efact-ink);
  animation: efactMetricPulse 0.9s ease;
}

.efact-offer-intel {
  min-height: 620px;
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 56px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
}

.efact-offer-map {
  position: relative;
  min-height: 620px;
  border-right: 1px solid var(--efact-line);
}

.efact-offer-map::before,
.efact-offer-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(17, 17, 17, 0.17);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.efact-offer-map::before {
  width: 66%;
  aspect-ratio: 1;
  animation: efactMiniRotate 12s linear infinite;
}

.efact-offer-map::after {
  width: 42%;
  aspect-ratio: 1;
  animation: efactMiniRotate 8s linear infinite reverse;
}

.offer-core,
.offer-node {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--efact-ink);
  border-radius: 999px;
  background: #ffffff;
  padding: 0.58rem 0.82rem;
  font-weight: 500;
}

.offer-core {
  left: 50%;
  top: 50%;
  width: clamp(8rem, 16vw, 12rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--efact-ink);
  color: #ffffff;
  transform: translate(-50%, -50%);
}

.offer-a { left: 15%; top: 16%; animation: efactFloatA 5s ease-in-out infinite; }
.offer-b { right: 18%; top: 14%; animation: efactFloatB 5.4s ease-in-out infinite; }
.offer-c { left: 13%; bottom: 24%; animation: efactFloatB 5.1s ease-in-out infinite; }
.offer-d { right: 14%; bottom: 23%; animation: efactFloatA 5.2s ease-in-out infinite; }
.offer-e { left: 42%; top: 9%; animation: efactKnowledge 4.8s ease-in-out infinite; }
.offer-f { left: 43%; bottom: 9%; animation: efactKnowledge 5.2s ease-in-out infinite reverse; }

.efact-offer-flow {
  display: grid;
}

.efact-offer-flow article {
  border-bottom: 1px solid var(--efact-line);
  padding: 1rem;
  display: grid;
  align-content: space-between;
  gap: 0.85rem;
  background-image: linear-gradient(90deg, transparent 0%, var(--efact-ink) 42%, transparent 72%);
  background-repeat: no-repeat;
  background-size: 180% 3px;
  background-position: -180% 100%;
  animation: efactFlow 3s ease-in-out infinite;
}

.efact-offer-flow article:nth-child(2) { animation-delay: 0.16s; }
.efact-offer-flow article:nth-child(3) { animation-delay: 0.32s; }
.efact-offer-flow article:nth-child(4) { animation-delay: 0.48s; border-bottom: 0; }

.efact-offer-flow span,
.efact-offer-flow p {
  margin: 0;
  color: var(--efact-muted);
}

.efact-offer-flow strong {
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.efact-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--efact-line);
  background: #ffffff;
}

.efact-workflow-state {
  min-width: 0;
  min-height: 620px;
  border-right: 1px solid var(--efact-line);
  padding: clamp(1rem, 2vw, 1.35rem);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 1rem;
}

.efact-workflow-state:last-child {
  border-right: 0;
}

.efact-workflow-state p,
.efact-workflow-state h3 {
  margin: 0;
}

.efact-workflow-state > p {
  color: var(--efact-muted);
}

.efact-workflow-state h3 {
  max-width: 14ch;
  font-size: clamp(2rem, 4.4vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
}

.efact-workflow-state ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--efact-line);
}

.efact-workflow-state li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--efact-soft-line);
  color: var(--efact-muted);
  line-height: 1.35;
}

.efact-workflow-state li:last-child {
  border-bottom: 0;
}

.workflow-mess,
.workflow-system {
  position: relative;
  min-height: 240px;
  border: 1px solid var(--efact-soft-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 42px 42px;
  overflow: hidden;
}

.workflow-mess::before,
.workflow-mess::after,
.workflow-system::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.workflow-mess::before {
  inset: 17% 12%;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.workflow-mess::after {
  left: 12%;
  right: 10%;
  top: 48%;
  height: 1px;
  background: rgba(17, 17, 17, 0.15);
  transform: rotate(16deg);
}

.workflow-mess span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--efact-muted);
  padding: 0.45rem 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  animation: efactWorkflowNoise 4.8s ease-in-out infinite;
}

.workflow-mess span:nth-child(2),
.workflow-mess span:nth-child(4) {
  animation-delay: 0.3s;
}

.workflow-system {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  padding: 1rem;
}

.workflow-system::before {
  left: 10%;
  right: 10%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--efact-ink), transparent);
  transform: translateY(-50%);
  animation: efactSystemLine 3.2s ease-in-out infinite;
}

.workflow-system span,
.workflow-system strong {
  position: relative;
  z-index: 1;
  justify-self: center;
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--efact-muted);
  padding: 0.5rem 0.68rem;
  font-size: 0.86rem;
  font-weight: 500;
  text-align: center;
}

.workflow-system strong {
  min-width: 5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-color: var(--efact-ink);
  background: var(--efact-ink);
  color: #ffffff;
  animation: efactIntakeCore 2.8s ease-in-out infinite;
}

.efact-image-pause figure {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  border-top: 1px solid var(--efact-line);
  border-bottom: 1px solid var(--efact-line);
  background: #ffffff;
}

.efact-image-pause img {
  width: 100%;
  height: clamp(22rem, 42vw, 34rem);
  object-fit: cover;
  display: block;
}

.efact-image-pause figcaption {
  border-left: 1px solid var(--efact-line);
  padding: clamp(1rem, 2.4vw, 1.6rem);
  display: grid;
  align-content: end;
  gap: 0.75rem;
}

.efact-image-pause span,
.efact-image-pause p,
.efact-human-layer p {
  margin: 0;
  color: var(--efact-muted);
}

.efact-image-pause strong {
  max-width: 12ch;
  color: var(--efact-ink);
  font-size: clamp(2rem, 4.6vw, 5rem);
  font-weight: 500;
  line-height: 1;
}

.efact-image-pause p {
  max-width: 34rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.35;
}

.efact-human-layer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.efact-human-layer article {
  display: grid;
  gap: 0.75rem;
}

.efact-human-layer img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.efact-human-layer p {
  max-width: 22rem;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.22;
}

.efact-agent-builder,
.efact-impact-sim,
.efact-governance-layer {
  border: 1px solid var(--efact-line);
  background: #ffffff;
}

.efact-agent-builder {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  min-height: 560px;
}

.agent-builder-controls {
  border-right: 1px solid var(--efact-line);
  display: grid;
}

.agent-builder-controls button {
  appearance: none;
  border: 0;
  border-bottom: 1px solid var(--efact-line);
  background: #ffffff;
  color: var(--efact-muted);
  padding: 1rem;
  font: inherit;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.agent-builder-controls button:last-child {
  border-bottom: 0;
}

.agent-builder-controls button:hover,
.agent-builder-controls button.is-active {
  color: var(--efact-ink);
  background: #fafafa;
  padding-left: 1.35rem;
}

.agent-builder-stage {
  position: relative;
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 54px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.7fr);
  min-height: 560px;
  overflow: hidden;
}

.agent-builder-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(17, 17, 17, 0.08) 48%, transparent 72%);
  width: 32%;
  transform: translateX(-120%);
  animation: efactScanField 4.8s ease-in-out infinite;
  pointer-events: none;
}

.agent-builder-flow {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.agent-builder-flow::before,
.agent-builder-flow::after {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  animation: efactMiniRotate 13s linear infinite;
}

.agent-builder-flow::after {
  inset: 27% 24%;
  animation-duration: 8s;
  animation-direction: reverse;
}

.agent-builder-flow span,
.agent-builder-flow strong {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--efact-ink);
  border-radius: 999px;
  background: #ffffff;
  padding: 0.58rem 0.76rem;
  font-weight: 500;
}

.agent-builder-flow strong {
  left: 50%;
  top: 50%;
  width: clamp(7rem, 15vw, 10rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--efact-ink);
  color: #ffffff;
  transform: translate(-50%, -50%);
}

#builder-trigger { left: 10%; top: 16%; }
#builder-data { right: 10%; top: 18%; }
#builder-guardrail { left: 11%; bottom: 18%; }
#builder-output { right: 12%; bottom: 18%; }

.agent-builder-flow span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(5rem, 12vw, 10rem);
  height: 1px;
  background: linear-gradient(90deg, var(--efact-ink), transparent);
  transform-origin: left center;
  transform: rotate(var(--pulse-angle, 0deg));
  opacity: 0.26;
  animation: efactDataPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}

#builder-trigger::after { --pulse-angle: 24deg; }
#builder-data::after { --pulse-angle: 154deg; }
#builder-guardrail::after { --pulse-angle: -24deg; }
#builder-output::after { --pulse-angle: 206deg; }

.agent-builder-copy {
  border-left: 1px solid var(--efact-line);
  padding: clamp(1rem, 2vw, 1.35rem);
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.agent-builder-copy p {
  margin: 0;
  color: var(--efact-muted);
}

.agent-builder-copy h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 4rem);
  font-weight: 500;
  line-height: 1.02;
}

.agent-builder-metrics {
  display: grid;
  border-top: 1px solid var(--efact-line);
}

.agent-builder-metrics article {
  position: relative;
  border-bottom: 1px solid var(--efact-line);
  padding: 0.8rem 0;
  display: grid;
  gap: 0.24rem;
}

.agent-builder-metrics article::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--efact-ink) var(--metric, 76%), var(--efact-soft-line) 0);
}

.agent-builder-metrics article:nth-child(1) { --metric: 92%; }
.agent-builder-metrics article:nth-child(2) { --metric: 66%; }
.agent-builder-metrics article:nth-child(3) { --metric: 82%; }

.agent-builder-metrics article:last-child {
  border-bottom: 0;
}

.agent-builder-metrics span {
  color: var(--efact-muted);
  font-size: 0.82rem;
}

.agent-builder-metrics strong {
  font-size: 1.25rem;
  font-weight: 500;
}

.efact-impact-sim {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 360px;
}

.impact-inputs {
  border-right: 1px solid var(--efact-line);
  display: grid;
}

.impact-inputs label {
  border-bottom: 1px solid var(--efact-line);
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  color: var(--efact-muted);
}

.impact-inputs label:last-child {
  border-bottom: 0;
}

.impact-inputs input {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--efact-ink);
}

.impact-inputs span {
  color: var(--efact-ink);
  font-weight: 500;
}

.impact-output {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 48px 48px;
  overflow: hidden;
}

.impact-output::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 42%;
  background:
    linear-gradient(180deg, transparent 0 22%, rgba(17, 17, 17, 0.08) 22% 24%, transparent 24% 100%),
    linear-gradient(90deg, var(--efact-ink) 0 18%, transparent 18% 24%, var(--efact-ink) 24% 52%, transparent 52% 60%, var(--efact-ink) 60% 100%);
  clip-path: polygon(0 84%, 18% 66%, 34% 72%, 52% 38%, 72% 48%, 100% 12%, 100% 100%, 0 100%);
  opacity: 0.12;
  animation: efactImpactWave 3.8s ease-in-out infinite;
  pointer-events: none;
}

.impact-output article {
  position: relative;
  z-index: 1;
  border-right: 1px solid var(--efact-line);
  padding: 1rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.impact-output article:last-child {
  border-right: 0;
}

.impact-output span {
  color: var(--efact-muted);
}

.impact-output strong {
  font-size: clamp(1.55rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1.02;
}

.efact-governance-layer {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.efact-governance-layer article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-right: 1px solid var(--efact-line);
  padding: 1rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.efact-governance-layer article::before {
  content: "";
  width: 2.6rem;
  aspect-ratio: 1;
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  background:
    linear-gradient(var(--efact-ink), var(--efact-ink)) 50% 50% / 56% 1px no-repeat,
    linear-gradient(90deg, var(--efact-ink), var(--efact-ink)) 50% 50% / 1px 56% no-repeat,
    #ffffff;
  opacity: 0.68;
  animation: efactGovernanceCheck 3.4s ease-in-out infinite;
}

.efact-governance-layer article::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  height: 3px;
  background: linear-gradient(90deg, var(--efact-ink) 0 68%, var(--efact-soft-line) 68% 100%);
  transform: scaleX(0.82);
  transform-origin: left;
  animation: efactControlBar 2.8s ease-in-out infinite;
}

.efact-governance-layer article:last-child {
  border-right: 0;
}

.efact-governance-layer article:hover {
  background: #fafafa;
  transform: translateY(-3px);
}

.efact-governance-layer span,
.efact-governance-layer p {
  margin: 0;
  color: var(--efact-muted);
}

.efact-governance-layer strong {
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 500;
}

@keyframes efactScanField {
  0%,
  20% {
    transform: translateX(-120%);
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  80%,
  100% {
    transform: translateX(360%);
    opacity: 0;
  }
}

@keyframes efactDataPulse {
  50% {
    opacity: 0.54;
    transform: scaleX(1.1) rotate(var(--pulse-angle, 0deg));
  }
}

@keyframes efactImpactWave {
  50% {
    opacity: 0.2;
    transform: translateY(-5px);
  }
}

@keyframes efactGovernanceCheck {
  50% {
    border-color: var(--efact-ink);
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes efactControlBar {
  50% {
    transform: scaleX(1);
  }
}

.efact-capability-system {
  min-height: 560px;
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 52px 52px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(180px, 0.58fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  overflow: hidden;
}

.capability-column {
  border-right: 1px solid var(--efact-line);
  display: grid;
  grid-template-rows: auto repeat(5, minmax(0, 1fr));
}

.capability-column:last-child {
  border-right: 0;
}

.capability-column p,
.capability-column span {
  margin: 0;
  border-bottom: 1px solid var(--efact-line);
  padding: 1rem;
}

.capability-column p {
  color: var(--efact-muted);
}

.capability-column span {
  display: grid;
  align-items: center;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  font-weight: 500;
}

.capability-column span:last-child {
  border-bottom: 0;
}

.capability-brain {
  position: relative;
  border-right: 1px solid var(--efact-line);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.capability-brain::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 17, 0.17);
  border-radius: 999px;
  animation: efactMiniRotate 9s linear infinite;
}

.capability-brain strong {
  position: relative;
  z-index: 1;
  width: 8.8rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--efact-ink);
  color: #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.05;
}

.capability-brain i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(90deg, transparent 0%, var(--efact-ink) 45%, transparent 82%);
  background-size: 180% 100%;
  background-position: -180% 0;
  animation: efactFlow 2.6s ease-in-out infinite;
}

.capability-brain i:nth-of-type(1) { top: 22%; }
.capability-brain i:nth-of-type(2) { top: 36%; animation-delay: 0.12s; }
.capability-brain i:nth-of-type(3) { top: 50%; animation-delay: 0.24s; }
.capability-brain i:nth-of-type(4) { top: 64%; animation-delay: 0.36s; }
.capability-brain i:nth-of-type(5) { top: 78%; animation-delay: 0.48s; }

.efact-open-news a,
.efact-open-research a {
  position: relative;
  min-height: 7.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: clamp(1.25rem, 3vw, 2.5rem);
  row-gap: 0.55rem;
  align-items: start;
  border-bottom: 1px solid var(--efact-line);
  color: var(--efact-ink);
  padding: 1.1rem 0 1.2rem;
  transition: padding-left 0.22s ease, background 0.22s ease;
}

.efact-open-news a::before,
.efact-open-research a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--efact-ink);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.22s ease;
}

.efact-open-news a::after,
.efact-open-research a::after {
  content: "Read";
  justify-self: end;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  padding: 0.32rem 0.55rem;
  color: var(--efact-muted);
  font-size: 0.82rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.efact-open-news a:hover,
.efact-open-research a:hover {
  padding-left: 0.9rem;
  background: #fafafa;
}

.efact-open-news a:hover::before,
.efact-open-research a:hover::before {
  transform: scaleY(1);
}

.efact-open-news a:hover::after,
.efact-open-research a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.efact-open-news strong,
.efact-open-research strong {
  grid-column: 1;
  grid-row: 1;
  max-width: 20ch;
  font-size: clamp(1.2rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.12;
}

.efact-open-news span,
.efact-open-news time,
.efact-open-research span,
.efact-open-research time {
  grid-row: 2;
  color: var(--efact-muted);
  font-size: 0.94rem;
}

.efact-open-news span,
.efact-open-research span {
  grid-column: 1;
}

.efact-open-news time,
.efact-open-research time {
  grid-column: 1;
  margin-left: 8.5rem;
  width: fit-content;
}

.efact-intel-lab {
  border-top: 1px solid var(--efact-line);
  padding-top: 1.25rem;
  display: grid;
  gap: 1.4rem;
}

.efact-intel-nature {
  margin: 0 0 clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid var(--efact-line);
  border-bottom: 1px solid var(--efact-line);
}

.efact-intel-nature img {
  width: 100%;
  height: clamp(18rem, 34vw, 34rem);
  display: block;
  object-fit: cover;
  object-position: center 45%;
}

.efact-systems-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.efact-process-system {
  min-height: 660px;
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 54px 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
}

.efact-process-map {
  border-right: 1px solid var(--efact-line);
  display: grid;
}

.efact-process-map article {
  position: relative;
  border-bottom: 1px solid var(--efact-line);
  padding: 1rem;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.6rem 0.9rem;
  align-content: center;
  background: #ffffff;
  transition: background 0.22s ease, padding-left 0.22s ease;
}

.efact-process-map article:last-child {
  border-bottom: 0;
}

.efact-process-map article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--efact-ink);
  transform: scaleY(0);
  transform-origin: top;
  animation: efactProcessStep 8s ease-in-out infinite;
  animation-delay: calc(var(--step, 0) * 1.15s);
}

.efact-process-map article:nth-child(1) { --step: 0; }
.efact-process-map article:nth-child(2) { --step: 1; }
.efact-process-map article:nth-child(3) { --step: 2; }
.efact-process-map article:nth-child(4) { --step: 3; }
.efact-process-map article:nth-child(5) { --step: 4; }

.efact-process-map article:hover {
  padding-left: 1.35rem;
  background: #fafafa;
}

.efact-process-map span {
  grid-row: span 2;
  color: var(--efact-muted);
}

.efact-process-map h3,
.efact-process-map p {
  margin: 0;
}

.efact-process-map h3 {
  font-family: var(--efact-font);
  font-size: clamp(1.35rem, 2.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1;
}

.efact-process-map p {
  color: var(--efact-muted);
  line-height: 1.42;
}

.efact-process-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.efact-process-visual::before,
.efact-process-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.efact-process-visual::before {
  width: min(78%, 560px);
  aspect-ratio: 1;
  animation: efactMiniRotate 11s linear infinite;
}

.efact-process-visual::after {
  width: min(54%, 380px);
  aspect-ratio: 1;
  animation: efactMiniRotate 8s linear infinite reverse;
}

.process-core,
.process-dot {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--efact-ink);
  border-radius: 999px;
  background: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 500;
}

.process-core {
  left: 50%;
  top: 50%;
  width: clamp(8.5rem, 16vw, 12.5rem);
  aspect-ratio: 1;
  background: var(--efact-ink);
  color: #ffffff;
  transform: translate(-50%, -50%);
  text-align: center;
}

.process-dot {
  min-width: 4.4rem;
  min-height: 4.4rem;
  padding: 0.4rem;
  color: var(--efact-ink);
}

.dot-one { left: 14%; top: 16%; animation: efactFloatA 5.4s ease-in-out infinite; }
.dot-two { right: 16%; top: 17%; animation: efactFloatB 5s ease-in-out infinite; }
.dot-three { left: 12%; bottom: 20%; animation: efactFloatB 5.5s ease-in-out infinite; }
.dot-four { right: 12%; bottom: 21%; animation: efactFloatA 5.2s ease-in-out infinite; }
.dot-five { left: 50%; bottom: 8%; transform: translateX(-50%); animation: efactKnowledge 5.6s ease-in-out infinite; }

.efact-process-visual .dot-five {
  animation-name: efactFloatA;
}

@keyframes efactProcessStep {
  0%,
  18% {
    transform: scaleY(1);
  }
  28%,
  100% {
    transform: scaleY(0);
  }
}

.efact-system-card {
  min-height: 360px;
  border: 1px solid var(--efact-line);
  background: #ffffff;
  padding: 1rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.efact-system-card:hover {
  transform: translateY(-6px);
  border-color: var(--efact-ink);
  background: #fcfcfb;
}

.efact-system-card p,
.efact-system-card small {
  margin: 0;
  color: var(--efact-muted);
}

.efact-system-card h3 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  font-weight: 500;
  line-height: 1.12;
}

.efact-system-mini {
  min-height: 130px;
  border-bottom: 1px solid var(--efact-line);
  position: relative;
  overflow: hidden;
}

.efact-system-mini-routing span {
  position: absolute;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--efact-ink);
  border-radius: 999px;
  background: #ffffff;
}

.efact-system-mini-routing span:nth-child(1) {
  left: 0.2rem;
  top: 0.4rem;
}

.efact-system-mini-routing span:nth-child(2) {
  right: 0.4rem;
  top: 0.9rem;
}

.efact-system-mini-routing span:nth-child(3) {
  left: 34%;
  bottom: 0.8rem;
}

.efact-system-mini-routing span:nth-child(4) {
  right: 18%;
  bottom: 1.2rem;
  background: var(--efact-ink);
}

.efact-system-mini-routing::after {
  content: "";
  position: absolute;
  inset: 0.6rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  animation: efactMiniRotate 6s linear infinite;
}

.efact-system-mini-voice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.efact-system-mini-voice i {
  width: 0.5rem;
  height: 28%;
  border-radius: 999px;
  background: var(--efact-ink);
  animation: efactVoice 1s ease-in-out infinite;
}

.efact-system-mini-voice i:nth-child(2) { animation-delay: 0.08s; }
.efact-system-mini-voice i:nth-child(3) { animation-delay: 0.16s; }
.efact-system-mini-voice i:nth-child(4) { animation-delay: 0.24s; }
.efact-system-mini-voice i:nth-child(5) { animation-delay: 0.32s; }

.efact-system-mini-knowledge {
  display: grid;
  align-content: center;
  gap: 0.5rem;
}

.efact-system-mini-knowledge span {
  width: fit-content;
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  padding: 0.36rem 0.6rem;
  color: var(--efact-muted);
  animation: efactKnowledge 4s ease-in-out infinite;
}

.efact-system-mini-knowledge span:nth-child(2) {
  margin-left: 18%;
  animation-delay: 0.18s;
}

.efact-system-mini-knowledge span:nth-child(3) {
  margin-left: 40%;
  animation-delay: 0.36s;
}

.efact-system-mini-report {
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.efact-system-mini-report b {
  display: block;
  height: 0.5rem;
  width: var(--bar);
  background: var(--efact-ink);
  animation: efactReport 2.2s ease-in-out infinite;
}

.efact-system-mini-report b:nth-child(2) { animation-delay: 0.16s; }
.efact-system-mini-report b:nth-child(3) { animation-delay: 0.32s; }

@keyframes efactMiniRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes efactVoice {
  50% {
    height: 72%;
  }
}

@keyframes efactKnowledge {
  50% {
    transform: translateX(10px);
    border-color: var(--efact-ink);
    color: var(--efact-ink);
  }
}

@keyframes efactReport {
  50% {
    transform: scaleX(0.78);
  }
}

.efact-intel-copy {
  width: 100%;
  display: grid;
  gap: 0.55rem;
}

.efact-intel-copy p {
  margin: 0;
  color: var(--efact-muted);
}

.efact-intel-copy h3 {
  margin: 0;
  font-family: var(--efact-font);
  max-width: none;
  font-size: clamp(2.2rem, 5.1vw, 5.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.efact-intel-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.efact-intel-points {
  display: grid;
  border-top: 1px solid var(--efact-line);
}

.efact-intel-points button {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--efact-line);
  background: #ffffff;
  color: var(--efact-ink);
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.8rem;
  text-align: left;
  cursor: pointer;
  transition: padding-left 0.22s ease, background 0.22s ease, color 0.2s ease;
}

.efact-intel-points button:hover,
.efact-intel-points button.is-active {
  padding-left: 0.65rem;
  background: #fafafa;
}

.efact-intel-points button::after {
  content: "Preview";
  grid-column: 2;
  width: fit-content;
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  padding: 0.25rem 0.48rem;
  color: var(--efact-muted);
  font-size: 0.78rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.efact-intel-points button:hover::after,
.efact-intel-points button.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

.efact-intel-points span {
  color: var(--efact-muted);
  font-size: 0.9rem;
}

.efact-intel-points strong {
  font-size: clamp(1.12rem, 1.55vw, 1.5rem);
  font-weight: 500;
}

.efact-intel-points small {
  grid-column: 2;
  color: var(--efact-muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.efact-intel-panel {
  position: relative;
  min-height: 640px;
  border: 1px solid var(--efact-line);
  background: #ffffff;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto auto auto;
}

.efact-intel-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.65;
  pointer-events: none;
}

.efact-intel-orbit {
  position: relative;
  z-index: 1;
  min-height: 290px;
}

.efact-intel-orbit::before,
.efact-intel-orbit::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.efact-intel-orbit::before {
  width: min(72%, 460px);
  aspect-ratio: 1 / 0.56;
  animation: efactOrbitOne 8s linear infinite;
}

.efact-intel-orbit::after {
  width: min(52%, 330px);
  aspect-ratio: 1 / 0.56;
  animation: efactOrbitTwo 7s linear infinite reverse;
}

.efact-node {
  position: absolute;
  z-index: 2;
  min-width: 3.35rem;
  min-height: 3.35rem;
  border: 1px solid var(--efact-ink);
  border-radius: 999px;
  background: #ffffff;
  display: grid;
  place-items: center;
  color: var(--efact-ink);
  font-size: 0.88rem;
  font-weight: 500;
}

.efact-node-core {
  left: 50%;
  top: 52%;
  width: 5.8rem;
  height: 5.8rem;
  background: var(--efact-ink);
  color: #ffffff;
  transform: translate(-50%, -50%);
}

.efact-node-one {
  left: 16%;
  top: 24%;
  animation: efactFloatA 4.8s ease-in-out infinite;
}

.efact-node-two {
  right: 18%;
  top: 18%;
  animation: efactFloatB 5.2s ease-in-out infinite;
}

.efact-node-three {
  left: 22%;
  bottom: 16%;
  animation: efactFloatB 4.7s ease-in-out infinite;
}

.efact-node-four {
  right: 17%;
  bottom: 22%;
  animation: efactFloatA 5.4s ease-in-out infinite;
}

.efact-intel-status,
.efact-intel-metrics,
.efact-intel-flow {
  position: relative;
  z-index: 1;
}

.efact-intel-status {
  border-top: 1px solid var(--efact-line);
  padding: 1.15rem;
  display: grid;
  gap: 0.6rem;
}

.efact-intel-status p {
  margin: 0;
  color: var(--efact-muted);
  line-height: 1.45;
}

.efact-intel-status h3 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.06;
}

.efact-intel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--efact-line);
}

.efact-intel-metrics article {
  min-height: 8.5rem;
  border-right: 1px solid var(--efact-line);
  padding: 1rem;
  display: grid;
  align-content: space-between;
  gap: 0.8rem;
}

.efact-intel-metrics article:last-child {
  border-right: 0;
}

.efact-intel-metrics span {
  color: var(--efact-muted);
  font-size: 0.88rem;
}

.efact-intel-metrics strong {
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-weight: 500;
}

.efact-intel-metrics i {
  height: 3px;
  width: 100%;
  background: var(--efact-soft-line);
  display: block;
  overflow: hidden;
}

.efact-intel-metrics i::after {
  content: "";
  width: var(--value);
  height: 100%;
  display: block;
  background: var(--efact-ink);
  transform-origin: left;
  animation: efactMetricPulse 1.2s ease;
}

.efact-intel-flow {
  border-top: 1px solid var(--efact-line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.efact-intel-flow span {
  position: relative;
  min-height: 4.8rem;
  border-right: 1px solid var(--efact-line);
  background-image: linear-gradient(90deg, transparent 0%, var(--efact-ink) 42%, transparent 72%);
  background-repeat: no-repeat;
  background-size: 180% 3px;
  background-position: -180% 100%;
  display: grid;
  place-items: center;
  color: var(--efact-muted);
  font-size: 0.92rem;
  overflow: hidden;
  animation: efactFlow 2.4s ease-in-out infinite;
  animation-delay: calc(var(--flow-index, 0) * 0.16s);
}

.efact-intel-flow span:last-child {
  border-right: 0;
}

.efact-intel-flow span::after {
  content: none;
}

.efact-intel-flow span:nth-child(1) {
  --flow-index: 0;
}

.efact-intel-flow span:nth-child(2) {
  --flow-index: 1;
}

.efact-intel-flow span:nth-child(3) {
  --flow-index: 2;
}

.efact-intel-flow span:nth-child(4) {
  --flow-index: 3;
}

@keyframes efactOrbitOne {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes efactOrbitTwo {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes efactFloatA {
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes efactFloatB {
  50% {
    transform: translate3d(0, 12px, 0);
  }
}

@keyframes efactMetricPulse {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes efactFlow {
  0% {
    background-position: -180% 100%;
  }
  48%,
  100% {
    background-position: 180% 100%;
  }
}

.efact-open-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.efact-open-cta {
  border-top: 1px solid var(--efact-line);
  padding: clamp(4rem, 9vw, 8rem) 0;
  display: grid;
  place-items: center;
  gap: 1rem;
  text-align: center;
}

.efact-open-cta h2 {
  max-width: 12ch;
}

.efact-legal-page {
  display: grid;
  gap: 1.4rem;
}

.efact-legal-page article {
  border-top: 1px solid var(--efact-line);
  padding-top: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.efact-legal-page h2 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.05;
}

.efact-legal-page p {
  max-width: 860px;
  margin: 0;
  color: var(--efact-muted);
  line-height: 1.55;
}

.efact-legal-page a {
  color: var(--efact-ink);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.efact-legal-page .legal-note {
  color: rgba(17, 17, 17, 0.52);
}

.efact-legal-action {
  width: fit-content;
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--efact-ink);
  padding: 0.72rem 1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.efact-legal-action:hover {
  border-color: var(--efact-ink);
  transform: translateY(-2px);
}

.efact-footer {
  width: min(var(--efact-max), calc(100vw - 2rem));
  margin: 0 auto;
  border-top: 1px solid var(--efact-line);
  padding: 2rem 0 3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  background: #ffffff;
}

.efact-footer h4 {
  margin: 0 0 0.7rem;
  color: var(--efact-ink);
  font-family: var(--efact-font);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.efact-footer a,
.efact-footer p {
  margin: 0.34rem 0 0;
  color: var(--efact-muted);
  font-size: 0.94rem;
}

.efact-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 650;
  width: 100%;
  margin: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: clamp(1.1rem, 2.6vw, 1.65rem) clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(1rem, 3vw, 2rem);
  color: rgba(17, 17, 17, 0.72);
  background: #f4f4f4;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 -18px 50px rgba(17, 17, 17, 0.08);
}

.efact-bottom h3,
.efact-bottom p {
  margin: 0;
}

.efact-bottom h3 {
  margin-bottom: 0.65rem;
  color: #111111;
  font-size: 1rem;
  font-weight: 600;
}

.efact-bottom p {
  max-width: 62ch;
  line-height: 1.5;
}

.efact-bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}

.efact-cookie-detail {
  display: none;
  margin-top: 0.7rem;
}

.efact-bottom.is-managing .efact-cookie-detail {
  display: block;
}

.efact-cookie-actions {
  display: grid;
  gap: 0.65rem;
  align-content: center;
}

.efact-bottom button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #eaeaea;
  color: #111111;
  padding: 0.75rem 1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.efact-bottom button:hover {
  background: #dfdfdf;
  transform: translateY(-1px);
}

.efact-template .scroll-progress {
  background: var(--efact-ink);
}

.efact-hover-hint {
  position: fixed;
  z-index: 500;
  max-width: 260px;
  border: 1px solid var(--efact-line);
  border-radius: 0.55rem;
  background: #ffffff;
  color: var(--efact-ink);
  padding: 0.55rem 0.68rem;
  font-size: 0.85rem;
  line-height: 1.28;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.12);
  pointer-events: none;
  opacity: 0;
  transform: translate(14px, 14px) scale(0.98);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.efact-hover-hint.is-visible {
  opacity: 1;
  transform: translate(14px, 14px) scale(1);
}

@media (max-width: 1000px) {
  .efact-template .efact-header {
    grid-template-columns: auto auto;
  }

  .efact-template .efact-actions {
    display: none;
  }

  .efact-template .efact-actions .header-search {
    display: none;
  }

  .efact-template .efact-nav {
    justify-self: end;
  }

  .efact-top-stories,
  .efact-open-grid {
    grid-template-columns: 1fr;
  }

  .efact-open-card-large {
    grid-row: auto;
  }

  .efact-open-card-large img,
  .efact-open-card img {
    aspect-ratio: 16 / 10;
  }

  .efact-news-intel {
    grid-template-columns: 1fr;
  }

  .efact-newsroom-live {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .newsroom-signals {
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .newsroom-signals strong {
    max-width: none;
  }

  .newsroom-output {
    grid-template-columns: 1fr;
  }

  .efact-news-panel {
    position: relative;
    top: auto;
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .efact-template .efact-header {
    position: sticky;
    grid-template-columns: auto 1fr auto auto;
    gap: 0.5rem;
    padding: 0.92rem 0.88rem;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  .efact-template .efact-header,
  .efact-template .efact-header.scrolled {
    background: #ffffff;
    border-bottom: 0;
  }

  .efact-template .efact-logo .logo-text {
    font-size: 1.04rem;
    font-weight: 700;
  }

  .mobile-search {
    appearance: none;
    justify-self: end;
    width: 1.9rem;
    height: 1.9rem;
    border: 0;
    background: transparent;
    color: #666666;
    display: grid;
    place-items: center;
    padding: 0;
  }

  .mobile-search span {
    position: relative;
    width: 0.82rem;
    height: 0.82rem;
    border: 2px solid currentColor;
    border-radius: 999px;
  }

  .mobile-search span::after {
    content: "";
    position: absolute;
    right: -0.42rem;
    bottom: -0.28rem;
    width: 0.58rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: left center;
  }

  .efact-template .menu-toggle {
    position: relative;
    display: grid;
    justify-self: end;
    width: 1.9rem;
    height: 1.9rem;
    place-items: center;
    border: 0;
    background: transparent;
    color: #666666;
    padding: 0;
  }

  .efact-template .menu-toggle::before {
    content: "";
    width: 1.02rem;
    height: 1.02rem;
    border: 2px solid currentColor;
    border-radius: 0.42rem;
  }

  .efact-template .menu-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0.55rem;
    bottom: 0.55rem;
    width: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translateX(-50%);
  }

  .efact-template .menu-toggle span {
    display: none;
  }

  .efact-template .efact-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 3.9rem;
    bottom: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border: 0;
    background: #ffffff;
    padding: clamp(1.45rem, 5.2vw, 2.75rem) 0.92rem 2rem;
    gap: clamp(0.62rem, 3vw, 1.05rem);
    overflow-y: auto;
    z-index: 299;
  }

  .efact-template .efact-nav.open {
    display: flex;
  }

  .efact-template .efact-nav a {
    color: #111111;
    font-size: clamp(1.95rem, 8.2vw, 3rem);
    font-weight: 460;
    line-height: 1;
    text-decoration: none;
  }

  .efact-template .efact-nav a:hover,
  .efact-template .efact-nav a.is-active {
    text-decoration: none;
  }

  .mobile-menu-divider {
    width: 100%;
    height: 1px;
    margin: clamp(1rem, 3.4vw, 1.7rem) 0 clamp(0.5rem, 1.8vw, 0.9rem);
    background: var(--efact-line);
    display: block;
  }

  .efact-template .efact-nav .mobile-menu-action {
    display: block;
    font-size: clamp(1.78rem, 7.2vw, 2.65rem);
    color: #111111;
  }

  .efact-template .efact-nav .mobile-menu-login {
    display: block;
    font-size: clamp(1.65rem, 6.8vw, 2.45rem);
    color: #707070;
  }

  .efact-open-hero,
  .efact-top-stories,
  .efact-open-section,
  .efact-open-cta,
  .efact-footer,
  .efact-bottom {
    width: min(100% - 1.5rem, var(--efact-max));
  }

  .efact-open-hero {
    min-height: auto;
    padding: 4.5rem 0 3.5rem;
  }

  .efact-open-prompt-row {
    grid-template-columns: 1fr;
  }

  .efact-open-prompt-row button {
    width: 100%;
    aspect-ratio: auto;
    padding: 0.74rem 1rem;
  }

  .efact-prompt-intel {
    grid-template-columns: 1fr;
  }

  .efact-prompt-score {
    justify-items: start;
  }

  .efact-open-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .efact-open-news a,
  .efact-open-research a {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1rem 0;
  }

  .efact-open-news strong,
  .efact-open-research strong {
    max-width: none;
  }

  .efact-open-news span,
  .efact-open-news time,
  .efact-open-research span,
  .efact-open-research time {
    grid-column: 1;
    grid-row: auto;
    margin-left: 0;
  }

  .efact-open-news a::after,
  .efact-open-research a::after {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .efact-news-intel {
    grid-template-columns: 1fr;
  }

  .efact-news-panel {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .efact-news-pipeline {
    grid-template-columns: 1fr 1fr;
  }

  .efact-offer-intel,
  .efact-capability-system,
  .efact-before-after,
  .efact-agent-builder,
  .agent-builder-stage,
  .efact-impact-sim {
    grid-template-columns: 1fr;
  }

  .efact-workflow-state {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .efact-workflow-state:last-child {
    border-bottom: 0;
  }

  .efact-workflow-state h3 {
    max-width: none;
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .workflow-mess,
  .workflow-system {
    min-height: 210px;
  }

  .workflow-system {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    align-content: center;
  }

  .workflow-system::before {
    left: 50%;
    right: auto;
    top: 8%;
    bottom: 8%;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--efact-ink), transparent);
    transform: translateX(-50%);
  }

  .efact-image-pause figure,
  .efact-human-layer-grid {
    grid-template-columns: 1fr;
  }

  .efact-image-pause figcaption {
    border-left: 0;
    border-top: 1px solid var(--efact-line);
    align-content: start;
  }

  .efact-image-pause img {
    height: clamp(16rem, 58vw, 24rem);
  }

  .efact-image-pause strong {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3.35rem);
  }

  .efact-human-layer-grid {
    gap: 1.3rem;
  }

  .agent-builder-controls,
  .impact-inputs,
  .agent-builder-copy {
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .agent-builder-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agent-builder-controls button {
    font-size: 1rem;
  }

  .agent-builder-flow {
    min-height: 340px;
  }

  .impact-output,
  .efact-governance-layer {
    grid-template-columns: 1fr;
  }

  .impact-output article,
  .efact-governance-layer article {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .impact-output article:last-child,
  .efact-governance-layer article:last-child {
    border-bottom: 0;
  }

  .efact-offer-map {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .efact-capability-system {
    min-height: auto;
  }

  .capability-column,
  .capability-brain {
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .capability-column:last-child {
    border-bottom: 0;
  }

  .capability-brain {
    min-height: 300px;
  }

  .efact-intel-layout {
    grid-template-columns: 1fr;
  }

  .efact-process-system {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .efact-process-map {
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .efact-process-visual {
    min-height: 430px;
  }

  .efact-systems-grid {
    grid-template-columns: 1fr 1fr;
  }

  .efact-intel-panel {
    min-height: auto;
  }

  .efact-intel-metrics,
  .efact-intel-flow {
    grid-template-columns: 1fr;
  }

  .efact-intel-metrics article,
  .efact-intel-flow span {
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .efact-intel-flow span:last-child {
    border-bottom: 0;
  }

  .efact-footer {
    grid-template-columns: 1fr 1fr;
  }

  .efact-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .efact-open-hero h1 {
    font-size: 2.4rem;
  }

  .efact-footer {
    grid-template-columns: 1fr;
  }

  .efact-systems-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .efact-template .efact-header {
    padding: 0.82rem 0.9rem;
  }

  .efact-open-hero,
  .efact-top-stories,
  .efact-open-section,
  .efact-open-cta,
  .efact-page-hero,
  .efact-page-media,
  .efact-link-lab,
  .efact-footer,
  .efact-bottom {
    width: calc(100vw - 1.25rem);
  }

  .efact-open-hero {
    min-height: 76svh;
    padding: 4.6rem 0 2.4rem;
    align-items: center;
  }

  .efact-open-hero-inner {
    width: min(100%, 520px);
    gap: 0.82rem;
  }

  .efact-open-hero h1 {
    max-width: 12ch;
    margin-bottom: 0.1rem;
    font-size: clamp(2.05rem, 10.4vw, 2.85rem);
    line-height: 1.03;
  }

  .efact-open-prompt {
    border-radius: 0.95rem;
    padding: 0.82rem 0.95rem 0.9rem;
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.06);
  }

  .efact-intake-top {
    align-items: flex-start;
  }

  .efact-intake-top strong {
    font-size: 0.92rem;
  }

  .efact-open-prompt-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
  }

  .efact-open-prompt label,
  .efact-prompt-signal,
  .efact-open-links a {
    font-size: 0.82rem;
  }

  .efact-open-prompt input {
    font-size: 0.98rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .efact-open-prompt-row button {
    width: 2.55rem;
    min-height: 2.55rem;
    aspect-ratio: 1;
    padding: 0;
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1;
  }

  .efact-prompt-intel {
    gap: 0.62rem;
    padding-top: 0.7rem;
  }

  .efact-intake-flow {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0.42rem;
    padding: 0.68rem;
    background-size: 28px 28px;
  }

  .efact-intake-flow::before,
  .efact-intake-flow::after {
    left: 50%;
    right: auto;
    top: 0.9rem;
    bottom: 0.9rem;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.28), transparent);
    transform: translateX(-50%);
  }

  .efact-intake-flow::after {
    top: -30%;
    bottom: auto;
    height: 28%;
    animation: efactIntakeSignalMobile 3s ease-in-out infinite;
  }

  .efact-intake-flow span,
  .efact-intake-flow strong {
    width: min(100%, 13rem);
    padding: 0.38rem 0.52rem;
    font-size: 0.74rem;
  }

  .efact-intake-result {
    grid-template-columns: 1fr;
  }

  .efact-intake-result article,
  .efact-intake-result article:nth-child(2n),
  .efact-intake-result article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--efact-soft-line);
  }

  .efact-intake-result article:last-child {
    border-bottom: 0;
  }

  .efact-intake-live-preview {
    grid-template-columns: 1fr;
  }

  .efact-intake-live-preview div {
    border-right: 0;
    border-bottom: 1px solid var(--efact-soft-line);
  }

  .efact-intake-readiness {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .efact-intake-readiness span {
    justify-content: center;
  }

  .efact-intake-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .efact-intake-actions button {
    width: 100%;
    text-align: center;
  }

  .efact-intake-proof {
    grid-template-columns: 1fr;
  }

  .efact-intake-proof span,
  .efact-intake-proof span:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--efact-soft-line);
  }

  .efact-intake-proof span:last-child {
    border-bottom: 0;
  }

  .efact-intake-questions,
  .efact-intake-briefing {
    grid-template-columns: 1fr;
  }

  .efact-intake-questions button {
    text-align: center;
  }

  .efact-intake-briefing div,
  .efact-intake-briefing div:nth-of-type(2n),
  .efact-intake-briefing div:nth-last-of-type(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--efact-soft-line);
  }

  .efact-intake-briefing div:last-child {
    border-bottom: 0;
  }

  @keyframes efactIntakeSignalMobile {
    0%,
    18% {
      transform: translateX(-50%) translateY(0);
      opacity: 0;
    }
    42% {
      opacity: 0.65;
    }
    82%,
    100% {
      transform: translateX(-50%) translateY(480%);
      opacity: 0;
    }
  }

  .efact-prompt-plan {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.34rem;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    scrollbar-width: none;
  }

  .efact-prompt-plan::-webkit-scrollbar {
    display: none;
  }

  .efact-prompt-plan span {
    flex: 0 0 auto;
    max-width: none;
    padding: 0.28rem 0.48rem;
    font-size: 0.78rem;
  }

  .efact-prompt-score {
    min-width: 0;
    width: 100%;
  }

  .efact-prompt-score strong {
    font-size: 1.12rem;
  }

  .efact-intel-nature img {
    height: clamp(14rem, 52vw, 21rem);
  }

  .efact-open-links {
    justify-content: center;
    overflow: visible;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 0.15rem 0.2rem;
    scrollbar-width: none;
  }

  .efact-open-links::-webkit-scrollbar {
    display: none;
  }

  .efact-open-links a {
    flex: 0 1 auto;
    white-space: nowrap;
  }

  .efact-open-section {
    padding-top: 1.1rem;
    padding-bottom: 3rem;
  }

  .efact-open-section-head h2,
  .efact-open-cta h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
    line-height: 1.02;
  }

  .efact-open-card h2,
  .efact-open-card:not(.efact-open-card-large) h2 {
    font-size: 1.08rem;
    line-height: 1.18;
  }

  .efact-open-card img,
  .efact-open-card-large img {
    aspect-ratio: 4 / 3;
  }

  .efact-page-hero {
    padding: 4rem 0 2.4rem;
  }

  .efact-page-hero h1 {
    width: 100%;
    font-size: clamp(2.25rem, 10vw, 2.9rem);
    line-height: 1.08;
  }

  .efact-page-media {
    padding-bottom: 3rem;
  }

  .efact-page-media img {
    height: min(74vw, 30rem);
    max-height: none;
  }

  .efact-link-lab {
    min-height: auto;
    margin-bottom: 3rem;
  }

  .efact-link-lab-copy {
    padding: 1rem;
  }

  .efact-link-lab-copy h2 {
    font-size: clamp(2rem, 11vw, 3.3rem);
    line-height: 1.02;
  }

  .efact-link-lab-visual {
    min-height: 340px;
    padding: 1rem;
  }

  .efact-product-lab .efact-link-lab-visual strong,
  .efact-research-lab .lab-node.center {
    width: 7rem;
    font-size: 1.08rem;
  }

  .lab-chip,
  .lab-node,
  .kg {
    font-size: 0.82rem;
    padding: 0.42rem 0.58rem;
  }

  .efact-systems-grid {
    gap: 0.85rem;
  }

  .efact-system-card {
    min-height: 300px;
    padding: 0.9rem;
  }

  .efact-system-mini {
    min-height: 112px;
  }

  .efact-intel-copy h3 {
    font-size: clamp(2rem, 11vw, 3.35rem);
    line-height: 1.02;
  }

  .efact-intel-layout {
    gap: 1rem;
  }

  .efact-intel-points button {
    grid-template-columns: 2.2rem 1fr;
    padding: 0.82rem 0;
  }

  .efact-intel-points strong {
    font-size: 1rem;
  }

  .efact-intel-points small,
  .efact-intel-points button::after {
    font-size: 0.8rem;
  }

  .efact-intel-orbit {
    min-height: 250px;
  }

  .efact-node {
    min-width: 2.7rem;
    min-height: 2.7rem;
    font-size: 0.78rem;
  }

  .efact-node-core {
    width: 4.6rem;
    height: 4.6rem;
  }

  .efact-intel-status {
    padding: 0.9rem;
  }

  .efact-intel-status h3 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .efact-intel-metrics article {
    min-height: 6.5rem;
    padding: 0.85rem;
  }

  .efact-page-intel {
    min-height: 340px;
    background-size: 42px 42px;
  }

  .efact-knowledge-graph {
    min-height: 360px;
  }

  .efact-faq-list article {
    min-height: auto;
    padding: 1rem 0;
  }

  .efact-faq-list h2,
  .efact-contact-layout h2 {
    font-size: clamp(1.35rem, 7vw, 2.2rem);
  }

  .efact-contact-layout {
    gap: 1.5rem;
  }

  .efact-template .contact-form input,
  .efact-template .contact-form textarea {
    font-size: 1rem;
  }
}

@media (max-width: 390px) {
  .efact-open-hero,
  .efact-top-stories,
  .efact-open-section,
  .efact-open-cta,
  .efact-page-hero,
  .efact-page-media,
  .efact-link-lab,
  .efact-footer,
  .efact-bottom {
    width: calc(100vw - 1rem);
  }

  .efact-open-hero h1 {
    font-size: 2.25rem;
  }

  .efact-page-hero h1 {
    font-size: 2.1rem;
  }

  .efact-open-section-head h2,
  .efact-open-cta h2,
  .efact-link-lab-copy h2,
  .efact-intel-copy h3 {
    font-size: 2rem;
  }

  .efact-link-lab-visual {
    min-height: 300px;
  }
}

/* Final layout guard: keep footer aligned with page content on every viewport. */
.efact-template .efact-footer,
.efact-template .efact-bottom {
  width: calc(100% - 2rem);
  max-width: var(--efact-max);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .efact-template .efact-footer,
  .efact-template .efact-bottom {
    width: calc(100% - 1.25rem);
  }
}

@media (max-width: 390px) {
  .efact-template .efact-footer,
  .efact-template .efact-bottom {
    width: calc(100% - 1rem);
  }
}

.efact-page-hero,
.efact-page-media,
.efact-template .efact-open-section {
  width: min(var(--efact-max), calc(100vw - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.efact-page-hero {
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(2.5rem, 6vw, 5rem);
  display: grid;
  gap: 1rem;
  background: #ffffff;
}

.efact-page-hero p {
  margin: 0;
  color: var(--efact-muted);
  font-size: 1rem;
}

.efact-page-hero h1 {
  width: min(100%, 920px);
  overflow-wrap: anywhere;
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(2.25rem, 5.84vw, 4.25rem);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: 0;
}

.efact-page-media {
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.efact-page-media img {
  width: 100%;
  height: clamp(18rem, 42vw, 42rem);
  display: block;
  object-fit: cover;
  background: #ffffff;
}

.efact-link-lab {
  width: min(var(--efact-max), calc(100vw - 2rem));
  min-height: 520px;
  margin: 0 auto clamp(3.5rem, 6vw, 5.5rem);
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 56px 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  overflow: hidden;
}

.efact-link-lab-copy {
  border-right: 1px solid var(--efact-line);
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  align-content: end;
  gap: 0.8rem;
}

.efact-link-lab-copy p,
.efact-link-lab-copy span {
  margin: 0;
  color: var(--efact-muted);
}

.efact-link-lab-copy h2 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(2.2rem, 4.8vw, 5.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.efact-link-lab-visual {
  position: relative;
  min-height: 520px;
  padding: 1.2rem;
  overflow: hidden;
}

.efact-product-lab .efact-link-lab-visual strong,
.efact-research-lab .lab-node.center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(8rem, 16vw, 13rem);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: var(--efact-ink);
  color: #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: clamp(1.3rem, 2.2vw, 2.2rem);
  font-weight: 500;
  transform: translate(-50%, -50%);
}

.efact-product-lab .efact-link-lab-visual::before,
.efact-research-lab .efact-link-lab-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68%;
  aspect-ratio: 1 / 0.62;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: efactMiniRotate 9s linear infinite;
}

.lab-chip,
.lab-node {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--efact-ink);
  border-radius: 999px;
  background: #ffffff;
  padding: 0.55rem 0.78rem;
  font-weight: 500;
  animation: efactFloatA 5s ease-in-out infinite;
}

.chip-a,
.n1 { left: 13%; top: 18%; }
.chip-b,
.n2 { right: 15%; top: 16%; animation-name: efactFloatB; }
.chip-c,
.n3 { left: 18%; bottom: 18%; animation-name: efactFloatB; }
.chip-d,
.n4 { right: 14%; bottom: 20%; }

.efact-product-demo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--efact-line);
  background: #ffffff;
}

.efact-product-demo-grid a {
  min-height: 18rem;
  border-right: 1px solid var(--efact-line);
  color: var(--efact-ink);
  padding: clamp(0.9rem, 1.7vw, 1.2rem);
  display: grid;
  align-content: space-between;
  gap: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.efact-product-demo-grid a:last-child {
  border-right: 0;
}

.efact-product-demo-grid a:hover,
.efact-product-demo-grid a:focus-visible {
  background: #f8f8f6;
  transform: translateY(-2px);
}

.efact-product-demo-grid span,
.efact-product-demo-grid p,
.efact-product-demo-grid small {
  margin: 0;
  color: var(--efact-muted);
}

.efact-product-demo-grid strong {
  font-size: clamp(1.35rem, 2.3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.05;
}

.efact-product-demo-grid p {
  line-height: 1.36;
}

.efact-product-demo-grid small {
  width: fit-content;
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  padding: 0.32rem 0.52rem;
  font-size: 0.75rem;
}

.efact-product-demo-grid .is-primary {
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 38px 38px;
}

.efact-product-demo-grid .is-primary small {
  border-color: var(--efact-ink);
  color: var(--efact-ink);
}

@media (max-width: 980px) {
  .efact-product-demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .efact-product-demo-grid a:nth-child(2) {
    border-right: 0;
  }

  .efact-product-demo-grid a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--efact-line);
  }
}

@media (max-width: 780px) {
  .efact-product-demo-grid {
    grid-template-columns: 1fr !important;
  }

  .efact-product-demo-grid a,
  .efact-product-demo-grid a:nth-child(2),
  .efact-product-demo-grid a:nth-child(-n + 2) {
    min-height: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--efact-line) !important;
    padding: 0.95rem !important;
  }

  .efact-product-demo-grid a:last-child {
    border-bottom: 0 !important;
  }

  .efact-product-demo-grid strong {
    font-size: clamp(1.15rem, 5.2vw, 1.55rem) !important;
    line-height: 1.08 !important;
  }
}

.efact-commerce-atlas {
  display: grid;
  gap: clamp(1.25rem, 2vw, 2rem);
}

.commerce-screen {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
  border-top: 1px solid var(--efact-line);
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

.commerce-screen:first-child {
  border-top: 0;
  padding-top: 0;
}

.commerce-browser {
  position: relative;
  min-height: clamp(20rem, 36vw, 31rem);
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 46px 46px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.commerce-browser-bar {
  min-height: 3rem;
  border-bottom: 1px solid var(--efact-line);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.9rem;
  color: var(--efact-muted);
  font-size: 0.78rem;
}

.commerce-browser-bar span {
  width: 0.48rem;
  aspect-ratio: 1;
  border: 1px solid var(--efact-line);
  border-radius: 999px;
}

.commerce-browser-bar strong {
  margin-left: 0.35rem;
  font-weight: 500;
  color: var(--efact-muted);
}

.commerce-shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.72fr);
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  align-content: end;
}

.commerce-shop-copy {
  display: grid;
  align-content: end;
  gap: 0.7rem;
}

.commerce-shop-copy span,
.commerce-caption span,
.commerce-ai-panel p,
.commerce-cart p,
.commerce-support span {
  margin: 0;
  color: var(--efact-muted);
  font-size: 0.82rem;
}

.commerce-shop-copy h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
}

.commerce-shop-copy p,
.commerce-caption p,
.commerce-ai-panel span,
.commerce-cart small,
.commerce-support p {
  margin: 0;
  color: var(--efact-muted);
  line-height: 1.38;
}

.commerce-products {
  display: grid;
  gap: 0.65rem;
  align-content: end;
}

.commerce-products span {
  min-height: 6rem;
  border: 1px solid var(--efact-soft-line);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.65rem;
  display: grid;
  align-content: space-between;
  gap: 0.45rem;
}

.commerce-products i {
  width: 100%;
  height: 2.4rem;
  display: block;
  background:
    linear-gradient(120deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.02)),
    #f8f8f6;
}

.commerce-products strong {
  font-size: 1rem;
  font-weight: 500;
}

.commerce-products small {
  color: var(--efact-muted);
}

.commerce-products-small span {
  min-height: 5.5rem;
}

.commerce-ai-panel {
  position: absolute;
  right: clamp(0.8rem, 1.8vw, 1.2rem);
  top: 4rem;
  width: min(19rem, 44%);
  border: 1px solid var(--efact-ink);
  background: #ffffff;
  padding: 0.85rem;
  display: grid;
  gap: 0.5rem;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.08);
}

.commerce-ai-panel strong {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.05;
}

.commerce-caption {
  display: grid;
  align-content: end;
  gap: 0.7rem;
}

.commerce-caption h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  font-weight: 500;
  line-height: 1.04;
}

.commerce-cart {
  align-self: end;
  border: 1px solid var(--efact-line);
  background: #ffffff;
  padding: 0.85rem;
  display: grid;
  gap: 0.55rem;
}

.commerce-cart strong {
  font-size: clamp(1.35rem, 2.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.05;
}

.commerce-cart i {
  height: 4px;
  background: var(--efact-soft-line);
  overflow: hidden;
}

.commerce-cart i::after {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  background: var(--efact-ink);
}

.commerce-support {
  align-self: end;
  display: grid;
  gap: 0.5rem;
}

.commerce-support p {
  border: 1px solid var(--efact-soft-line);
  background: #ffffff;
  padding: 0.7rem;
}

.efact-commerce-atlas {
  gap: clamp(2.6rem, 6vw, 7rem);
}

.commerce-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.3vw, 2rem);
  align-items: start;
  border-top: 1px solid var(--efact-line);
  padding-top: clamp(1.8rem, 4.8vw, 5.5rem);
}

.commerce-feature:first-child {
  border-top: 0;
  padding-top: 0;
}

.commerce-copy {
  max-width: 52rem;
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1.1rem);
}

.commerce-feature:nth-child(even) .commerce-copy {
  justify-self: start;
}

.commerce-copy span {
  color: var(--efact-muted);
  font-size: 0.85rem;
}

.commerce-copy h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 3.8rem);
  font-weight: 500;
  line-height: 1.04;
}

.commerce-copy p {
  margin: 0;
  color: var(--efact-muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.42;
}

.commerce-copy ul {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--efact-line);
  border-left: 1px solid var(--efact-line);
}

.commerce-copy li {
  min-height: 4.7rem;
  border-right: 1px solid var(--efact-line);
  border-bottom: 1px solid var(--efact-line);
  padding: 0.72rem;
  color: var(--efact-ink);
}

.commerce-shop-screen {
  position: relative;
  min-height: clamp(34rem, 58vw, 50rem);
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 42px 42px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.shop-topbar {
  min-height: 3.4rem;
  border-bottom: 1px solid var(--efact-line);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  color: var(--efact-muted);
  font-size: 0.84rem;
}

.shop-topbar strong {
  margin-right: auto;
  color: var(--efact-ink);
  font-weight: 600;
}

.shop-hero,
.shop-checkout,
.shop-chat,
.shop-signal-board,
.shop-campaign {
  margin: clamp(0.85rem, 1.6vw, 1.3rem);
}

.shop-hero {
  min-height: clamp(13rem, 22vw, 19rem);
  display: grid;
  align-items: end;
  padding: clamp(0.9rem, 1.8vw, 1.3rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(17, 17, 17, 0.44)),
    var(--shop-image);
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.is-outdoor {
  --shop-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1200&q=78");
}

.is-interior {
  --shop-image: url("https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?auto=format&fit=crop&w=1200&q=78");
}

.is-care {
  --shop-image: url("https://images.unsplash.com/photo-1556228720-195a672e8a03?auto=format&fit=crop&w=1200&q=78");
}

.is-market {
  --shop-image: url("https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=1200&q=78");
}

.shop-hero span,
.shop-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.shop-hero h3 {
  max-width: 7ch;
  margin: 0.22rem 0;
  font-size: clamp(2.45rem, 5vw, 5.7rem);
  font-weight: 500;
  line-height: 0.95;
}

.shop-hero p,
.shop-grid small,
.shop-checkout small,
.shop-chat span,
.shop-signal-board small,
.commerce-agent-card span,
.commerce-agent-card p,
.shop-campaign p {
  margin: 0;
  color: var(--efact-muted);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0 clamp(0.85rem, 1.6vw, 1.3rem) clamp(0.85rem, 1.6vw, 1.3rem);
  align-items: end;
}

.shop-grid span {
  min-height: 8.5rem;
  border: 1px solid var(--efact-soft-line);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.7rem;
  display: grid;
  align-content: space-between;
  gap: 0.45rem;
}

.shop-grid i {
  display: block;
  height: 3.8rem;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.015)),
    var(--shop-image);
  background-size: cover;
  background-position: center;
}

.shop-grid strong {
  font-size: 0.96rem;
  font-weight: 500;
}

.commerce-agent-card {
  position: absolute;
  right: clamp(0.9rem, 2vw, 1.25rem);
  top: clamp(4.4rem, 7vw, 6rem);
  width: min(20rem, 50%);
  border: 1px solid var(--efact-ink);
  background: #ffffff;
  padding: 0.9rem;
  display: grid;
  gap: 0.55rem;
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.09);
}

.commerce-agent-card strong {
  font-size: clamp(1.15rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.06;
}

.shop-checkout {
  min-height: 17rem;
  display: grid;
  grid-template-columns: 1fr minmax(8rem, 0.62fr);
  gap: 0.8rem;
  align-items: end;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.96)),
    var(--shop-image);
  background-size: cover;
  background-position: center;
}

.shop-checkout > div,
.shop-risk,
.shop-campaign,
.shop-signal-board div {
  border: 1px solid var(--efact-line);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.85rem;
}

.shop-checkout strong,
.shop-campaign strong {
  display: block;
  margin: 0.25rem 0;
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.shop-risk strong {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.shop-risk i {
  display: block;
  height: 5px;
  margin-top: 0.55rem;
  background: var(--efact-soft-line);
}

.shop-risk i::after {
  content: "";
  display: block;
  width: var(--risk);
  height: 100%;
  background: var(--efact-ink);
}

.shop-chat {
  min-height: 18rem;
  display: grid;
  align-content: end;
  gap: 0.55rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.95)),
    var(--shop-image);
  background-size: cover;
  background-position: center;
}

.shop-chat p {
  width: min(88%, 28rem);
  margin: 0;
  border: 1px solid var(--efact-line);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.72rem 0.82rem;
}

.shop-chat p:nth-of-type(3) {
  border-color: var(--efact-ink);
}

.shop-signal-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  min-height: 14rem;
  align-content: end;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.96)),
    var(--shop-image);
  background-size: cover;
  background-position: center;
}

.shop-signal-board strong {
  display: block;
  margin: 0.3rem 0;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.shop-campaign {
  margin-top: 0;
}

.product-demo-feature {
  scroll-margin-top: 5rem;
}

.product-console {
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 44px 44px;
}

.product-pipeline,
.marketing-studio,
.source-stack,
.briefing-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: clamp(0.85rem, 1.6vw, 1.3rem);
  align-content: end;
}

.marketing-studio,
.source-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-pipeline {
  min-height: clamp(16rem, 26vw, 23rem);
}

.product-pipeline div,
.marketing-studio div,
.source-stack div,
.briefing-board div,
.support-ticket-list,
.support-answer,
.campaign-draft,
.knowledge-query,
.voice-console > div,
.intake-preview,
.project-brief {
  border: 1px solid var(--efact-line);
  background: rgba(255, 255, 255, 0.94);
  padding: clamp(0.75rem, 1.4vw, 1rem);
}

.product-pipeline span,
.marketing-studio span,
.source-stack span,
.briefing-board span,
.support-ticket-list span,
.support-answer p,
.knowledge-query span,
.voice-console span,
.intake-preview p,
.project-brief p,
.campaign-draft p,
.product-flow span {
  margin: 0;
  color: var(--efact-muted);
  font-size: 0.82rem;
}

.product-pipeline strong,
.marketing-studio strong,
.source-stack strong,
.briefing-board strong,
.support-ticket-list strong,
.support-answer strong,
.campaign-draft strong,
.knowledge-query strong,
.voice-console strong,
.intake-preview strong,
.project-brief strong {
  display: block;
  margin: 0.28rem 0;
  font-size: clamp(1.1rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.07;
}

.product-pipeline small,
.marketing-studio small,
.source-stack small,
.briefing-board small,
.support-answer span,
.knowledge-query p,
.voice-console small,
.project-brief span,
.campaign-draft span {
  margin: 0;
  color: var(--efact-muted);
  line-height: 1.38;
}

.product-flow {
  min-height: 5rem;
  border-top: 1px solid var(--efact-line);
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0 clamp(0.85rem, 1.6vw, 1.3rem);
}

.product-flow span {
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  background: #ffffff;
  padding: 0.42rem 0.7rem;
  color: var(--efact-ink);
  white-space: nowrap;
}

.product-flow i {
  height: 1px;
  background: var(--efact-line);
}

.is-sales-demo .product-pipeline div:nth-child(3),
.is-briefing-demo .briefing-board div:nth-child(4),
.is-intake-demo .project-brief {
  border-color: var(--efact-ink);
}

.support-workbench {
  min-height: clamp(19rem, 32vw, 28rem);
  display: grid;
  grid-template-columns: minmax(14rem, 0.9fr) minmax(0, 1.4fr);
  gap: 0.85rem;
  align-items: end;
  margin: clamp(0.85rem, 1.6vw, 1.3rem);
}

.support-ticket-list {
  display: grid;
  gap: 0.65rem;
}

.support-ticket-list strong {
  border-top: 1px solid var(--efact-soft-line);
  padding-top: 0.58rem;
}

.support-ticket-list .is-hot {
  width: fit-content;
  border: 1px solid var(--efact-ink);
  border-radius: 999px;
  padding: 0.34rem 0.55rem;
  color: var(--efact-ink);
}

.support-answer {
  min-height: 16rem;
  display: grid;
  align-content: end;
  gap: 0.7rem;
  border-color: var(--efact-ink);
}

.campaign-draft,
.project-brief {
  margin: 0 clamp(0.85rem, 1.6vw, 1.3rem) clamp(0.85rem, 1.6vw, 1.3rem);
}

.marketing-studio {
  min-height: clamp(15rem, 24vw, 21rem);
}

.knowledge-query {
  min-height: clamp(13rem, 22vw, 19rem);
  margin: clamp(0.85rem, 1.6vw, 1.3rem);
  display: grid;
  align-content: end;
  gap: 0.55rem;
}

.knowledge-query strong,
.intake-preview strong {
  max-width: 15ch;
  font-size: clamp(2rem, 4.5vw, 4.7rem);
  line-height: 1;
}

.source-stack {
  margin-top: 0;
}

.voice-console {
  min-height: clamp(18rem, 30vw, 27rem);
  margin: clamp(0.85rem, 1.6vw, 1.3rem);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.8fr));
  gap: 0.85rem;
  align-items: end;
}

.voice-wave {
  min-height: 16rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
}

.voice-wave i {
  width: 0.55rem;
  height: var(--h, 5rem);
  border-radius: 999px;
  background: var(--efact-ink);
  animation: efactVoicePulse 1.4s ease-in-out infinite;
}

.voice-wave i:nth-child(1) { --h: 3.2rem; }
.voice-wave i:nth-child(2) { --h: 6.4rem; animation-delay: 0.1s; }
.voice-wave i:nth-child(3) { --h: 8.8rem; animation-delay: 0.2s; }
.voice-wave i:nth-child(4) { --h: 7.2rem; animation-delay: 0.3s; }
.voice-wave i:nth-child(5) { --h: 5.4rem; animation-delay: 0.4s; }
.voice-wave i:nth-child(6) { --h: 3.8rem; animation-delay: 0.5s; }

@keyframes efactVoicePulse {
  0%, 100% { transform: scaleY(0.82); opacity: 0.72; }
  50% { transform: scaleY(1.04); opacity: 1; }
}

.briefing-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(22rem, 36vw, 31rem);
}

.briefing-board div {
  display: grid;
  align-content: space-between;
}

.briefing-board strong {
  font-size: clamp(1.65rem, 3.4vw, 3.7rem);
}

.intake-preview {
  min-height: clamp(15rem, 25vw, 22rem);
  margin: clamp(0.85rem, 1.6vw, 1.3rem);
  display: grid;
  align-content: end;
  gap: 0.75rem;
}

.intake-preview div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.intake-preview div span {
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  padding: 0.42rem 0.65rem;
  color: var(--efact-muted);
}

.is-sales-demo,
.is-support-demo,
.is-marketing-demo,
.is-knowledge-demo,
.is-voice-demo,
.is-briefing-demo,
.is-intake-demo {
  min-height: clamp(28rem, 46vw, 42rem);
}

.efact-method-grid,
.efact-industry-demos,
.efact-trust-system {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--efact-line);
  background: #ffffff;
}

.efact-method-grid article,
.efact-industry-demos article,
.efact-trust-system article {
  min-height: clamp(13rem, 22vw, 19rem);
  border-right: 1px solid var(--efact-line);
  border-bottom: 1px solid var(--efact-line);
  padding: clamp(0.9rem, 1.8vw, 1.2rem);
  display: grid;
  align-content: space-between;
  gap: 0.8rem;
}

.efact-method-grid article:nth-child(3n),
.efact-industry-demos article:nth-child(3n),
.efact-trust-system article:nth-child(3n) {
  border-right: 0;
}

.efact-method-grid article:nth-last-child(-n + 3),
.efact-industry-demos article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.efact-trust-system article:nth-last-child(-n + 1) {
  border-bottom: 0;
}

.efact-method-grid span,
.efact-method-grid p,
.efact-industry-demos span,
.efact-industry-demos p,
.efact-trust-system span,
.efact-trust-system p,
.efact-case-compare span,
.efact-case-compare p,
.efact-build-start span {
  margin: 0;
  color: var(--efact-muted);
}

.efact-method-grid h3,
.efact-industry-demos h3,
.efact-trust-system strong,
.efact-case-compare h3,
.efact-build-start strong {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.55rem);
  font-weight: 500;
  line-height: 1.06;
}

.efact-industry-demos a {
  width: fit-content;
  color: var(--efact-ink);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.efact-case-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--efact-line);
}

.efact-case-compare article {
  min-height: clamp(21rem, 34vw, 30rem);
  padding: clamp(1rem, 2vw, 1.4rem);
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.efact-case-compare article:first-child {
  border-right: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 42px 42px;
}

.efact-case-compare article:nth-child(2) {
  background: var(--efact-ink);
  color: #ffffff;
}

.efact-case-compare article:nth-child(2) span,
.efact-case-compare article:nth-child(2) p,
.efact-case-compare article:nth-child(2) li {
  color: rgba(255, 255, 255, 0.72);
}

.efact-case-compare ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  border-top: 1px solid var(--efact-line);
}

.efact-case-compare li {
  border-bottom: 1px solid var(--efact-line);
  padding: 0.7rem 0;
}

.efact-case-compare article:nth-child(2) ul,
.efact-case-compare article:nth-child(2) li {
  border-color: rgba(255, 255, 255, 0.18);
}

.efact-build-start {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--efact-line);
}

.efact-build-start article {
  min-height: clamp(12rem, 20vw, 18rem);
  border-right: 1px solid var(--efact-line);
  padding: clamp(0.9rem, 1.8vw, 1.2rem);
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.efact-build-start article:last-child {
  border-right: 0;
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 38px 38px;
}

.efact-business-lab .efact-link-lab-visual,
.efact-pricing-lab .efact-link-lab-visual,
.efact-contact-lab .efact-link-lab-visual {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.efact-business-lab article,
.efact-pricing-lab span,
.efact-contact-lab span,
.efact-contact-lab strong {
  border: 1px solid var(--efact-line);
  background: #ffffff;
  padding: 1rem;
}

.efact-business-lab article {
  min-height: 8rem;
  display: grid;
  align-content: space-between;
}

.efact-business-lab article strong {
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-weight: 500;
}

.efact-business-lab article:nth-child(2) {
  margin-left: 14%;
  border-color: var(--efact-ink);
}

.efact-business-lab article:nth-child(3) {
  margin-left: 28%;
}

.efact-pricing-lab span {
  position: relative;
  color: var(--efact-muted);
  overflow: hidden;
}

.efact-pricing-lab span::after {
  content: "";
  display: block;
  width: var(--bar);
  height: 5px;
  margin-top: 0.9rem;
  background: var(--efact-ink);
  animation: efactBarBreathe 2.1s ease-in-out infinite;
}

.efact-faq-lab .efact-link-lab-visual {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
}

.efact-faq-lab span,
.efact-faq-lab strong {
  border-right: 1px solid var(--efact-line);
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  font-weight: 500;
}

.efact-faq-lab strong {
  border-right: 0;
  background: var(--efact-ink);
  color: #ffffff;
}

.efact-contact-lab .efact-link-lab-visual span,
.efact-contact-lab .efact-link-lab-visual strong {
  width: min(100%, 520px);
}

.efact-contact-lab .efact-link-lab-visual span:nth-child(2) { margin-left: 8%; }
.efact-contact-lab .efact-link-lab-visual span:nth-child(3) { margin-left: 16%; }

.efact-contact-lab .efact-link-lab-visual strong {
  margin-left: 24%;
  background: var(--efact-ink);
  color: #ffffff;
}

.efact-dev-lab .efact-link-lab-visual {
  display: grid;
  align-content: center;
  gap: 0.85rem;
}

.efact-dev-lab .efact-link-lab-visual span,
.efact-dev-lab .efact-link-lab-visual strong {
  border: 1px solid var(--efact-line);
  background: #ffffff;
  padding: 1rem;
  font-weight: 500;
}

.efact-dev-lab .efact-link-lab-visual span:nth-child(2) { margin-left: 8%; }
.efact-dev-lab .efact-link-lab-visual span:nth-child(3) { margin-left: 16%; border-color: var(--efact-ink); }
.efact-dev-lab .efact-link-lab-visual span:nth-child(4) { margin-left: 24%; }
.efact-dev-lab .efact-link-lab-visual strong {
  margin-left: 32%;
  background: var(--efact-ink);
  color: #ffffff;
}

.efact-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.efact-capability-grid article {
  min-height: 260px;
  border: 1px solid var(--efact-line);
  background: #ffffff;
  padding: 1rem;
  display: grid;
  align-content: space-between;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.efact-capability-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--efact-ink);
}

.efact-capability-grid span,
.efact-capability-grid p {
  margin: 0;
  color: var(--efact-muted);
}

.efact-capability-grid h3 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.08;
}

.efact-social-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
}

.social-radar {
  position: relative;
  min-height: 520px;
  border-right: 1px solid var(--efact-line);
}

.social-radar::before,
.social-radar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.social-radar::before {
  width: 72%;
  aspect-ratio: 1;
  animation: efactMiniRotate 9s linear infinite;
}

.social-radar::after {
  width: 46%;
  aspect-ratio: 1;
  animation: efactMiniRotate 7s linear infinite reverse;
}

.social-radar span,
.social-radar strong {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--efact-ink);
  border-radius: 999px;
  background: #ffffff;
  padding: 0.55rem 0.78rem;
  font-weight: 500;
}

.social-radar strong {
  left: 50%;
  top: 50%;
  width: 8rem;
  height: 8rem;
  display: grid;
  place-items: center;
  background: var(--efact-ink);
  color: #ffffff;
  text-align: center;
  transform: translate(-50%, -50%);
}

.social-radar span:nth-child(1) { left: 14%; top: 18%; animation: efactFloatA 5s ease-in-out infinite; }
.social-radar span:nth-child(2) { right: 14%; top: 18%; animation: efactFloatB 5s ease-in-out infinite; }
.social-radar span:nth-child(3) { left: 18%; bottom: 18%; animation: efactFloatB 5s ease-in-out infinite; }
.social-radar span:nth-child(4) { right: 18%; bottom: 18%; animation: efactFloatA 5s ease-in-out infinite; }

.social-output {
  display: grid;
}

.social-output article {
  border-bottom: 1px solid var(--efact-line);
  padding: 1rem;
  display: grid;
  align-content: center;
  gap: 0.55rem;
}

.social-output article:last-child {
  border-bottom: 0;
}

.social-output span,
.social-output p {
  margin: 0;
}

.social-output span {
  color: var(--efact-muted);
}

.social-output p {
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.1;
}

.efact-eval-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 50px 50px;
}

.efact-eval-matrix article {
  min-height: 320px;
  border-right: 1px solid var(--efact-line);
  padding: 1rem;
  display: grid;
  align-content: space-between;
}

.efact-eval-matrix article:last-child {
  border-right: 0;
}

.efact-eval-matrix span {
  color: var(--efact-muted);
}

.efact-eval-matrix strong {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 500;
}

.efact-eval-matrix i {
  width: var(--value);
  height: 7px;
  display: block;
  background: var(--efact-ink);
  animation: efactBarBreathe 2s ease-in-out infinite;
}

.efact-dev-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.efact-dev-map div {
  border-right: 1px solid var(--efact-line);
  display: grid;
  place-items: center;
  padding: 1rem;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 500;
  text-align: center;
  background-image: linear-gradient(90deg, transparent 0%, var(--efact-ink) 42%, transparent 72%);
  background-repeat: no-repeat;
  background-size: 180% 3px;
  background-position: -180% 100%;
  animation: efactFlow 2.8s ease-in-out infinite;
}

.efact-dev-map div:nth-child(2) { animation-delay: 0.14s; }
.efact-dev-map div:nth-child(3) { animation-delay: 0.28s; }
.efact-dev-map div:nth-child(4) { animation-delay: 0.42s; }
.efact-dev-map div:nth-child(5) {
  border-right: 0;
  background-color: var(--efact-ink);
  color: #ffffff;
  animation-delay: 0.56s;
}

.efact-page-list,
.efact-page-grid,
.efact-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.efact-page-list article,
.efact-page-grid article,
.efact-price-grid article,
.efact-faq-list article {
  border-top: 1px solid var(--efact-line);
  background: #ffffff;
  padding-top: 1rem;
}

.efact-page-list span {
  color: var(--efact-muted);
  font-size: 0.92rem;
}

.efact-page-list h3,
.efact-page-grid h3,
.efact-price-grid p,
.efact-faq-list h2,
.efact-contact-layout h2 {
  margin: 0.7rem 0 0;
  font-family: var(--efact-font);
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  font-weight: 500;
  line-height: 1.12;
}

.efact-page-list p,
.efact-page-grid p,
.efact-faq-list p,
.efact-contact-layout p,
.efact-price-grid span {
  margin: 0.65rem 0 0;
  color: var(--efact-muted);
  line-height: 1.45;
}

.efact-price-grid h2 {
  margin: 0.9rem 0 0;
  font-family: var(--efact-font);
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.efact-price-grid a {
  width: fit-content;
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--efact-ink);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.efact-faq-list {
  border-top: 1px solid var(--efact-line);
}

.efact-faq-list article {
  min-height: 8rem;
  border-top: 0;
  border-bottom: 1px solid var(--efact-line);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1.1rem 0;
}

.efact-faq-list h2 {
  margin: 0;
}

.efact-faq-list p {
  margin: 0;
}

.efact-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.efact-contact-layout h2 {
  margin-top: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.efact-template .contact-form {
  border: 0;
  border-top: 1px solid var(--efact-line);
  background: #ffffff;
  padding: 1rem 0 0;
}

.efact-template .contact-form label {
  color: var(--efact-muted);
  text-transform: none;
  letter-spacing: 0;
}

.efact-template .contact-form input,
.efact-template .contact-form textarea {
  border: 1px solid var(--efact-line);
  background: #ffffff;
  color: var(--efact-ink);
}

.efact-template .button.primary {
  width: fit-content;
  border-color: var(--efact-ink);
  background: var(--efact-ink);
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
}

.efact-access-panel {
  border-top: 1px solid var(--efact-line);
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.efact-access-panel article {
  border: 1px solid var(--efact-line);
  background: #ffffff;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
}

.efact-access-panel span,
.efact-access-panel p {
  margin: 0;
  color: var(--efact-muted);
}

.efact-access-panel strong {
  font-size: clamp(1.45rem, 2.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.06;
}

.efact-page-intel {
  min-height: 420px;
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 56px 56px;
  overflow: hidden;
  position: relative;
}

.efact-page-intel::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
}

.efact-architecture {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.efact-arch-lane,
.efact-arch-core {
  position: relative;
  z-index: 1;
  border-right: 1px solid var(--efact-line);
  padding: 1rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.efact-arch-lane:last-child {
  border-right: 0;
}

.efact-arch-lane span {
  color: var(--efact-muted);
}

.efact-arch-lane strong {
  font-size: clamp(1.1rem, 1.8vw, 1.65rem);
  font-weight: 500;
  line-height: 1.1;
}

.efact-arch-lane i {
  width: 100%;
  height: 3px;
  background: var(--efact-ink);
  transform-origin: left;
  animation: efactLane 2.8s ease-in-out infinite;
}

.efact-arch-lane:nth-child(2) i { animation-delay: 0.2s; }
.efact-arch-lane:nth-child(4) i { animation-delay: 0.4s; }
.efact-arch-lane:nth-child(5) i { animation-delay: 0.6s; }

.efact-arch-core {
  place-items: center;
  background: var(--efact-ink);
  color: #ffffff;
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  text-align: center;
}

.efact-outcome-map,
.efact-scope-sim,
.efact-intake-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.efact-outcome-map article,
.efact-scope-sim article,
.efact-intake-preview article {
  position: relative;
  border-right: 1px solid var(--efact-line);
  padding: 1rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.efact-outcome-map article:last-child,
.efact-scope-sim article:last-child,
.efact-intake-preview article:last-child {
  border-right: 0;
}

.efact-outcome-map span,
.efact-scope-sim span,
.efact-intake-preview span {
  color: var(--efact-muted);
}

.efact-outcome-map strong,
.efact-scope-sim strong,
.efact-intake-preview strong {
  font-size: clamp(1.3rem, 2.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.efact-outcome-map i,
.efact-scope-sim i {
  height: 6px;
  width: var(--value);
  display: block;
  background: var(--efact-ink);
  animation: efactBarBreathe 2.2s ease-in-out infinite;
}

.efact-knowledge-graph {
  min-height: 520px;
}

.efact-knowledge-graph::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54%;
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: efactMiniRotate 9s linear infinite;
}

.kg {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--efact-ink);
  border-radius: 999px;
  background: #ffffff;
  padding: 0.55rem 0.8rem;
  font-weight: 500;
}

.kg-core {
  left: 50%;
  top: 50%;
  background: var(--efact-ink);
  color: #ffffff;
  transform: translate(-50%, -50%);
}

.kg-one { left: 14%; top: 18%; animation: efactFloatA 5s ease-in-out infinite; }
.kg-two { right: 18%; top: 16%; animation: efactFloatB 5.4s ease-in-out infinite; }
.kg-three { left: 22%; bottom: 18%; animation: efactFloatB 4.8s ease-in-out infinite; }
.kg-four { right: 16%; bottom: 20%; animation: efactFloatA 5.3s ease-in-out infinite; }
.kg-five { left: 44%; top: 12%; animation: efactKnowledge 4.8s ease-in-out infinite; }

.efact-decision-tree {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  overflow: hidden;
}

.efact-decision-tree div {
  position: relative;
  min-height: 100%;
  border-right: 1px solid var(--efact-line);
  display: grid;
  place-items: center;
  padding: 1rem;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 500;
  text-align: center;
}

.efact-decision-tree div:last-child {
  border-right: 0;
  background: var(--efact-ink);
  color: #ffffff;
}

.efact-decision-tree div::after {
  content: none;
  position: absolute;
  right: -0.28rem;
  top: 50%;
  width: 0.56rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--efact-ink);
  transform: translateY(-50%);
  animation: efactSignalPulse 1.5s ease-in-out infinite;
}

.efact-decision-tree div:last-child::after {
  content: none;
}

.efact-intake-preview article span {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--efact-ink);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--efact-ink);
}

.efact-intake-preview article:nth-child(4) {
  background: var(--efact-ink);
  color: #ffffff;
}

.efact-intake-preview article:nth-child(4) span {
  border-color: #ffffff;
  color: #ffffff;
}

.efact-news-lab .efact-link-lab-visual,
.efact-portal-lab .efact-link-lab-visual {
  display: grid;
  align-content: center;
  gap: 0.85rem;
}

.efact-news-lab .efact-link-lab-visual::before,
.efact-portal-lab .efact-link-lab-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: efactMiniRotate 10s linear infinite;
}

.efact-news-lab .efact-link-lab-visual span,
.efact-news-lab .efact-link-lab-visual strong,
.efact-portal-lab .efact-link-lab-visual span,
.efact-portal-lab .efact-link-lab-visual strong {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  border: 1px solid var(--efact-line);
  background: #ffffff;
  padding: 1rem;
  font-weight: 500;
}

.efact-news-lab .efact-link-lab-visual span:nth-child(2),
.efact-portal-lab .efact-link-lab-visual span:nth-child(2) { margin-left: 8%; }
.efact-news-lab .efact-link-lab-visual span:nth-child(3),
.efact-portal-lab .efact-link-lab-visual span:nth-child(3) { margin-left: 16%; border-color: var(--efact-ink); }
.efact-news-lab .efact-link-lab-visual span:nth-child(4),
.efact-portal-lab .efact-link-lab-visual span:nth-child(4) { margin-left: 24%; }

.efact-news-lab .efact-link-lab-visual strong,
.efact-portal-lab .efact-link-lab-visual strong {
  margin-left: 32%;
  background: var(--efact-ink);
  color: #ffffff;
}

.efact-news-os,
.efact-newsroom-flow,
.efact-portal-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.efact-news-os article,
.efact-newsroom-flow article,
.efact-portal-preview article {
  position: relative;
  border-right: 1px solid var(--efact-line);
  padding: 1rem;
  display: grid;
  align-content: space-between;
  gap: 1.4rem;
}

.efact-news-os article:last-child,
.efact-newsroom-flow article:last-child,
.efact-portal-preview article:last-child {
  border-right: 0;
  background: var(--efact-ink);
  color: #ffffff;
}

.efact-news-os span,
.efact-news-os p,
.efact-newsroom-flow span,
.efact-newsroom-flow p,
.efact-portal-preview span,
.efact-portal-preview p {
  margin: 0;
  color: var(--efact-muted);
}

.efact-news-os article:last-child span,
.efact-news-os article:last-child p,
.efact-newsroom-flow article:last-child span,
.efact-newsroom-flow article:last-child p,
.efact-portal-preview article:last-child span,
.efact-portal-preview article:last-child p {
  color: rgba(255, 255, 255, 0.72);
}

.efact-news-os strong,
.efact-newsroom-flow strong,
.efact-portal-preview strong {
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.efact-newsroom-live {
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 54px 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.72fr);
  min-height: 620px;
  overflow: hidden;
}

.newsroom-signals {
  border-right: 1px solid var(--efact-line);
  display: grid;
}

.newsroom-signals button {
  appearance: none;
  border: 0;
  border-bottom: 1px solid var(--efact-line);
  background: #ffffff;
  color: var(--efact-ink);
  padding: 1rem;
  display: grid;
  align-content: space-between;
  gap: 0.8rem;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.newsroom-signals button:last-child {
  border-bottom: 0;
}

.newsroom-signals button:hover,
.newsroom-signals button.is-active {
  background: #fafafa;
  padding-left: 1.35rem;
}

.newsroom-signals span,
.newsroom-signals small,
.newsroom-briefing p,
.newsroom-output span {
  color: var(--efact-muted);
}

.newsroom-signals strong {
  max-width: 18ch;
  font-size: clamp(1.35rem, 2.4vw, 2.45rem);
  font-weight: 500;
  line-height: 1.05;
}

.newsroom-briefing {
  padding: clamp(1rem, 2vw, 1.4rem);
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
}

.newsroom-briefing-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--efact-line);
  background: #ffffff;
}

.newsroom-briefing-flow span {
  min-height: 5rem;
  border-right: 1px solid var(--efact-line);
  display: grid;
  place-items: center;
  color: var(--efact-muted);
  font-size: 0.82rem;
  background-image: linear-gradient(90deg, transparent 0%, var(--efact-ink) 42%, transparent 72%);
  background-repeat: no-repeat;
  background-size: 180% 3px;
  background-position: -180% 100%;
  animation: efactFlow 2.6s ease-in-out infinite;
}

.newsroom-briefing-flow span:nth-child(2) { animation-delay: 0.14s; }
.newsroom-briefing-flow span:nth-child(3) { animation-delay: 0.28s; }
.newsroom-briefing-flow span:nth-child(4) { animation-delay: 0.42s; border-right: 0; }

.newsroom-briefing h3 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
}

.newsroom-briefing p {
  margin: 0;
  line-height: 1.45;
}

.newsroom-output {
  border-top: 1px solid var(--efact-line);
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.75rem;
  align-items: end;
}

.newsroom-output strong {
  color: var(--efact-ink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.9;
}

.efact-editorial-calendar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.efact-editorial-calendar div {
  min-height: 420px;
  border-right: 1px solid var(--efact-line);
  padding: 1rem;
  display: grid;
  align-content: space-between;
  background-image: linear-gradient(90deg, transparent 0%, var(--efact-ink) 42%, transparent 72%);
  background-repeat: no-repeat;
  background-size: 180% 3px;
  background-position: -180% 100%;
  animation: efactFlow 3s ease-in-out infinite;
}

.efact-editorial-calendar div:nth-child(2) { animation-delay: 0.14s; }
.efact-editorial-calendar div:nth-child(3) { animation-delay: 0.28s; }
.efact-editorial-calendar div:nth-child(4) { animation-delay: 0.42s; }
.efact-editorial-calendar div:nth-child(5) {
  border-right: 0;
  background-color: var(--efact-ink);
  color: #ffffff;
  animation-delay: 0.56s;
}

.efact-editorial-calendar span {
  color: var(--efact-muted);
}

.efact-editorial-calendar div:nth-child(5) span {
  color: rgba(255, 255, 255, 0.72);
}

.efact-editorial-calendar strong {
  font-size: clamp(1.25rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.08;
}

.efact-insight-library {
  border-top: 1px solid var(--efact-line);
  display: grid;
}

.efact-insight-library article {
  scroll-margin-top: 6rem;
  border-bottom: 1px solid var(--efact-line);
  padding: clamp(1.1rem, 2vw, 1.5rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr) minmax(220px, 0.48fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.efact-insight-library article > div {
  display: grid;
  gap: 0.7rem;
}

.efact-insight-library span,
.efact-insight-library p,
.efact-insight-library li {
  color: var(--efact-muted);
}

.efact-insight-library h3,
.efact-insight-library p,
.efact-insight-library ul {
  margin: 0;
}

.efact-insight-library h3 {
  font-family: var(--efact-font);
  font-size: clamp(1.55rem, 2.8vw, 3.2rem);
  font-weight: 500;
  line-height: 1.04;
}

.efact-insight-library ul {
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
}

.efact-insight-library a {
  width: fit-content;
  color: var(--efact-ink);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

@keyframes efactLane {
  0%,
  100% { transform: scaleX(0.18); opacity: 0.5; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes efactBarBreathe {
  50% {
    transform: scaleX(0.82);
  }
}

@media (max-width: 900px) {
  .efact-page-list,
  .efact-page-grid,
  .efact-price-grid,
  .efact-contact-layout {
    grid-template-columns: 1fr;
  }

  .efact-faq-list article {
    grid-template-columns: 1fr;
  }

  .efact-link-lab {
    grid-template-columns: 1fr;
  }

  .efact-link-lab-copy {
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .efact-link-lab-visual {
    min-height: 420px;
  }

  .efact-faq-lab .efact-link-lab-visual {
    grid-template-columns: 1fr;
  }

  .efact-faq-lab span,
  .efact-faq-lab strong {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .efact-contact-lab .efact-link-lab-visual span,
  .efact-contact-lab .efact-link-lab-visual strong,
  .efact-contact-lab .efact-link-lab-visual span:nth-child(2),
  .efact-contact-lab .efact-link-lab-visual span:nth-child(3),
  .efact-contact-lab .efact-link-lab-visual strong,
  .efact-news-lab .efact-link-lab-visual span,
  .efact-news-lab .efact-link-lab-visual strong,
  .efact-news-lab .efact-link-lab-visual span:nth-child(2),
  .efact-news-lab .efact-link-lab-visual span:nth-child(3),
  .efact-news-lab .efact-link-lab-visual span:nth-child(4),
  .efact-news-lab .efact-link-lab-visual strong,
  .efact-portal-lab .efact-link-lab-visual span,
  .efact-portal-lab .efact-link-lab-visual strong,
  .efact-portal-lab .efact-link-lab-visual span:nth-child(2),
  .efact-portal-lab .efact-link-lab-visual span:nth-child(3),
  .efact-portal-lab .efact-link-lab-visual span:nth-child(4),
  .efact-portal-lab .efact-link-lab-visual strong,
  .efact-dev-lab .efact-link-lab-visual span,
  .efact-dev-lab .efact-link-lab-visual strong,
  .efact-dev-lab .efact-link-lab-visual span:nth-child(2),
  .efact-dev-lab .efact-link-lab-visual span:nth-child(3),
  .efact-dev-lab .efact-link-lab-visual span:nth-child(4),
  .efact-dev-lab .efact-link-lab-visual strong {
    margin-left: 0;
  }

  .efact-capability-grid,
  .efact-social-command,
  .efact-eval-matrix,
  .efact-dev-map,
  .efact-insight-library article {
    grid-template-columns: 1fr;
  }

  .social-radar {
    min-height: 380px;
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .efact-eval-matrix article,
  .efact-dev-map div {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .efact-architecture,
  .efact-outcome-map,
  .efact-scope-sim,
  .efact-intake-preview,
  .efact-news-os,
  .efact-newsroom-flow,
  .efact-portal-preview,
  .efact-editorial-calendar,
  .efact-decision-tree {
    grid-template-columns: 1fr;
  }

  .efact-arch-lane,
  .efact-outcome-map article,
  .efact-scope-sim article,
  .efact-intake-preview article,
  .efact-news-os article,
  .efact-newsroom-flow article,
  .efact-portal-preview article,
  .efact-editorial-calendar div,
  .efact-decision-tree div {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid var(--efact-line);
  }

  .efact-arch-core {
    min-height: 180px;
  }

  .efact-knowledge-graph {
    min-height: 420px;
  }
}

@media (max-width: 780px) {
  .efact-bottom {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.1rem 1rem calc(1.1rem + env(safe-area-inset-bottom));
  }

  .efact-bottom h3 {
    font-size: 0.98rem;
  }

  .efact-bottom p {
    font-size: 0.9rem;
  }

  .efact-cookie-actions {
    gap: 0.55rem;
  }
}

/* Final mobile navigation lock: full white menu, left aligned, no panel bleed. */
@media (max-width: 780px) {
  body.mobile-nav-open {
    overflow: hidden;
    background: #ffffff;
  }

  body.mobile-nav-open .efact-template .efact-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  .efact-template .efact-nav {
    position: fixed !important;
    inset: 3.55rem 0 0 0 !important;
    width: 100vw !important;
    height: calc(100dvh - 3.55rem) !important;
    max-width: none !important;
    display: none !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    justify-self: stretch !important;
    gap: 0.55rem !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: #111111 !important;
    padding: 1.35rem 1.45rem calc(2.2rem + env(safe-area-inset-bottom)) !important;
    overflow-y: auto !important;
    z-index: 299 !important;
    box-shadow: none !important;
  }

  .efact-template .efact-nav.open {
    display: flex !important;
  }

  .efact-template .efact-nav a,
  .efact-template .efact-header .main-nav a,
  .efact-template .efact-header.scrolled .main-nav a {
    width: auto !important;
    color: #111111 !important;
    opacity: 1 !important;
    font-size: clamp(1.72rem, 7.4vw, 2.42rem) !important;
    font-weight: 420 !important;
    line-height: 1.14 !important;
    text-align: left !important;
    text-decoration: none !important;
  }

  .mobile-menu-divider {
    width: 100% !important;
    margin: 1.05rem 0 0.75rem !important;
    background: #deded9 !important;
  }

  .efact-template .efact-nav .mobile-menu-action {
    color: #111111 !important;
    font-size: clamp(1.72rem, 7.4vw, 2.42rem) !important;
  }

  .efact-template .efact-nav .mobile-menu-login {
    color: #707070 !important;
    font-size: clamp(1.58rem, 6.8vw, 2.22rem) !important;
  }
}

/* Final mobile hero chip lock: no clipped pills on iPhone widths. */
@media (max-width: 640px) {
  .efact-open-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    padding: 0 0.15rem !important;
  }

  .efact-open-links a {
    min-width: 0 !important;
    width: 100% !important;
    justify-self: stretch !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    padding: 0.48rem 0.5rem !important;
    font-size: 0.8rem !important;
    line-height: 1.12 !important;
  }

  .efact-prompt-plan {
    display: flex !important;
    flex-wrap: wrap !important;
    overflow: visible !important;
    gap: 0.35rem !important;
    padding-bottom: 0 !important;
  }

  .efact-prompt-plan span {
    flex: 1 1 calc(50% - 0.35rem) !important;
    min-width: 0 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .efact-intake-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    min-height: 3.35rem !important;
    gap: 0 !important;
    padding: 0.42rem !important;
  }

  .efact-intake-flow::before,
  .efact-intake-flow::after {
    left: 8% !important;
    right: 8% !important;
    top: 50% !important;
    bottom: auto !important;
    width: auto !important;
    height: 1px !important;
    transform: translateY(-50%) !important;
    background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.28), transparent) !important;
  }

  .efact-intake-flow::after {
    left: -18% !important;
    right: auto !important;
    width: 18% !important;
    background: linear-gradient(90deg, transparent, var(--efact-ink), transparent) !important;
    animation: efactIntakeSignal 3s ease-in-out infinite !important;
  }

  .efact-intake-flow span,
  .efact-intake-flow strong {
    width: auto !important;
    max-width: 100% !important;
    padding: 0.27rem 0.28rem !important;
    font-size: 0.58rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .efact-intake-readiness {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.3rem !important;
  }

  .efact-intake-readiness span {
    justify-content: flex-start !important;
    padding: 0.32rem 0.38rem !important;
    font-size: 0.62rem !important;
  }

  .efact-intake-detail-toggle {
    justify-self: center !important;
    margin-top: 0.1rem !important;
  }
}

/* Final mobile newsroom lock: prevent desktop panels from overlapping. */
@media (max-width: 640px) {
  .efact-newsroom-live {
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    overflow: visible !important;
    background-size: 42px 42px !important;
  }

  .newsroom-signals {
    border-right: 0 !important;
    border-bottom: 1px solid var(--efact-line) !important;
    display: grid !important;
  }

  .newsroom-signals button,
  .newsroom-signals button:hover,
  .newsroom-signals button.is-active {
    min-height: 0 !important;
    padding: 0.82rem 0.9rem !important;
    gap: 0.42rem !important;
    align-content: start !important;
  }

  .newsroom-signals strong {
    max-width: none !important;
    font-size: 1.05rem !important;
    line-height: 1.12 !important;
  }

  .newsroom-signals span,
  .newsroom-signals small {
    font-size: 0.78rem !important;
  }

  .newsroom-briefing {
    padding: 0.95rem !important;
    gap: 0.85rem !important;
    align-content: start !important;
    background: rgba(255, 255, 255, 0.92) !important;
  }

  .newsroom-briefing-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .newsroom-briefing-flow span {
    min-height: 3rem !important;
    font-size: 0.75rem !important;
    border-bottom: 1px solid var(--efact-line) !important;
  }

  .newsroom-briefing-flow span:nth-child(2) {
    border-right: 0 !important;
  }

  .newsroom-briefing-flow span:nth-child(3),
  .newsroom-briefing-flow span:nth-child(4) {
    border-bottom: 0 !important;
  }

  .newsroom-briefing h3 {
    max-width: none !important;
    font-size: clamp(1.45rem, 8vw, 2rem) !important;
    line-height: 1.08 !important;
  }

  .newsroom-briefing p {
    font-size: 0.92rem !important;
    line-height: 1.42 !important;
  }

  .newsroom-output {
    grid-template-columns: 1fr !important;
    gap: 0.45rem !important;
    padding-top: 0.75rem !important;
  }

  .newsroom-output strong {
    font-size: 2rem !important;
    line-height: 1 !important;
  }
}

/* Final mobile image lock: images should breathe, not dominate the page. */
@media (max-width: 640px) {
  .efact-top-stories {
    gap: 1.25rem !important;
  }

  .efact-open-card img,
  .efact-open-card-large img,
  .efact-human-layer img {
    width: 100% !important;
    height: clamp(9.5rem, 42vw, 13.5rem) !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
  }

  .efact-open-card-large img {
    height: clamp(10.5rem, 46vw, 15rem) !important;
  }

  .efact-image-pause img,
  .efact-intel-nature img {
    height: clamp(11rem, 48vw, 16rem) !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
  }

  .efact-image-pause strong {
    font-size: clamp(1.55rem, 7.5vw, 2.35rem) !important;
    line-height: 1.05 !important;
  }
}

/* Global mobile media cap: applies across every page and every link target. */
@media (max-width: 780px) {
  .efact-template main img {
    max-height: 13.5rem !important;
    object-fit: cover !important;
  }

  .efact-page-media {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0.5rem !important;
    overflow: hidden !important;
  }

  .efact-page-media img {
    width: 100% !important;
    height: clamp(8.5rem, 36vw, 12rem) !important;
    max-height: 12rem !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .efact-open-card img,
  .efact-open-card-large img,
  .efact-image-pause img,
  .efact-intel-nature img,
  .efact-human-layer img {
    max-height: 13rem !important;
  }
}

/* Global relaxation layer: all linked pages should feel calmer and easier to scan. */
.efact-template .efact-page-hero {
  padding-top: clamp(5.5rem, 10vw, 9rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.efact-template .efact-page-hero h1 {
  max-width: 12.5ch;
  font-size: clamp(3.2rem, 7.2vw, 7.4rem);
  line-height: 1.02;
}

.efact-template .efact-page-hero p {
  color: var(--efact-muted);
}

.efact-template .efact-open-section {
  padding-top: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
}

.efact-template .efact-open-section-head {
  padding-bottom: clamp(0.8rem, 1.7vw, 1.4rem);
  margin-bottom: clamp(0.9rem, 2vw, 1.5rem);
}

.efact-template .efact-open-section-head h2,
.efact-template .efact-link-lab-copy h2 {
  max-width: 13ch;
  line-height: 1.03;
}

.efact-template .efact-link-lab {
  min-height: clamp(24rem, 42vw, 34rem);
}

.efact-template .efact-link-lab-copy {
  align-content: end;
}

.efact-template .efact-link-lab-copy span,
.efact-template .efact-page-list p,
.efact-template .efact-page-grid p,
.efact-template .efact-news-detail-grid p {
  max-width: 42rem;
  line-height: 1.42;
}

.efact-template .efact-page-list article,
.efact-template .efact-page-grid article,
.efact-template .efact-news-detail-grid article {
  min-height: auto;
}

@media (max-width: 780px) {
  .efact-template .efact-open-section,
  .efact-template .efact-page-hero,
  .efact-template .efact-page-media,
  .efact-template .efact-link-lab,
  .efact-template .efact-footer,
  .efact-template .efact-bottom {
    width: min(100%, calc(100vw - 2.75rem)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .efact-template main,
  .efact-template section,
  .efact-template article,
  .efact-template div,
  .efact-template a,
  .efact-template p,
  .efact-template h2,
  .efact-template h3,
  .efact-template strong,
  .efact-template span,
  .efact-template li {
    min-width: 0 !important;
  }

  .efact-template .efact-page-hero {
    padding: 4.35rem 0 1.25rem !important;
  }

  .efact-template .efact-page-hero h1 {
    max-width: 11ch !important;
    font-size: clamp(2.1rem, 9.2vw, 3rem) !important;
    line-height: 1.05 !important;
  }

  .efact-template .efact-page-hero p {
    font-size: 0.86rem !important;
  }

  .efact-template .efact-open-section {
    padding-top: 2.15rem !important;
    padding-bottom: 2.15rem !important;
  }

  .efact-template .efact-open-section-head {
    gap: 0.45rem !important;
    padding-bottom: 0.72rem !important;
    margin-bottom: 0.8rem !important;
  }

  .efact-template .efact-open-section-head h2,
  .efact-template .efact-link-lab-copy h2 {
    max-width: none !important;
    font-size: clamp(1.85rem, 8.5vw, 2.65rem) !important;
    line-height: 1.05 !important;
  }

  .efact-template .efact-link-lab {
    min-height: auto !important;
  }

  .efact-template .efact-link-lab-copy,
  .efact-template .efact-link-lab-visual,
  .efact-template .efact-page-list article,
  .efact-template .efact-page-grid article,
  .efact-template .efact-news-detail-grid article {
    padding: 0.95rem !important;
  }

  .efact-template .efact-link-lab-visual {
    min-height: 13rem !important;
  }

  .efact-template .efact-page-list article,
  .efact-template .efact-page-grid article,
  .efact-template .efact-news-detail-grid article {
    gap: 0.6rem !important;
  }

  .efact-template .efact-page-list h3,
  .efact-template .efact-page-grid h3,
  .efact-template .efact-news-detail-grid h3 {
    font-size: clamp(1.35rem, 6vw, 2rem) !important;
    line-height: 1.08 !important;
  }

  .efact-template .efact-page-list p,
  .efact-template .efact-page-grid p,
  .efact-template .efact-news-detail-grid p,
  .efact-template .efact-link-lab-copy span {
    font-size: 0.92rem !important;
    line-height: 1.42 !important;
  }

  .commerce-screen,
  .commerce-shop-layout {
    grid-template-columns: 1fr !important;
  }

  .commerce-browser {
    min-height: auto !important;
  }

  .commerce-shop-layout {
    padding: 0.85rem !important;
    gap: 0.75rem !important;
  }

  .commerce-shop-copy h3 {
    max-width: none !important;
    font-size: clamp(1.55rem, 7vw, 2.15rem) !important;
    line-height: 1.06 !important;
  }

  .commerce-products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.45rem !important;
  }

  .commerce-products span {
    min-height: 4.7rem !important;
    padding: 0.48rem !important;
    font-size: 0.72rem !important;
  }

  .commerce-products i {
    height: 1.6rem !important;
  }

  .commerce-products strong {
    font-size: 0.78rem !important;
  }

  .commerce-products small {
    font-size: 0.68rem !important;
  }

  .commerce-ai-panel {
    position: static !important;
    width: auto !important;
    margin: 0.85rem !important;
    box-shadow: none !important;
  }

  .commerce-ai-panel strong,
  .commerce-caption h3,
  .commerce-cart strong {
    font-size: clamp(1.2rem, 5.2vw, 1.65rem) !important;
  }

  .commerce-caption {
    padding-bottom: 0.65rem !important;
  }

  .commerce-feature {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding-top: 1.6rem !important;
  }

  .commerce-feature:nth-child(even) .commerce-shop-screen {
    order: 0 !important;
  }

  .commerce-feature:nth-child(even) .commerce-copy {
    justify-self: stretch !important;
  }

  .commerce-shop-screen {
    min-height: auto !important;
  }

  .commerce-copy {
    max-width: none !important;
    gap: 0.75rem !important;
  }

  .commerce-copy h3 {
    font-size: clamp(1.65rem, 7vw, 2.25rem) !important;
    line-height: 1.07 !important;
  }

  .commerce-copy p,
  .commerce-copy li {
    font-size: 0.92rem !important;
    line-height: 1.42 !important;
  }

  .commerce-copy ul {
    grid-template-columns: 1fr !important;
  }

  .commerce-copy li {
    min-height: 0 !important;
  }

  .shop-topbar {
    min-height: 2.7rem !important;
    padding: 0 0.75rem !important;
    gap: 0.7rem !important;
    font-size: 0.72rem !important;
  }

  .shop-hero,
  .shop-checkout,
  .shop-chat,
  .shop-signal-board,
  .shop-campaign {
    margin: 0.7rem !important;
  }

  .shop-hero {
    min-height: 13rem !important;
    padding: 0.85rem !important;
  }

  .shop-hero h3 {
    font-size: clamp(2rem, 10vw, 3.1rem) !important;
  }

  .shop-grid {
    grid-template-columns: 1fr !important;
    padding: 0 0.7rem 0.7rem !important;
    gap: 0.5rem !important;
  }

  .shop-grid span {
    min-height: 4.8rem !important;
    grid-template-columns: 4rem 1fr;
    align-items: center;
    align-content: center;
    padding: 0.55rem !important;
  }

  .shop-grid i {
    grid-row: span 2;
    height: 3.1rem !important;
  }

  .commerce-agent-card {
    position: static !important;
    width: auto !important;
    margin: 0 0.7rem 0.7rem !important;
    box-shadow: none !important;
  }

  .commerce-agent-card strong,
  .shop-checkout strong,
  .shop-campaign strong {
    font-size: clamp(1.15rem, 5vw, 1.55rem) !important;
  }

  .shop-checkout,
  .shop-signal-board {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 0.75rem !important;
  }

  .shop-risk strong,
  .shop-signal-board strong {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .shop-chat {
    min-height: 15rem !important;
    padding: 0.75rem !important;
  }

  .shop-chat p {
    width: auto !important;
  }

  .product-pipeline,
  .marketing-studio,
  .source-stack,
  .briefing-board,
  .support-workbench,
  .voice-console {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    margin: 0.7rem !important;
    gap: 0.55rem !important;
  }

  .product-pipeline div,
  .marketing-studio div,
  .source-stack div,
  .briefing-board div,
  .support-ticket-list,
  .support-answer,
  .campaign-draft,
  .knowledge-query,
  .voice-console > div,
  .intake-preview,
  .project-brief {
    padding: 0.7rem !important;
  }

  .product-pipeline strong,
  .marketing-studio strong,
  .source-stack strong,
  .briefing-board strong,
  .support-ticket-list strong,
  .support-answer strong,
  .campaign-draft strong,
  .voice-console strong,
  .project-brief strong {
    font-size: clamp(1.05rem, 5vw, 1.45rem) !important;
  }

  .knowledge-query,
  .intake-preview {
    min-height: 13rem !important;
    margin: 0.7rem !important;
  }

  .knowledge-query strong,
  .intake-preview strong {
    max-width: none !important;
    font-size: clamp(1.65rem, 8vw, 2.35rem) !important;
    line-height: 1.05 !important;
  }

  .product-flow {
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
    gap: 0.45rem !important;
    padding: 0.7rem !important;
  }

  .product-flow i {
    display: none !important;
  }

  .product-flow span {
    width: 100% !important;
    white-space: normal !important;
  }

  .voice-wave {
    min-height: 8rem !important;
  }

  .campaign-draft,
  .project-brief {
    margin: 0 0.7rem 0.7rem !important;
  }

  .efact-method-grid,
  .efact-industry-demos,
  .efact-trust-system,
  .efact-case-compare,
  .efact-build-start {
    grid-template-columns: 1fr !important;
  }

  .efact-method-grid article,
  .efact-industry-demos article,
  .efact-trust-system article,
  .efact-case-compare article,
  .efact-build-start article {
    min-height: auto !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--efact-line) !important;
    padding: 0.9rem !important;
  }

  .efact-method-grid article:last-child,
  .efact-industry-demos article:last-child,
  .efact-trust-system article:last-child,
  .efact-case-compare article:last-child,
  .efact-build-start article:last-child {
    border-bottom: 0 !important;
  }

  .efact-method-grid h3,
  .efact-industry-demos h3,
  .efact-trust-system strong,
  .efact-case-compare h3,
  .efact-build-start strong {
    font-size: clamp(1.25rem, 5.8vw, 1.7rem) !important;
    overflow-wrap: anywhere !important;
  }

  .efact-product-demo-grid,
  .efact-product-demo-grid a,
  .commerce-feature,
  .commerce-shop-screen,
  .commerce-copy,
  .commerce-agent-card,
  .shop-grid,
  .shop-grid span,
  .product-pipeline,
  .marketing-studio,
  .source-stack,
  .briefing-board,
  .support-workbench,
  .voice-console,
  .intake-preview,
  .project-brief {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .efact-product-demo-grid p,
  .efact-product-demo-grid strong,
  .commerce-copy h3,
  .commerce-copy p,
  .commerce-copy li,
  .commerce-agent-card strong,
  .commerce-agent-card span,
  .product-pipeline strong,
  .marketing-studio strong,
  .source-stack strong,
  .briefing-board strong,
  .support-answer strong,
  .campaign-draft strong,
  .knowledge-query strong,
  .voice-console strong,
  .intake-preview strong,
  .project-brief strong {
    overflow-wrap: anywhere !important;
  }

  .efact-product-demo-grid p {
    max-width: 28ch !important;
    font-size: 0.9rem !important;
    line-height: 1.34 !important;
  }
}

/* Final headline lock: calm subpage typography aligned with the OpenAI Business scale. */
.efact-template .efact-page-hero h1 {
  max-width: 13.5ch !important;
  font-size: clamp(2.65rem, 4.75vw, 5.2rem) !important;
  line-height: 1.04 !important;
  font-weight: 500 !important;
}

.efact-template .efact-open-section-head h2,
.efact-template .efact-link-lab-copy h2 {
  max-width: 14ch !important;
  font-size: clamp(2.05rem, 3.9vw, 4.15rem) !important;
  line-height: 1.05 !important;
  font-weight: 500 !important;
}

.efact-template .efact-page-list h3,
.efact-template .efact-page-grid h3,
.efact-template .efact-news-detail-grid h3,
.efact-template .efact-open-card h2 {
  font-size: clamp(1.15rem, 1.85vw, 1.95rem) !important;
  line-height: 1.12 !important;
}

@media (max-width: 780px) {
  .efact-template .efact-page-hero h1 {
    max-width: 12ch !important;
    font-size: clamp(1.9rem, 7.6vw, 2.45rem) !important;
    line-height: 1.07 !important;
  }

  .efact-template .efact-open-section-head h2,
  .efact-template .efact-link-lab-copy h2 {
    max-width: none !important;
    font-size: clamp(1.55rem, 6.8vw, 2.15rem) !important;
    line-height: 1.08 !important;
  }

  .efact-template .efact-page-list h3,
  .efact-template .efact-page-grid h3,
  .efact-template .efact-news-detail-grid h3,
  .efact-template .efact-open-card h2 {
    font-size: clamp(1.05rem, 4.8vw, 1.45rem) !important;
    line-height: 1.14 !important;
  }
}

/* Soft visual system: abstract image moments that give the pages air between AI diagrams. */
.efact-ambient-media {
  width: min(var(--efact-max), calc(100vw - 2rem));
  height: clamp(17rem, 34vw, 34rem);
  margin: 0 auto clamp(1.3rem, 2.4vw, 2.2rem);
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: #f7f7f7;
  box-shadow: inset 0 0 0 1px rgba(15, 15, 15, 0.05);
}

.efact-ambient-media::before,
.efact-ambient-media::after,
.efact-soft-visual::before,
.efact-soft-visual::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -1;
  filter: blur(34px) saturate(1.2);
  transform: translate3d(0, 0, 0);
  animation: efact-color-drift 14s ease-in-out infinite alternate;
}

.efact-ambient-media::after,
.efact-soft-visual::after {
  inset: -32%;
  opacity: 0.74;
  mix-blend-mode: soft-light;
  animation-duration: 19s;
  animation-direction: alternate-reverse;
}

.efact-ambient-media.tone-coral::before,
.efact-soft-visual.tone-coral::before {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 233, 203, 0.92), transparent 32%),
    radial-gradient(circle at 35% 64%, rgba(255, 73, 119, 0.74), transparent 34%),
    radial-gradient(circle at 80% 74%, rgba(255, 151, 57, 0.86), transparent 38%),
    linear-gradient(135deg, #ffd9c8, #ff7f91 42%, #ffac55);
}

.efact-ambient-media.tone-sky::before,
.efact-soft-visual.tone-sky::before {
  background:
    radial-gradient(circle at 18% 84%, rgba(47, 106, 255, 0.76), transparent 36%),
    radial-gradient(circle at 74% 25%, rgba(177, 220, 255, 0.94), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(113, 72, 255, 0.5), transparent 34%),
    linear-gradient(135deg, #d7efff, #8fd4ff 48%, #6a91ff);
}

.efact-ambient-media.tone-meadow::before,
.efact-soft-visual.tone-meadow::before {
  background:
    radial-gradient(circle at 26% 28%, rgba(253, 208, 105, 0.86), transparent 34%),
    radial-gradient(circle at 82% 62%, rgba(245, 74, 185, 0.58), transparent 30%),
    radial-gradient(circle at 45% 88%, rgba(105, 178, 112, 0.85), transparent 42%),
    linear-gradient(135deg, #d6edc2, #8abd86 48%, #f5a2cc);
}

.efact-ambient-media.tone-forest::before,
.efact-soft-visual.tone-forest::before {
  background:
    radial-gradient(circle at 10% 40%, rgba(19, 76, 44, 0.84), transparent 35%),
    radial-gradient(circle at 76% 24%, rgba(255, 170, 81, 0.55), transparent 35%),
    radial-gradient(circle at 84% 82%, rgba(197, 38, 26, 0.58), transparent 30%),
    linear-gradient(125deg, #f7f8f3, #9ead82 46%, #264a34);
}

.efact-ambient-media.tone-violet::before,
.efact-soft-visual.tone-violet::before {
  background:
    radial-gradient(circle at 20% 68%, rgba(70, 100, 255, 0.7), transparent 36%),
    radial-gradient(circle at 70% 22%, rgba(255, 145, 196, 0.78), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(210, 182, 255, 0.88), transparent 42%),
    linear-gradient(135deg, #dfeaff, #b8b5ff 46%, #f0b4d9);
}

.efact-ambient-media.tone-sun::before,
.efact-soft-visual.tone-sun::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 246, 194, 0.92), transparent 32%),
    radial-gradient(circle at 58% 56%, rgba(255, 143, 63, 0.82), transparent 36%),
    radial-gradient(circle at 86% 72%, rgba(255, 87, 127, 0.64), transparent 34%),
    linear-gradient(135deg, #fff0c4, #ffb05d 46%, #ff6f83);
}

.efact-ambient-media::after,
.efact-soft-visual::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 35%, rgba(255, 255, 255, 0.42)),
    repeating-linear-gradient(102deg, rgba(255,255,255,0.12) 0 1px, transparent 1px 17px);
}

.efact-ambient-card {
  position: absolute;
  left: clamp(1rem, 5vw, 4.5rem);
  bottom: clamp(1rem, 4vw, 3.75rem);
  width: min(38rem, calc(100% - 2rem));
  padding: clamp(1rem, 2vw, 1.6rem);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(15, 15, 15, 0.12);
}

.efact-ambient-card span,
.efact-soft-visual span {
  display: block;
  margin: 0 0 0.5rem;
  color: var(--efact-muted);
  font-size: 0.92rem;
}

.efact-ambient-card strong {
  display: block;
  max-width: 21ch;
  color: var(--efact-ink);
  font-size: clamp(1.45rem, 3vw, 3.1rem);
  font-weight: 500;
  line-height: 1.03;
}

.efact-visual-rhythm {
  width: min(var(--efact-max), calc(100vw - 2rem));
  margin: 0 auto clamp(3.2rem, 6vw, 5.5rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: clamp(10rem, 15vw, 17rem);
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.efact-soft-visual {
  min-width: 0;
  margin: 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #f6f6f6;
  box-shadow: inset 0 0 0 1px rgba(15, 15, 15, 0.05);
}

.efact-soft-visual:nth-child(1) {
  grid-row: span 2;
}

.efact-soft-visual:nth-child(3) {
  grid-column: span 2;
}

.efact-soft-visual span {
  position: absolute;
  left: clamp(0.9rem, 2vw, 1.3rem);
  bottom: clamp(0.85rem, 1.7vw, 1.2rem);
  margin: 0;
  padding: 0.55rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: rgba(15, 15, 15, 0.72);
  font-size: 0.82rem;
}

@keyframes efact-color-drift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1.03) rotate(0deg); }
  50% { transform: translate3d(2%, 1.5%, 0) scale(1.08) rotate(2deg); }
  100% { transform: translate3d(0%, -2%, 0) scale(1.04) rotate(-1deg); }
}

@media (prefers-reduced-motion: reduce) {
  .efact-ambient-media::before,
  .efact-ambient-media::after,
  .efact-soft-visual::before,
  .efact-soft-visual::after {
    animation: none;
  }
}

@media (max-width: 780px) {
  .efact-ambient-media {
    width: min(100%, calc(100vw - 1.5rem)) !important;
    height: clamp(12rem, 48vw, 18rem) !important;
    margin-bottom: 1rem !important;
    border-radius: 18px !important;
  }

  .efact-ambient-card {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    width: auto;
    padding: 0.85rem;
    border-radius: 14px;
  }

  .efact-ambient-card strong {
    max-width: 24ch;
    font-size: clamp(1.15rem, 5.2vw, 1.55rem);
  }

  .efact-visual-rhythm {
    width: min(100%, calc(100vw - 1.5rem)) !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    grid-auto-rows: clamp(8rem, 38vw, 12rem);
    gap: 0.72rem;
    margin-bottom: 3rem;
  }

  .efact-soft-visual {
    border-radius: 16px;
  }

  .efact-soft-visual:nth-child(1),
  .efact-soft-visual:nth-child(3) {
    grid-row: auto;
    grid-column: auto;
  }

  .efact-soft-visual:nth-child(5) {
    grid-column: span 2;
  }
}

/* Final mobile width guard for the new visual rhythm and dense product areas. */
@media (max-width: 780px) {
  html,
  body,
  .site-shell {
    overflow-x: hidden !important;
  }

  .efact-template .efact-page-media,
  .efact-template .efact-visual-rhythm,
  .efact-template .efact-open-section,
  .efact-template .efact-link-lab {
    width: calc(100vw - 2.75rem) !important;
    max-width: calc(100vw - 2.75rem) !important;
    margin-left: 1.375rem !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .efact-ambient-card,
  .efact-ambient-card strong,
  .efact-soft-visual span,
  .efact-product-demo-grid,
  .efact-product-demo-grid a,
  .efact-cookie-actions,
  .efact-cookie-actions button {
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: anywhere !important;
  }

  .efact-ambient-card {
    left: 0.65rem !important;
    right: 0.65rem !important;
    width: auto !important;
  }

  .efact-ambient-card strong {
    font-size: clamp(1.05rem, 4.8vw, 1.42rem) !important;
    line-height: 1.06 !important;
  }

  .efact-cookie-actions button {
    white-space: normal !important;
    min-height: 2.8rem !important;
    padding-inline: 0.8rem !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.08em !important;
  }
}

/* AI briefing builder: a compact, guided first contact instead of a plain form. */
.efact-briefing-system {
  scroll-margin-top: 5.5rem;
}

.efact-briefing-builder {
  display: grid;
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr) minmax(280px, 0.46fr);
  border: 1px solid var(--efact-line);
  background:
    linear-gradient(var(--efact-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--efact-soft-line) 1px, transparent 1px),
    #ffffff;
  background-size: 44px 44px;
  overflow: hidden;
}

.briefing-builder-intro,
.briefing-builder-flow,
.briefing-preview-card {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.briefing-builder-intro {
  display: grid;
  align-content: space-between;
  gap: 1.5rem;
  border-right: 1px solid var(--efact-line);
}

.briefing-builder-intro p,
.briefing-preview-card p,
.briefing-contact-card p,
.briefing-step-row {
  margin: 0;
  color: var(--efact-muted);
  font-size: 0.9rem;
}

.briefing-builder-intro h3 {
  margin: 0;
  max-width: 13ch;
  font-family: var(--efact-font);
  font-size: clamp(1.8rem, 3.2vw, 3.65rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.briefing-meta {
  display: grid;
  gap: 0.6rem;
}

.briefing-meta span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--efact-soft-line);
  padding-top: 0.6rem;
  color: var(--efact-muted);
  font-size: 0.9rem;
}

.briefing-meta strong {
  color: var(--efact-ink);
  font-size: 1.2rem;
  font-weight: 500;
}

.briefing-ai-visual {
  position: relative;
  min-height: 18rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.briefing-ai-visual::before,
.briefing-ai-visual::after {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 44% 56% 48% 52%;
  animation: briefingOrbit 12s linear infinite;
}

.briefing-ai-visual::after {
  width: 54%;
  animation-direction: reverse;
  animation-duration: 9s;
}

.briefing-ai-visual strong {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 5.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--efact-ink);
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 500;
}

.briefing-node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  min-height: 2.35rem;
  border: 1px solid rgba(17, 17, 17, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--efact-ink);
  font-size: 0.88rem;
}

.briefing-node-a {
  top: 12%;
  left: 8%;
}

.briefing-node-b {
  top: 18%;
  right: 4%;
}

.briefing-node-c {
  bottom: 17%;
  left: 2%;
}

.briefing-node-d {
  bottom: 10%;
  right: 10%;
}

@keyframes briefingOrbit {
  to {
    transform: rotate(360deg);
  }
}

.briefing-builder-flow {
  display: grid;
  gap: 1rem;
}

.briefing-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.briefing-industries button,
.briefing-question-actions button,
.briefing-preview-card a,
.briefing-start-button {
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--efact-ink);
  font: inherit;
  font-size: 0.88rem;
  min-height: 2.3rem;
  padding: 0.45rem 0.78rem;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.briefing-industries button.is-active,
.briefing-industries button:hover,
.briefing-question-actions button:hover,
.briefing-preview-card a:hover,
.briefing-start-button:hover {
  border-color: var(--efact-ink);
  background: #f8f8f6;
  transform: translateY(-1px);
}

.briefing-question-card,
.briefing-contact-card {
  border: 1px solid var(--efact-line);
  background: rgba(255, 255, 255, 0.94);
  padding: clamp(0.95rem, 1.7vw, 1.25rem);
}

.briefing-step-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.briefing-step-row strong {
  color: var(--efact-ink);
  font-size: 0.9rem;
  font-weight: 500;
}

.briefing-question-card h3 {
  margin: 0 0 1.1rem;
  max-width: 26ch;
  font-family: var(--efact-font);
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.briefing-question-card input,
.briefing-contact-card input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--efact-line);
  border-radius: 0;
  background: transparent;
  color: var(--efact-ink);
  font: inherit;
  font-size: 1rem;
  padding: 0.75rem 0;
  outline: 0;
}

.briefing-question-card input:focus,
.briefing-contact-card input:focus {
  border-color: var(--efact-ink);
}

.briefing-question-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

.briefing-question-actions button:disabled {
  color: rgba(17, 17, 17, 0.35);
  cursor: default;
  transform: none;
}

.briefing-progress {
  display: block;
  height: 0.2rem;
  margin-top: 1rem;
  background: rgba(17, 17, 17, 0.08);
  overflow: hidden;
}

.briefing-progress span {
  display: block;
  width: var(--value, 16.66%);
  height: 100%;
  background: var(--efact-ink);
  transition: width 0.28s ease;
}

.briefing-contact-card {
  display: grid;
  gap: 0.8rem;
}

.briefing-contact-card div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
}

.briefing-preview-card {
  display: grid;
  align-content: space-between;
  gap: 1.25rem;
  border-left: 1px solid var(--efact-line);
  background: #ffffff;
}

.briefing-preview-card h3 {
  margin: 0;
  font-family: var(--efact-font);
  font-size: clamp(1.65rem, 2.6vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.briefing-preview-card dl {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--efact-line);
}

.briefing-preview-card dl div {
  display: grid;
  gap: 0.35rem;
  border-bottom: 1px solid var(--efact-soft-line);
  padding: 0.8rem 0;
}

.briefing-preview-card dt,
.briefing-preview-card dd {
  margin: 0;
}

.briefing-preview-card dt {
  color: var(--efact-muted);
  font-size: 0.84rem;
}

.briefing-preview-card dd {
  color: var(--efact-ink);
  font-size: 0.98rem;
  line-height: 1.35;
}

.briefing-preview-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-color: var(--efact-ink);
  background: var(--efact-ink);
  color: #ffffff;
  text-decoration: none;
}

.briefing-preview-card a:hover {
  background: #ffffff;
  color: var(--efact-ink);
}

.briefing-start-button {
  width: fit-content;
  border-color: var(--efact-ink);
  background: var(--efact-ink);
  color: #ffffff;
}

.briefing-start-button:hover {
  background: #ffffff;
  color: var(--efact-ink);
}

.efact-briefing-builder.is-compact {
  grid-template-columns: 1fr;
}

.efact-briefing-builder.is-compact .briefing-builder-intro {
  min-height: clamp(16rem, 28vw, 23rem);
  grid-template-columns: minmax(0, 0.72fr) minmax(12rem, 0.28fr);
  align-items: end;
  border-right: 0;
}

.efact-briefing-builder.is-compact .briefing-builder-intro p,
.efact-briefing-builder.is-compact .briefing-builder-intro h3,
.efact-briefing-builder.is-compact .briefing-meta,
.efact-briefing-builder.is-compact .briefing-start-button {
  grid-column: 1;
}

.efact-briefing-builder.is-compact .briefing-builder-intro h3 {
  max-width: 18ch;
  font-size: clamp(2rem, 4.7vw, 5.05rem);
}

.efact-briefing-builder.is-compact .briefing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.efact-briefing-builder.is-compact .briefing-meta span {
  justify-content: flex-start;
  border: 1px solid var(--efact-line);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  background: rgba(255, 255, 255, 0.92);
}

.efact-briefing-builder.is-compact .briefing-meta strong {
  font-size: 1rem;
}

.efact-briefing-builder.is-compact .briefing-ai-visual {
  grid-column: 2;
  grid-row: 1 / span 4;
  min-height: 100%;
}

.efact-briefing-builder.is-compact .briefing-builder-flow,
.efact-briefing-builder.is-compact .briefing-preview-card {
  display: none;
}

/* Compact first impression: depth is available, but not forced onto the visitor. */
.efact-open-hero {
  min-height: clamp(620px, 78svh, 820px);
}

.efact-open-hero-inner {
  max-width: 880px;
}

.efact-open-hero h1 {
  font-size: clamp(3.3rem, 7.7vw, 7.5rem);
}

.efact-open-prompt {
  max-width: 760px;
  margin-inline: auto;
}

.efact-open-links {
  justify-content: center;
}

.efact-open-links a {
  font-size: 0.9rem;
  min-height: 2.35rem;
  padding: 0.48rem 0.9rem;
}

.efact-open-section {
  padding-bottom: clamp(2.8rem, 5vw, 4.6rem);
}

.efact-top-stories {
  padding-top: clamp(0.6rem, 2vw, 1.35rem);
}

@media (max-width: 980px) {
  .efact-briefing-builder {
    grid-template-columns: 1fr;
  }

  .briefing-builder-intro,
  .briefing-preview-card {
    border: 0;
  }

  .briefing-builder-intro {
    border-bottom: 1px solid var(--efact-line);
  }

  .briefing-builder-intro h3 {
    max-width: 18ch;
  }

  .briefing-ai-visual {
    min-height: 14rem;
  }

  .briefing-preview-card {
    border-top: 1px solid var(--efact-line);
  }

  .efact-briefing-builder.is-compact .briefing-builder-intro {
    grid-template-columns: 1fr;
  }

  .efact-briefing-builder.is-compact .briefing-ai-visual {
    grid-column: 1;
    grid-row: auto;
    min-height: 12rem;
  }
}

@media (max-width: 780px) {
  .efact-briefing-builder {
    width: 100%;
    background-size: 34px 34px;
  }

  .briefing-builder-intro,
  .briefing-builder-flow,
  .briefing-preview-card {
    padding: 1rem;
  }

  .briefing-builder-intro h3 {
    max-width: 13ch;
    font-size: clamp(1.75rem, 9vw, 2.65rem);
  }

  .briefing-ai-visual {
    min-height: 12.5rem;
  }

  .briefing-ai-visual strong {
    width: 4.6rem;
    font-size: 1.05rem;
  }

  .briefing-node {
    min-width: 3.7rem;
    min-height: 2rem;
    font-size: 0.76rem;
  }

  .briefing-industries {
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 0.25rem 1.5rem;
    padding: 0 1.5rem 0.35rem 0.25rem;
    margin-inline: -0.25rem;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .briefing-industries::-webkit-scrollbar {
    display: none;
  }

  .briefing-industries button {
    flex: 0 0 auto;
    font-size: 0.8rem;
    scroll-snap-align: start;
  }

  .briefing-builder-flow {
    min-width: 0;
    overflow: hidden;
  }

  .briefing-step-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .briefing-question-card h3 {
    max-width: 100%;
    font-size: clamp(1.2rem, 6.2vw, 1.65rem);
  }

  .briefing-question-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .briefing-contact-card div {
    grid-template-columns: 1fr;
  }

  .briefing-preview-card h3 {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .briefing-preview-card a {
    width: 100%;
  }

  .efact-open-hero {
    min-height: 68svh;
    padding-top: 4.4rem;
  }

  .efact-open-hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
  }

  .efact-open-prompt {
    max-width: 100%;
  }

  .efact-open-links {
    justify-content: flex-start;
  }

  .efact-open-links a {
    font-size: 0.78rem;
    min-height: 2.15rem;
    padding: 0.38rem 0.72rem;
  }

  .efact-briefing-builder.is-compact .briefing-builder-intro {
    min-height: 0;
  }

  .efact-briefing-builder.is-compact .briefing-builder-intro h3 {
    max-width: 13ch;
    font-size: clamp(1.8rem, 9.5vw, 2.65rem);
  }

  .efact-briefing-builder.is-compact .briefing-ai-visual {
    min-height: 10.5rem;
  }

  .efact-briefing-builder.is-compact .briefing-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .efact-briefing-builder.is-compact .briefing-meta span {
    display: grid;
    gap: 0.1rem;
    padding: 0.46rem 0.5rem;
    font-size: 0.72rem;
  }

  .briefing-start-button {
    width: 100%;
  }
}
