/* ═══════════════════════════════════════════════════════════════
   FocusChain Labs — Platform tab extra sections
   Layered on top of styles.css. Imported after it.
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════ STAT ROW (problem) ═══════════════════════ */
.stat-row {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.stat-card {
  background: var(--paper);
  padding: 44px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease);
}
.stat-card:hover { background: var(--paper-2); }
.stat-card::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green) 50%, transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.stat-card:hover::after { opacity: 1; }
.stat-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
  margin-bottom: 22px;
}
.stat-num span {
  font-size: 0.5em;
  color: var(--green-deep);
  margin-left: 4px;
  vertical-align: top;
}
.stat-title {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.stat-body {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ═══════════════════════ OPPORTUNITY ═══════════════════════ */
.section-opportunity {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.opp-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}

.opp-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
.opp-card {
  position: relative;
  padding: 40px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.opp-card:hover {
  transform: translateY(-3px);
  border-color: var(--navy-soft);
  box-shadow: 0 30px 60px -30px rgba(20, 60, 92, 0.18);
}
.opp-card-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--paper);
  border-color: var(--navy-deep);
}
.opp-card-hero::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  right: -80px; bottom: -120px;
  background: radial-gradient(circle, rgba(31, 165, 101, 0.32), transparent 60%);
  pointer-events: none;
}
.opp-big {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 5.6vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: inherit;
  margin-bottom: 18px;
  position: relative;
}
.opp-big-sm { font-size: clamp(40px, 4.4vw, 64px); }
.opp-big .pct { font-size: 0.5em; color: var(--green-deep); margin-left: 4px; }
.opp-card-hero .opp-big { color: var(--paper); }
.opp-card-hero .opp-big::after {
  content: '';
  position: absolute; left: 0; bottom: -8px;
  width: 56px; height: 3px; background: var(--green);
}
.opp-lbl {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 10px;
  margin-top: 8px;
}
.opp-card-hero .opp-lbl { color: rgba(247, 243, 236, 0.95); margin-top: 14px; }
.opp-sub {
  font-size: 13px;
  color: var(--ink-4);
  line-height: 1.6;
}
.opp-card-hero .opp-sub { color: rgba(247, 243, 236, 0.6); }

.opp-foot {
  margin-top: 50px;
  max-width: 800px;
  font-size: 15px;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding-top: 30px;
  line-height: 1.7;
}

/* ═══════════════════════ ANSWER / TRACKS ═══════════════════════ */
.section-answer { padding-top: 130px; padding-bottom: 100px; }
.answer-head { max-width: 780px; margin-bottom: 50px; }

.loop-pill {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy-deep);
  margin-bottom: 60px;
  box-shadow: 0 10px 30px -16px rgba(20, 60, 92, 0.2);
}
.loop-pill span {
  letter-spacing: -0.005em;
  position: relative;
}
.loop-pill i {
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}

.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.track-card {
  position: relative;
  padding: 44px 38px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.track-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-soft);
  box-shadow: 0 30px 60px -30px rgba(20, 60, 92, 0.18);
}
.track-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--navy);
}
.track-card-workforce::before { background: var(--green); }

.track-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.track-card-workforce .track-tag { color: var(--green-deep); }
.track-title {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 26px;
}
.track-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.track-list li {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  display: flex; align-items: flex-start; gap: 12px;
  font-weight: 500;
}
.track-list .check {
  display: grid; place-items: center;
  width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 10px;
  margin-top: 2px;
  font-weight: 700;
}

/* ═══════════════════════ HOW IT WORKS ═══════════════════════ */
.section-how {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  border-top: 1px solid var(--line);
}
.how-head { max-width: 780px; margin-bottom: 70px; }

.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 60px;
}
.how-step {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.how-step:hover {
  transform: translateY(-3px);
  border-color: var(--navy-soft);
}
.how-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.how-title {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.how-body {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.6;
}
.how-arrow {
  align-self: center;
  display: grid; place-items: center;
  font-size: 22px;
  color: var(--ink-4);
  padding: 0 12px;
  font-weight: 300;
}

.track-flow {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.track-flow-row {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-2);
}
.track-flow-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  flex-shrink: 0;
}
.track-flow-tag-h { background: var(--navy-soft); color: var(--navy-deep); }
.track-flow-tag-w { background: var(--green-soft); color: var(--green-deep); }
.track-flow-path { font-weight: 500; }

/* ═══════════════════════ PRODUCT MOCKS ═══════════════════════ */
.section-product { padding-top: 110px; padding-bottom: 110px; }
.section-product-alt {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-product .h-display { margin-bottom: 50px; }

.mock-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.mock-row-rev { grid-template-columns: 1fr 1.4fr; }
.mock-row-rev .mock { order: 2; }
.mock-row-rev .mock-notes { order: 1; }

.mock {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(20, 60, 92, 0.22);
  transform: translateY(calc(var(--motion-y, 0px) + var(--mock-lift, 0px)));
  transition: transform 0.4s var(--ease);
}
.mock:hover { --mock-lift: -3px; }
.mock-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.mock-chrome-dots {
  display: flex; gap: 6px;
}
.mock-chrome-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ink-4); opacity: 0.4;
}
.mock-chrome-dots span:nth-child(1) { background: #e36464; opacity: 0.7; }
.mock-chrome-dots span:nth-child(2) { background: #e0b04a; opacity: 0.7; }
.mock-chrome-dots span:nth-child(3) { background: #58b87f; opacity: 0.7; }
.mock-chrome-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.mock-body { padding: 28px; }

.mock-notes {
  list-style: none;
  display: flex; flex-direction: column; gap: 26px;
  padding-top: 12px;
  transform: translateY(var(--motion-y, 0px));
  transition: transform 0.4s var(--ease);
}
.mock-notes li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  align-items: start;
}
.mock-note-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--green-deep);
  padding-top: 2px;
}
.mock-note-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.mock-note-body {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
}

/* AI Interview mock */
.mock-meta {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.mock-role {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.mock-progress {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.progress-bar {
  flex: 1;
  height: 4px;
  background: var(--paper-2);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: 999px;
  animation: progressGrow 1.4s var(--ease) both;
}
@keyframes progressGrow { from { width: 0 !important; } }
.progress-pct { color: var(--green-deep); }

.chat { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.chat-msg { display: flex; gap: 10px; align-items: flex-start; }
.chat-msg-user { justify-content: flex-end; }
.chat-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.chat-bubble {
  padding: 12px 16px;
  background: var(--paper-2);
  border-radius: 14px;
  border-top-left-radius: 4px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 88%;
}
.chat-bubble-user {
  background: var(--navy);
  color: var(--paper);
  border-radius: 14px;
  border-top-right-radius: 4px;
}
.chat-input {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--paper-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-4);
  font-style: italic;
}
.chat-input span { flex: 1; }
.chat-send {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  font-size: 14px;
  display: grid; place-items: center;
}

/* Profile mock */
.profile-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.profile-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--display); font-size: 14px; font-weight: 600;
  letter-spacing: -0.005em;
}
.profile-name-line {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
}
.profile-sub {
  font-size: 12px;
  color: var(--ink-4);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.profile-score {
  text-align: right;
}
.profile-score-num {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1;
  letter-spacing: -0.03em;
}
.profile-score-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 4px;
}

.skill-bars { display: flex; flex-direction: column; gap: 14px; }
.sk-row {
  display: grid;
  grid-template-columns: 1.6fr 2fr 42px;
  gap: 14px;
  align-items: center;
}
.sk-name {
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.sk-track {
  height: 6px;
  background: var(--paper-2);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.sk-fill {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: 999px;
  animation: skFill 1.2s var(--ease) both;
}
@keyframes skFill { from { width: 0; } }
.sk-fill-mid { background: linear-gradient(90deg, #d6a533 0%, #b88a1c 100%); }
.sk-fill-low { background: linear-gradient(90deg, #d96a5a 0%, #b8503f 100%); }
.sk-pct {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--navy-deep);
  text-align: right;
}

.profile-tags {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.ptag {
  display: inline-flex; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
}
.ptag-strong { background: var(--green-soft); color: var(--green-deep); }
.ptag-gap { background: rgba(217, 106, 90, 0.16); color: #a03e2c; }

/* Path mock */
.path-head {
  display: flex; justify-content: space-between; align-items: end; gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.path-title-1 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
}
.path-sub {
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 4px;
}
.path-prog {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--green-deep);
  text-transform: uppercase;
}

.path-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.path-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: all 0.3s var(--ease);
}
.path-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 500;
  font-size: 13px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  color: var(--ink-3);
}
.path-done .path-num { background: var(--green); color: var(--paper); border-color: var(--green-deep); }
.path-current { background: var(--paper); border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,165,101,0.08); }
.path-current .path-num { background: var(--navy); color: var(--paper); border-color: var(--navy-deep); }
.path-name {
  font-family: var(--display);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}
.path-meta {
  font-size: 11.5px;
  color: var(--ink-4);
  margin-top: 4px;
}
.path-bar {
  margin-top: 8px;
  height: 3px;
  background: var(--paper);
  border-radius: 999px;
  overflow: hidden;
}
.path-bar-fill {
  height: 100%;
  width: var(--w);
  background: var(--green);
  border-radius: 999px;
}
.path-type {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  padding: 4px 10px;
  background: var(--green-soft);
  border-radius: 999px;
}

.coach-note {
  margin-top: 20px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border-radius: var(--r);
  color: var(--paper);
}
.coach-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.coach-body {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(247, 243, 236, 0.92);
  font-style: italic;
}

/* Dashboard mock */
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.kpi {
  padding: 18px 16px;
  background: var(--paper-2);
  border-radius: var(--r);
  text-align: center;
}
.kpi-num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.025em;
  line-height: 1;
}
.kpi-num span {
  font-size: 0.5em;
  color: var(--ink-4);
}
.kpi-num-alert { color: #a03e2c; }
.kpi-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 6px;
}

.dash-team {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.dash-team-head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 10px 16px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.dash-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.dash-row:last-child { border-bottom: 0; }
.dash-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
}
.dash-name {
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}
.dash-role {
  font-size: 11px;
  color: var(--ink-4);
}
.dash-score {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: -0.015em;
}
.dash-score-high { background: var(--green-soft); color: var(--green-deep); }
.dash-score-mid  { background: rgba(214, 165, 51, 0.18); color: #8a6612; }
.dash-score-low  { background: rgba(217, 106, 90, 0.16); color: #a03e2c; }

.dash-callout {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(217, 106, 90, 0.08);
  border: 1px solid rgba(217, 106, 90, 0.25);
  border-radius: var(--r);
}
.dash-callout-title {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  color: #a03e2c;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.dash-callout-body {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ═══════════════════════ CTA / PILOT ═══════════════════════ */
.cta-card { margin-top: 0; }
.pilot-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 36px auto 36px;
  max-width: 720px;
  text-align: left;
}
.pilot-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 500;
  line-height: 1.5;
}
.pilot-check {
  display: grid; place-items: center;
  width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 10px;
  margin-top: 2px;
  font-weight: 700;
}
.pilot-foot {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* ═══════════════════════ HERO HEX TUNING ═══════════════════════ */
/* Override the older hero-mark filter to make green hex pop */
.hero-mark svg {
  filter: drop-shadow(0 40px 80px rgba(15, 122, 71, 0.18))
          drop-shadow(0 20px 40px rgba(20, 60, 92, 0.10));
}

/* ═════════════════════════════════════════════════════════════════
   PLATFORM FX — animated containers, decorative ornaments, motion
   ═════════════════════════════════════════════════════════════════ */

/* Stat cards: animated decorative spark glyph + lift */
.stat-card {
  position: relative;
}
.stat-card .stat-num {
  position: relative;
  display: inline-block;
}
.stat-card .stat-num::before {
  content: "";
  position: absolute;
  left: -18px; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%) scale(0);
  transition: transform 0.45s var(--ease) 0.2s;
}
.stat-card.in .stat-num::before { transform: translateY(-50%) scale(1); box-shadow: 0 0 0 6px rgba(31,165,101,0.14); }

.stat-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(31,165,101,0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.stat-card:hover::before { opacity: 1; }

/* Add live decorative sparkline to stat-card */
.stat-card::after {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green) 30%, var(--green-deep) 50%, var(--green) 70%, transparent);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  opacity: 0.35;
}
@keyframes shimmer { from { background-position: 0 0; } to { background-position: 200% 0; } }
.stat-card:hover::after { opacity: 1; }

/* Opportunity card: animated gradient sweep on hover */
.opp-card {
  isolation: isolate;
}
.opp-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(31,165,101,0.10) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}
.opp-card:hover::after { transform: translateX(100%); }

.opp-card-hero {
  position: relative;
}
.opp-card-hero::after {
  content: "";
  position: absolute;
  left: 30px; top: 30px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(31,165,101,0.6);
  animation: ping 2.4s ease-out infinite;
  z-index: 2;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(31,165,101,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(31,165,101,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,165,101,0); }
}

/* Track cards (hire / workforce) — orbiting glow + diagonal lines */
.track-card {
  isolation: isolate;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(31,165,101,0.04), transparent 50%);
}
.track-card::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(31,165,101,0.16), transparent 35%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  animation: spinSlow 14s linear infinite;
  pointer-events: none;
}
.track-card:hover::after { opacity: 1; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.track-list li {
  position: relative;
  padding-left: 2px;
  transition: transform 0.3s var(--ease), color 0.25s;
}
.track-card:hover .track-list li { transform: translateX(2px); }

/* How-step: numbered pip + connector dots animate on hover */
.how-step {
  position: relative;
  isolation: isolate;
}
.how-step::after {
  content: "";
  position: absolute;
  left: 22px; bottom: 22px;
  width: 24px; height: 24px;
  background:
    radial-gradient(circle, var(--green) 1.5px, transparent 2px) 0 0 / 8px 8px;
  opacity: 0.25;
  transition: opacity 0.4s var(--ease);
}
.how-step:hover::after { opacity: 0.8; }
.how-step:hover { box-shadow: 0 24px 50px -28px rgba(20, 60, 92, 0.28); }

.how-arrow {
  position: relative;
}
.how-arrow::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-deep), transparent);
  transform: translateY(-50%);
  opacity: 0.4;
  animation: arrowPulse 2.4s var(--ease) infinite;
}
@keyframes arrowPulse {
  0%, 100% { opacity: 0.25; transform: translateY(-50%) scaleX(0.6); }
  50% { opacity: 0.7; transform: translateY(-50%) scaleX(1); }
}

/* Loop pill — animated dot orbiting */
.loop-pill {
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.loop-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -18px rgba(20, 60, 92, 0.3);
}
.loop-pill i {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.loop-pill:hover i {
  transform: scale(1.4) rotate(90deg);
  color: var(--green-deep);
}

/* Mock cards — chrome dots actually pulse */
.mock {
  position: relative;
}
.mock::before {
  content: "LIVE";
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--green-deep);
  padding: 3px 8px;
  background: var(--green-soft);
  border-radius: 999px;
  font-weight: 600;
  z-index: 4;
  display: flex; align-items: center; gap: 5px;
}
.mock::after {
  content: "";
  position: absolute;
  top: 22px; right: 56px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  z-index: 5;
  animation: ping 2s ease-out infinite;
}

/* Section eyebrow: animated underline */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  position: relative;
  padding-left: 22px;
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1px;
  background: var(--green-deep);
  transform: translateY(-50%);
}
.section-eyebrow::after {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; box-shadow: 0 0 0 4px rgba(31,165,101,0.18); }
}

/* H-display ink-accent gets a subtle highlight bar */
.ink-accent {
  position: relative;
  display: inline-block;
}
.ink-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 8px;
  background: linear-gradient(90deg, rgba(31,165,101,0.22), rgba(31,165,101,0));
  border-radius: 4px;
  z-index: -1;
}

/* Lede paragraphs: subtle quote bar */
.lede em {
  font-style: italic;
  position: relative;
  color: var(--navy-deep);
  font-weight: 500;
}

/* Skill bars — animated end caps */
.sk-fill { position: relative; }
.sk-fill::after {
  content: "";
  position: absolute; right: -2px; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--green-deep);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(31,165,101,0.25);
}

/* Operating dashboard score throbs gently */
.profile-score-num {
  position: relative;
}
.profile-score-num::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1.5px solid rgba(31,165,101,0.25);
  border-radius: 50%;
  animation: throb 2.6s ease-in-out infinite;
}
@keyframes throb {
  0%, 100% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

/* Dash KPI numbers gently count */
.kpi { position: relative; overflow: hidden; }
.kpi::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green) 50%, transparent);
  transform: translateX(-100%);
  animation: kpiSweep 4s var(--ease) infinite;
}
@keyframes kpiSweep { to { transform: translateX(100%); } }

/* Floating gradient orbs on key sections — decorative depth */
.section-opportunity,
.section-product,
.section-product-alt,
.section-answer {
  position: relative;
  isolation: isolate;
}
.section-opportunity::before,
.section-answer::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  inset: auto auto -10% -10%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(31,165,101,0.08), transparent 60%);
  filter: blur(20px);
}
.section-opportunity .container,
.section-answer .container { position: relative; z-index: 1; }

/* Section-cta — animated border gradient */
.cta-card {
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, transparent, rgba(31,165,101,0.45), transparent 30%);
  animation: spinSlow 10s linear infinite;
  z-index: -1;
  border-radius: inherit;
  opacity: 0.5;
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--paper);
  border-radius: inherit;
  z-index: -1;
}

/* Pilot items — staggered slide in */
.pilot-item {
  transition: transform 0.3s var(--ease), color 0.25s;
}
.pilot-item:hover { transform: translateX(4px); color: var(--navy-deep); }
.pilot-item:hover .pilot-check { background: var(--green); color: var(--paper); }
.pilot-check { transition: all 0.25s var(--ease); }

/* PG hero meta cards — fancy hover */
.pg-meta-card {
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  isolation: isolate;
}
.pg-meta-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 20px 40px -20px rgba(31,165,101,0.2);
}
.pg-meta-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top right, rgba(31,165,101,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  border-radius: inherit;
  z-index: -1;
}
.pg-meta-card:hover::before { opacity: 1; }

/* Science items — animated underline reveal */
.science-item {
  position: relative;
  padding-bottom: 6px;
}
.science-item::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
  transition: width 0.5s var(--ease);
}
.science-item:hover::after { width: 80%; }
@media (max-width: 1100px) {
  .stat-row { grid-template-columns: 1fr; }
  .opp-grid { grid-template-columns: 1fr; }
  .opp-head { grid-template-columns: 1fr; gap: 30px; }
  .answer-head { max-width: 100%; }
  .track-grid { grid-template-columns: 1fr; }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .how-arrow { transform: rotate(90deg); padding: 4px 0; }
  .mock-row, .mock-row-rev { grid-template-columns: 1fr; gap: 40px; }
  .mock-row-rev .mock, .mock-row-rev .mock-notes { order: 0; }
  .pilot-list { grid-template-columns: 1fr; }
  .track-flow-row { flex-direction: column; align-items: flex-start; gap: 10px; border-radius: var(--r); }
  .track-flow-path { font-size: 13px; }
}

/* ═══════════════════════ COPY FIELD UPGRADE ═══════════════════════ */
.section-opportunity::before,
.section-answer::before {
  content: none;
}

.copy-field {
  --copy-accent: var(--green-deep);
  --copy-warm: #C79547;
  --copy-rose: #B8503F;
  --copy-bg: rgba(255, 255, 255, 0.42);
  --copy-line: rgba(20, 60, 92, 0.14);
  --copy-label: "Insight";
  position: relative;
  display: block;
  padding: 38px 22px 20px 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.52), rgba(247,243,236,0.28)),
    var(--copy-bg);
  border: 1px solid var(--copy-line);
  border-left: 0;
  border-radius: 16px;
  box-shadow: 0 22px 48px -36px rgba(20, 60, 92, 0.34);
  overflow: hidden;
  color: var(--ink-2);
}
.copy-field::before {
  content: var(--copy-label);
  position: absolute;
  left: 22px;
  top: 15px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--copy-accent);
}
.copy-field::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background:
    linear-gradient(180deg, var(--copy-accent), var(--copy-warm) 54%, transparent),
    repeating-linear-gradient(180deg, transparent 0 18px, rgba(255,255,255,0.42) 18px 22px);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.9s var(--ease) 0.15s;
}
.copy-field.in::after,
.reveal.in.copy-field::after {
  transform: scaleY(1);
}
.copy-field em {
  display: inline;
  color: var(--navy-deep);
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(180deg, transparent 58%, rgba(31,165,101,0.20) 58%);
}
.copy-field:hover {
  border-color: rgba(20, 60, 92, 0.22);
  box-shadow: 0 24px 52px -34px rgba(20, 60, 92, 0.42);
}

.copy-field-hero { --copy-label: "Build brief"; --copy-accent: #42C883; --copy-warm: #F7F3EC; max-width: 670px; }
.hero .copy-field-hero {
  max-width: 650px;
  padding: 26px 20px 14px 20px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    rgba(5, 18, 30, 0.48);
  border-color: rgba(247, 243, 236, 0.14);
  color: rgba(247, 243, 236, 0.78);
  box-shadow: 0 22px 58px -42px rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(18px);
}
.hero .copy-field-hero::before {
  top: 13px;
  left: 20px;
  color: #9FE6C0;
}
.copy-field-market { --copy-label: "Market signal"; --copy-accent: #B8503F; --copy-warm: #C79547; }
.copy-field-engine { --copy-label: "Engine logic"; --copy-accent: var(--green-deep); --copy-warm: var(--navy); }
.copy-field-loop { --copy-label: "Shared loop"; --copy-accent: #C79547; --copy-warm: var(--green-deep); max-width: 560px; }
.copy-field-sim { --copy-label: "Build lab"; --copy-accent: var(--navy); --copy-warm: #C79547; max-width: 720px; }
.pg-hero .copy-field-sim {
  max-width: 760px;
  padding: 35px 24px 21px 24px;
  border-radius: 14px;
}
.pg-hero .copy-field-sim::before {
  top: 15px;
  left: 24px;
}
.copy-field-team { --copy-label: "Build team"; --copy-accent: #C79547; --copy-warm: var(--green); }

.cta-card .copy-field {
  --copy-label: "Pilot arc";
  --copy-accent: var(--green);
  --copy-warm: #E2B75C;
  background: rgba(247, 243, 236, 0.08);
  border-color: rgba(247, 243, 236, 0.16);
  color: rgba(247, 243, 236, 0.86);
  box-shadow: none;
}
.cta-card .copy-field::before { color: var(--green); }
.cta-card .copy-field em { color: var(--paper); }
.cta-card .copy-field-pilot { --copy-label: "Build sprint"; }
.cta-card .copy-field-team { --copy-label: "Build team"; --copy-accent: #C79547; }

.stat-body,
.how-body,
.mock-note-body {
  position: relative;
  padding: 14px 16px 14px 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.52), rgba(247,243,236,0.24)),
    rgba(20, 60, 92, 0.025);
  border: 1px solid rgba(20, 60, 92, 0.08);
  border-radius: 12px;
  color: var(--ink-2);
}
.stat-body::before,
.how-body::before,
.mock-note-body::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), #C79547);
  opacity: 0.9;
}

.stat-card:hover .stat-body,
.how-step:hover .how-body,
.mock-notes li:hover .mock-note-body {
  border-color: rgba(31,165,101,0.24);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.66), rgba(201,233,216,0.18)),
    rgba(31,165,101,0.035);
}

/* Problem stat insight copy: keep it premium and integrated, not boxed-in */
.section-problem .stat-card {
  display: flex;
  flex-direction: column;
}
.section-problem .stat-title {
  margin-bottom: 16px;
}
.section-problem .stat-body {
  position: relative;
  margin-top: auto;
  padding: 48px 22px 22px;
  min-height: 184px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.84), rgba(255,255,255,0.38)),
    linear-gradient(180deg, rgba(31,165,101,0.075), rgba(20,60,92,0.018));
  border: 1px solid rgba(20, 60, 92, 0.105);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.74) inset,
    0 24px 56px -48px rgba(20, 60, 92, 0.46);
  color: rgba(20, 60, 92, 0.84);
  font-size: 14.8px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.section-problem .stat-body::before {
  content: "Diagnostic signal";
  position: absolute;
  left: 22px;
  top: 20px;
  bottom: auto;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--green-deep);
  opacity: 0.84;
}
.section-problem .stat-body::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, var(--green), #E2B75C 58%, transparent);
  transform-origin: left;
  transform: scaleX(0.42);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  opacity: 0.82;
}
.section-problem .stat-card:hover .stat-body {
  transform: translateY(-2px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.54)),
    linear-gradient(180deg, rgba(201,233,216,0.18), rgba(20,60,92,0.018));
  border-color: rgba(31,165,101,0.28);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.82) inset,
    0 30px 64px -48px rgba(20, 60, 92, 0.56);
  color: var(--navy);
}
.section-problem .stat-card:hover .stat-body::after {
  transform: scaleX(1);
  opacity: 1;
}

.how-steps {
  counter-reset: howStep;
}
.how-step {
  counter-increment: howStep;
}
.how-step::before {
  content: counter(howStep, decimal-leading-zero);
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(20, 60, 92, 0.28);
}

.mock-notes {
  gap: 14px;
  padding-top: 0;
}
.mock-notes li {
  position: relative;
  grid-template-columns: 38px 1fr;
  padding: 18px;
  background: rgba(247, 243, 236, 0.72);
  border: 1px solid rgba(20, 60, 92, 0.10);
  border-radius: 16px;
  box-shadow: 0 18px 36px -34px rgba(20, 60, 92, 0.36);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.mock-notes li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 34%, rgba(31,165,101,0.10) 50%, transparent 66%);
  transform: translateX(-110%);
  transition: transform 0.8s var(--ease);
  pointer-events: none;
}
.mock-notes li:hover {
  transform: translateY(-3px);
  border-color: rgba(31,165,101,0.28);
  box-shadow: 0 26px 48px -36px rgba(20, 60, 92, 0.44);
}
.mock-notes li:hover::after {
  transform: translateX(110%);
}
.mock-note-num {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding-top: 0;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid rgba(31,165,101,0.26);
  box-shadow: inset 0 0 0 4px rgba(31,165,101,0.08);
}
.mock-note-title,
.mock-note-body {
  grid-column: 2;
}

.opp-foot {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px 22px 26px;
  border: 1px solid rgba(20, 60, 92, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.42), rgba(239,234,224,0.42)),
    var(--paper);
  box-shadow: 0 22px 46px -38px rgba(20, 60, 92, 0.38);
}
.opp-foot::before {
  content: "Underserved wedge";
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #B8503F;
  max-width: 116px;
}
.opp-foot::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #B8503F, #C79547, var(--green));
}

.track-flow-row {
  position: relative;
  overflow: hidden;
}
.track-flow-row::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(31,165,101,0.65), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.track-flow-row:hover::after {
  transform: scaleX(1);
}

@media (max-width: 720px) {
  .copy-field {
    padding: 36px 18px 18px 18px;
    border-radius: 14px;
    max-width: 100%;
  }
  .copy-field::before {
    left: 18px;
  }
  .hero,
  .hero-inner,
  .hero-diagnostic-panel,
  .hero .copy-field-hero {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-inner,
  .hero-diagnostic-panel,
  .hero .copy-field-hero {
    width: min(100%, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
  }
  .hero .copy-field-hero {
    padding: 31px 17px 16px 17px;
    overflow-wrap: anywhere;
  }
  .hero .copy-field-hero::before {
    left: 17px;
  }
  .mock-notes li {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 16px;
  }
  .opp-foot {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .opp-foot::before {
    max-width: none;
  }
}

@media (max-width: 420px) {
  .nav {
    grid-template-columns: 1fr;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-inner,
  .hero-diagnostic-panel,
  .hero .copy-field-hero {
    width: min(100%, calc(100vw - 36px));
    max-width: calc(100vw - 36px);
  }
  .hero-flow,
  .hero-actions,
  .hero-meta {
    max-width: 100%;
  }
}

/* ═══════════════════════ ALIGNMENT REPAIR + PREMIUM PASS ═══════════════════════ */
.hero-mark svg {
  filter: drop-shadow(0 24px 48px rgba(20, 60, 92, 0.12))
          drop-shadow(0 18px 34px rgba(31, 165, 101, 0.10));
}
.orbit-dot,
.orbit-dot-2 {
  display: none;
}

.how-steps {
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}
.how-step {
  min-height: 274px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 34px 30px 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.56), rgba(247,243,236,0.92)),
    var(--paper);
  border-color: rgba(20, 60, 92, 0.12);
  border-radius: 20px;
  box-shadow: 0 26px 56px -46px rgba(20, 60, 92, 0.40);
}
.how-step::before {
  top: 30px;
  right: 28px;
  color: rgba(20, 60, 92, 0.24);
}
.how-step::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 24px;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, var(--green), rgba(199,149,71,0.72), transparent);
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: left;
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
}
.how-step:hover::after {
  opacity: 0.9;
  transform: scaleX(1);
}
.how-tag {
  margin-bottom: 12px;
  padding-right: 44px;
}
.how-title {
  font-size: 22px;
  margin-bottom: 0;
}
.how-body {
  width: 100%;
  min-height: 96px;
  margin-top: auto;
  display: flex;
  align-items: center;
  padding: 18px 20px 18px 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.76), rgba(239,234,224,0.36)),
    rgba(255,255,255,0.28);
  border-color: rgba(20, 60, 92, 0.10);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.56);
}
.how-arrow {
  width: 44px;
  padding: 0;
  font-size: 0;
}
.how-arrow::before {
  left: 7px;
  right: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20,60,92,0.38), transparent);
  animation: arrowPulse 2.8s var(--ease) infinite;
}
.how-arrow::after {
  content: "→";
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid rgba(20, 60, 92, 0.14);
  color: var(--navy);
  font-size: 13px;
  box-shadow: 0 10px 20px -16px rgba(20,60,92,0.5);
}

.section-cta {
  padding: clamp(84px, 8vw, 124px) 0;
}
.section-cta > .container.cta-card {
  width: min(calc(100% - 56px), 1120px);
  max-width: 1120px;
}
.cta-card {
  display: grid;
  justify-items: center;
  padding: clamp(50px, 5vw, 66px) clamp(28px, 6vw, 78px) clamp(44px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.66), rgba(247,243,236,0.90)),
    var(--paper);
  color: var(--ink);
  border: 1px solid rgba(20, 60, 92, 0.16);
  border-radius: 28px;
  box-shadow:
    0 34px 80px -58px rgba(20, 60, 92, 0.52),
    inset 0 1px 0 rgba(255,255,255,0.72);
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 42% 28% at 50% 0%, rgba(31,165,101,0.16), transparent 68%),
    radial-gradient(ellipse 36% 30% at 92% 86%, rgba(20,60,92,0.09), transparent 70%);
  opacity: 1;
  animation: none;
  pointer-events: none;
}
.cta-card::after {
  content: none;
}
.cta-card > * {
  position: relative;
  z-index: 1;
}
.cta-card .section-eyebrow {
  margin-bottom: 30px;
  color: var(--green-deep);
}
.cta-card .h-display,
.cta-card-pg .h-display {
  max-width: 900px;
  margin: 0 auto 30px;
  color: var(--navy-deep);
}
.cta-card .h-display-cta {
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.03;
}
.cta-card .ink-accent {
  color: var(--green-deep);
}
.cta-card .ink-accent::after {
  content: none;
}
.ink-accent::after {
  content: none;
}
.copy-field em {
  color: var(--green-deep);
  background: none;
  box-shadow: none;
}

.mock-row {
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.mock-notes {
  gap: 16px;
}
.mock-notes li {
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.66), rgba(247,243,236,0.72)),
    var(--paper);
  border-color: rgba(20, 60, 92, 0.12);
  box-shadow: 0 22px 48px -42px rgba(20, 60, 92, 0.40);
}
.mock-notes li:first-child {
  border-color: rgba(31, 165, 101, 0.28);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(201,233,216,0.18)),
    var(--paper);
}
.mock-note-title {
  align-self: center;
  margin-bottom: 0;
}
.mock-notes .mock-note-body {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--ink-3);
  box-shadow: none;
}
.mock-notes .mock-note-body::before {
  content: none;
}
.cta-card .copy-field {
  --copy-line: rgba(20, 60, 92, 0.14);
  width: min(100%, 760px);
  margin: 0 auto 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(247,243,236,0.42)),
    rgba(255,255,255,0.40);
  border-color: var(--copy-line);
  color: var(--ink-2);
  text-align: left;
  box-shadow: 0 22px 48px -38px rgba(20, 60, 92, 0.38);
}
.cta-card .copy-field::before {
  color: var(--copy-accent);
}
.cta-card .copy-field em {
  color: var(--navy-deep);
}
.cta-card-pg .copy-field {
  margin-bottom: 34px;
}
.pilot-list {
  width: min(100%, 900px);
  max-width: 900px;
  gap: 12px;
  margin: 0 auto 34px;
}
.pilot-item {
  min-height: 58px;
  align-items: center;
  padding: 15px 18px;
  background: rgba(255,255,255,0.50);
  border: 1px solid rgba(20, 60, 92, 0.10);
  border-radius: 14px;
  color: var(--ink-2);
  box-shadow: 0 18px 38px -34px rgba(20, 60, 92, 0.40);
}
.pilot-check {
  width: 22px;
  height: 22px;
  margin-top: 0;
  box-shadow: inset 0 0 0 4px rgba(31,165,101,0.10);
}
.cta-actions {
  margin-top: 0;
}
.cta-card .btn-primary {
  background: var(--navy);
  color: var(--paper);
}
.cta-card .btn-ghost {
  background: rgba(255,255,255,0.40);
  border-color: rgba(20, 60, 92, 0.16);
  color: var(--navy);
}
.cta-card .btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy-deep);
}
.pilot-foot {
  max-width: 760px;
  margin-top: 28px;
  color: var(--ink-4);
}
.pilot-foot a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(31,165,101,0.5);
}
.pilot-foot a:hover {
  color: var(--green);
}

@media (max-width: 1100px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .how-step {
    min-height: auto;
  }
  .how-arrow {
    width: 100%;
    min-height: 28px;
    transform: none;
  }
  .how-arrow::before {
    left: calc(50% - 1px);
    right: auto;
    top: -4px;
    bottom: -4px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(20,60,92,0.28), transparent);
    transform: none;
  }
  .how-arrow::after {
    transform: rotate(90deg);
  }
}

@media (max-width: 720px) {
  .section-cta > .container.cta-card {
    width: calc(100% - 32px);
  }
  .cta-card {
    padding: 48px 20px;
    border-radius: 20px;
  }
  .cta-card::after {
    display: none;
  }
  .cta-card .h-display-cta {
    font-size: 38px;
  }
  .pilot-list {
    grid-template-columns: 1fr;
  }
  .pilot-item {
    min-height: auto;
  }
}

/* ═══════════════════════ DARK ALTERNATING PLATFORM SECTIONS ═══════════════════════ */
.tab-panel[data-panel="platform"] .section-how,
.tab-panel[data-panel="platform"] .section-cta {
  --dark-paper: #F7F3EC;
  --dark-muted: rgba(247, 243, 236, 0.68);
  --dark-soft: rgba(247, 243, 236, 0.10);
  --dark-line: rgba(247, 243, 236, 0.15);
  --dark-green: #42C883;
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--nav-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #061521 0%, #092034 46%, #0B3340 76%, #082A2A 100%);
  color: var(--dark-paper);
  border-top: 1px solid rgba(247, 243, 236, 0.12);
  border-bottom: 1px solid rgba(247, 243, 236, 0.10);
}
.tab-panel[data-panel="platform"] .section-how {
  padding: clamp(30px, 4vh, 44px) 0;
}
.tab-panel[data-panel="platform"] .section-cta {
  padding: clamp(28px, 4vh, 44px) 0;
}
.tab-panel[data-panel="platform"] .section-how::before,
.tab-panel[data-panel="platform"] .section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247,243,236,0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(247,243,236,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  opacity: 0.54;
}
.tab-panel[data-panel="platform"] .section-how::after,
.tab-panel[data-panel="platform"] .section-cta::after {
  content: "";
  position: absolute;
  inset: -10% -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 30% 28% at 16% 12%, rgba(66, 200, 131, 0.18), transparent 68%),
    radial-gradient(ellipse 34% 34% at 92% 86%, rgba(66, 200, 131, 0.11), transparent 70%),
    linear-gradient(112deg, transparent 0 40%, rgba(31, 165, 101, 0.10) 50%, transparent 62% 100%);
  animation: darkSectionSweep 12s var(--ease) infinite;
  opacity: 0.85;
}
@keyframes darkSectionSweep {
  0%, 48% { transform: translateX(-4%); opacity: 0.52; }
  64% { opacity: 0.92; }
  100% { transform: translateX(4%); opacity: 0.56; }
}
.tab-panel[data-panel="platform"] .section-how > .container,
.tab-panel[data-panel="platform"] .section-cta > .container {
  position: relative;
  z-index: 1;
}

.tab-panel[data-panel="platform"] .section-how .section-eyebrow,
.tab-panel[data-panel="platform"] .section-cta .section-eyebrow {
  color: #9FE6C0;
}
.tab-panel[data-panel="platform"] .section-how .section-eyebrow::before,
.tab-panel[data-panel="platform"] .section-cta .section-eyebrow::before {
  background: var(--dark-green);
  box-shadow: 0 0 18px rgba(66, 200, 131, 0.45);
}
.tab-panel[data-panel="platform"] .section-how .h-display,
.tab-panel[data-panel="platform"] .section-cta .h-display {
  color: var(--dark-paper);
  text-shadow: 0 18px 52px rgba(0,0,0,0.24);
}
.tab-panel[data-panel="platform"] .section-how .ink-accent,
.tab-panel[data-panel="platform"] .section-cta .ink-accent {
  color: var(--dark-green);
}
.tab-panel[data-panel="platform"] .section-how .how-head {
  max-width: 820px;
  margin-bottom: clamp(18px, 3vh, 28px);
}
.tab-panel[data-panel="platform"] .section-how .h-display {
  font-size: clamp(38px, 4.35vw, 60px);
  line-height: 0.96;
  margin-bottom: clamp(12px, 1.8vh, 18px);
}
.tab-panel[data-panel="platform"] .section-how .copy-field-loop {
  max-width: 620px;
  padding: 25px 20px 15px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.42;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    rgba(5, 18, 30, 0.52);
  color: rgba(247, 243, 236, 0.80);
  border-color: var(--dark-line);
  box-shadow: 0 26px 70px -48px rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
}
.tab-panel[data-panel="platform"] .section-how .copy-field-loop::before {
  color: #9FE6C0;
}
.tab-panel[data-panel="platform"] .how-steps {
  position: relative;
  gap: clamp(8px, 0.9vw, 14px);
  margin-bottom: clamp(12px, 2vh, 18px);
}
.tab-panel[data-panel="platform"] .how-steps::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66,200,131,0.55), rgba(247,243,236,0.16), transparent);
  transform: translateY(-50%);
  opacity: 0.8;
  animation: darkRailPulse 4.8s var(--ease) infinite;
}
@keyframes darkRailPulse {
  0%, 100% { opacity: 0.28; transform: translateY(-50%) scaleX(0.84); }
  50% { opacity: 0.92; transform: translateY(-50%) scaleX(1); }
}
.tab-panel[data-panel="platform"] .how-step {
  min-height: 228px;
  gap: 12px;
  padding: clamp(18px, 1.8vw, 22px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04)),
    rgba(5, 18, 30, 0.62);
  border-color: var(--dark-line);
  box-shadow: 0 28px 70px -52px rgba(0,0,0,0.86);
  backdrop-filter: blur(18px);
}
.tab-panel[data-panel="platform"] .how-step::before {
  top: 22px;
  right: 22px;
  color: rgba(247, 243, 236, 0.28);
}
.tab-panel[data-panel="platform"] .how-step:hover {
  border-color: rgba(66, 200, 131, 0.42);
  box-shadow: 0 30px 76px -48px rgba(0,0,0,0.90);
}
.tab-panel[data-panel="platform"] .how-step::after {
  left: 22px;
  right: 22px;
  bottom: 18px;
  background:
    radial-gradient(circle, rgba(66,200,131,0.92) 1.5px, transparent 2px) 0 0 / 8px 8px;
}
.tab-panel[data-panel="platform"] .how-tag,
.tab-panel[data-panel="platform"] .track-flow-tag {
  color: #9FE6C0;
}
.tab-panel[data-panel="platform"] .how-tag {
  margin-bottom: 6px;
  padding-right: 36px;
}
.tab-panel[data-panel="platform"] .how-title {
  font-size: clamp(18px, 1.45vw, 21px);
  color: var(--dark-paper);
}
.tab-panel[data-panel="platform"] .how-body {
  min-height: 72px;
  padding: 12px 15px 12px 17px;
  border-radius: 12px;
  font-size: clamp(12.5px, 1vw, 13.5px);
  line-height: 1.48;
  color: var(--dark-muted);
}
.tab-panel[data-panel="platform"] .how-body::before {
  top: 10px;
  bottom: 10px;
}
.tab-panel[data-panel="platform"] .how-arrow {
  color: rgba(247, 243, 236, 0.52);
}
.tab-panel[data-panel="platform"] .how-arrow::before {
  background: linear-gradient(90deg, transparent, rgba(66,200,131,0.8), transparent);
}
.tab-panel[data-panel="platform"] .track-flow {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.tab-panel[data-panel="platform"] .track-flow-row {
  padding: 11px 16px;
  font-size: 13px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035)),
    rgba(5, 18, 30, 0.50);
  border-color: var(--dark-line);
  color: rgba(247, 243, 236, 0.82);
  backdrop-filter: blur(16px);
}
.tab-panel[data-panel="platform"] .section-how .track-flow-row.reveal {
  opacity: 1;
  transform: none;
}
.tab-panel[data-panel="platform"] .track-flow-tag-h,
.tab-panel[data-panel="platform"] .track-flow-tag-w {
  background: rgba(66, 200, 131, 0.13);
  color: #9FE6C0;
}

.tab-panel[data-panel="platform"] .section-cta > .container.cta-card {
  width: min(calc(100% - 56px), 1160px);
  max-width: 1160px;
}
.tab-panel[data-panel="platform"] .cta-card {
  padding: clamp(30px, 3.5vw, 44px) clamp(28px, 5vw, 64px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045)),
    rgba(5, 18, 30, 0.68);
  color: var(--dark-paper);
  border-color: var(--dark-line);
  border-radius: 24px;
  box-shadow: 0 38px 90px -54px rgba(0,0,0,0.88);
  backdrop-filter: blur(22px);
}
.tab-panel[data-panel="platform"] .cta-card::before {
  background:
    radial-gradient(ellipse 42% 28% at 50% 0%, rgba(66,200,131,0.18), transparent 68%),
    radial-gradient(ellipse 36% 30% at 92% 86%, rgba(247,243,236,0.08), transparent 70%);
}
.tab-panel[data-panel="platform"] .cta-card .section-eyebrow {
  margin-bottom: clamp(12px, 2vh, 18px);
}
.tab-panel[data-panel="platform"] .cta-card .h-display-cta {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.98;
  margin-bottom: clamp(14px, 2vh, 20px);
}
.tab-panel[data-panel="platform"] .cta-card .copy-field {
  width: min(100%, 780px);
  margin-bottom: clamp(14px, 2vh, 20px);
  padding: 25px 20px 15px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.42;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    rgba(5, 18, 30, 0.48);
  border-color: var(--dark-line);
  color: rgba(247, 243, 236, 0.80);
  box-shadow: 0 24px 64px -48px rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
}
.tab-panel[data-panel="platform"] .pilot-list {
  gap: 8px;
  margin-bottom: clamp(14px, 2vh, 20px);
}
.tab-panel[data-panel="platform"] .pilot-item {
  min-height: 46px;
  padding: 11px 15px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.095), rgba(255,255,255,0.035)),
    rgba(5, 18, 30, 0.42);
  border-color: var(--dark-line);
  color: rgba(247, 243, 236, 0.86);
  box-shadow: 0 20px 54px -44px rgba(0,0,0,0.75);
}
.tab-panel[data-panel="platform"] .pilot-check {
  background: rgba(66, 200, 131, 0.18);
  color: #9FE6C0;
}
.tab-panel[data-panel="platform"] .cta-card .btn-primary {
  background: var(--dark-paper);
  color: var(--navy-deep);
}
.tab-panel[data-panel="platform"] .cta-card .btn-ghost {
  background: rgba(255,255,255,0.06);
  border-color: var(--dark-line);
  color: var(--dark-paper);
}
.tab-panel[data-panel="platform"] .cta-card .btn-ghost:hover {
  border-color: rgba(66, 200, 131, 0.46);
  color: #9FE6C0;
}
.tab-panel[data-panel="platform"] .pilot-foot {
  margin-top: 18px;
  color: rgba(247, 243, 236, 0.58);
}
.tab-panel[data-panel="platform"] .pilot-foot a {
  color: var(--dark-paper);
}

@media (prefers-reduced-motion: reduce) {
  .tab-panel[data-panel="platform"] .section-how::after,
  .tab-panel[data-panel="platform"] .section-cta::after,
  .tab-panel[data-panel="platform"] .how-steps::before {
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  .tab-panel[data-panel="platform"] .section-how,
  .tab-panel[data-panel="platform"] .section-cta {
    min-height: auto;
  }
  .tab-panel[data-panel="platform"] .track-flow {
    grid-template-columns: 1fr;
  }
  .tab-panel[data-panel="platform"] .how-steps::before {
    left: 22px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    transform: none;
    background: linear-gradient(180deg, transparent, rgba(66,200,131,0.55), transparent);
  }
}

@media (max-width: 720px) {
  .tab-panel[data-panel="platform"] .section-how,
  .tab-panel[data-panel="platform"] .section-cta {
    padding: 56px 0;
  }
  .tab-panel[data-panel="platform"] .section-how .h-display,
  .tab-panel[data-panel="platform"] .cta-card .h-display-cta {
    font-size: clamp(34px, 10vw, 42px);
  }
  .tab-panel[data-panel="platform"] .section-cta > .container.cta-card {
    width: calc(100% - 32px);
  }
  .tab-panel[data-panel="platform"] .cta-card {
    padding: 44px 20px;
  }
}

/* ═══════════════════════ HERO CLARITY + VISIBLE MOTION PASS ═══════════════════════ */
.hero .display {
  position: relative;
  margin-bottom: 0;
  animation: heroTitleRise 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero .display-accent {
  position: relative;
  display: block;
  width: fit-content;
  animation: heroAccentGlow 4.8s ease-in-out 1s infinite;
}
.hero .display-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 4%;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(66,200,131,0), rgba(66,200,131,0.92), rgba(247,243,236,0.72), rgba(66,200,131,0));
  transform-origin: left;
  animation: heroAccentUnderline 3.8s var(--ease) 1.1s infinite;
  opacity: 0.9;
}
@keyframes heroTitleRise {
  from { opacity: 0; transform: translateY(22px); filter: blur(8px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes heroAccentGlow {
  0%, 100% { text-shadow: 0 18px 46px rgba(31, 165, 101, 0.16); }
  50% { text-shadow: 0 18px 46px rgba(31, 165, 101, 0.38), 0 0 26px rgba(66, 200, 131, 0.18); }
}
@keyframes heroAccentUnderline {
  0%, 12% { transform: scaleX(0); opacity: 0; }
  30%, 74% { transform: scaleX(1); opacity: 0.92; }
  100% { transform: translateX(16%) scaleX(0.12); opacity: 0; }
}

.hero .copy-field-hero {
  margin-top: clamp(18px, 2.8vh, 28px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055)),
    rgba(5, 18, 30, 0.72);
  color: rgba(247, 243, 236, 0.90);
  border-color: rgba(247, 243, 236, 0.20);
  box-shadow:
    0 30px 72px -48px rgba(0, 0, 0, 0.82),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: heroBriefBreathe 5.2s ease-in-out 1.2s infinite;
}
.hero .copy-field-hero::after {
  transform: scaleY(1);
  animation: heroBriefRail 3.8s var(--ease) infinite;
}
@keyframes heroBriefBreathe {
  0%, 100% { border-color: rgba(247, 243, 236, 0.18); }
  50% { border-color: rgba(66, 200, 131, 0.44); box-shadow: 0 34px 78px -48px rgba(0,0,0,0.86), 0 0 34px rgba(66,200,131,0.08) inset; }
}
@keyframes heroBriefRail {
  0%, 100% { opacity: 0.55; filter: saturate(1); }
  50% { opacity: 1; filter: saturate(1.35); }
}

.hero-diagnostic-panel {
  margin-top: clamp(18px, 2.8vh, 28px);
  transform: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055)),
    rgba(5, 18, 30, 0.76);
  border-color: rgba(247, 243, 236, 0.20);
  box-shadow:
    0 30px 78px -48px rgba(0, 0, 0, 0.88),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: diagnosticPanelPulse 4.8s ease-in-out 1.6s infinite;
}
.hero-inner {
  transform: none;
}
.diagnostic-row {
  animation: diagnosticRowFocus 6s ease-in-out infinite;
}
.diagnostic-row:nth-child(3) { animation-delay: 1.4s; }
.diagnostic-row:nth-child(4) { animation-delay: 2.8s; }
.diagnostic-copy p {
  color: rgba(247, 243, 236, 0.93);
  font-weight: 500;
}
.diagnostic-pill {
  color: rgba(247, 243, 236, 0.72);
  background: rgba(255, 255, 255, 0.09);
}
.diagnostic-pill.is-active {
  animation: diagnosticPillActive 2.8s ease-in-out infinite;
}
@keyframes diagnosticPanelPulse {
  0%, 100% { border-color: rgba(247, 243, 236, 0.18); }
  50% { border-color: rgba(66, 200, 131, 0.38); }
}
@keyframes diagnosticRowFocus {
  0%, 58%, 100% { background: transparent; }
  68%, 78% { background: rgba(66, 200, 131, 0.045); }
}
@keyframes diagnosticPillActive {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(66, 200, 131, 0.08), 0 0 0 0 rgba(66,200,131,0); }
  50% { box-shadow: inset 0 0 0 1px rgba(66, 200, 131, 0.18), 0 0 0 5px rgba(66,200,131,0.08); }
}

.hero-mark.hero-mark-pipeline {
  transform: translate3d(0, 0, 0) !important;
}
.hero-pipeline,
.hero-pipe-step,
.hero-pipe-mod,
.hero-evidence-line {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  backface-visibility: hidden;
}
.hero-pipeline {
  gap: 6px;
}
.hero-pipe-step {
  border-color: rgba(20,60,92,0.16);
  box-shadow:
    0 18px 38px -22px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  animation:
    heroPipeIn 0.55s var(--ease) forwards,
    heroPipeCardSignal 5.8s ease-in-out infinite;
}
.hero-pipe-step::after {
  background: linear-gradient(105deg, transparent 0 30%, rgba(31, 165, 101, 0.18) 48%, rgba(247,243,236,0.38) 54%, transparent 68% 100%);
  animation-duration: 4.8s;
}
.hero-pipe-step-1 { animation-delay: 0.18s, 0s; }
.hero-pipe-step-2 { animation-delay: 0.52s, 1.35s; }
.hero-pipe-step-3 { animation-delay: 0.86s, 2.7s; }
@keyframes heroPipeCardSignal {
  0%, 100% { border-color: rgba(20,60,92,0.14); }
  48%, 58% {
    border-color: rgba(31,165,101,0.42);
    box-shadow:
      0 22px 46px -24px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(31,165,101,0.10),
      0 0 26px rgba(31,165,101,0.12);
  }
}
.hero-pipe-mod {
  background: #FFFFFF;
  border-color: rgba(20, 60, 92, 0.12);
}
.hero-pipe-step-3 .hero-pipe-mod:nth-child(1) { --d: 0.95s !important; }
.hero-pipe-step-3 .hero-pipe-mod:nth-child(2) { --d: 1.15s !important; }
.hero-pipe-step-3 .hero-pipe-mod:nth-child(3) { --d: 1.35s !important; }
.hero-pipe-mod::after {
  background: linear-gradient(90deg, rgba(31,165,101,0.18), rgba(31,165,101,0.04), transparent);
}
.hero-pipe-gain {
  animation: heroPipeGainIn 0.55s var(--ease) 1.7s forwards;
}

.tab-panel[data-panel="platform"] .how-body {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92)),
    #FFFFFF;
  color: var(--ink-2);
  border-color: rgba(255,255,255,0.92);
  box-shadow:
    0 18px 34px -26px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.95);
}
.tab-panel[data-panel="platform"] .how-step {
  animation: darkStepSignal 6.2s ease-in-out infinite;
}
.tab-panel[data-panel="platform"] .how-step:nth-child(3) { animation-delay: 1.3s; }
.tab-panel[data-panel="platform"] .how-step:nth-child(5) { animation-delay: 2.6s; }
.tab-panel[data-panel="platform"] .how-step:nth-child(7) { animation-delay: 3.9s; }
@keyframes darkStepSignal {
  0%, 100% { border-color: var(--dark-line); }
  45%, 56% {
    border-color: rgba(66, 200, 131, 0.56);
    box-shadow:
      0 30px 76px -50px rgba(0,0,0,0.92),
      0 0 34px rgba(66,200,131,0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .display,
  .hero .display-accent,
  .hero .display-accent::after,
  .hero .copy-field-hero,
  .hero .copy-field-hero::after,
  .hero-diagnostic-panel,
  .diagnostic-row,
  .diagnostic-pill.is-active,
  .hero-pipe-step,
  .tab-panel[data-panel="platform"] .how-step {
    animation: none !important;
  }
  .hero .display { opacity: 1; transform: none; filter: none; }
}

/* ═══════════════════════ HERO IMPACT + OBVIOUS ANIMATION BOOST ═══════════════════════ */
@media (min-width: 1101px) {
  .hero .display {
    font-size: clamp(60px, 5.4vw, 84px);
    line-height: 0.88;
    letter-spacing: -0.025em;
  }
}
@media (min-width: 1101px) and (max-height: 860px) {
  .hero .display {
    font-size: clamp(56px, 5.0vw, 74px);
    line-height: 0.88;
  }
  .hero .copy-field-hero {
    margin-top: clamp(12px, 1.8vh, 18px);
  }
  .hero-diagnostic-panel {
    margin-top: clamp(12px, 1.8vh, 18px);
  }
}

.hero .display {
  animation:
    heroTitleRise 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero .display::after {
  content: "";
  position: absolute;
  left: -2%;
  right: 12%;
  top: 6%;
  bottom: 6%;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 0 36%, rgba(255,255,255,0.34) 48%, transparent 60% 100%);
  mix-blend-mode: screen;
  transform: translateX(-120%) skewX(-10deg);
  animation: heroHeadlineSweep 4.6s var(--ease) 1.4s infinite;
}
@keyframes heroHeadlineSweep {
  0%, 38% { transform: translateX(-120%) skewX(-10deg); opacity: 0; }
  48% { opacity: 0.75; }
  72%, 100% { transform: translateX(120%) skewX(-10deg); opacity: 0; }
}

@keyframes heroTitleRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.hero-grid {
  animation: heroGridDrift 10s linear infinite;
}
@keyframes heroGridDrift {
  to { background-position: 48px 0, 0 48px; }
}

.eyebrow {
  animation: heroEyebrowPulse 3.4s ease-in-out infinite;
}
@keyframes heroEyebrowPulse {
  0%, 100% { border-color: rgba(247, 243, 236, 0.15); box-shadow: none; }
  50% { border-color: rgba(66, 200, 131, 0.38); box-shadow: 0 0 28px rgba(66, 200, 131, 0.10); }
}

.hero .copy-field-hero,
.hero-diagnostic-panel {
  animation:
    heroGlassLift 4.2s ease-in-out infinite,
    heroBriefBreathe 5.2s ease-in-out 1.2s infinite;
}
.hero-diagnostic-panel {
  animation:
    heroGlassLift 4.2s ease-in-out 0.45s infinite,
    diagnosticPanelPulse 4.8s ease-in-out 1.6s infinite;
}
@keyframes heroGlassLift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}

.hero-pipeline-orbit {
  animation: heroPipelineFloat 4.8s ease-in-out infinite;
}
@keyframes heroPipelineFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}
.hero-pipe-link::before {
  background: linear-gradient(180deg, rgba(20,60,92,0.06), rgba(31,165,101,0.70) 50%, rgba(20,60,92,0.06));
}
.hero-pipe-pulse {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 18px rgba(31,165,101,0.90);
}
.hero-pipe-link-1 .hero-pipe-pulse,
.hero-pipe-link-2 .hero-pipe-pulse {
  animation-duration: 1.1s;
}
.hero-pipe-bar-track i {
  animation:
    heroPipeBar 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 1.4s) forwards,
    heroBarPulse 3.2s ease-in-out calc(var(--d, 1.4s) + 1.1s) infinite;
}
@keyframes heroBarPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.35); }
}
.hero-pipe-gap {
  opacity: 1;
  animation: heroPipeGapPulse 1.25s ease-in-out infinite;
}
.hero-pipe-gain-val {
  animation: heroGainPulse 1.6s ease-in-out infinite;
}
@keyframes heroGainPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero .display,
  .hero .display::after,
  .eyebrow,
  .hero .copy-field-hero,
  .hero-diagnostic-panel,
  .hero-pipeline-orbit,
  .hero-pipe-bar-track i,
  .hero-pipe-gap,
  .hero-pipe-gain-val {
    animation: none !important;
    translate: none !important;
  }
}

/* ═══════════════════════ SERVICE HERO VIEWPORT FIT ═══════════════════════ */
@media (min-width: 1101px) and (max-height: 820px) {
  .hero {
    padding:
      10px
      max(34px, calc((100vw - 1320px) / 2 + 34px))
      12px;
    grid-template-columns: minmax(0, 1.32fr) minmax(390px, 0.88fr);
    gap: clamp(28px, 3.5vw, 52px);
    align-items: center;
  }

  .hero .display {
    max-width: 720px;
    font-size: clamp(48px, 4.6vw, 60px);
    line-height: 0.9;
  }

  .hero .display-accent::after {
    bottom: -5px;
    height: 2px;
  }

  .hero .copy-field-hero {
    max-width: 610px;
    margin-top: 14px;
    padding: 26px 18px 13px;
    font-size: 14.25px;
    line-height: 1.38;
  }

  .hero .copy-field-hero::before {
    top: 11px;
  }

  .hero-diagnostic-panel {
    max-width: 610px;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .diagnostic-head {
    margin-bottom: 4px;
  }

  .diagnostic-kicker {
    font-size: 8.5px;
    margin-bottom: 3px;
  }

  .diagnostic-head strong {
    font-size: 13.5px;
  }

  .diagnostic-status {
    padding: 5px 8px;
    font-size: 8px;
  }

  .diagnostic-row {
    padding: 7px 0;
    gap: 8px;
  }

  .diagnostic-copy {
    gap: 8px;
  }

  .diagnostic-copy p {
    font-size: 11.2px;
    line-height: 1.25;
  }

  .diagnostic-pill {
    padding: 6px 8px;
    font-size: 10px;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .hero-actions .btn {
    padding: 11px 18px;
  }

  .hero-meta {
    max-width: 510px;
    margin-top: 10px;
    padding-top: 10px;
    gap: 18px;
  }

  .hero-meta-item .num {
    font-size: 20px;
  }

  .hero-meta-item .lbl {
    font-size: 9px;
    line-height: 1.3;
  }

  .hero-mark-hub {
    min-height: min(540px, calc(100svh - var(--nav-height) - 28px));
  }

  .service-hub {
    width: min(500px, 100%);
  }

  .hub-device {
    width: 68%;
  }

  .hub-device-screen {
    padding: 12px;
  }

  .hub-terminal,
  .hub-metrics {
    min-height: 145px;
  }

  .hub-terminal {
    padding: 12px;
    gap: 8px;
    font-size: 9.5px;
  }

  .hub-metrics {
    padding: 12px;
    gap: 12px;
  }

  .hub-device-modules span {
    padding: 7px 6px;
    font-size: 10px;
  }

  .hub-node {
    min-width: 108px;
    padding: 9px 10px;
    border-radius: 12px;
  }

  .hub-node-kicker {
    font-size: 8px;
  }

  .hub-node strong {
    font-size: 12.5px;
  }
}

@media (min-width: 1101px) and (max-height: 740px) {
  .hero .display {
    max-width: 680px;
    font-size: clamp(44px, 4.2vw, 54px);
  }

  .hero .copy-field-hero {
    margin-top: 11px;
    padding: 24px 16px 12px;
    font-size: 13.5px;
    line-height: 1.34;
  }

  .hero-diagnostic-panel {
    margin-top: 10px;
    padding: 9px 11px;
  }

  .diagnostic-row {
    padding: 6px 0;
  }

  .hero-meta {
    margin-top: 8px;
    padding-top: 9px;
  }

  .hero-mark-hub {
    min-height: min(500px, calc(100svh - var(--nav-height) - 24px));
  }

  .service-hub {
    width: min(470px, 100%);
  }
}

/* ═══════════════════════ SERVICE SECTION DENSITY ═══════════════════════ */
.tab-panel[data-panel="platform"] .section-answer {
  padding-top: clamp(64px, 8vh, 86px);
  padding-bottom: clamp(70px, 9vh, 96px);
}

.tab-panel[data-panel="platform"] .answer-head {
  max-width: 860px;
  margin-bottom: 26px;
}

.tab-panel[data-panel="platform"] .section-answer .h-display-lg {
  font-size: clamp(46px, 5.1vw, 64px);
  line-height: 0.96;
}

.tab-panel[data-panel="platform"] .section-answer .copy-field-engine {
  max-width: 650px;
  margin-top: 24px;
  padding: 32px 20px 18px;
}

.tab-panel[data-panel="platform"] .section-answer .loop-pill {
  margin: 0 0 30px;
  padding: 11px 20px;
  font-size: 13px;
}

.tab-panel[data-panel="platform"] .section-answer .service-grid {
  margin-top: 0;
}

.tab-panel[data-panel="platform"] .section-answer .service-card {
  min-height: 196px;
  padding: 26px 22px;
}

.tab-panel[data-panel="platform"] .section-answer .service-card .track-tag {
  margin-bottom: 10px;
  font-size: 9.5px;
}

.tab-panel[data-panel="platform"] .section-answer .service-card .track-title {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.08;
}

.tab-panel[data-panel="platform"] .section-answer .service-body {
  font-size: 13.25px;
  line-height: 1.48;
}

@media (min-width: 1101px) and (max-height: 820px) {
  .tab-panel[data-panel="platform"] .section-answer {
    padding-top: 52px;
    padding-bottom: 66px;
  }

  .tab-panel[data-panel="platform"] .answer-head {
    margin-bottom: 18px;
  }

  .tab-panel[data-panel="platform"] .section-answer .h-display-lg {
    max-width: 880px;
    font-size: clamp(42px, 4.45vw, 56px);
    line-height: 0.95;
  }

  .tab-panel[data-panel="platform"] .section-answer .copy-field-engine {
    max-width: 620px;
    margin-top: 16px;
    padding: 28px 18px 15px;
    font-size: 14.25px;
    line-height: 1.38;
  }

  .tab-panel[data-panel="platform"] .section-answer .copy-field-engine::before {
    top: 12px;
  }

  .tab-panel[data-panel="platform"] .section-answer .loop-pill {
    margin-bottom: 22px;
    padding: 9px 16px;
    gap: 10px;
    font-size: 12px;
  }

  .tab-panel[data-panel="platform"] .section-answer .service-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
  }

  .tab-panel[data-panel="platform"] .section-answer .service-card {
    min-height: 170px;
    padding: 18px 14px;
    border-radius: 14px;
  }

  .tab-panel[data-panel="platform"] .section-answer .service-card .track-tag {
    margin-bottom: 9px;
    font-size: 8px;
    letter-spacing: 0.13em;
  }

  .tab-panel[data-panel="platform"] .section-answer .service-card .track-title {
    margin-bottom: 10px;
    font-size: 16.5px;
    line-height: 1.08;
  }

  .tab-panel[data-panel="platform"] .section-answer .service-body {
    font-size: 11.75px;
    line-height: 1.36;
  }
}

/* ═══════════════════════ MINIMAL COMPONENT POLISH ═══════════════════════ */
.hero .copy-field-hero {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.065)),
    rgba(5, 18, 30, 0.58);
  border-color: rgba(247, 243, 236, 0.28);
  box-shadow:
    0 28px 72px -52px rgba(0, 0, 0, 0.92),
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 3px 0 0 rgba(66, 200, 131, 0.82);
}

.hero .copy-field-hero::before {
  color: #9FE6C0;
}

.hero .copy-field-hero::after {
  opacity: 0.5;
}

.hero-diagnostic-panel {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.055)),
    rgba(6, 22, 35, 0.72);
  border-color: rgba(247, 243, 236, 0.26);
  box-shadow:
    0 30px 78px -50px rgba(0, 0, 0, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-diagnostic-panel::before {
  opacity: 0.42;
}

.diagnostic-row {
  border-top-color: rgba(247, 243, 236, 0.13);
}

.diagnostic-row:hover {
  background: rgba(255, 255, 255, 0.035);
}

.diagnostic-copy p {
  color: rgba(255, 255, 255, 0.93);
}

.diagnostic-pill {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(247, 243, 236, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.diagnostic-pill.is-active {
  background: rgba(247, 243, 236, 0.96);
  border-color: rgba(66, 200, 131, 0.52);
  color: var(--navy-deep);
  box-shadow:
    0 12px 28px -20px rgba(247, 243, 236, 0.74),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.diagnostic-status {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(66, 200, 131, 0.42);
  color: #B9F2D1;
}

.service-card,
.usecase-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,255,255,0.90)),
    #FFFFFF;
  border-color: rgba(20, 60, 92, 0.12);
  box-shadow:
    0 22px 56px -42px rgba(20, 60, 92, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.service-card:hover,
.usecase-card:hover {
  border-color: rgba(31, 165, 101, 0.34);
  box-shadow:
    0 28px 68px -44px rgba(20, 60, 92, 0.42),
    0 0 0 1px rgba(31, 165, 101, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

@media (max-width: 720px) {
  .hero {
    min-height: calc(100vh - 112px);
    padding: 22px 18px 24px;
    align-items: center;
  }
  @supports (height: 100svh) {
    .hero { min-height: calc(100svh - 112px); }
  }

  .hero .display {
    font-size: clamp(36px, 10.4vw, 42px);
    line-height: 0.95;
  }

  .hero .display-accent::after {
    bottom: -4px;
    height: 2px;
  }

  .hero .copy-field-hero {
    margin-top: 14px;
    padding: 25px 16px 12px;
    font-size: 13.5px;
    line-height: 1.35;
  }

  .hero .copy-field-hero::before {
    top: 11px;
    left: 16px;
  }

  .hero-diagnostic-panel {
    margin-top: 12px;
    padding: 10px;
    border-radius: 14px;
  }

  .diagnostic-head {
    align-items: center;
    margin-bottom: 4px;
  }

  .diagnostic-kicker {
    font-size: 8px;
  }

  .diagnostic-head strong {
    font-size: 13px;
  }

  .diagnostic-status {
    padding: 5px 7px;
    font-size: 7.5px;
  }

  .diagnostic-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 7px 0;
  }

  .diagnostic-copy p {
    font-size: 11px;
    line-height: 1.25;
  }

  .diagnostic-options {
    flex-wrap: nowrap;
  }

  .diagnostic-pill {
    padding: 6px 8px;
    font-size: 9.5px;
  }

  .diagnostic-pill:not(.is-active) {
    display: none;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .hero-actions .btn {
    padding: 11px 15px;
  }

  .hero-meta {
    display: none;
  }

  .tab-panel[data-panel="platform"] .section-answer {
    padding-top: 56px;
  }

  .tab-panel[data-panel="platform"] .section-answer .h-display-lg {
    font-size: clamp(34px, 10vw, 42px);
  }
}

/* ═══════════════════════ SERVICE HUB MOTION CLEANUP ═══════════════════════ */
.hero-grid {
  animation: none;
}

.hero .copy-field-hero,
.hero-diagnostic-panel {
  animation: none;
}

.service-hub::before {
  animation: none;
  opacity: 0.42;
  transform: none;
}

.hub-device-screen::after {
  opacity: 0.42;
  animation-duration: 9.5s;
}

.hub-path {
  opacity: 0.58;
}

.hub-path::after,
.hub-node.is-active::after {
  animation: none;
  opacity: 0;
}

.hub-node {
  z-index: 5;
  min-width: 146px;
  animation: hubNodeSettle 0.72s cubic-bezier(.16, 1, .3, 1) both;
  will-change: auto;
}

.hub-node strong {
  white-space: nowrap;
}

.hub-device {
  width: 66%;
  max-width: 405px;
}

.hub-node-cloud { animation-delay: 0.08s; }
.hub-node-app { top: 7%; right: -1%; z-index: 6; animation-delay: 0.16s; }
.hub-node-automation { right: -6%; bottom: 20%; z-index: 6; animation-delay: 0.24s; }
.hub-node-analytics { left: -8%; bottom: 20%; z-index: 6; animation-delay: 0.32s; }
.hub-node-funnel { animation-delay: 0.40s; }

.hub-terminal-line {
  animation-duration: 300ms;
}

.hub-metric i {
  animation-duration: 760ms;
}

@keyframes hubNodeSettle {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1101px) and (max-height: 820px) {
  .hub-device {
    width: 64%;
  }

  .hub-node {
    min-width: 130px;
  }

  .hub-node-automation { right: -4%; bottom: 19%; }
  .hub-node-analytics { left: -6%; bottom: 20%; }
}

@media (max-width: 720px) {
  .loop-pill {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 12px 16px;
    border-radius: 14px;
  }
}

/* ═══════════════════════ REACH OUT / CONTACT FORM ═══════════════════════ */

.reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}

/* ── form side ── */
.reach-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(247,243,236,0.10);
  border-radius: 18px;
  padding: 28px 26px 24px;
}

.reach-form-head {
  font-family: var(--sans-tight);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #42C883;
  margin-bottom: 20px;
}

.reach-form { display: flex; flex-direction: column; gap: 16px; }

.rf-row { display: flex; flex-direction: column; gap: 6px; }

.rf-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(247,243,236,0.60);
  letter-spacing: 0.02em;
}

.rf-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(247,243,236,0.14);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: #F7F3EC;
  outline: none;
  transition: border-color 180ms, background 180ms;
  width: 100%;
  box-sizing: border-box;
}

.rf-input::placeholder { color: rgba(247,243,236,0.30); }

.rf-input:focus {
  border-color: rgba(66,200,131,0.60);
  background: rgba(255,255,255,0.09);
}

.rf-textarea {
  resize: vertical;
  min-height: 108px;
  line-height: 1.5;
}

.rf-submit { width: 100%; justify-content: center; margin-top: 4px; }

.rf-note {
  font-size: 12px;
  min-height: 18px;
  margin-top: 2px;
  text-align: center;
}
.rf-note-error { color: #f87171; }
.rf-note-ok    { color: #42C883; }

/* ── channels side ── */
.reach-channels {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reach-channel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(247,243,236,0.08);
}
.reach-channel:last-of-type { border-bottom: none; padding-bottom: 0; }

.reach-channel-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.44);
}

.reach-channel-val {
  font-family: var(--sans-tight);
  font-size: 17px;
  font-weight: 600;
  color: #F7F3EC;
  text-decoration: none;
  transition: color 160ms;
}
.reach-channel-val:hover { color: #42C883; }

.reach-wa-btn {
  align-self: flex-start;
  margin-top: 4px;
  padding: 9px 16px;
  font-size: 13px;
}

.reach-email-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

/* ── responsive ── */
@media (max-width: 860px) {
  .reach-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 720px) {
  .reach-form-wrap { padding: 22px 18px 20px; }
  .reach-grid { margin-top: 28px; }
  .reach-channel-val { font-size: 15px; }
  .reach-email-btns { flex-direction: column; }
}
