/* ============================
   BUSINESS PAGE — Premium Redesign v3
   ============================ */

/* ── Hero area wrapper — single background covers hero + clock timeline ── */
.biz-hero-area {
  position: relative;
  background-image: url('../images/business/business-hero-background.png');
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 60px;
}

/* Softening overlay — covers the full hero+clock area */
.biz-hero-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .72);
  pointer-events: none;
  z-index: 0;
}

/* ── Hero (LIGHT THEME) ── */
.biz-hero {
  padding: clamp(140px, 18vh, 220px) 24px clamp(60px, 8vh, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: transparent;
  /* override .s-light which sets background: var(--bg) white */
}

.biz-hero__headline {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--text, #0e1117);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  /* Start hidden — GSAP entry animation reveals */
  opacity: 0;
  transform: translateY(24px);
}

.biz-hero__headline .accent-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.biz-hero__sub {
  font-size: clamp(.92rem, 1.1vw, 1.05rem);
  color: #2a2e3d;
  line-height: 1.75;
  max-width: 72vw;
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  /* Start hidden — GSAP entry animation reveals */
  opacity: 0;
  transform: translateY(18px);
}

/* ── inHumane Serif lowercase o ── */
.font-inhumane-lower {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: inherit;
  line-height: inherit;
  display: inline;
}



.clock-24-wrap>* {
  position: relative;
  z-index: 1;
}

.clock-24 {
  width: 100%;
  position: relative;
}

.clock-24__track {
  display: flex;
  gap: 0;
  width: 100%;
  position: relative;
  padding: 0 20px;
}

/* Connecting line extends beyond viewport — light edges, dark center */
.clock-24__track::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -10vw;
  right: -10vw;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(79, 110, 247, .06) 0%,
      rgba(79, 110, 247, .12) 10%,
      rgba(79, 110, 247, .35) 35%,
      rgba(79, 110, 247, .5) 50%,
      rgba(79, 110, 247, .35) 65%,
      rgba(79, 110, 247, .12) 90%,
      rgba(79, 110, 247, .06) 100%);
  z-index: 0;
}

.clock-24__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  visibility: hidden;
  padding: 0 8px;
}

/* Fade in children individually — parent opacity stays 1 (no stacking context) */
.clock-24__item>* {
  opacity: 0;
  transition: opacity .5s cubic-bezier(.22, 1, .36, 1);
}

/* Chat bubble gets the pop animation directly (same element = backdrop-filter still works) */
.clock-24__item>.clock-24__msg {
  transform: scale(0.82) translateY(8px);
  transform-origin: bottom center;
  transition: opacity .5s cubic-bezier(.22, 1, .36, 1),
    transform .5s cubic-bezier(.22, 1, .36, 1);
}

.clock-24__item.is-visible {
  visibility: visible;
}

.clock-24__item.is-visible>* {
  opacity: 1;
}

.clock-24__item.is-visible>.clock-24__msg {
  transform: scale(1) translateY(0);
}

.clock-24__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(79, 110, 247, .3);
  flex-shrink: 0;
}

.clock-24__item:last-child .clock-24__dot {
  background: var(--green, #22c55e);
  box-shadow: 0 0 12px rgba(34, 197, 94, .3);
}

.clock-24__time {
  font-family: var(--ff-mono);
  font-size: .72rem;
  color: var(--accent);
  white-space: nowrap;
}

.clock-24__msg {
  font-size: .76rem;
  color: #1a1e2e;
  line-height: 1.5;
  text-align: left;
  padding: 12px 14px;
  background: rgba(79, 110, 247, .08);
  border: 1px solid rgba(79, 110, 247, .15);
  border-radius: 14px 14px 14px 4px;
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all .3s var(--ease);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(79, 110, 247, .06);
}

.clock-24__item:hover .clock-24__msg {
  border-color: rgba(79, 110, 247, .25);
  background: rgba(79, 110, 247, .12);
  box-shadow: 0 4px 20px rgba(79, 110, 247, .1);
}

.clock-emoji {
  margin-left: 4px;
}

/* ── Scenarios Section (DARK bg) ── */
.biz-scenarios {
  padding: var(--section-pad) 24px;
  background: #1D1E23;
}

.biz-scenarios .container {
  max-width: 80vw;
  margin: 0 auto;
}

/* Before / After labels — positioned inside containers */
.scenario__label {
  position: absolute;
  top: -36px;
  font-family: var(--ff-sans, 'Sora', sans-serif);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  pointer-events: none;
}

.scenario__label--before {
  left: 0;
  color: rgba(255, 255, 255, .65);
}

.scenario__label--after {
  right: 0;
  color: var(--accent-light, #7b95ff);
}

/* Allow labels to overflow above the card */
.scenario--has-labels {
  margin-top: 36px;
}

.scenario--has-labels .scenario__problem {
  overflow: visible;
}

.scenario--has-labels .scenario__via-bubble {
  position: relative;
}


.biz-scenarios__resolve {
  text-align: center;
  padding: 72px 0 0;
}

.biz-scenarios__resolve-text {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  white-space: nowrap;
}

/* Scenario card — problem (dark) + solution (light VIA) */
.scenario {
  max-width: 100%;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Problem side — dark gray */
.scenario__problem {
  background: #141519;
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
}

.scenario__text {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, .9);
  font-style: italic;
  font-family: 'Inter', sans-serif;
}

/* Solution side — VIA bubble */
.scenario__solution {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.scenario__via-bubble {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  max-width: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: all .6s var(--ease);
}

.scenario__via-bubble.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.scenario__via-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(79, 110, 247, .25);
}

.scenario__via-msg {
  background: rgba(79, 110, 247, .1);
  border: 1px solid rgba(79, 110, 247, .18);
  border-radius: 18px 18px 18px 4px;
  padding: 16px 20px;
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .93);
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(79, 110, 247, .08), inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* ── Dual Message (LIGHT THEME) ── */
.biz-dual {
  padding: var(--section-pad) 24px;
  overflow: hidden;
}

/* ── Skyline wrapper (shared bg for dual + integrations) ── */
.biz-skyline-wrap {
  position: relative;
  background-image: url('../images/landing/background-skyscraper.png');
  background-position: center 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.biz-skyline-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .65);
  z-index: 0;
}

.biz-skyline-wrap>* {
  position: relative;
  z-index: 1;
}

.biz-dual.s-light {
  background: transparent;
}

.biz-dual__header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
}

.biz-dual__header .section-h2 {
  color: var(--text, #0e1117);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 90vw;
  margin: 0 auto 20px;
}

.biz-dual__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  max-width: 90vw;
  margin: 0 auto;
  position: relative;
}

.biz-dual__card {
  padding: 60px 52px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: visible;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
  text-align: center;
  z-index: 2;
}

/* Light theme cards — semi-transparent glass so orbits shine through */
.s-light .biz-dual__card {
  background: rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
}

.s-light .biz-dual__card:hover {
  border-color: rgba(79, 110, 247, .2);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, .06),
    0 0 40px rgba(79, 110, 247, .06),
    inset 0 1px 0 rgba(255, 255, 255, .8);
  transform: translateY(-4px);
}

/* Gradient border glow */
.s-light .biz-dual__card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(79, 110, 247, .3), transparent 40%, transparent 60%, rgba(123, 149, 255, .15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}

.s-light .biz-dual__card:hover::before {
  opacity: 1;
}

/* Inner radial glow */
.s-light .biz-dual__card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(79, 110, 247, .04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}

.s-light .biz-dual__card:hover::after {
  opacity: 1;
}

.biz-dual__card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(79, 110, 247, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 0;
  transition: box-shadow .4s var(--ease), background .4s var(--ease);
}

.s-light .biz-dual__card:hover .biz-dual__card-icon {
  box-shadow: 0 0 24px rgba(79, 110, 247, .12);
  background: rgba(79, 110, 247, .12);
}

.biz-dual__card-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
}

.biz-dual__card-title {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #070a12;
  margin-bottom: 16px;
}

.biz-dual__card-desc {
  font-size: .95rem;
  line-height: 1.7;
  color: #1a1e2e;
}

/* ── Dual Connector (orbits — behind cards) ── */
.biz-dual__connector {
  position: absolute;
  top: calc(50% + 20px);
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  width: 64px;
  height: 64px;
  overflow: visible;
}

/* Build: fade-in + scale the whole orbit system together */
.biz-dual__connector.orbit-build {
  animation: orbitContainerBuild .6s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes orbitContainerBuild {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}



/* ── Elliptical orbit rings (behind cards, visible through glass) ── */
.biz-dual__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(100, 140, 255, .35);
  pointer-events: none;
  z-index: 1;
  box-shadow:
    0 0 12px rgba(100, 140, 255, .15),
    0 0 30px rgba(100, 140, 255, .08);
}

/* Ring 1: innermost — always spinning */
.biz-dual__orbit--1 {
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%) rotateX(65deg) rotateZ(15deg);
  animation: orbitSpin1 5s linear infinite;
}

/* Ring 2: cross-axis, most subtle — always spinning */
.biz-dual__orbit--2 {
  width: 170px;
  height: 170px;
  transform: translate(-50%, -50%) rotateX(70deg) rotateZ(-30deg);
  animation: orbitSpin2 4s linear infinite reverse;
  border-color: rgba(123, 149, 255, .22);
  box-shadow: none;
}

/* Ring 3: widest, most tilted — always spinning */
.biz-dual__orbit--3 {
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%) rotateX(65deg) rotateZ(45deg);
  animation: orbitSpin3 3s linear infinite;
  border-color: rgba(79, 110, 247, .2);
  border-style: dashed;
}

/* ── Orbit dots ── */
.biz-dual__orbit-dot {
  position: absolute;
  border-radius: 50%;
  background: #7B9FFF;
  width: 10px;
  height: 10px;
  opacity: 1;
  box-shadow:
    0 0 8px 2px rgba(130, 170, 255, 1),
    0 0 18px 4px rgba(100, 140, 255, .6),
    0 0 30px 6px rgba(80, 120, 255, .25);
}

/* Comet trail */
.biz-dual__orbit-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  width: 20px;
  height: 60%;
  border-radius: 50% 0 0 50%;
  background: linear-gradient(to left, rgba(130, 170, 255, .5), transparent);
  filter: blur(3px);
}

.biz-dual__orbit-dot:nth-child(odd) {
  width: 12px;
  height: 12px;
}

.biz-dual__orbit-dot:nth-child(3n) {
  width: 8px;
  height: 8px;
}

.biz-dual__orbit-dot:nth-child(4n+1) {
  width: 11px;
  height: 11px;
  opacity: .7;
}

.biz-dual__free-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 2;
}

.biz-dual__free-dot {
  position: absolute;
  border-radius: 50%;
  background: #B8D4FF;
  box-shadow: 0 0 4px rgba(130, 170, 255, .6);
}

/* ── Central plus dot — replaced by 3D planet ── */
.biz-dual__connector-dot {
  display: none;
  /* hidden, planet-wrapper takes over */
}

/* Planet wrapper sits where the connector-dot was */
.biz-dual__grid .planet-wrapper {
  position: absolute;
  top: calc(50% + 20px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 51px;
  height: 51px;
  margin: 0;
  z-index: 10;
  filter:
    drop-shadow(0 4px 14px rgba(30, 60, 120, 0.32)) drop-shadow(0 1px 3px rgba(30, 60, 120, 0.18));
}

.biz-dual__grid #planet-canvas {
  width: 51px !important;
  height: 51px !important;
  opacity: 0;
  transform: scale(0.2);
  transition: none;
}

.biz-dual__grid #planet-canvas.visible {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.34, 1.3, 0.64, 1);
}

/* ── Orbit keyframes ── */
@keyframes orbitSpin1 {
  from {
    transform: translate(-50%, -50%) rotateX(65deg) rotateZ(15deg) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotateX(65deg) rotateZ(15deg) rotate(360deg);
  }
}

@keyframes orbitSpin2 {
  from {
    transform: translate(-50%, -50%) rotateX(70deg) rotateZ(-30deg) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotateX(70deg) rotateZ(-30deg) rotate(360deg);
  }
}

@keyframes orbitSpin3 {
  from {
    transform: translate(-50%, -50%) rotateX(65deg) rotateZ(45deg) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotateX(65deg) rotateZ(45deg) rotate(360deg);
  }
}



@keyframes connectorPulse {

  0%,
  100% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3), 0 0 30px rgba(79, 110, 247, .25), 0 0 60px rgba(79, 110, 247, .08);
  }

  50% {
    box-shadow: 0 6px 16px rgba(0, 0, 0, .35), 0 0 50px rgba(79, 110, 247, .4), 0 0 80px rgba(79, 110, 247, .15);
  }
}

/* ── Integrations — compact, 80vw ── */
.biz-integrations {
  padding: clamp(20px, 4vh, 60px) 24px;
  padding-bottom: clamp(80px, 10vh, 140px);
  position: relative;
  background: transparent;
}

.biz-integrations__inner {
  max-width: 80vw;
  margin: 0 auto;
  text-align: center;
}

.biz-integrations__inner .section-sub {
  margin: 0 auto 36px;
  max-width: 100%;
  white-space: nowrap;
  color: #2c3040;
}

.integration-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto 24px;
}

/* Cloud-like vertical stagger — gentle, organic */
.integration-chip:nth-child(4n+1) {
  transform: translateY(2px);
}

.integration-chip:nth-child(4n+2) {
  transform: translateY(-2px);
}

.integration-chip:nth-child(4n+3) {
  transform: translateY(3px);
}

.integration-chip:nth-child(4n) {
  transform: translateY(-1px);
}

.integration-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 500;
  transition: all .4s var(--ease);
  opacity: 0;
  position: relative;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(255, 255, 255, .5);
  color: var(--text, #0e1117);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .03);
}

.integration-chip.is-visible {
  opacity: 1;
}

.integration-chip .si {
  font-size: .95rem;
  opacity: .65;
}

.integration-chip img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.integration-chip:hover {
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 4px 24px rgba(79, 110, 247, .1);
  border-color: rgba(79, 110, 247, .18);
  transform: translateY(-3px) scale(1.03);
}

.integration-cloud__note {
  text-align: center;
  font-size: .8rem;
  color: #1a1e2e;
  font-style: italic;
}

/* ── Moments ── */
.biz-moments.s-dark {
  background: #111827;
}

.biz-moments {
  padding: var(--section-pad) 24px;
}

.moment {
  max-width: var(--container);
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.moment:last-child {
  margin-bottom: 0;
}

.moment:nth-child(odd) {
  grid-template-columns: 1.1fr 1fr;
}

.moment:nth-child(even) {
  direction: rtl;
}

.moment:nth-child(even)>* {
  direction: ltr;
}

.moment__tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 14px;
}

.moment__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
}

.moment__desc {
  font-size: .92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .82);
}

.moment__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 28px;
  position: relative;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.moment__visual:hover {
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .12);
}

/* Briefing demo — professional dashboard widget */
.briefing-demo {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 16px;
  background: #161b26;
  border: 1px solid rgba(255, 255, 255, .06);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

/* Widget header bar with logo */
.briefing-demo__header {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  background: rgba(255, 255, 255, .03);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.briefing-demo__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.briefing-demo__logo {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-left: auto;
  opacity: .9;
}

.briefing-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  font-size: .82rem;
  color: rgba(255, 255, 255, .88);
  opacity: 0;
  transform: translateY(6px);
  transition: all .4s var(--ease), background .2s ease;
  cursor: default;
}

.briefing-item:last-child {
  border-bottom: none;
}

.briefing-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.briefing-item:hover {
  background: rgba(255, 255, 255, .03);
}

.briefing-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.briefing-item__icon--calendar {
  background: rgba(79, 110, 247, .15);
  color: var(--accent-light);
}

.briefing-item__icon--mail {
  background: rgba(239, 68, 68, .12);
  color: #f87171;
}

.briefing-item__icon--team {
  background: rgba(123, 149, 255, .12);
  color: var(--accent-light);
}

.briefing-item__icon--chart {
  background: rgba(34, 197, 94, .12);
  color: #4ade80;
}

.briefing-item__icon--weather {
  background: rgba(96, 165, 250, .12);
  color: #93c5fd;
}

/* Self-learning timeline */
.learn-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.learn-step {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: all .6s var(--ease);
}

.learn-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.learn-step__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 8px rgba(79, 110, 247, .3);
}

.learn-step:not(:last-child) .learn-step__dot::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  /* Bridge from dot bottom to next dot top:
     remaining padding in current step (16px - 4px margin-top - 12px dot = 0px already at bottom of content area)
     + padding-bottom of current step (16px)
     + padding-top of next step (16px)
     + margin-top of next dot (4px) */
  height: 36px;
  background: linear-gradient(180deg, rgba(79, 110, 247, .3), rgba(79, 110, 247, .08));
}

.learn-step:last-child .learn-step__dot {
  background: var(--green, #22c55e);
  box-shadow: 0 0 8px rgba(34, 197, 94, .3);
}

.learn-step__day {
  font-family: var(--ff-mono);
  font-size: .76rem;
  color: var(--accent-light);
  min-width: 85px;
}

.learn-step__text {
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
}

/* Decision tree — vertical notification feed */
.decision-tree {
  background: #161b26;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.decision-tree__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: .72rem;
  font-family: var(--ff-mono);
  color: rgba(255, 255, 255, .4);
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .02);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.decision-tree__header-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, .5);
}

.decision-tree__feed {
  padding: 8px 0;
  position: relative;
}

.decision-feed-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 20px;
  position: relative;
  opacity: 0;
  transform: translateX(14px);
  transition: all .45s var(--ease);
}

.decision-feed-item.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Vertical connecting line — centered on badge (26px wide at left:20px padding)
   Badge center-X = 20px padding + 13px half = 33px
   Line center should be at 33px → left = 33px - 1px = 32px (2px wide line)
   Badge bottom-Y = 14px padding + 2px margin + 26px badge = 42px
   Line runs from badge bottom to next badge top */
.decision-feed-item__line {
  position: absolute;
  left: 32px;
  top: 42px;
  width: 2px;
  height: calc(100% - 42px + 16px);
  background: linear-gradient(180deg, rgba(79, 110, 247, .25), rgba(79, 110, 247, .08));
}

.decision-feed-item:last-child .decision-feed-item__line {
  display: none;
}

/* Status badges */
.decision-feed-item__badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 800;
  margin-top: 2px;
}

.decision-feed-item__badge--alert {
  background: rgba(245, 158, 11, .15);
  color: #fbbf24;
  border: 1.5px solid rgba(245, 158, 11, .25);
}

.decision-feed-item__badge--search {
  background: rgba(79, 110, 247, .12);
  color: var(--accent-light);
  border: 1.5px solid rgba(79, 110, 247, .2);
}

.decision-feed-item__badge--draft {
  background: rgba(168, 132, 255, .12);
  color: #c4b5fd;
  border: 1.5px solid rgba(168, 132, 255, .2);
}

.decision-feed-item__badge--approved {
  background: rgba(56, 189, 248, .12);
  color: #38bdf8;
  border: 1.5px solid rgba(56, 189, 248, .2);
}

.decision-feed-item__badge--resolved {
  background: rgba(34, 197, 94, .15);
  color: #4ade80;
  border: 1.5px solid rgba(34, 197, 94, .25);
}

/* Content */
.decision-feed-item__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.decision-feed-item__label {
  font-size: .7rem;
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .35);
}

.decision-feed-item--alert .decision-feed-item__label {
  color: rgba(251, 191, 36, .7);
}

.decision-feed-item--search .decision-feed-item__label {
  color: rgba(79, 110, 247, .7);
}

.decision-feed-item--draft .decision-feed-item__label {
  color: rgba(196, 181, 253, .7);
}

.decision-feed-item--approved .decision-feed-item__label {
  color: rgba(56, 189, 248, .7);
}

.decision-feed-item--resolved .decision-feed-item__label {
  color: rgba(74, 222, 128, .7);
}

.decision-feed-item__text {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.4;
}

/* ── Setup ── */
.biz-setup {
  padding: var(--section-pad) 24px;
  background: linear-gradient(180deg, #f0f2f8 0%, #fafbfd 40%, #fafbfd 60%, #f0f2f8 100%);
  position: relative;
}

.biz-setup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(79, 110, 247, .04), transparent),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(79, 110, 247, .03), transparent);
  pointer-events: none;
}

.biz-setup__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.biz-setup__card {
  padding: 52px 44px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, .04),
    0 1px 0 rgba(255, 255, 255, .9) inset;
}

/* Top accent gradient bar */
.biz-setup__card::before {
  display: none;
}

/* Subtle corner glow */
.biz-setup__card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(79, 110, 247, .06);
  filter: blur(40px);
  pointer-events: none;
  transition: opacity .4s var(--ease);
  opacity: 0;
}

.biz-setup__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, .08),
    0 0 40px rgba(79, 110, 247, .06),
    0 1px 0 rgba(255, 255, 255, .9) inset;
  border-color: rgba(79, 110, 247, .15);
}



.biz-setup__card:hover::after {
  opacity: 1;
}

.biz-setup__card-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.biz-setup__card-title {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text, #0e1117);
  margin-bottom: 14px;
}

.biz-setup__card-desc {
  font-size: .92rem;
  line-height: 1.7;
  color: #1a1d2b;
  margin-bottom: 28px;
}

.biz-setup__steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  margin-top: 16px;
}

.biz-setup__step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .85rem;
  color: #1a1d2b;
  position: relative;
  padding: 6px 0;
}

/* Connecting line between step numbers
   Step-num is 32px × 32px, centered vertically in step (padding: 6px)
   Step-num center-X = 16px → line left = 15px (2px wide → center at 16px)
   Step height = 6 + 32 + 6 = 44px, step-num bottom at ~38px
   Gap between steps = 4px, next step padding-top = 6px
   Line should bridge: step-bottom(6px) + gap(4px) + padding-top(6px) = 16px */
.biz-setup__step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 38px;
  width: 2px;
  height: 16px;
  background: linear-gradient(180deg, rgba(79, 110, 247, .15), rgba(79, 110, 247, .06));
}

.biz-setup__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(79, 110, 247, .08);
  color: var(--accent);
  font-weight: 700;
  font-size: .78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .4s var(--ease);
  position: relative;
  z-index: 1;
  border: 2px solid rgba(79, 110, 247, .12);
}

.biz-setup__step-num.is-active {
  background: var(--gradient-1);
  color: #fff;
  box-shadow: 0 0 16px rgba(79, 110, 247, .25);
  border-color: transparent;
}

.biz-setup__unify {
  text-align: center;
  margin-top: 56px;
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text, #0e1117);
}

/* ── Security Bento ── */
.biz-security {
  padding: var(--section-pad) 24px;
  position: relative;
  background: linear-gradient(180deg, #060810 0%, #090c18 50%, #0b0e1c 100%);
}

.biz-security__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.biz-security__card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .07);
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.biz-security__card:hover {
  border-color: rgba(79, 110, 247, .2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
  transform: translateY(-3px);
}

/* Hero card (3rd child) — RIGHT column, spans 2 rows */
.biz-security__card--hero {
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 420px;
}

/* ── Background image layer ── */
.biz-security__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform .6s var(--ease);
}

.biz-security__card:hover .biz-security__card-bg {
  transform: scale(1.04);
}

/* ── Overlay gradient ── */
.biz-security__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(6, 8, 20, .25) 0%,
      rgba(6, 8, 20, .55) 40%,
      rgba(6, 8, 20, .88) 100%);
  pointer-events: none;
}

.biz-security__card-overlay--hero {
  background: linear-gradient(180deg,
      rgba(6, 8, 20, .2) 0%,
      rgba(6, 8, 20, .4) 40%,
      rgba(6, 8, 20, .8) 100%);
}

/* ── Content layer ── */
.biz-security__card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 32px;
}

.biz-security__card-content--hero {
  justify-content: flex-end;
  padding: 40px 36px;
}

.biz-security__card-icon {
  font-size: 0;
  margin-bottom: 14px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(79, 110, 247, .15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.biz-security__card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-light);
  stroke-width: 1.5;
  fill: none;
}

.biz-security__card-title {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.biz-security__card--hero .biz-security__card-title {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 0;
}

.biz-security__card-desc {
  font-size: .85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .92);
}

/* ── Pricing Explainer Mini Section ── */
.biz-pricing {
  padding: var(--section-pad) 24px;
  background: #f7f8fc;
  text-align: center;
}

.biz-pricing .container {
  max-width: 900px;
  margin: 0 auto;
}

.biz-pricing .eyebrow {
  color: var(--accent);
}

.biz-pricing .section-h2 {
  margin-bottom: 16px;
}

.biz-pricing__sub {
  font-size: 1rem;
  color: #4a4f6a;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 48px;
}

.biz-pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.biz-pricing__card {
  padding: 32px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(79, 110, 247, .08);
  text-align: left;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.biz-pricing__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(79, 110, 247, .08);
}

.biz-pricing__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(79, 110, 247, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.biz-pricing__card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.biz-pricing__card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text, #0e1117);
  margin-bottom: 8px;
}

.biz-pricing__card-desc {
  font-size: .85rem;
  color: #1a1d2b;
  line-height: 1.6;
}

.biz-pricing__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: gap .3s var(--ease), color .3s var(--ease);
}

.biz-pricing__cta:hover {
  gap: 10px;
  color: var(--accent-light);
}

.biz-pricing__cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s var(--ease);
}

.biz-pricing__cta:hover svg {
  transform: translateX(3px);
}

/* ── CTA ── */
.biz-cta {
  text-align: center;
  padding: clamp(100px, 14vh, 180px) 24px;
  position: relative;
  overflow: hidden;
}

.biz-cta__headline {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.biz-cta__headline .accent-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.biz-cta__buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CTA Buttons: nav-cta-btn matching animations ── */
.biz-cta__buttons .btn-primary,
.biz-cta__buttons .btn-outline {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--ease-bounce),
    box-shadow .4s var(--ease),
    background-position .5s var(--ease),
    border-color .3s var(--ease),
    color .3s var(--ease);
  background-size: 200% 100%;
  will-change: transform, box-shadow;
}

/* Shimmer sweep — shared ::before */
.biz-cta__buttons .btn-primary::before,
.biz-cta__buttons .btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      transparent 20%,
      rgba(255, 255, 255, .25) 40%,
      rgba(255, 255, 255, .4) 50%,
      rgba(255, 255, 255, .25) 60%,
      transparent 80%);
  transform: translateX(-120%);
  transition: none;
  z-index: 1;
  pointer-events: none;
}

.biz-cta__buttons .btn-primary:hover::before,
.biz-cta__buttons .btn-outline:hover::before {
  animation: ctaShimmer .7s var(--ease) forwards;
}

/* Glow ring — shared ::after */
.biz-cta__buttons .btn-primary::after,
.biz-cta__buttons .btn-outline::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: var(--gradient-1);
  opacity: 0;
  z-index: -1;
  filter: blur(10px);
  transition: opacity .4s var(--ease);
  pointer-events: none;
}

.biz-cta__buttons .btn-primary:hover::after,
.biz-cta__buttons .btn-outline:hover::after {
  opacity: .55;
  animation: ctaGlowPulse 2s ease-in-out infinite;
}

/* Hover: lift + glow */
.biz-cta__buttons .btn-primary:hover {
  transform: translateY(-2px) scale(1.04);
  background-position: 100% 0;
  box-shadow:
    0 4px 20px rgba(79, 110, 247, .4),
    0 0 40px rgba(79, 110, 247, .15),
    0 0 0 1px rgba(255, 255, 255, .15) inset;
}

.biz-cta__buttons .btn-outline:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 4px 20px rgba(79, 110, 247, .25),
    0 0 40px rgba(79, 110, 247, .1);
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
  background-color: rgba(79, 110, 247, .15);
}

/* Press: bounce down */
.biz-cta__buttons .btn-primary:active,
.biz-cta__buttons .btn-outline:active {
  transform: translateY(1px) scale(.97);
  box-shadow: 0 1px 8px rgba(79, 110, 247, .3);
  transition-duration: .1s;
}

/* ── CTA merged into footer ── */
.biz-footer-cta {
  text-align: center;
  padding: 80px 24px 48px;
}

.biz-footer-cta .biz-cta__headline {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 36px;
}

.biz-footer-cta .biz-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .biz-hero__headline {
    max-width: 90vw;
  }

  .biz-hero__sub {
    max-width: 85vw;
  }

  .biz-scenarios .container {
    max-width: 92vw;
  }

  .biz-dual__grid {
    max-width: 95vw;
  }

  .moment {
    grid-template-columns: 1fr;
  }

  .moment:nth-child(odd) {
    grid-template-columns: 1fr;
  }

  .moment:nth-child(even) {
    direction: ltr;
  }

  .biz-dual__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .biz-dual__connector,
  .biz-dual__connector-dot {
    display: none;
  }

  /* Planet still shows on mobile, centred */
  .biz-dual__grid .planet-wrapper {
    margin: 0 auto;
  }

  .scenario__label {
    display: none;
  }

  .scenario {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .clock-24__track {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
  }

  .clock-24__track::before {
    display: none;
  }

  .clock-24__item {
    flex: 0 0 calc(25% - 12px);
    min-width: 120px;
  }

  .biz-security__grid {
    grid-template-columns: 1fr 1fr;
  }

  .biz-security__card--hero {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .biz-hero__headline {
    max-width: 95vw;
  }

  .biz-hero__sub {
    max-width: 92vw;
  }

  .biz-scenarios .container {
    max-width: 95vw;
  }

  .biz-integrations__inner {
    max-width: 95vw;
  }

  .biz-setup__grid {
    grid-template-columns: 1fr;
  }

  .biz-security__grid {
    grid-template-columns: 1fr;
  }

  .biz-pricing__grid {
    grid-template-columns: 1fr;
  }

  .clock-24__item {
    flex: 0 0 calc(50% - 12px);
  }
}