/* BOOLEANOPS — COMBINED STYLES v2 */
:root {
  --w: #fff;
  --off: #f7f6f3;
  --paper: #f1efe9;
  --cream: #f0ede7;
  --rule: #e6e3db;
  --rule2: #d0cdc4;
  --ink: #0e0e0c;
  --ink7: rgba(14, 14, 12, 0.7);
  --ink5: rgba(14, 14, 12, 0.5);
  --ink3: rgba(14, 14, 12, 0.3);
  --ink1: rgba(14, 14, 12, 0.08);
  --navy: #060d1f;
  --navy2: #0a1628;
  --blue: #0047e1;
  --blue-a: rgba(0, 71, 225, 0.1);
  --blue-b: rgba(0, 71, 225, 0.22);
  --green: #15803d;
  --green-a: rgba(21, 128, 61, .08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r: 8px;
  --r-sm: 5px;
  --r2: 6px;
  --fd: 'Montserrat', sans-serif;
  --fb: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased
}

body {
  background: var(--w);
  color: var(--ink);
  font-family: var(--fb);
  overflow-x: hidden;
  line-height: 1.6
}

/* SCROLL REVEAL */
.sr {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.sr.on {
  opacity: 1;
  transform: none
}

.sr.d1 {
  transition-delay: .1s
}

.sr.d2 {
  transition-delay: .2s
}

.sr.d3 {
  transition-delay: .3s
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  animation: fadeIn .4s ease both
}

.logo {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none
}

.logo b {
  color: var(--blue)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink5);
  text-decoration: none;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--ink)
}

.nav-cta {
  background: var(--ink) !important;
  color: var(--w) !important;
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 11px !important;
  transition: opacity .2s !important
}

.nav-cta:hover {
  opacity: .78 !important
}

/* NAV DROPDOWN */
.nav-dropdown-wrap {
  position: relative
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink5);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
  padding: 0
}

.nav-dropdown-toggle:hover {
  color: var(--ink)
}

.nav-dropdown-toggle svg {
  transition: transform .2s
}

.nav-dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg)
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: -20px;
  background: var(--w);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .2s, transform .2s, visibility .2s
}

.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.nav-dd-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  transition: background .15s
}

.nav-dd-item:hover {
  background: var(--off)
}

.nav-dd-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ink3)
}

.dd-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none
}

.dd-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink5);
  margin-top: 1px;
  letter-spacing: 0;
  text-transform: none
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 210
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all .3s
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

/* HERO — MINIMAL CENTERED */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px 40px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 71, 225, .05) 0%, transparent 70%);
  pointer-events: none
}


.hero-center {
  max-width: 680px;
  position: relative;
  z-index: 1
}

.hero-badge {
  display: inline-block;
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue-b);
  background: var(--blue-a);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 28px
}

.hero-hl {
  font-family: var(--fd);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 24px
}

.hl-blue {
  color: var(--blue)
}

.hero-desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink5);
  max-width: 540px;
  margin: 0 auto 36px
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--w);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--ink);
  transition: background .2s, transform .15s
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-1px)
}

.btn-primary svg {
  transition: transform .2s
}

.btn-primary:hover svg {
  transform: translateX(3px)
}

.btn-ghost {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink5);
  text-decoration: none;
  transition: color .2s
}

.btn-ghost:hover {
  color: var(--ink)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--rule2);
  transition: all .2s
}

.btn-outline:hover {
  border-color: var(--ink);
  background: var(--off)
}

.hero-proof {
  margin-top: 48px;
  display: flex;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden
}

.proof-item {
  flex: 1;
  padding: 18px 20px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 3px
}

.proof-item:last-child {
  border-right: none
}

.proof-num {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink)
}

.proof-unit,
.data-unit,
.rc-unit {
  color: var(--blue);
  font-weight: 600
}

.proof-lbl {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink5);
  line-height: 1.4
}

/* MARQUEE */
.mq {
  background: var(--off);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: 12px 0
}

.mq-track {
  display: flex;
  gap: 48px;
  animation: mq 30s linear infinite;
  white-space: nowrap
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.mq-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.mq-item svg {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.2s
}

.mq-item:hover svg {
  opacity: 1;
}

/* VIDEO */
.video-section {
  background: var(--off);
  border-bottom: 1px solid var(--rule)
}

.video-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--rule)
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.vp-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .22)
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .28);
  transition: transform .25s, box-shadow .25s;
  border: none
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .38)
}

.play-btn svg {
  color: var(--ink);
  margin-left: 3px
}

.video-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--blue);
  color: #fff;
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 2;
  border-radius: 0 var(--r-sm) 0 0
}

.video-pull {
  font-family: var(--fd);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 16px
}

.video-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink7);
  margin-bottom: 20px
}

.video-who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--rule)
}

.video-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-a);
  border: 1px solid var(--blue-b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0
}

.video-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink)
}

.video-role {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink5);
  margin-top: 1px
}

/* SHARED */
.section-w {
  max-width: 1160px;
  margin: 0 auto
}

.sec-pad {
  padding: 96px 40px
}

.sec-hl {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--ink)
}

/* OUTBOUND PIPELINE */
.pipe-section {
  padding: 80px 0 72px;
  background: var(--off);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden
}

.pipe-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(12, 12, 10, .04) 1px, transparent 1px);
  background-size: 20px 20px
}

.pipe-header {
  max-width: 1300px;
  margin: 0 auto 24px;
  padding: 0 40px;
  position: relative;
  z-index: 1
}

.pipe-title {
  font-family: var(--fd);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--ink)
}

.pipe-accent {
  color: var(--blue)
}

.pipe-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--w);
  border: 1px solid var(--rule);
  border-bottom: none;
  border-radius: var(--r) var(--r) 0 0;
  height: 44px;
  padding: 0 14px 0 16px
}

.tb-left {
  display: flex;
  align-items: center;
  gap: 10px
}

.tb-name {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink3)
}

.tb-badge {
  background: var(--blue-a);
  border: 1px solid var(--blue-b);
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue)
}

.tb-live {
  display: flex;
  align-items: center;
  gap: 5px
}

.tb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: ldot 2.4s ease infinite
}

@keyframes ldot {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(21, 128, 61, .4)
  }

  50% {
    opacity: .65;
    box-shadow: 0 0 0 5px rgba(21, 128, 61, 0)
  }
}

.tb-live-txt {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink3);
  letter-spacing: .05em
}

.tb-right {
  display: flex;
  align-items: center;
  gap: 12px
}

.tb-stat {
  font-size: 11px;
  color: var(--ink3);
  display: flex;
  align-items: center;
  gap: 4px
}

.tb-val {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums
}

.tb-sep {
  width: 1px;
  height: 16px;
  background: var(--rule)
}

.zm-group {
  display: flex;
  border: 1px solid var(--rule);
  border-radius: var(--r2);
  overflow: hidden
}

.zm-btn {
  width: 28px;
  height: 26px;
  background: var(--w);
  border: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--rule);
  transition: background .15s
}

.zm-btn:last-child {
  border-right: none
}

.zm-btn:hover {
  background: var(--off);
  color: var(--ink)
}

.zm-level {
  min-width: 42px;
  height: 26px;
  background: var(--off);
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 9px;
  font-weight: 700;
  color: var(--ink3);
  letter-spacing: .05em;
  padding: 0 5px
}

.viewport {
  background: var(--w);
  border: 1px solid var(--rule);
  border-top: none;
  height: 640px;
  position: relative;
  overflow: hidden;
  cursor: grab;
  background-image: linear-gradient(var(--rule) 1px, transparent 1px), linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 36px 36px;
  background-color: rgba(250, 249, 246, .6)
}

.viewport.pan {
  cursor: grabbing
}

#pzWrap {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  will-change: transform
}

#cSvg {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: visible
}

.log-bar {
  background: var(--w);
  border: 1px solid var(--rule);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  overflow: hidden
}

.log-lbl {
  font-family: var(--fd);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink1);
  flex-shrink: 0
}

.log-area {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 20px
}

.log-entry {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  transform: translateY(5px);
  white-space: nowrap;
  transition: opacity .35s, transform .35s
}

.log-entry.in {
  opacity: 1;
  transform: translateY(0)
}

.log-entry.out {
  opacity: 0;
  transform: translateY(-5px)
}

.le-ts {
  font-family: var(--fd);
  font-size: 9px;
  font-weight: 600;
  color: var(--ink3);
  letter-spacing: .05em;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0
}

.le-src {
  font-size: 9px;
  font-weight: 600;
  color: var(--blue);
  flex-shrink: 0
}

.le-msg {
  font-size: 10px;
  font-weight: 400;
  color: var(--ink7)
}

.le-val {
  font-family: var(--fd);
  font-size: 9px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0
}

.pipe-stats {
  max-width: 1300px;
  margin: 12px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  position: relative;
  z-index: 1
}

.ps {
  background: var(--w);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 18px 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04), 0 2px 8px rgba(0, 0, 0, .03);
  transition: border-color .2s, box-shadow .2s
}

.ps:hover {
  border-color: var(--rule2);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .07)
}

.ps-n {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px
}

.ps-n b {
  color: var(--blue)
}

.ps-l {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink5);
  line-height: 1.45
}

/* Pipeline node styles */
.fn {
  position: absolute;
  background: var(--w);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  width: 176px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 2px 6px rgba(0, 0, 0, .04);
  transition: border-color .28s, box-shadow .28s, transform .18s;
  cursor: default
}

.fn:hover {
  border-color: var(--rule2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .09), 0 8px 24px rgba(0, 0, 0, .06);
  transform: translateY(-1px)
}

.fn.s-run {
  border-color: rgba(180, 83, 9, .45);
  box-shadow: 0 0 0 2px rgba(180, 83, 9, .12), 0 4px 14px rgba(0, 0, 0, .07)
}

.fn.s-ok {
  border-color: rgba(21, 128, 61, .45);
  box-shadow: 0 0 0 2px rgba(21, 128, 61, .1), 0 4px 14px rgba(0, 0, 0, .07)
}

.fn.s-act {
  border-color: rgba(0, 71, 225, .45);
  box-shadow: 0 0 0 2px rgba(0, 71, 225, .12), 0 4px 14px rgba(0, 0, 0, .07)
}

.fn-bar {
  height: 2.5px;
  border-radius: var(--r) var(--r) 0 0;
  background: var(--rule);
  transition: background .28s
}

.fn.s-run .fn-bar {
  background: linear-gradient(90deg, #f59e0b, #d97706)
}

.fn.s-ok .fn-bar {
  background: linear-gradient(90deg, #22c55e, #16a34a)
}

.fn.s-act .fn-bar {
  background: linear-gradient(90deg, #3b82f6, #0047e1)
}

.fn-head {
  padding: 8px 11px 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--rule)
}

.fn-mono {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .02em
}

.fn-name {
  font-family: var(--fd);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
  flex: 1
}

.fn-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0
}

.fn-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rule2);
  transition: background .28s
}

.fn.s-run .fn-dot {
  animation: bdot .75s ease infinite
}

@keyframes bdot {

  0%,
  100% {
    background: #f59e0b;
    opacity: 1
  }

  50% {
    opacity: .2
  }
}

.fn.s-ok .fn-dot {
  background: var(--green)
}

.fn.s-act .fn-dot {
  background: var(--blue)
}

.fn-body {
  padding: 7px 11px 9px
}

.fn-sub {
  font-size: 9.5px;
  font-weight: 400;
  color: var(--ink5);
  line-height: 1.5;
  margin-bottom: 6px
}

.fn-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 5px;
  border-top: 1px solid var(--rule)
}

.fn-runs-lbl {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink1)
}

.fn-runs-val {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums
}

.port-i,
.port-o {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--w);
  border: 1.5px solid var(--rule2);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: border-color .28s, background .28s
}

.port-i {
  left: -5px
}

.port-o {
  right: -5px
}

.fn.s-act .port-i,
.fn.s-act .port-o {
  border-color: var(--blue);
  background: var(--blue-a)
}

.fn.s-ok .port-i,
.fn.s-ok .port-o {
  border-color: var(--green);
  background: var(--green-a)
}

.fn.s-run .port-i,
.fn.s-run .port-o {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, .07)
}

.grp-lbl {
  position: absolute;
  background: var(--w);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 3px 10px;
  font-family: var(--fd);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink3);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04)
}

/* PROBLEM */
.problem-section {
  background: var(--w);
  border-bottom: 1px solid var(--rule)
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 56px;
  border: 1px solid var(--rule);
  border-radius: var(--r)
}

.big-q {
  font-family: var(--fd);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 28px
}

.big-q span {
  color: var(--ink3);
  font-weight: 400
}

.story-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink7)
}

.story-text p+p {
  margin-top: 16px
}

.data-stack {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.data-block {
  background: var(--off);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: background .2s, border-color .2s
}

.data-block:hover {
  background: var(--paper);
  border-color: var(--rule2)
}

.data-n {
  font-family: var(--fd);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink)
}

.data-d {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink5);
  line-height: 1.6
}

/* HOW IT WORKS */
.hiw-section {
  background: var(--off);
  padding: 96px 40px 80px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden
}

.hiw-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(12, 12, 10, .04) 1px, transparent 1px);
  background-size: 22px 22px
}

.hiw-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1
}

.hiw-super {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.hiw-super::before,
.hiw-super::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--blue)
}

.hiw-title {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 14px
}

.hiw-accent {
  color: var(--blue)
}

.hiw-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7
}

.hiw-body {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.channels-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.ch {
  background: var(--w);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04), 0 2px 8px rgba(0, 0, 0, .03);
  transition: box-shadow .25s, border-color .25s
}

.ch:hover {
  border-color: var(--rule2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .07), 0 1px 3px rgba(0, 0, 0, .04)
}

.ch-accent {
  height: 3px;
  width: 100%
}

.ch-accent.outbound {
  background: linear-gradient(90deg, #0047e1, #3b82f6)
}

.ch-accent.li-ads {
  background: linear-gradient(90deg, #0a66c2, #2d8cec)
}

.ch-accent.li-content {
  background: linear-gradient(90deg, #15803d, #22c55e)
}

.ch-head {
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--rule)
}

.ch-num {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px
}

.ch-num.outbound {
  color: var(--blue)
}

.ch-num.li-ads {
  color: #0a66c2
}

.ch-num.li-content {
  color: var(--green)
}

.ch-title {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink);
  margin-bottom: 6px
}

.ch-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink5);
  line-height: 1.6
}

.ch-flow {
  padding: 16px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--off);
  border: 1px solid var(--rule);
  border-radius: 6px;
  transition: border-color .2s, background .2s
}

.step:hover {
  background: var(--cream);
  border-color: var(--rule2)
}

.step-label {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
  flex: 1
}

.step-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--ink3);
  white-space: nowrap
}

.step-tools {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0
}

.tool-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.tool-icon svg {
  width: 12px;
  height: 12px
}

.step-connector {
  width: 1px;
  height: 16px;
  background: var(--rule2);
  margin: 0 auto 0 22px;
  position: relative
}

.step-connector::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rule2)
}

/* Branch rows */
.branch-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px
}

.branch-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: var(--r2);
  border: 1px solid var(--rule);
  background: var(--off);
  transition: border-color .2s, background .2s
}

.branch-step:hover {
  background: var(--cream);
  border-color: var(--rule2)
}

.branch-step.highlight-blue {
  border-color: rgba(0, 71, 225, .25);
  background: rgba(0, 71, 225, .04)
}

.branch-step.highlight-li {
  border-color: rgba(10, 102, 194, .25);
  background: rgba(10, 102, 194, .04)
}

.branch-step.highlight-green {
  border-color: rgba(21, 128, 61, .25);
  background: rgba(21, 128, 61, .04)
}

.bs-label {
  font-family: var(--fd);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  line-height: 1.2
}

.bs-sub {
  font-size: 9px;
  font-weight: 400;
  color: var(--ink3);
  text-align: center;
  line-height: 1.3
}

/* Channel outcome */
.ch-outcome {
  margin: 12px 22px 0;
  padding: 10px 14px;
  border-radius: var(--r2);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px
}

.ch-outcome.outbound {
  background: rgba(0, 71, 225, .07);
  border: 1px solid rgba(0, 71, 225, .18)
}

.ch-outcome.li-ads {
  background: rgba(10, 102, 194, .07);
  border: 1px solid rgba(10, 102, 194, .18)
}

.ch-outcome.li-content {
  background: rgba(21, 128, 61, .07);
  border: 1px solid rgba(21, 128, 61, .18)
}

.ch-outcome-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.ch-outcome-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink7);
  line-height: 1.3
}

/* Convergence */
.converge-wrap {
  position: relative;
  margin-top: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center
}

.converge-svg-wrap {
  width: 100%;
  height: 72px;
  position: relative
}

.converge-svg-wrap svg {
  width: 100%;
  height: 72px;
  overflow: visible
}

.outcome-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 380px
}

.outcome-node {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  background: var(--w);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
  transition: border-color .2s, box-shadow .2s
}

.outcome-node:hover {
  border-color: var(--rule2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .07)
}

.outcome-node.final {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2)
}

.outcome-node.final:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .28)
}

.on-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r2);
  background: var(--off);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.outcome-node.final .on-icon {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .15)
}

.on-icon svg {
  width: 14px;
  height: 14px
}

.on-title {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink);
  line-height: 1.2
}

.outcome-node.final .on-title {
  color: #fff
}

.on-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--ink5);
  margin-top: 1px
}

.outcome-node.final .on-sub {
  color: rgba(255, 255, 255, .5)
}

.outcome-connector {
  width: 1px;
  height: 14px;
  background: var(--rule2)
}

/* SERVICES */
.services-section {
  background: var(--off);
  border-bottom: 1px solid var(--rule)
}

.svc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule)
}

.svc-intro {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink7)
}

.svc-list {
  display: flex;
  flex-direction: column
}

.svc-item {
  display: grid;
  grid-template-columns: 44px 240px 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  transition: background .2s;
  cursor: default
}

.svc-item:first-child {
  border-top: none;
  padding-top: 32px
}

.svc-n {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink1);
  letter-spacing: .05em;
  padding: 32px 0;
  display: flex;
  align-items: flex-start;
  padding-top: 34px
}

.svc-name-col {
  padding: 32px 32px 32px 0
}

.svc-name {
  font-family: var(--fd);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 10px
}

.svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px
}

.chip {
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink5);
  border: 1px solid var(--rule2);
  padding: 3px 9px;
  border-radius: 3px
}

.svc-desc-col {
  padding: 32px 0 32px 36px;
  border-left: 1px solid var(--rule)
}

.svc-desc-text {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink7);
  line-height: 1.75;
  margin-bottom: 14px
}

.svc-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.svc-bullets li {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink5);
  display: flex;
  align-items: center;
  gap: 8px
}

.svc-bullets li::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0
}

/* PROCESS */
.process-section {
  background: var(--paper);
  border-bottom: 1px solid var(--rule)
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 40px;
  flex-wrap: wrap
}

.process-note {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink3);
  max-width: 220px;
  text-align: right;
  line-height: 1.65
}

.timeline {
  border: 1px solid var(--rule);
  background: var(--w);
  border-radius: var(--r);
  overflow: hidden
}

.tl-row {
  display: grid;
  grid-template-columns: 130px 160px 1fr;
  border-bottom: 1px solid var(--rule)
}

.tl-row:last-child {
  border-bottom: none
}

.tl-wk {
  border-right: 1px solid var(--rule);
  padding: 24px 20px;
  background: var(--off);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px
}

.tl-wk-n {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink)
}

.tl-wk-s {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink3)
}

.tl-ph {
  border-right: 1px solid var(--rule);
  padding: 24px 20px;
  display: flex;
  align-items: center
}

.tl-ph-n {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--blue)
}

.tl-body {
  padding: 24px 28px
}

.tl-t {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px
}

.tl-d {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink7);
  line-height: 1.7
}

/* RESULTS */
.results-section {
  background: var(--w);
  border-bottom: 1px solid var(--rule)
}

.results-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 40px
}

.results-note {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink7);
  line-height: 1.8
}

.rc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.rc {
  background: var(--off);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .2s, border-color .2s
}

.rc:hover {
  background: var(--paper);
  border-color: var(--rule2)
}

.rc-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3)
}

.rc-nums {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule)
}

.rc-n {
  display: flex;
  align-items: baseline;
  gap: 8px
}

.rc-big {
  font-family: var(--fd);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink)
}

.rc-lbl {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink5);
  line-height: 1.35
}

.rc-story {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink7);
  line-height: 1.7
}

/* ICP */
.icp-section {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.icp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 36px;
  gap: 40px;
  flex-wrap: wrap
}

.icp-hl {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.015em;
  color: #fff
}

.icp-sub {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, .32);
  max-width: 260px;
  line-height: 1.65;
  text-align: right
}

.icp-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.icp-col {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r);
  padding: 32px
}

.icp-col-hdr {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 7px
}

.dot-g {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0
}

.dot-r {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 80, 80, .7);
  flex-shrink: 0
}

.icp-list {
  list-style: none;
  display: flex;
  flex-direction: column
}

.icp-list li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px
}

.icp-list li:last-child {
  border-bottom: none
}

.icp-list.y li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  margin-top: 8px
}

.icp-list.n li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 80, 80, .6);
  flex-shrink: 0;
  margin-top: 8px
}

/* FAQ */
.faq-section {
  background: var(--w);
  border-bottom: 1px solid var(--rule)
}

.faq-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 72px;
  align-items: start
}

.faq-sticky {
  position: sticky;
  top: 74px
}

.faq-sticky-note {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink3);
  line-height: 1.7;
  margin-top: 12px
}

.faq-list {
  display: flex;
  flex-direction: column
}

.faq-item {
  border-top: 1px solid var(--rule);
  cursor: pointer
}

.faq-item:last-child {
  border-bottom: 1px solid var(--rule)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0
}

.faq-q-t {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4
}

.faq-tog {
  width: 24px;
  height: 24px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink5);
  transition: all .2s
}

.faq-item.open .faq-tog {
  background: var(--ink);
  color: var(--w);
  border-color: var(--ink)
}

.faq-a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink7);
  line-height: 1.78;
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, padding .3s
}

.faq-item.open .faq-a {
  max-height: 320px;
  padding-bottom: 20px
}

/* YOUTUBE */
.yt-section {
  background: var(--off);
  border-bottom: 1px solid var(--rule)
}

.yt-header {
  margin-bottom: 40px
}

.yt-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink5);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 480px
}

.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px
}

.yt-card {
  background: var(--w);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s
}

.yt-card:hover {
  border-color: var(--rule2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .07)
}

.yt-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center
}

.yt-thumb-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px)
}

.yt-dur {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 2px 8px;
  border-radius: 3px
}

.yt-info {
  padding: 16px
}

.yt-vid-title {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 6px
}

.yt-vid-meta {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink5)
}

.yt-cta {
  text-align: center
}

/* BLOG */
.blog-section {
  background: var(--w);
  border-bottom: 1px solid var(--rule)
}

.blog-header {
  margin-bottom: 40px
}

.blog-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink5);
  line-height: 1.7;
  margin-top: 12px
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.blog-card {
  background: var(--off);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s
}

.blog-card:hover {
  border-color: var(--rule2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .07)
}

.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), #1a2744)
}

.blog-info {
  padding: 20px
}

.blog-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px
}

.blog-post-title {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 8px
}

.blog-excerpt {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink5);
  line-height: 1.6;
  margin-bottom: 12px
}

.blog-meta {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink3)
}

/* CTA */
.cta-section {
  background: var(--navy);
  padding: 112px 40px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(0, 71, 225, .15) 0%, transparent 70%);
  pointer-events: none
}

.cta-hl {
  font-family: var(--fd);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 600;
  line-height: .97;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  z-index: 1
}

.cta-hl span {
  color: rgba(255, 255, 255, .3);
  font-weight: 400
}

.cta-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, .45);
  max-width: 400px;
  margin: 0 auto 40px;
  line-height: 1.75;
  position: relative;
  z-index: 1
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--ink);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  border: 1.5px solid #fff;
  transition: background .2s, transform .15s;
  position: relative;
  z-index: 1
}

.btn-white:hover {
  background: var(--off);
  transform: translateY(-1px)
}

.btn-white svg {
  transition: transform .2s
}

.btn-white:hover svg {
  transform: translateX(3px)
}

.cta-note {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, .2);
  margin-top: 16px;
  position: relative;
  z-index: 1
}

/* FOOTER */
footer {
  background: #030912;
  border-top: 1px solid rgba(255, 255, 255, .04)
}

.footer-main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 40px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px
}

.f-logo {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none
}

.f-logo b {
  color: var(--blue)
}

.f-tagline {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, .3);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px
}

.f-social {
  display: flex;
  gap: 10px;
  margin-top: 20px
}

.f-social-link {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .35);
  transition: color .2s, border-color .2s, background .2s;
  text-decoration: none
}

.f-social-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .05)
}

.footer-col {
  padding-top: 4px
}

.f-col-title {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 18px
}

.f-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.f-col-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: color .2s
}

.f-col-links a:hover {
  color: #fff
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.f-copy {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, .15)
}

.f-legal {
  display: flex;
  gap: 20px
}

.f-legal a {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, .18);
  text-decoration: none;
  transition: color .2s
}

.f-legal a:hover {
  color: rgba(255, 255, 255, .5)
}

/* RESPONSIVE */
@media(max-width:960px) {
  nav {
    padding: 0 20px
  }

  .mobile-menu-btn {
    display: flex
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(16px);
    padding: 40px 20px;
    gap: 20px;
    align-items: flex-start
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    font-size: 14px
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 8px 0;
    min-width: 0;
    background: var(--w);
    border-radius: var(--r);
    border: 1px solid var(--rule);
    padding-left: 12px
  }

  .hero {
    padding: 80px 20px 40px
  }

  .video-inner {
    grid-template-columns: 1fr
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px
  }

  .svc-header {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .svc-item {
    grid-template-columns: 40px 1fr
  }

  .svc-desc-col {
    display: none
  }

  .process-header {
    flex-direction: column;
    align-items: flex-start
  }

  .process-note {
    text-align: left;
    max-width: 100%
  }

  .tl-row {
    grid-template-columns: 1fr
  }

  .tl-wk,
  .tl-ph {
    border-right: none;
    border-bottom: 1px solid var(--rule)
  }

  .results-header {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .rc-grid,
  .yt-grid,
  .blog-grid {
    grid-template-columns: 1fr
  }

  .icp-header {
    flex-direction: column
  }

  .icp-sub {
    text-align: left
  }

  .icp-cols {
    grid-template-columns: 1fr
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .faq-sticky {
    position: static
  }

  .sec-pad {
    padding: 72px 20px
  }

  .cta-section {
    padding: 80px 20px
  }

  .channels-row {
    grid-template-columns: 1fr
  }

  .converge-svg-wrap {
    display: none
  }

  .hiw-section {
    padding: 72px 20px 60px
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 32px
  }

  .footer-bottom {
    padding: 16px 20px
  }

  .pipe-header,
  .pipe-wrap,
  .pipe-stats {
    padding-left: 20px;
    padding-right: 20px
  }

  .pipe-stats {
    grid-template-columns: 1fr 1fr
  }

  .viewport {
    height: 400px
  }

  .tb-stat {
    display: none
  }
}