/* ════════════════════════════════════════════════════════════
   HEADLINE SECTION
   ════════════════════════════════════════════════════════════ */
.headline { background: var(--bg); padding: var(--section-py) 0; overflow: hidden; }

/* Scrolling marquee rows */
.scrolling-row { overflow: hidden; white-space: nowrap; margin-bottom: 16px; }
.scrolling-row--mask {
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.scrolling-row__inner { display: inline-flex; width: max-content; }
.scrolling-row__inner--left  { animation: scrollLeft  60s linear infinite; }
.scrolling-row__inner--right { animation: scrollRight 75s linear infinite; }
.scrolling-row__text {
  display: inline-block;
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: hsl(0 0% 0% / 0.1);
}
@keyframes scrollLeft  { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* Headline content */
.headline__content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
}
.headline__content.reveal-active {
  animation: headlineReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes headlineReveal { to { opacity: 1; transform: translateY(0); } }

.headline__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
}
.headline__title-word { display: inline-block; transition: color 0.3s; }
.headline__title-word:hover { color: var(--navy); }
.headline__title-gradient {
  background: linear-gradient(135deg, var(--navy), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.headline__circle-icon { display: inline-flex; align-items: center; vertical-align: middle; margin: 0 4px; }
.headline__circle-icon svg { width: clamp(24px, 2.5vw, 40px); height: clamp(24px, 2.5vw, 40px); }
.circle-ring { color: hsl(0 0% 0% / 0.4); }
.circle-dot  { color: hsl(0 0% 0% / 0.3); }
.circle-pulse { animation: circlePing 2.4s ease-in-out infinite; }
@keyframes circlePing {
  0%   { transform: scale(1); opacity: 0.5; }
  50%  { transform: scale(1.35); opacity: 0.9; }
  100% { transform: scale(1); opacity: 0.5; }
}

.headline__sub {
  margin-top: clamp(2rem, 4vw, 4rem);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--muted-fg);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


/* ════════════════════════════════════════════════════════════
   FEATURES GRID
   ════════════════════════════════════════════════════════════ */
.features { background: var(--bg); padding: var(--section-py) 0; }
.features__header { text-align: center; margin-bottom: 56px; }
.features__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}
.features__sub { color: var(--muted-fg); font-size: 1.125rem; max-width: 36rem; margin: 0 auto; }

.features__grid { display: grid; gap: 24px; }
@media (min-width: 768px)  { .features__grid { grid-template-columns: 1fr 1fr; } }

.feature-card {
  position: relative;
  background: var(--card);
  border: 1.5px solid hsl(220 60% 25% / 0.18);
  border-radius: 2rem;
  padding: 32px 40px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.58s cubic-bezier(0.22,1,0.36,1), transform 0.58s cubic-bezier(0.22,1,0.36,1);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
}
.feature-card.card-visible { opacity: 1; transform: translateY(0); }

/* Border glow on hover */
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 2rem;
  opacity: 0;
  background: linear-gradient(135deg, hsl(200 85% 60% / 0.04), hsl(220 60% 25% / 0.06));
  transition: opacity 0.35s;
  pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { box-shadow: inset 0 0 0 1.5px hsl(220 60% 25% / 0.6); }

/* Bottom line */
.feature-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
  border-radius: 0 0 2rem 2rem;
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
}
.feature-card:hover::after { width: 100%; }

.feature-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.feature-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.feature-card:hover .feature-card__icon {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 28px hsl(220 60% 25% / 0.3);
}
.feature-card__icon::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, hsl(200 85% 60% / 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover .feature-card__icon::after { opacity: 1; }

.feature-card__stat { text-align: right; opacity: 0; }
.card-visible .feature-card__stat { animation: statPop 0.55s cubic-bezier(0.22,1,0.36,1) 0.3s forwards; }
@keyframes statPop {
  0%  { transform: scale(0.65); opacity: 0; }
  65% { transform: scale(1.12); }
  100%{ transform: scale(1); opacity: 1; }
}
.feature-card__stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--navy);
  line-height: 1;
}
.feature-card__stat-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-fg);
  margin-top: 4px;
}

.feature-card__divider {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), hsl(200 85% 60% / 0.5));
  width: 0;
  margin-bottom: 20px;
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1) 0.1s;
}
.card-visible .feature-card__divider { width: 40px; }

.feature-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-card__desc { color: var(--muted-fg); font-size: 1rem; line-height: 1.65; margin-bottom: 24px; flex: 1; }

.feature-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--sky);
  transition: box-shadow 0.25s, opacity 0.2s;
  width: fit-content;
}
.feature-card:hover .feature-card__btn { box-shadow: 0 6px 20px hsl(220 60% 25% / 0.25); }
.feature-card__btn:hover { opacity: 0.85; }
.feature-card__btn-arrow { display: inline-block; transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1); }
.feature-card:hover .feature-card__btn-arrow { transform: translateX(6px); }


/* ════════════════════════════════════════════════════════════
   STATS SECTION
   ════════════════════════════════════════════════════════════ */
.stats { position: relative; overflow: hidden; background: var(--navy); padding: var(--section-py) 0; }

.stats-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(hsl(200 85% 60% / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, hsl(200 85% 60% / 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift { 0% { background-position: 0 0; } 100% { background-position: 56px 56px; } }

.stats-glow-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, hsl(200 85% 60% / 0.1), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

.stats__heading-wrap {
  text-align: center;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
}
.stats__heading-wrap.heading-visible {
  animation: headingReveal 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes headingReveal { to { opacity: 1; transform: translateY(0); } }

.stats__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: hsl(43 20% 90%);
  margin-bottom: 16px;
}
.stats__sub { color: hsl(43 20% 90% / 0.6); font-size: 1.125rem; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  position: relative;
  text-align: center;
  padding: 8px 16px;
  opacity: 0;
  transform: translateY(28px);
  cursor: pointer;
}
.stat-item.stat-visible { animation: statReveal 0.65s cubic-bezier(0.22,1,0.36,1) forwards; }
@keyframes statReveal { to { opacity: 1; transform: translateY(0); } }

.stat-divider {
  display: none;
  position: absolute;
  right: 0; top: 16px; bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg, transparent, hsl(200 85% 60% / 0.2), transparent);
}
@media (min-width: 1024px) { .stat-divider { display: block; } }

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: hsl(200 85% 70%);
  text-shadow: 0 0 30px hsl(200 85% 60% / 0.4), 0 0 60px hsl(200 85% 60% / 0.15);
  margin-bottom: 12px;
}

.stat-bar-track {
  height: 2px;
  border-radius: 999px;
  background: hsl(200 85% 60% / 0.1);
  overflow: hidden;
  width: 80%;
  margin: 0 auto 12px;
}
.stat-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, hsl(200 85% 60% / 0.5), hsl(200 85% 60%));
  width: 0%;
}

.stat-label { color: hsl(43 20% 90% / 0.7); font-size: 0.875rem; font-weight: 500; }


/* ════════════════════════════════════════════════════════════
   ROLLING BENEFITS
   ════════════════════════════════════════════════════════════ */
.benefits { background: var(--bg); padding: var(--section-py) 0; overflow: hidden; }

.benefits__heading {
  text-align: center;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
}
.benefits__heading.rb-heading-visible {
  animation: rbHeadingIn 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes rbHeadingIn { to { opacity: 1; transform: translateY(0); } }

.benefits__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}
.benefits__title-accent { color: var(--navy); }
.benefits__sub { color: var(--muted-fg); font-size: 1.125rem; max-width: 36rem; margin: 0 auto; }

.benefits__grid {
  display: grid;
  gap: 40px 64px;
  align-items: center;
}
@media (min-width: 1024px) { .benefits__grid { grid-template-columns: 1fr 1fr; } }

/* Left panel */
.benefits__panel {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 40px;
  min-height: 420px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s 0.1s cubic-bezier(0.22,1,0.36,1), transform 0.6s 0.1s cubic-bezier(0.22,1,0.36,1);
}
.benefits__panel.rb-in { opacity: 1; transform: translateX(0); }

.benefits__panel-deco-1 {
  position: absolute; top: -64px; right: -64px;
  width: 224px; height: 224px; border-radius: 50%;
  background: hsl(200 85% 60% / 0.08);
  pointer-events: none;
}
.benefits__panel-deco-2 {
  position: absolute; bottom: -40px; left: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: hsl(200 85% 60% / 0.06);
  pointer-events: none;
}

.benefits__counter {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(200 85% 60% / 0.6);
  margin-bottom: 24px;
  position: relative;
}

.benefits__word-wrap { min-height: 120px; display: flex; align-items: flex-start; }
.benefits__word {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: white;
  animation: rbWordIn 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
}
.benefits__word-desc {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.65;
  color: hsl(200 85% 60% / 0.7);
  animation: rbWordIn 0.45s cubic-bezier(0.22,1,0.36,1) 0.08s forwards;
  opacity: 0;
}
@keyframes rbWordIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.benefits__progress-track {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: hsl(200 85% 60% / 0.15);
  margin-top: 40px;
}
.benefits__progress-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--sky);
  width: 0%;
  animation: rbProgress 2.2s linear forwards;
}
@keyframes rbProgress { to { width: 100%; } }

.benefits__dots { display: flex; gap: 8px; margin-top: 16px; }
.benefits__dot {
  height: 8px;
  border-radius: 999px;
  transition: width 0.3s, background 0.3s;
}

/* Right list */
.benefits__list {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s 0.2s cubic-bezier(0.22,1,0.36,1), transform 0.6s 0.2s cubic-bezier(0.22,1,0.36,1);
}
.benefits__list.rb-in { opacity: 1; transform: translateX(0); }

.benefit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, padding-left 0.2s;
}
.benefit-row:hover  { background: hsl(220 60% 25% / 0.04); padding-left: 22px; }
.benefit-row.active { background: hsl(220 60% 25% / 0.06); padding-left: 22px; }

.benefit-row__check {
  width: 36px; height: 36px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.benefit-row.active  .benefit-row__check { background: var(--navy); }
.benefit-row:not(.active) .benefit-row__check { background: hsl(220 60% 25% / 0.08); }

.benefit-row__name {
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.benefit-row.active  .benefit-row__name { color: var(--navy); }
.benefit-row:not(.active) .benefit-row__name { color: var(--fg); }
.benefit-row__sub { font-size: 12px; color: var(--muted-fg); margin-top: 2px; line-height: 1.4; }

.benefit-row__arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--navy);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.benefit-row.active .benefit-row__arrow { opacity: 1; transform: translateX(0); }


/* ════════════════════════════════════════════════════════════
   GOALS SECTION
   ════════════════════════════════════════════════════════════ */
.goals { padding: var(--section-py) 0; overflow: hidden; background: hsl(43 15% 85% / 0.3); }

.goals__heading {
  text-align: center;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(18px);
}
.goals__heading.gs-heading-in { animation: gsHeadIn 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
@keyframes gsHeadIn { to { opacity: 1; transform: translateY(0); } }

.goals__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}
.goals__sub { color: var(--muted-fg); font-size: 1.125rem; max-width: 32rem; margin: 0 auto; }

/* Mobile tabs */
.goals__mobile-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) { .goals__mobile-tabs { display: none; } }

.goals__mobile-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.22s, background 0.22s, color 0.22s;
  color: hsl(0 0% 0% / 0.7);
  background: var(--bg);
}
.goals__mobile-tab:hover { border-color: hsl(220 60% 25% / 0.25); background: hsl(220 60% 25% / 0.04); }
.goals__mobile-tab.active { border-color: var(--navy); background: var(--navy); color: white; }
.goals__mobile-tab-num { font-size: 10px; font-weight: 900; letter-spacing: 0.1em; }
.goals__mobile-tab.active .goals__mobile-tab-num { color: var(--sky); }
.goals__mobile-tab:not(.active) .goals__mobile-tab-num { color: hsl(220 60% 25% / 0.5); }

/* Panel */
.goals__panel {
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--bg);
  border: 1.5px solid hsl(220 60% 25% / 0.18);
  box-shadow: 0 24px 60px hsl(220 60% 25% / 0.06);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s 0.1s cubic-bezier(0.22,1,0.36,1), transform 0.7s 0.1s cubic-bezier(0.22,1,0.36,1);
}
.goals__panel.gs-panel-in { opacity: 1; transform: translateY(0); }

.goals__panel-inner {
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
@media (min-width: 1024px) { .goals__panel-inner { flex-direction: row; } }

/* Sidebar */
.goals__sidebar {
  display: none;
  flex-direction: column;
  width: 256px;
  flex-shrink: 0;
  padding: 32px 0;
  position: relative;
  border-right: 1.5px solid hsl(220 60% 25% / 0.1);
}
@media (min-width: 1024px) { .goals__sidebar { display: flex; } }

.goals__connector-track {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
  background: hsl(220 60% 25% / 0.12);
  overflow: hidden;
}
.goals__connector-fill {
  width: 100%;
  background: linear-gradient(180deg, hsl(220 60% 25% / 0.5), hsl(200 85% 60% / 0.4));
  height: 0%;
  transition: height 1.4s cubic-bezier(0.22,1,0.36,1) 0.3s;
}

.goals__step-spacer { height: 20px; }
.goals__step-btn {
  position: relative;
  margin: 0 16px;
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  transition: background 0.22s;
}
.goals__step-btn:hover:not(.active) { background: hsl(220 60% 25% / 0.06); }
.goals__step-btn.active { background: var(--navy); }
.goals__step-btn.active::before {
  content: '';
  position: absolute;
  left: -1px; top: 0; bottom: 0;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: var(--sky);
}
.goals__step-num {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.goals__step-btn.active  .goals__step-num { color: var(--sky); }
.goals__step-btn:not(.active) .goals__step-num { color: hsl(220 60% 25% / 0.4); }
.goals__step-label { display: block; font-size: 14px; font-weight: 700; }
.goals__step-btn.active  .goals__step-label { color: white; }
.goals__step-btn:not(.active) .goals__step-label { color: hsl(0 0% 0% / 0.55); }

/* Content area */
.goals__content {
  flex: 1;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.goals__content-inner {
  max-width: 32rem;
  animation: gsContentIn 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes gsContentIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.goals__content-top { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.goals__icon-box {
  width: 48px; height: 48px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--navy);
  box-shadow: 0 6px 20px hsl(220 60% 25% / 0.3);
}
.goals__big-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  user-select: none;
  color: hsl(220 60% 25% / 0.07);
}

.goals__step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.2;
}
.goals__step-desc { color: var(--muted-fg); font-size: clamp(1rem, 1.2vw, 1.125rem); line-height: 1.65; margin-bottom: 28px; }

.goals__bullets { list-style: none; margin-bottom: 40px; display: flex; flex-direction: column; gap: 12px; }
.goals__bullet { display: flex; align-items: flex-start; gap: 12px; }
.goals__bullet-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: hsl(220 60% 25% / 0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.goals__bullet-text { font-size: clamp(0.875rem, 1vw, 1rem); color: hsl(0 0% 0% / 0.8); line-height: 1.4; }

.goals__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: var(--navy);
  color: var(--sky);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.goals__cta-btn:hover { transform: scale(1.04); box-shadow: 0 8px 24px hsl(220 60% 25% / 0.3); }

/* Mobile dot nav */
.goals__mobile-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
@media (min-width: 1024px) { .goals__mobile-dots { display: none; } }
.goals__mobile-dot {
  height: 8px;
  border-radius: 999px;
  transition: width 0.3s, background 0.3s;
}


/* ════════════════════════════════════════════════════════════
   PARTNERS / CLIENTS
   ════════════════════════════════════════════════════════════ */
.partners { position: relative; overflow: hidden; background: var(--navy); padding: var(--section-py) 0; }

.partners-dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, hsl(200 85% 70% / 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.partners-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, hsl(200 85% 60% / 0.12), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  animation: orbPulse 8s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.08); }
}

.partners__inner {
  position: relative;
  z-index: 10;
  opacity: 0;
}
.partners__inner.scroll-reveal { animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }

.partners__header { text-align: center; margin-bottom: 64px; }
.partners__tag { color: hsl(200 85% 70%); font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; }
.partners__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: 16px;
}
.partners__title span { color: hsl(200 85% 70%); }
.partners__sub { color: hsl(43 20% 90% / 0.6); font-size: 1.125rem; }

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeLeft 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-card {
  flex-shrink: 0;
  margin: 0 12px;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  background: hsl(220 55% 30% / 0.6);
  border: 1px solid hsl(200 85% 60% / 0.12);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.partner-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 40px hsl(220 60% 10% / 0.4), 0 0 0 1px hsl(200 85% 60% / 0.3);
}
.partner-card:hover .partner-initial {
  background: hsl(200 85% 60% / 0.25) !important;
  color: hsl(200 85% 70%);
}

.partner-initial {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: hsl(200 85% 60% / 0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  transition: background 0.25s, color 0.25s;
}
.partner-initial span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: hsl(200 85% 70%);
}
.partner-name { color: hsl(43 20% 90% / 0.85); font-size: 14px; font-weight: 700; margin-bottom: 4px; text-align: center; }
.partner-industry { color: hsl(43 20% 90% / 0.45); font-size: 12px; text-align: center; }

.partners__footer { text-align: center; margin-top: 48px; }
.partners__footer p { color: hsl(43 20% 90% / 0.6); font-size: 14px; }


/* ════════════════════════════════════════════════════════════
   BLOG SECTION
   ════════════════════════════════════════════════════════════ */
.blog { background: var(--bg); padding: var(--section-py) 0; overflow: hidden; }

.blog__heading {
  text-align: center;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(18px);
}
.blog__heading.bs-head-in { animation: bsHeadIn 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
@keyframes bsHeadIn { to { opacity: 1; transform: translateY(0); } }

.blog__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}
.blog__title span { color: var(--navy); }
.blog__sub { color: var(--muted-fg); font-size: 1.125rem; max-width: 32rem; margin: 0 auto; }

/* Magazine grid */
.blog__grid { display: grid; gap: 24px 32px; }
@media (min-width: 1024px) { .blog__grid { grid-template-columns: 3fr 2fr; } }

.blog-card {
  position: relative;
  background: var(--card);
  border: 1.5px solid hsl(220 60% 25% / 0.18);
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.58s cubic-bezier(0.22,1,0.36,1),
    transform 0.58s cubic-bezier(0.22,1,0.36,1),
    border-color 0.25s;
}
.blog-card.bs-card-in { opacity: 1; transform: translateY(0); }
.blog-card:hover { border-color: hsl(220 60% 25% / 0.55); }

.blog-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
  border-radius: 0 0 1.5rem 1.5rem;
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
}
.blog-card:hover::after { width: 100%; }

.blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card--featured .blog-card__img-wrap { height: 320px; }
.blog-card--secondary .blog-card__img-wrap { height: 160px; }

.blog-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.blog-card:hover .blog-card__img { transform: scale(1.07); }

.blog-card__featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, hsl(220 60% 15% / 0.85) 0%, hsl(220 60% 15% / 0.3) 40%, transparent 70%);
  z-index: 2;
  transition: opacity 0.3s;
}
.blog-card:hover .blog-card__featured-overlay { opacity: 0.85; }

.blog-card__readtime {
  position: absolute; top: 16px; right: 16px;
  z-index: 20;
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 500;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #111;
}

.blog-card__category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--sky);
}

.blog-card__featured-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 10;
}
.blog-card__featured-text .blog-card__category { margin-bottom: 12px; }
.blog-card__featured-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  color: white;
  line-height: 1.3;
}

.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__secondary-cat { position: absolute; top: 12px; left: 12px; z-index: 20; }
.blog-card__body-divider {
  width: 32px; height: 2px;
  border-radius: 999px;
  background: var(--navy);
  margin-bottom: 12px;
}
.blog-card__secondary-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  flex: 1;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid hsl(220 60% 25% / 0.1);
}
.blog-card__date { font-size: 12px; color: var(--muted-fg); font-weight: 500; }
.blog-card__featured-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }

.blog-card__readlink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.blog-card__readlink::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1.5px;
  background: var(--navy);
  transition: width 0.3s;
}
.blog-card:hover .blog-card__readlink::after { width: 100%; }
.blog-card__readlink-arrow { display: inline-block; transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1); }
.blog-card:hover .blog-card__readlink-arrow { transform: translateX(6px); }

.blog__secondary-stack { display: flex; flex-direction: column; gap: 24px 32px; }

.blog__view-all { text-align: center; margin-top: 48px; }
.blog__view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: var(--navy);
  color: var(--sky);
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog__view-btn:hover { transform: scale(1.05); box-shadow: 0 8px 24px hsl(220 60% 25% / 0.3); }


/* ════════════════════════════════════════════════════════════
   LOWER CTA
   ════════════════════════════════════════════════════════════ */
.lower-cta { position: relative; overflow: hidden; background: hsl(220 70% 15%); }

.cta-grad-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, hsl(220 70% 12%), hsl(215 75% 18%), hsl(225 65% 20%), hsl(210 80% 16%), hsl(220 70% 12%));
  background-size: 300% 300%;
  animation: ctaGradShift 12s ease infinite;
}
@keyframes ctaGradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cta-dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, hsl(200 85% 60% / 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.cta-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, hsl(200 85% 60% / 0.08), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  animation: ctaOrbPulse 7s ease-in-out infinite;
}
@keyframes ctaOrbPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.1); }
}

/* Particles */
@keyframes particleRise {
  0%   { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-120px) translateX(var(--px)) scale(1.2); opacity: 0; }
}
.cta-particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: hsl(200 85% 60% / 0.5);
  animation: particleRise var(--dur) ease-in infinite;
  animation-delay: var(--delay);
}

/* Wave top */
.cta-wave-top {
  position: absolute; top: 0; left: 0;
  width: 100%; pointer-events: none; z-index: 0;
}
.cta-wave-top svg { width: 100%; height: auto; display: block; }

.lower-cta__body { padding: 80px 0 128px; position: relative; z-index: 10; }

.lower-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 1.5rem 0;
  text-align: center;
  opacity: 0;
}
.lower-cta__inner.scroll-reveal { animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) forwards; }

.lower-cta__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 5vw, 3.75rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, white 40%, hsl(200 85% 75%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lower-cta__sub { color: hsl(0 0% 100% / 0.7); font-size: clamp(1rem, 1.5vw, 1.25rem); margin-bottom: 40px; max-width: 40rem; margin-left: auto; margin-right: auto; }

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

.cta-btn-primary {
  position: relative;
  overflow: hidden;
  padding: 16px 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  background: var(--sky);
  color: hsl(220 70% 12%);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.cta-btn-primary:hover {
  transform: scale(1.06);
  box-shadow: 0 0 40px hsl(200 85% 60% / 0.4), 0 8px 32px hsl(200 85% 60% / 0.2);
}
.cta-btn-primary::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: ctaShimmer 3s ease-in-out infinite;
}
@keyframes ctaShimmer {
  0%   { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(250%) skewX(-20deg); }
}

.cta-btn-secondary {
  padding: 16px 40px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  color: white;
  border: 2px solid hsl(200 85% 60% / 0.4);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.25s, background 0.25s;
}
.cta-btn-secondary:hover {
  transform: scale(1.04);
  border-color: hsl(200 85% 60% / 0.7);
  background: hsl(200 85% 60% / 0.08);
}


/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: hsl(0 0% 0%);
  color: var(--bg);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 1.5rem;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--bg);
}

.footer__right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer__hashtag { color: hsl(200 85% 70%); font-weight: 700; font-size: 14px; letter-spacing: 0.05em; }
.footer__social-label {
  color: hsl(43 20% 90% / 0.7);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer__socials { display: flex; align-items: center; gap: 8px; }
.footer__social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: hsl(43 20% 90% / 0.1);
  display: flex; align-items: center; justify-content: center;
  color: hsl(43 20% 90% / 0.7);
  transition: background 0.2s, color 0.2s;
}
.footer__social-icon:hover { background: hsl(43 20% 90% / 0.2); color: var(--bg); }

.footer__divider { border: none; border-top: 1px solid hsl(43 20% 90% / 0.1); }

.footer__bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

.footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.footer__legal a { font-size: 14px; color: hsl(43 20% 90% / 0.6); transition: color 0.2s; }
.footer__legal a:hover { color: var(--bg); }

.footer__copyright { font-size: 14px; color: hsl(43 20% 90% / 0.6); }

.footer__ai { display: flex; align-items: center; gap: 12px; }
.footer__ai-label { font-size: 14px; color: hsl(43 20% 90% / 0.7); font-weight: 500; white-space: nowrap; }
.footer__ai-icons { display: flex; align-items: center; gap: 6px; }
.footer__ai-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: hsl(43 20% 90% / 0.1);
  display: flex; align-items: center; justify-content: center;
  color: hsl(43 20% 90% / 0.7);
  transition: background 0.2s, color 0.2s;
}
.footer__ai-icon:hover { background: hsl(43 20% 90% / 0.2); color: var(--bg); }
