/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Work Sans", sans-serif;
  color: #424445;
  background: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1118px;
  z-index: 100;
  padding: 0 0px;
  transition: top 0.3s ease;
}

.header--scrolled {
  top: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 32px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header__logo img {
  width: 173px;
  height: 30px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-link {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
  isolation: isolate;
}

/* Hover glow — soft pastel wash on hover */
.header__nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 122px;
  height: 26px;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(112, 142, 242, 0.8) 0%,
    rgba(150, 51, 221, 1) 50%,
    rgba(241, 159, 94, 0.8) 100%
  );
  filter: blur(16px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.header__nav-link:hover::before {
  opacity: 0.12;
}

/* Active nav — very subtle pastel glow matching Figma */
.header__nav-link--active::before {
  opacity: 0.2;
}

.header__nav-link--active:hover::before {
  opacity: 0.25;
}

/* Mobile menu toggle */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #424445;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.header__menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

/* Background — single composite image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Layer 1: Particle pattern — full coverage */
.hero__bg-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Layer 2: Blue orb — clipped container */
.hero__bg-2 {
  position: absolute;
  top: 88px;
  left: 35%;
  width: 100%;
  height: 809px;
  overflow: hidden;
  opacity: 0.08;
  pointer-events: none;
  animation: orbFloat1 14s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12px, 10px) scale(1.02); }
}

.hero__bg-2 img {
  position: absolute;
  width: 277.77%;
  height: 329.64%;
  left: -88.72%;
  top: -56.75%;
  max-width: none;
}

/* Layer 3: Purple orb — clipped container */
.hero__bg-3 {
  position: absolute;
  top: 120px;
  left: 45.7%;
  width: 64.6%;
  height: 777px;
  overflow: hidden;
  opacity: 0.08;
  pointer-events: none;
  animation: orbFloat2 16s ease-in-out infinite;
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -8px) scale(1.03); }
}

.hero__bg-3 img {
  position: absolute;
  width: 250.16%;
  height: 199.58%;
  left: -72.8%;
  top: -38.2%;
  max-width: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 160px;
}

.hero__content {
  width: 100%;
  max-width: 954px;
}

.hero__title {
  font-family: "Work Sans", sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 66px;
  color: #424445;
  margin-bottom: 20px;
}

.hero__title strong {
  font-weight: 700;
  display: block;
}

.hero__title-gradient {
  background: linear-gradient(
    127.07deg,
    #708ef2 5.92%,
    #9633dd 50%,
    #f19f5e 94.08%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: "Work Sans", sans-serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 36px;
  color: #424445;
  max-width: 677px;
  margin-bottom: 40px;
}

/* CTA Button — blur-12px glow, Figma exact values */
.hero__cta {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  transition: transform 0.2s;
}

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

.hero__cta-border {
  position: absolute;
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 18px;
  background: linear-gradient(
    127deg,
    rgb(112, 142, 242) 6%,
    rgb(150, 51, 221) 50%,
    rgb(241, 159, 94) 94%
  );
  background-size: 200% 200%;
  filter: blur(16px);
  opacity: 0.8;
  z-index: 0;
  animation: ctaGlowPulse 3s ease-in-out infinite;
}

.hero__cta-inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #0a0d14;
  color: #ffffff;
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 21px 40px;
  border-radius: 14px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__cta-inner svg {
  flex-shrink: 0;
}

/* Tagline */
.hero__tagline {
  text-align: right;
  margin-top: 60px;
}

.hero__tagline p {
  font-family: "Work Sans", sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
  color: #332162;
}

.hero__tagline-bold {
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .hero__inner {
    padding: 0 80px;
  }

  .hero__title {
    font-size: 42px;
    line-height: 54px;
  }

  .hero__subtitle {
    font-size: 22px;
    line-height: 32px;
  }

  .hero__tagline p {
    font-size: 30px;
  }
}

@media (max-width: 1024px) {
  .header {
    top: 16px;
    max-width: 100%;
    padding: 0 16px;
  }

  .header__inner {
    padding: 14px 24px;
  }

  .header__nav {
    gap: 24px;
  }

  .hero__inner {
    padding: 0 60px;
  }

  .hero__tagline {
    text-align: left;
  }

  .hero__tagline p {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .header {
    top: 12px;
  }

  .header__inner {
    padding: 12px 20px;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  }

  .header__nav.open {
    display: flex;
  }

  .header__menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero__inner {
    padding: 0 24px;
  }

  .hero__title {
    font-size: 32px;
    line-height: 42px;
  }

  .hero__subtitle {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 32px;
  }

  .hero__cta-inner {
    font-size: 16px;
    padding: 14px 24px;
  }

  .hero__tagline p {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero__inner {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 28px;
    line-height: 38px;
  }

  .hero__subtitle {
    font-size: 16px;
    line-height: 26px;
  }

  .hero__cta-inner {
    font-size: 15px;
    padding: 12px 20px;
    gap: 12px;
  }

  .hero__tagline p {
    font-size: 20px;
  }
}

/* ===== Beyond Clicks & Conversions ===== */
.beyond {
  position: relative;
  padding: 140px 0 0;
  overflow: hidden;
}

.beyond__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.beyond__bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.beyond__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 160px;
}

.beyond__title {
  font-family: "Work Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #424445;
  text-align: center;
  margin-bottom: 24px;
}

.beyond__logos {
  text-align: center;
  margin-bottom: 40px;
}

.beyond__logos-img {
  display: inline-block;
  height: 40px;
  width: auto;
  opacity: 0.5;
}

.beyond__desc {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #424445;
  text-align: center;
  max-width: 725px;
  margin: 0 auto 60px;
}

.beyond__desc strong {
  font-weight: 600;
}

.beyond__divider {
  width: 100%;
  max-width: 1171px;
  height: 1px;
  background: #d9d9d9;
  opacity: 0.5;
  margin: 0 auto;
}

.beyond__divider--bottom {
  background: linear-gradient(to right, #93939d, #343337);
  opacity: 0.2;
  max-width: 1315px;
  margin-top: 60px;
}

.beyond__fade {
  position: relative;
  width: 100%;
  height: 200px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
  margin-top: 0;
}

.beyond__pillars {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 0 0;
  max-width: 1100px;
  margin: 0 auto;
}

.beyond__pillar {
  flex: 1;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.beyond__pillar-icon {
  width: 240px;
  height: 240px;
  position: relative;
}

.beyond__pillar-icon img {
  width: 100%;
  height: 100%;
}

.beyond__pillar-title {
  font-family: "Work Sans", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: -130px;
  position: relative;
  z-index: 1;
  max-width: 120px;
  margin-left: auto;
  margin-right: auto;
}

.beyond__pillar-title--orange {
  color: #e8946b;
}

.beyond__pillar-title--purple {
  color: #7b73ec;
}

.beyond__pillar-title--blue {
  color: #1f85ff;
}

.beyond__pillar-desc {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #6b6d6e;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

/* Beyond — Responsive */
@media (max-width: 1200px) {
  .beyond__inner {
    padding: 0 80px;
  }

  .beyond__title {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  .beyond {
    padding: 100px 0 0;
  }

  .beyond__inner {
    padding: 0 60px;
  }

  .beyond__pillars {
    gap: 30px;
  }

  .beyond__pillar-icon {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .beyond {
    padding: 80px 0 0;
  }

  .beyond__inner {
    padding: 0 24px;
  }

  .beyond__title {
    font-size: 32px;
  }

  .beyond__desc {
    font-size: 18px;
    line-height: 28px;
  }

  .beyond__pillars {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .beyond__pillar {
    max-width: 300px;
  }

  .beyond__pillar-icon {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .beyond__inner {
    padding: 0 16px;
  }

  .beyond__title {
    font-size: 28px;
  }

  .beyond__desc {
    font-size: 16px;
    line-height: 26px;
  }
}

/* ===== Revenue-Based Optimization ===== */
.revenue {
  position: relative;
  background: #0a0d14;
  padding: 140px 24px;
  overflow: hidden;
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.revenue__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 436px;
  border-radius: 50%;
  background: linear-gradient(
    100.75deg,
    rgb(112, 142, 242) 5.92%,
    rgb(150, 51, 221) 50%,
    rgb(241, 159, 94) 94.08%
  );
  filter: blur(120px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
  animation: glowBlink 4s ease-in-out infinite;
}

@keyframes glowBlink {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.05;
  }
}

.revenue__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.revenue__ghost {
  position: absolute;
  top: 250px; /* Aligns exactly behind "Chase Revenue", matching Figma */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(
    60px,
    9vw,
    145px
  ); /* Scales proportionally so the edges never get cut off on smaller screens */
  font-style: normal;
  font-weight: 100;
  line-height: normal; /* Prevents vertical clipping on the thin ascenders/descenders */
  opacity: 0.2;
  background: linear-gradient(
    99deg,
    #708ef2 6.31%,
    #9633dd 52.44%,
    #f19f5e 86.5%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.revenue__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.revenue__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 40px;
}

.revenue__badge-icon {
  flex-shrink: 0;
}

.revenue__badge-text {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.95px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #708ef2, #ba96f2, #f29696);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.revenue__title {
  font-family: "Work Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  text-align: center;
  max-width: 644px;
  margin-bottom: 80px; /* Matched Figma larger gap */
  letter-spacing: -1px;
}

.revenue__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 42px;
}

.revenue__step {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.revenue__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin: 24px 0;
  opacity: 0.8;
}

/* Revenue — Responsive */
@media (max-width: 1024px) {
  .revenue {
    padding: 100px 24px;
    min-height: auto;
  }

  .revenue__glow {
    width: 350px;
    height: 300px;
    filter: blur(100px);
  }

  .revenue__ghost {
    font-size: 100px;
  }

  .revenue__title {
    font-size: 38px;
  }

  .revenue__step {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .revenue {
    padding: 80px 24px;
  }

  .revenue__glow {
    width: 280px;
    height: 240px;
    filter: blur(80px);
    right: -40px;
    top: -20px;
  }

  .revenue__ghost {
    font-size: 60px;
  }

  .revenue__title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .revenue__step {
    font-size: 18px;
  }

  .revenue__step br {
    display: none;
  }
}

@media (max-width: 480px) {
  .revenue__glow {
    width: 200px;
    height: 180px;
    filter: blur(60px);
    right: -30px;
    top: -10px;
    opacity: 0.25;
  }

  .revenue__ghost {
    font-size: 40px;
  }

  .revenue__title {
    font-size: 26px;
  }

  .revenue__step {
    font-size: 16px;
  }

  .revenue__badge-text {
    font-size: 11px;
    letter-spacing: 1.2px;
  }
}

/* ===== Cross-Platform Mastery ===== */
.ecosystem {
  background: #f8f9fa;
  padding: 130px 24px 100px;
}

.ecosystem__inner {
  max-width: 902px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ecosystem__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  padding: 8px 17px;
  margin-bottom: 24px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
}

.ecosystem__badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ecosystem__badge-text {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.95px;
  text-transform: uppercase;
  background: linear-gradient(
    152deg,
    #708ef2 5.92%,
    #9633dd 50%,
    #f19f5e 94.08%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ecosystem__title {
  font-family: "Work Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #424445;
  text-align: center;
  margin-bottom: 56px;
}

.ecosystem__title-gradient {
  display: block;
  font-weight: 400;
  background: linear-gradient(
    146.9deg,
    #708ef2 6.31%,
    #9633dd 52.44%,
    #f19f5e 86.53%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ecosystem__cards {
  display: flex;
  gap: 28px;
  width: 100%;
  margin-bottom: 44px;
}

.ecosystem__card {
  flex: 1;
  position: relative;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 107px 40px 40px;
  min-height: 458px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.ecosystem__card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.ecosystem__card-glow--blue {
  background: rgba(31, 133, 255, 0.15);
  animation: cardGlowPulse 5s ease-in-out infinite;
}

.ecosystem__card-glow--orange {
  background: rgba(232, 148, 107, 0.15);
  animation: cardGlowPulse 5s ease-in-out infinite 1.5s;
}

@keyframes cardGlowPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

.ecosystem__card-logo {
  margin-bottom: 36px;
  height: 41px;
  display: flex;
  align-items: center;
}

.ecosystem__card-logo img {
  height: 41px;
  width: auto;
}

.ecosystem__card-logo--meta {
  gap: 8px;
}

.ecosystem__meta-symbol {
  height: 29px !important;
  width: auto;
}

.ecosystem__meta-wordmark {
  height: 28px !important;
  width: auto;
}

.ecosystem__card-subtitle {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.ecosystem__card-subtitle--blue {
  color: #1f85ff;
}

.ecosystem__card-subtitle--orange {
  color: #e8946b;
}

.ecosystem__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ecosystem__card-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #666666;
}

.ecosystem__card-list li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ecosystem__bottom {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.ecosystem__bottom-icon {
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(123, 115, 236, 0.2);
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(123, 115, 236, 0.1) 0%,
    rgba(232, 148, 107, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecosystem__bottom-text {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #424445;
}

.ecosystem__bottom-text strong {
  font-weight: 700;
}

/* Ecosystem — Responsive */
@media (max-width: 1024px) {
  .ecosystem {
    padding: 100px 24px 80px;
  }

  .ecosystem__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .ecosystem {
    padding: 80px 24px 60px;
  }

  .ecosystem__title {
    font-size: 30px;
  }

  .ecosystem__cards {
    flex-direction: column;
    gap: 20px;
  }

  .ecosystem__card {
    min-height: auto;
    padding: 32px;
  }

  .ecosystem__bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px;
  }

  .ecosystem__bottom-text {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 480px) {
  .ecosystem__title {
    font-size: 26px;
  }

  .ecosystem__card {
    padding: 24px;
  }

  .ecosystem__card-subtitle {
    font-size: 14px;
  }

  .ecosystem__card-list li {
    font-size: 16px;
  }

  .ecosystem__bottom-text {
    font-size: 16px;
    line-height: 26px;
  }

  .ecosystem__badge-text {
    font-size: 11px;
    letter-spacing: 1.2px;
  }
}

/* ===== CTA Section ===== */
.cta {
  position: relative;
  background: #0a0d14;
  padding: 120px 24px 100px;
  overflow: hidden;
  text-align: center;
}

.cta__glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.cta__glow--center {
  width: 800px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    108.31deg,
    #708ef2 5.92%,
    #9633dd 50%,
    #f19f5e 94.08%
  );
  filter: blur(120px);
  opacity: 0.3;
  border-radius: 9999px;
}

.cta__glow--blue {
  width: 400px;
  height: 400px;
  top: 0;
  right: 0;
  background: rgba(31, 133, 255, 0.1);
  filter: blur(100px);
}

.cta__glow--orange {
  width: 400px;
  height: 400px;
  bottom: 0;
  left: 0;
  background: rgba(232, 148, 107, 0.1);
  filter: blur(100px);
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 815px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 10px 21px;
  margin-bottom: 64px;
}

.cta__badge-text {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  color: #ffffff;
}

.cta__title {
  font-family: "Work Sans", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  text-align: center;
  margin-bottom: 56px;
}

.cta__subtitle {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #e5e9ec;
  text-align: center;
  margin-bottom: 48px;
}

.cta__button {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  margin-bottom: 100px;
  transition: transform 0.2s;
}

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

.cta__button-glow {
  position: absolute;
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 18px;
  background: linear-gradient(
    125deg,
    #708ef2 5.92%,
    #9633dd 50%,
    #f19f5e 94.08%
  );
  background-size: 200% 200%;
  filter: blur(16px);
  opacity: 0.8;
  z-index: 0;
  animation: ctaGlowPulse 3s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
  0%,
  100% {
    opacity: 0.6;
    filter: blur(14px);
    background-position: 0% 50%;
  }
  50% {
    opacity: 1;
    filter: blur(20px);
    background-position: 100% 50%;
  }
}

.cta__button-inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #0a0d14;
  color: #ffffff;
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 21px 40px;
  border-radius: 14px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta__trust {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}

.cta__trust-item svg {
  width: 24px;
  height: 24px;
}

.cta__trust-item span {
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
}

/* CTA — Responsive */
@media (max-width: 1024px) {
  .cta {
    padding: 100px 24px 80px;
  }

  .cta__title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .cta {
    padding: 80px 24px 60px;
  }

  .cta__title {
    font-size: 32px;
  }

  .cta__subtitle {
    font-size: 20px;
  }

  .cta__button-inner {
    font-size: 16px;
    padding: 16px 32px;
  }
}

@media (max-width: 480px) {
  .cta__title {
    font-size: 26px;
  }

  .cta__subtitle {
    font-size: 18px;
  }

  .cta__trust {
    gap: 32px;
  }
}

/* ===== Leadership ===== */
.leadership {
  position: relative;
  background: #fefeff;
  padding: 80px 0 80px;
  overflow: hidden;
}

.leadership__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 53%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.leadership__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transform: rotate(-90deg) scaleX(-1);
  transform-origin: center center;
}

.leadership__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 160px;
}

.leadership__content {
  max-width: 543px;
}

.leadership__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 100px;
  padding: 8px 17px;
  margin-bottom: 50px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
}

.leadership__badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.leadership__badge-text {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.95px;
  text-transform: uppercase;
  background: linear-gradient(
    129.6deg,
    #708ef2 5.92%,
    #9633dd 50%,
    #f19f5e 94.08%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leadership__block {
  margin-bottom: 40px;
}

.leadership__block-icon {
  width: 42px;
  height: 42px;
  background: #f8f9fa;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.leadership__block-icon--lg {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.leadership__name {
  font-family: "Work Sans", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  color: #424445;
  margin-bottom: 24px;
}

.leadership__name strong {
  font-weight: 500;
}

.leadership__desc {
  font-family: "Work Sans", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 24px;
}

.leadership__desc strong {
  font-weight: 600;
  color: #424445;
}

.leadership__text {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
}

.leadership__text strong {
  font-weight: 600;
  color: #424445;
}

.leadership__highlight {
  font-family: "Work Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  color: #424445;
  margin-bottom: 48px;
}

.leadership__closing {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.46;
  color: #666666;
}

.leadership__closing strong {
  font-weight: 700;
}

/* Leadership — Responsive */
@media (max-width: 1440px) {
  .leadership {
    padding: 48px 0 40px;
  }

  .leadership__inner {
    padding: 0 100px;
  }

  .leadership__badge {
    margin-bottom: 32px;
  }

  .leadership__block {
    margin-bottom: 28px;
  }

  .leadership__highlight {
    margin-bottom: 32px;
  }
}

@media (max-width: 1200px) {
  .leadership {
    padding: 40px 0 32px;
  }

  .leadership__inner {
    padding: 0 80px;
  }

  .leadership__badge {
    margin-bottom: 28px;
  }

  .leadership__block {
    margin-bottom: 24px;
  }

  .leadership__highlight {
    margin-bottom: 28px;
  }

  .leadership__bg {
    width: 60%;
    opacity: 0.7;
  }
}

@media (max-width: 1024px) {
  .leadership {
    padding: 36px 0 28px;
  }

  .leadership__inner {
    padding: 0 60px;
  }

  .leadership__bg {
    width: 65%;
    opacity: 0.5;
  }

  .leadership__name {
    font-size: 28px;
  }

  .leadership__badge {
    margin-bottom: 24px;
  }

  .leadership__block {
    margin-bottom: 20px;
  }

  .leadership__highlight {
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .leadership {
    padding: 48px 0 48px;
  }

  .leadership__inner {
    padding: 0 24px;
  }

  .leadership__bg {
    width: 100%;
    opacity: 0.2;
  }

  .leadership__content {
    max-width: 100%;
  }

  .leadership__name {
    font-size: 26px;
  }

  .leadership__desc {
    font-size: 17px;
  }

  .leadership__closing {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .leadership__name {
    font-size: 24px;
  }

  .leadership__desc,
  .leadership__text {
    font-size: 16px;
  }

  .leadership__highlight {
    font-size: 19px;
  }

  .leadership__closing {
    font-size: 18px;
  }
}

/* ===== Boutique by Design ===== */
.boutique {
  background: linear-gradient(
    85.56deg,
    #708ef2 16.85%,
    #cc86ff 50%,
    #9b6dff 70%,
    #708ef2 89.5%
  );
  background-size: 300% 100%;
  animation: gradientWave 8s ease-in-out infinite;
  padding: 105px 24px 100px;
  border: 1px solid #ffffff;
}

@keyframes gradientWave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.boutique__inner {
  max-width: 824px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.boutique__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  padding: 8px 17px;
  margin-bottom: 40px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
}

.boutique__badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.boutique__badge-text {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.95px;
  text-transform: uppercase;
  background: linear-gradient(
    145.22deg,
    #708ef2 5.92%,
    #9633dd 50%,
    #f19f5e 94.08%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.boutique__title {
  font-family: "Work Sans", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  margin-bottom: 8px;
}

.boutique__subtitle {
  font-family: "Work Sans", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  color: #ffffff;
  text-align: center;
  margin-bottom: 68px;
}

.boutique__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 90px;
  width: 100%;
}

.boutique__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.boutique__item-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
}

.boutique__item-text {
  font-family: "Work Sans", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  max-width: 283px;
}

.boutique__item-text strong {
  font-weight: 600;
  color: #f0f6fa;
}

/* Boutique — Responsive */
@media (max-width: 1024px) {
  .boutique {
    padding: 80px 24px;
  }

  .boutique__title {
    font-size: 46px;
  }

  .boutique__subtitle {
    font-size: 38px;
  }

  .boutique__grid {
    gap: 40px 60px;
  }
}

@media (max-width: 768px) {
  .boutique {
    padding: 60px 24px;
  }

  .boutique__title {
    font-size: 36px;
  }

  .boutique__subtitle {
    font-size: 30px;
    margin-bottom: 48px;
  }

  .boutique__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .boutique__title {
    font-size: 30px;
  }

  .boutique__subtitle {
    font-size: 24px;
  }

  .boutique__item-text {
    font-size: 16px;
  }
}

/* ===== Footer ===== */
.footer {
  background: #fdfcfe;
  padding: 80px 0 60px;
}

.footer__tagline {
  font-family: "Work Sans", sans-serif;
  font-size: 51px;
  font-weight: 200;
  text-transform: uppercase;
  color: #000000;
  opacity: 0.2;
  text-align: center;
  max-width: 1440px;
  margin: 0 auto 48px;
  padding: 0 160px;
  white-space: nowrap;
  overflow: hidden;
}

.footer__inner {
  max-width: 1394px;
  margin: 0 auto;
  padding: 0 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo img {
  width: 173px;
  height: 30px;
}

.footer__nav {
  display: flex;
  gap: 40px;
}

.footer__nav a {
  font-family: "Inter", "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer__nav a:hover {
  opacity: 0.6;
}

.footer__copy {
  font-family: "Inter", "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #918d8d;
}

/* Footer — Responsive */
@media (max-width: 1024px) {
  .footer__tagline {
    font-size: 36px;
    padding: 0 60px;
  }

  .footer__inner {
    padding: 0 60px;
  }

  .footer__nav {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 32px;
  }

  .footer__tagline {
    font-size: 24px;
    padding: 0 24px;
    margin-bottom: 32px;
  }

  .footer__inner {
    padding: 0 24px;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 32px 0 24px;
  }

  .footer__tagline {
    font-size: 18px;
    padding: 0 16px;
    margin-bottom: 24px;
  }

  .footer__inner {
    padding: 0 16px;
    gap: 20px;
  }

  .footer__nav a {
    font-size: 14px;
  }
}
