:root {
  --navy: #0b3a6f;
  --navy-dark: #071f3e;
  --blue: #175ea8;
  --green: #7bb61c;
  --green-dark: #5f9212;
  --ink: #0f172a;
  --muted: #5f6f83;
  --line: #dce4ee;
  --light: #f6f9fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 58, 111, 0.14);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 228, 238, 0.85);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand img {
  width: 180px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  color: #324258;
  font-size: 0.91rem;
  font-weight: 600;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 0.86rem;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 12px 30px rgba(11, 58, 111, 0.22);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: #c8d5e4;
}

.button-white {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(4, 22, 46, 0.2);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 0;
  background:
    radial-gradient(circle at 6% 8%, rgba(123, 182, 28, 0.1), transparent 30%),
    radial-gradient(circle at 95% 12%, rgba(23, 94, 168, 0.12), transparent 32%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 78%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  pointer-events: none;
}

.hero-glow-one {
  width: 260px;
  height: 260px;
  top: 80px;
  left: -120px;
  background: rgba(123, 182, 28, 0.13);
}

.hero-glow-two {
  width: 360px;
  height: 360px;
  right: -160px;
  bottom: 10px;
  background: rgba(23, 94, 168, 0.1);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-light { color: #c9ef84; }

.hero h1,
.section-heading h2,
.split-grid h2,
.product-card h2,
.final-cta h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(3rem, 5.1vw, 5.2rem);
}

.hero-lead {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  color: #42546b;
  font-size: 0.92rem;
  font-weight: 600;
}

.proof-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(123, 182, 28, 0.12);
}

.strategy-stage {
  position: relative;
  padding: 25px 0;
}

.browser-frame {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d6e1ec;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: #f2f6fa;
  border-bottom: 1px solid #dce5ef;
}

.browser-bar > span {
  width: 9px;
  height: 9px;
  background: #c5d1df;
  border-radius: 50%;
}

.browser-address {
  width: 54%;
  margin-left: 10px;
  padding: 5px 12px;
  color: #8593a5;
  background: var(--white);
  border-radius: 7px;
  font-size: 0.58rem;
}

.strategy-shell {
  min-height: 445px;
  display: grid;
  grid-template-columns: 64px 1fr;
  background: #f7f9fc;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding: 17px 10px;
  background: var(--navy-dark);
}

.mock-logo {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  color: var(--white);
  background: var(--green);
  border-radius: 9px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.mock-nav-item {
  width: 25px;
  height: 8px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 20px;
}

.mock-nav-item.active { background: var(--green); }

.mock-main { padding: 26px; }

.mock-topbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.mock-title {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.mock-subtitle {
  color: #8a97a8;
  font-size: 0.6rem;
}

.status-badge {
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0 11px;
  color: var(--green-dark);
  background: #edf7df;
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 800;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card,
.mock-panel {
  background: var(--white);
  border: 1px solid #e4eaf1;
  border-radius: 13px;
}

.stat-card { padding: 15px; }

.stat-label {
  color: #7d8b9d;
  font-size: 0.57rem;
}

.stat-value {
  font-size: 1.38rem;
  font-weight: 800;
}

.stat-trend {
  color: var(--green-dark);
  font-size: 0.52rem;
  font-weight: 700;
}

.mock-content-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 12px;
  margin-top: 14px;
}

.mock-panel { padding: 15px; }

.panel-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  font-size: 0.62rem;
}

.panel-heading span {
  color: var(--blue);
  font-size: 0.5rem;
}

.priority-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  border-top: 1px solid #edf1f5;
}

.priority-number {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #eaf2fb;
  border-radius: 8px;
  font-size: 0.48rem;
  font-weight: 800;
}

.priority-row strong,
.priority-row small {
  display: block;
}

.priority-row strong { font-size: 0.59rem; }

.priority-row small {
  color: #8a97a8;
  font-size: 0.48rem;
}

.priority-status {
  padding: 4px 7px;
  border-radius: 999px;
  font-size: 0.44rem;
  font-weight: 800;
}

.priority-status.high {
  color: #9a3412;
  background: #ffedd5;
}

.priority-status.medium {
  color: var(--green-dark);
  background: #eef8df;
}

.priority-status.planned {
  color: var(--blue);
  background: #eaf2fb;
}

.score-panel { text-align: center; }

.score-ring {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 18px auto 8px;
  color: var(--navy);
  background: conic-gradient(var(--green) 82%, #e8edf3 0);
  border: 10px solid #fff;
  outline: 1px solid #e4eaf1;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 800;
}

.score-label {
  font-size: 0.58rem;
  font-weight: 700;
}

.score-bars {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.score-bars::before,
.score-bars::after,
.score-bars span {
  height: 5px;
  content: "";
  background: #dce8f3;
  border-radius: 10px;
}

.score-bars span { background: var(--green); }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dce5ef;
  border-radius: 13px;
  box-shadow: 0 18px 36px rgba(11, 58, 111, 0.15);
}

.floating-card-one {
  left: -42px;
  bottom: 45px;
}

.floating-card-two {
  right: -20px;
  top: 67px;
}

.floating-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 9px;
  font-weight: 800;
}

.floating-card-two .floating-icon { background: var(--navy); }

.floating-card strong,
.floating-card small { display: block; }

.floating-card strong { font-size: 0.68rem; }

.floating-card small {
  color: #8794a5;
  font-size: 0.53rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 82px;
  padding: 28px 0 30px;
  color: #65758a;
  border-top: 1px solid #e5ebf2;
}

.trust-strip > span {
  flex: 0 0 auto;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #34465d;
  font-size: 0.86rem;
}

.section { padding: 110px 0; }

.section-light,
.industries-section,
.faq-section { background: var(--light); }

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow { justify-content: center; }

.section-heading h2,
.split-grid h2,
.product-card h2,
.final-cta h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.section-heading p,
.split-grid p,
.product-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(11, 58, 111, 0.11);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.feature-card:nth-child(2n) .feature-icon {
  color: var(--navy-dark);
  background: linear-gradient(135deg, #b5dc6d, var(--green));
}

.feature-card h3,
.engagement-card h3,
.workflow-step h3,
.industry-card h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
}

.feature-card p,
.engagement-card p,
.workflow-step p,
.industry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.engagement-card {
  position: relative;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.engagement-card.featured {
  color: var(--white);
  background: linear-gradient(150deg, var(--navy-dark), var(--navy));
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.engagement-card.featured p,
.engagement-card.featured li { color: #d8e3ef; }

.recommended-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 10px;
  color: var(--navy-dark);
  background: var(--green);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
}

.engagement-number {
  display: block;
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.featured .engagement-number { color: #c9ef84; }

.engagement-label {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.featured .engagement-label { color: #b9d7f5; }

.engagement-card h3 { font-size: 1.35rem; }

.engagement-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.engagement-card li {
  position: relative;
  padding-left: 22px;
  color: #516176;
  font-size: 0.9rem;
}

.engagement-card li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.why-section {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(123, 182, 28, 0.15), transparent 33%),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

.split-grid p { color: #cbd7e5; }

.large-copy { font-size: 1.2rem !important; }

.principles-card {
  padding: 36px;
  color: var(--ink);
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.principle-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #e7edf3;
}

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

.principle-row > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #edf4fb;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 800;
}

.principle-row strong,
.principle-row small { display: block; }

.principle-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.85rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.industry-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.industry-card > span {
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.industry-card h3 {
  margin-top: 20px;
  font-size: 1.1rem;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.workflow-step {
  position: relative;
  padding: 30px 28px 30px 0;
}

.workflow-step:not(:last-child)::after {
  position: absolute;
  top: 45px;
  right: 18px;
  width: 44px;
  height: 1px;
  content: "";
  background: #cbd7e4;
}

.workflow-step > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--navy);
  background: #edf4fb;
  border: 1px solid #cfe0f1;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

.product-section { background: var(--light); }

.product-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
  padding: 62px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #124f8f);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.product-card p { color: #d9e4f0; }

.flow-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
}

.flow-logo-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 20px;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.flow-preview strong,
.flow-preview span { display: block; }

.flow-preview strong {
  font-family: "Manrope", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
}

.flow-preview span {
  margin-top: 7px;
  color: #d8e5f1;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.accordion details {
  padding: 24px 0;
  border-bottom: 1px solid #d4dee9;
}

.accordion summary {
  position: relative;
  padding-right: 40px;
  cursor: pointer;
  list-style: none;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary::after {
  position: absolute;
  right: 0;
  content: "+";
  color: var(--navy);
  font-size: 1.5rem;
}

.accordion details[open] summary::after { content: "–"; }

.accordion p {
  margin: 14px 0 0;
  color: var(--muted);
}

.final-cta { padding: 95px 0; }

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.site-footer {
  padding: 65px 0 25px;
  color: #d9e4ef;
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 50px;
}

.footer-logo {
  width: 190px;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
  
}

.site-footer p {
  max-width: 360px;
  color: #94a9be;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 30px;
}

.footer-contact { text-align: right; }

.footer-contact span,
.footer-contact a,
.footer-contact small { display: block; }

.footer-contact span {
  color: #8298ae;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-contact a {
  margin-top: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.footer-contact small {
  margin-top: 6px;
  color: #8298ae;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  color: #7890a8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { max-width: 800px; text-align: center; margin-inline: auto; }
  .hero-copy .eyebrow, .hero-actions, .hero-proof { justify-content: center; }
  .strategy-stage { max-width: 780px; margin-inline: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-card.featured { transform: none; }
  .split-grid, .product-card, .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .workflow-step:nth-child(2)::after { display: none; }
  .final-cta-inner { display: block; }
  .final-actions { margin-top: 30px; }
}

@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .trust-list { flex-wrap: wrap; justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header .button-small { display: none; }
  .header-inner { min-height: 68px; }
  .brand img { width: 155px; max-height: 50px; }
  .hero { padding-top: 70px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-actions, .final-actions { display: grid; }
  .button { width: 100%; }
  .browser-frame { transform: none; }
  .strategy-shell { min-height: 330px; grid-template-columns: 45px 1fr; }
  .mock-main { padding: 14px; }
  .mock-content-grid { grid-template-columns: 1fr; }
  .score-panel, .floating-card { display: none; }
  .trust-strip { display: block; margin-top: 55px; }
  .trust-list { margin-top: 15px; }
  .section { padding: 78px 0; }
  .feature-grid, .industry-grid, .workflow { grid-template-columns: 1fr; }
  .workflow-step::after { display: none !important; }
  .principles-card, .product-card { padding: 30px; border-radius: 24px; }
  .flow-preview { min-height: 170px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { display: block; }
}


/* =========================
   HERO ROADMAP ANIMATION
========================= */

.strategy-stage .stat-card,
.strategy-stage .priority-row,
.strategy-stage .score-panel,
.strategy-stage .floating-card {
  opacity: 0;
}

.strategy-stage.hero-animated .stat-card {
  animation: heroCardIn 0.65s ease forwards;
}

.strategy-stage.hero-animated .stat-card:nth-child(1) { animation-delay: 0.10s; }
.strategy-stage.hero-animated .stat-card:nth-child(2) { animation-delay: 0.22s; }
.strategy-stage.hero-animated .stat-card:nth-child(3) { animation-delay: 0.34s; }

.strategy-stage.hero-animated .priority-row {
  animation: roadmapRowIn 0.55s ease forwards;
}

.strategy-stage.hero-animated .priority-row:nth-of-type(2) { animation-delay: 0.48s; }
.strategy-stage.hero-animated .priority-row:nth-of-type(3) { animation-delay: 0.66s; }
.strategy-stage.hero-animated .priority-row:nth-of-type(4) { animation-delay: 0.84s; }

.strategy-stage.hero-animated .score-panel {
  animation: scorePanelIn 0.7s ease 0.62s forwards;
}

.strategy-stage.hero-animated .animated-score {
  animation: scoreRingPulse 1.8s ease-in-out 1.15s infinite alternate;
}

.strategy-stage.hero-animated .score-bars::before {
  animation: scoreBarOne 1s ease 1.05s both;
}

.strategy-stage.hero-animated .score-bars span {
  animation: scoreBarTwo 1s ease 1.18s both;
}

.strategy-stage.hero-animated .score-bars::after {
  animation: scoreBarThree 1s ease 1.31s both;
}

.strategy-stage.hero-animated .status-pulse {
  animation: statusPulse 2.1s ease-in-out 0.6s infinite;
}

.strategy-stage.hero-animated .float-animate-one {
  animation:
    floatingCardIn 0.65s ease 1.1s forwards,
    gentleFloat 3.4s ease-in-out 1.75s infinite;
}

.strategy-stage.hero-animated .float-animate-two {
  animation:
    floatingCardIn 0.65s ease 1.25s forwards,
    gentleFloatAlt 3.8s ease-in-out 1.9s infinite;
}

.mock-nav-item.active {
  position: relative;
  overflow: hidden;
}

.strategy-stage.hero-animated .mock-nav-item.active::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255,255,255,0.55);
  transform: translateX(-120%);
  animation: navShimmer 2.8s ease-in-out 0.8s infinite;
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes roadmapRowIn {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scorePanelIn {
  from {
    opacity: 0;
    transform: translateX(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes floatingCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes gentleFloatAlt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes statusPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(123, 182, 28, 0);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(123, 182, 28, 0.12);
  }
}

@keyframes scoreRingPulse {
  from { transform: scale(1); }
  to { transform: scale(1.045); }
}

@keyframes scoreBarOne {
  from { width: 0; }
  to { width: 90%; }
}

@keyframes scoreBarTwo {
  from { width: 0; }
  to { width: 76%; }
}

@keyframes scoreBarThree {
  from { width: 0; }
  to { width: 84%; }
}

@keyframes navShimmer {
  0% { transform: translateX(-120%); }
  45%, 100% { transform: translateX(140%); }
}

@media (prefers-reduced-motion: reduce) {
  .strategy-stage .stat-card,
  .strategy-stage .priority-row,
  .strategy-stage .score-panel,
  .strategy-stage .floating-card {
    opacity: 1;
    animation: none !important;
  }

  .strategy-stage .mock-nav-item.active::after {
    display: none;
  }
}
