@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');.logo {
  display: block;
  width: 88px;
  height: auto;
  object-fit: contain;
  filter: hue-rotate(-28deg) saturate(1.08);
}

.logo--compact {
  width: 34px;
  height: 34px;
}
.button {
  --button-color: var(--primary);
  --button-dark: #1f4dcc;
  --stripe-cycle: 33.94px;
  border: 0;
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: repeating-linear-gradient(
    135deg,
    var(--button-color) 0 12px,
    var(--button-dark) 12px 24px
  );
  background-repeat: repeat;
  background-size: var(--stripe-cycle) 100%;
  background-position: 0 0;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(36, 87, 232, .22);
  animation: button-stripes-roll .8s linear infinite;
}

.button:active {
  transform: translateY(-1px) scale(.98);
}

.button--primary {
  --button-color: var(--primary);
  --button-dark: #1f4dcc;
  color: #fff;
  box-shadow: 0 8px 22px rgba(36, 87, 232, .22);
}

.button--primary:hover {
  --button-color: var(--primary-dark);
  --button-dark: #12358f;
}

.button--secondary {
  --button-color: var(--surface);
  --button-dark: #f0f1f4;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button--dark {
  --button-color: #292b35;
  --button-dark: #20212a;
  color: #fff;
}

.button--ghost {
  color: var(--muted);
  background: transparent;
}

@keyframes button-stripes-roll {
  from {
    background-position: 0 0;
  }

  to {
    background-position: var(--stripe-cycle) 0;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  font-weight: 500;
  transition: color .2s ease, font-weight .2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.is-active {
  color: var(--primary);
  font-weight: 500;
}

@media (max-width: 1000px) {
  .nav-links {
    gap: 18px;
  }
}

@media (max-width: 850px) {
  .nav-links {
    display: none;
  }
}
.header {
  position: sticky;
  top: 18px;
  z-index: 50;
  margin: 18px auto 0;
  max-width: 1200px;
  width: calc(100% - 48px);
  background: rgba(255, 255, 255, .88);
  border-radius: 14px;
  border: 1px solid rgba(232, 232, 239, .95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.header__bar {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 0 22px;
}

.header__logo-col {
  display: flex;
  align-items: center;
}

.header__logo-col a {
  display: flex;
  align-items: center;
}

.header .logo {
  width: 90px;
  height: auto;
}

.header__nav-col {
  display: flex;
  align-items: center;
  gap: 20px;
      margin-right: 10px;
}

.header__login {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.header__login:hover {
  color: var(--primary);
}

.header__cta-btn.button {
  font-size: 11px;
  padding: 9px 17px;
  border-radius: 8px;
}

.header__cta-btn.button:hover {
  --button-color: var(--primary-dark);
  --button-dark: #12358f;
  transform: translateY(-1px);
}

.header__menu {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
}

.mobile-nav {
  display: none;
}

@media (max-width: 850px) {
  .header {
    border-radius: 16px;
  }

  .header__menu {
    display: block;
  }

  .header__login,
  .header__cta-btn {
    display: none !important;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 0;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
    border-top: 1px solid var(--line);
    background: var(--surface);
    border-radius: 0 0 16px 16px;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    visibility: hidden;
    transition:
      max-height .3s ease,
      padding .3s ease,
      opacity .2s ease,
      transform .3s ease,
      visibility .3s ease;
  }

  .mobile-nav.is-open {
    max-height: 360px;
    padding: 20px;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-nav a {
    padding: 6px 0;
    transition: color 0.2s ease;
  }

  .mobile-nav a:hover {
    color: var(--primary);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav {
    transition: none;
  }
}

@media (max-width: 640px) {
  .header {
    margin: 10px auto 0;
    width: calc(100% - 32px);
  }

  .header__bar {
    min-height: 58px;
    padding: 0 8px 0 16px;
  }

  .header .logo {
    width: 78px;
  }

  .header__menu {
    padding: 7px;
  }
}
.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1200px);
  }
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(32, 33, 52, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #c9d7fb;
  box-shadow: 0 16px 30px rgba(36, 87, 232, .14);
}

.stat-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stat-card__icon--blue {
  background: #eaf1fe;
  color: #3b6fe0;
}

.stat-card__icon--green {
  background: transparent;
  color: #2fa66a;
}

.stat-card__content {
  display: flex;
  flex-direction: column;
}

.stat-card strong {
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.1;
  font-family: 'Manrope', sans-serif;
}

.stat-card__content > span {
  font-size: 12px;
  font-weight: 500;
  color: #7a7c88;
  margin-top: 3px;
  line-height: 1.25;
}

@media (max-width: 600px) {
  .stat-card {
    padding: 14px 16px;
  }
}
.hero {
  padding: 0px 0 60px;
  overflow: hidden;
}

.hero__container {
  padding-inline: 20px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 24px;
  min-height: 400px;
}
.hero__copy h1 {
  font: 800 clamp(40px, 4.4vw, 54px)/1.03 'Manrope', sans-serif;
  letter-spacing: -.055em;
  margin: 16px 0 18px;
  color: var(--ink);
  max-width: 680px;
}
.hero__copy h1 em { font-style: normal; color: var(--primary); }
.hero__copy h1 .hero__title-1,
.hero__copy h1 .hero__title-2 { white-space: nowrap; }
.hero__copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}
.hero__buttons { display: flex; gap: 10px; margin-top: 24px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  color: var(--subtle);
  font-size: 11px;
}
.hero__trust span { display: flex; align-items: center; gap: 5px; }
.hero__trust svg { color: var(--primary); }
.hero__visual {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}
.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb--one {
  width: 370px;
  height: 480px;
  background: radial-gradient(circle, #e9f0ff 0, #e9f0ff 45%, transparent 70%);
  top: 10px;
  right: 0;
}
.hero__dots {
  position: absolute;
  right: -6px;
  top: 34px;
  width: 170px;
  height: 240px;
  background-image: radial-gradient(#c2d1f7 1.6px, transparent 1.6px);
  background-size: 19px 19px;
  opacity: .65;
  pointer-events: none;
}
.key-boxes-3d {
  position: relative;
  display: grid;
  place-items: center;
  width: 600px;
  height: 550px;
  perspective: 1100px;
  transform: translateX(-10px) scale(.83);
}
.key-boxes-3d__glow {
  position: absolute;
  width: 500px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(104, 139, 246, .2), transparent 68%);
  filter: blur(8px);
}
.box-cluster {
  position: relative;
  width: 600px;
  height: 480px;
  transform-style: preserve-3d;
}
.key-box {
  position: absolute;
  display: grid;
  place-items: center;
  transform: translateZ(var(--box-z, 0px));
  transform-style: preserve-3d;
}
.key-box__float {
  position: relative;
  transform-style: preserve-3d;
  animation: key-box-float 6s ease-in-out infinite;
  animation-delay: var(--box-delay);
}
.key-box__aura {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: calc(var(--box-width) * 1.65);
  height: calc(var(--box-height) * 1.65);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(36, 104, 255, .78), rgba(55, 113, 245, .34) 42%, transparent 74%);
  filter: blur(16px);
  opacity: .92;
  transform: translate(-50%, -50%);
  animation: key-box-aura 5s ease-in-out infinite;
  animation-delay: var(--box-delay);
  pointer-events: none;
}
.key-box__ground-shadow {
  position: absolute;
  left: 50%;
  top: calc(var(--box-height) + 18px);
  width: calc(var(--box-width) * .72);
  height: calc(var(--box-width) * .16);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(45, 42, 68, .3), transparent 72%);
  filter: blur(6px);
  opacity: .48;
  transform: translateX(-50%);
  animation: key-box-ground-shadow 6s ease-in-out infinite;
  animation-delay: var(--box-delay);
}
.key-box__body {
  position: relative;
  width: var(--box-width);
  height: var(--box-height);
  transform: rotateX(-10deg) rotateY(-28deg) rotateZ(var(--box-tilt));
  transform-style: preserve-3d;
  z-index: 1;
  animation: key-box-sway 10s ease-in-out infinite;
  animation-delay: var(--box-delay);
}
.key-box--two,
.key-box--three,
.key-box--four,
.key-box--eight {
  filter: saturate(.82) opacity(.88);
}
.key-box--one,
.key-box--five,
.key-box--six,
.key-box--seven {
  filter: saturate(1.08);
}
.key-box__face {
  position: absolute;
  left: 50%;
  top: 50%;
}
.key-box__face--front {
  width: var(--box-width);
  height: var(--box-height);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 0;
  transform: translate(-50%, -50%) translateZ(calc(var(--box-depth) / 2));
  background: linear-gradient(145deg, var(--box-light), var(--box-color) 60%, var(--box-dark));
  box-shadow: inset 12px 12px 25px rgba(255, 255, 255, .12), inset -12px -14px 22px rgba(11, 35, 116, .2);
}
.key-box__face--right {
  width: var(--box-depth);
  height: var(--box-height);
  border-radius: 0;
  transform: translate(-50%, -50%) rotateY(90deg) translateZ(calc(var(--box-width) / 2));
  background: linear-gradient(180deg, var(--box-color), var(--box-dark));
}
.key-box__face--top {
  width: var(--box-width);
  height: var(--box-depth);
  border-radius: 0;
  transform: translate(-50%, -50%) rotateX(90deg) translateZ(calc(var(--box-height) / 2));
  background: linear-gradient(145deg, var(--box-light), var(--box-color));
}
.key-box__keyhole {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
}
.key-box__keyhole i:first-child {
  display: block;
  width: var(--keyhole-size);
  height: var(--keyhole-size);
  margin: 0 auto;
  border-radius: 50%;
  background: #0d2466;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, .38), 0 0 0 3px rgba(255, 255, 255, .08);
}
.key-box__keyhole i:last-child {
  display: block;
  width: calc(var(--keyhole-size) * .36);
  height: calc(var(--keyhole-size) * .9);
  margin: calc(var(--keyhole-size) * -.16) auto 0;
  border-radius: 0 0 9px 9px;
  background: #0d2466;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, .35);
}
.key-box__shine {
  position: absolute;
  left: 12%;
  top: 8%;
  width: 62%;
  height: 26%;
  transform: rotate(-14deg);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0));
  filter: blur(2px);
}
.key-box--one {
  left: 125px;
  top: -6px;
  --box-z: 80px;
  --box-width: 150px;
  --box-height: 150px;
  --box-depth: 46px;
  --keyhole-size: 24px;
  --box-delay: -1s;
  --box-tilt: -4deg;
  --box-light: #6891ff;
  --box-color: #3567ec;
  --box-dark: #1b43b7;
}
.key-box--two {
  left: 0;
  top: 200px;
  --box-z: -100px;
  --box-width: 88px;
  --box-height: 88px;
  --box-depth: 30px;
  --keyhole-size: 16px;
  --box-delay: -4s;
  --box-tilt: 5deg;
  --box-light: #8c8cf8;
  --box-color: #625cd9;
  --box-dark: #423da3;
}
.key-box--three {
  left: 300px;
  top: 35px;
  --box-z: -135px;
  --box-width: 106px;
  --box-height: 106px;
  --box-depth: 34px;
  --keyhole-size: 18px;
  --box-delay: -2.5s;
  --box-tilt: 4deg;
  --box-light: #76a5ff;
  --box-color: #4074ed;
  --box-dark: #214cbb;
}
.key-box--four {
  left: 430px;
  top: 95px;
  --box-z: -110px;
  --box-width: 78px;
  --box-height: 78px;
  --box-depth: 28px;
  --keyhole-size: 14px;
  --box-delay: -5s;
  --box-tilt: -6deg;
  --box-light: #9aa1ff;
  --box-color: #7066e4;
  --box-dark: #4b45b0;
}
.key-box--five {
  left: 105px;
  top: 220px;
  --box-z: 95px;
  --box-width: 116px;
  --box-height: 116px;
  --box-depth: 38px;
  --keyhole-size: 20px;
  --box-delay: -3.5s;
  --box-tilt: 3deg;
  --box-light: #5f8df9;
  --box-color: #2f61e4;
  --box-dark: #183fae;
}
.key-box--six {
  left: 345px;
  top: 210px;
  --box-z: 50px;
  --box-width: 128px;
  --box-height: 128px;
  --box-depth: 40px;
  --keyhole-size: 21px;
  --box-delay: -1.8s;
  --box-tilt: -3deg;
  --box-light: #739bff;
  --box-color: #3e70e9;
  --box-dark: #1d46b6;
}
.key-box--seven {
  left: 245px;
  top: 175px;
  --box-z: 115px;
  --box-width: 82px;
  --box-height: 82px;
  --box-depth: 28px;
  --keyhole-size: 15px;
  --box-delay: -4.5s;
  --box-tilt: -5deg;
  --box-light: #a0a1ff;
  --box-color: #6d64e1;
  --box-dark: #4842aa;
}
.key-box--eight {
  left: 0;
  top: 35px;
  --box-z: -150px;
  --box-width: 112px;
  --box-height: 112px;
  --box-depth: 36px;
  --keyhole-size: 19px;
  --box-delay: -3s;
  --box-tilt: 6deg;
  --box-light: #769eff;
  --box-color: #3c6ee9;
  --box-dark: #1d46b7;
}
.key-box--nine {
  left: 15px;
  top: 360px;
  --box-z: -80px;
  --box-width: 62px;
  --box-height: 62px;
  --box-depth: 24px;
  --keyhole-size: 12px;
  --box-delay: -2.2s;
  --box-tilt: 4deg;
  --box-light: #8eaaff;
  --box-color: #527ceb;
  --box-dark: #2b53b9;
}
.key-box--ten {
  left: 95px;
  top: 370px;
  --box-z: 35px;
  --box-width: 72px;
  --box-height: 72px;
  --box-depth: 26px;
  --keyhole-size: 13px;
  --box-delay: -4.2s;
  --box-tilt: -5deg;
  --box-light: #a5a5ff;
  --box-color: #7771e5;
  --box-dark: #5049ae;
}
.key-box--eleven {
  left: 215px;
  top: 350px;
  --box-z: -120px;
  --box-width: 92px;
  --box-height: 92px;
  --box-depth: 30px;
  --keyhole-size: 15px;
  --box-delay: -1.4s;
  --box-tilt: 3deg;
  --box-light: #6d96ff;
  --box-color: #3c6ee8;
  --box-dark: #2048b2;
}
.key-box--twelve {
  left: 325px;
  top: 365px;
  --box-z: 65px;
  --box-width: 76px;
  --box-height: 76px;
  --box-depth: 28px;
  --keyhole-size: 14px;
  --box-delay: -3.2s;
  --box-tilt: -4deg;
  --box-light: #83a6ff;
  --box-color: #4b78e9;
  --box-dark: #2752ba;
}
@keyframes key-box-ground-shadow {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: .48; }
  50% { transform: translateX(-50%) scaleX(.62); opacity: .2; }
}
@keyframes key-box-aura {
  0%, 100% { transform: translate(-50%, -50%) scale(.9); opacity: .76; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}
@keyframes key-box-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes float-card-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}
@keyframes key-box-sway {
  0%, 100% { transform: rotateX(-10deg) rotateY(-28deg) rotateZ(var(--box-tilt)); }
  50% { transform: rotateX(-7deg) rotateY(-19deg) rotateZ(var(--box-tilt)); }
}
.float-card {
  position: absolute;
  left: 50%;
  top: 250px;
  right: auto;
  bottom: auto;
  z-index: 3;
  transform: translateX(-50%);
  animation: float-card-float 6s ease-in-out infinite;
  background: white;
  border: 1px solid #e7e6ee;
  border-radius: 12px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 45px rgba(45, 42, 68, .13);
  
}
.float-card > svg { color: var(--primary); }
.float-card strong,
.float-card small { display: table; }
.float-card strong { font-size: 14px; color: #3e3f47;white-space: nowrap; }
.float-card small { font-size: 11px; color: #9a9ba2;  }
.check-circle {
  margin-left: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eaf7ef;
  color: #42a46f;
  display: grid;
  place-items: center;
}
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .hero__copy,
  .hero__visual {
    min-width: 0;
  }

  .hero__copy { text-align: center; }
  .hero__copy p { margin-inline: auto; }
  .hero__buttons,
  .hero__trust { justify-content: center; }
  .hero__visual { min-height: 550px; }
  .hero__stats { margin-inline: auto; }
}
@media (max-width: 560px) {
  .hero { padding: 30px 0 44px; }
  .hero__copy h1 {
    font-size: clamp(34px, 10vw, 35px);
    margin-top: 13px;
  }
  .hero__copy p {
    font-size: 13px;
  }
  .hero__copy h1 .hero__title-1,
  .hero__copy h1 .hero__title-2 { white-space: normal; }
  .hero__buttons {
    flex-direction: column;
    margin-top: 20px;
  }
  .hero__buttons .button {
    width: 100%;
  }
  .hero__trust {
    justify-content: flex-start;
    text-align: left;
    gap: 10px 14px;
  }
  .hero__visual {
    min-height: 360px;
    margin-top: -4px;
  }
  .key-boxes-3d {
    width: 100%;
    max-width: 600px;
    height: 360px;
    transform: translateX(-64px) scale(.58);
  }
  .float-card {
    left: 50%;
    top: 250px;
    right: auto;
    bottom: auto;
    max-width: calc(100vw - 56px);
  }
  .hero__dots { display: none; }
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 4px;
  }
  .stat-card { min-width: 0; }
}

@media (max-width: 360px) {
  .key-boxes-3d {
    transform: translateX(-88px) scale(.58);
  }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
  max-width: 550px;
  align-items: stretch;
}

@media (max-width: 560px) {
  .hero__container {
    padding-inline: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  .key-box__float,
  .key-box__aura,
  .key-box__body,
  .key-box__ground-shadow,
  .float-card {
    animation: none;
  }
}
.trusted {
  padding: 30px 0;
  background: linear-gradient(90deg, #1557e8 0%, #2855df 58%, #5235df 100%);
  color: #ffffff;
}

.trusted .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trusted__intro {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  max-width: 190px;
  line-height: 1.25;
}

.trusted__items {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
}

.trusted__items span {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.trusted__items span:hover {
  color: #ffffff;
}

.trusted__items svg {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 850px) {
  .trusted .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .trusted__items {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .trusted__items span {
    font-size: 13px;
  }
}

@media (max-width: 500px) {
  .trusted__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.showcase {
  padding: 60px 0;
  background: var(--surface);
}

.showcase__grid {
  display: grid;
  grid-template-columns: .82fr 1.28fr;
  align-items: center;
  gap: 36px;
}

.showcase__copy h2 {
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin: 13px 0 15px;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.03em;
}

.showcase__copy h2 em {
  font-style: normal;
  color: var(--primary);
}

.showcase__copy p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 24px;
}

.showcase__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.showcase-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform .25s ease;
}

.showcase-item:hover {
  transform: translateX(5px);
}

.showcase-item__icon {
  transition: transform .25s ease, box-shadow .25s ease;
}

.showcase-item:hover .showcase-item__icon {
  transform: scale(1.08);
  box-shadow: 0 8px 16px rgba(36, 87, 232, .14);
}

.showcase-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #eff6ff;
  color: #2563eb;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.showcase-item__content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px 0;
  font-family: 'Manrope', sans-serif;
}

.showcase-item__content p {
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

.showcase__visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.showcase-visual {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.showcase-img {
  display: block;
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  animation: showcase-image-float 6.4s ease-in-out infinite;
}

.showcase-float-card {
  position: absolute;
  right: 25px;
  bottom: -14px;
  z-index: 10;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  animation: showcase-card-float 4.7s ease-in-out 1.2s infinite;
}

.showcase-float-card > svg {
  color: #22c55e;
  flex-shrink: 0;
}

.showcase-float-card__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.showcase-float-card strong {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
}

.showcase-float-card small {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

@keyframes showcase-image-float {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 18px 45px rgba(32, 33, 52, .14);
  }

  50% {
    transform: translateY(-9px);
    box-shadow: 0 29px 52px rgba(32, 33, 52, .22);
  }
}

@keyframes showcase-card-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  42% {
    transform: translateY(-7px) rotate(-.35deg);
  }

  72% {
    transform: translateY(3px) rotate(.2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-img,
  .showcase-float-card {
    animation: none;
  }
}

@media (max-width: 900px) {
  .showcase__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .showcase__copy {
    max-width: 600px;
    margin: 0 auto;
  }

  .showcase-float-card {
    right: 10px;
    bottom: -15px;
  }
}

@media (max-width: 600px) {
  .showcase {
    padding: 48px 0 60px;
  }

  .showcase__grid {
    gap: 34px;
  }

  .showcase__copy h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .showcase__copy p,
  .showcase-item__content p {
    font-size: 13px;
  }

  .showcase-float-card {
    padding: 8px 12px;
    gap: 8px;
  }

  .showcase-float-card strong {
    font-size: 12px;
  }

  .showcase-float-card small {
    font-size: 10px;
  }
}

@media (max-width: 430px) {
  .showcase-float-card {
    right: 0;
    max-width: calc(100% - 8px);
  }

  .showcase-float-card small {
    white-space: nowrap;
  }
}
.bento {
      padding: 66px 0;
    background: #2457e808;
}

.bento__head {
  grid-column: 1;
  grid-row: 1;
  padding: 5px 12px 0 0;
}

.bento__head h2 {
  color: var(--ink);
  font: 800 clamp(25px, 2.7vw, 34px)/1.14 'Manrope', sans-serif;
  letter-spacing: -.035em;
  margin: 11px 0 12px;
}

.bento__head h2 em {
  color: var(--primary);
  font-style: normal;
}

.bento__head p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: .9fr 1fr 1fr;
  grid-template-rows: 204px 170px 160px;
  gap: 14px;
}

.bento-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: #c9d7fb;
  box-shadow: 0 16px 30px rgba(36, 87, 232, .12);
}

.bento-card--dark {
  background: linear-gradient(150deg, #17213d 0%, #0f1930 100%);
  border-color: #0f1930;
  color: #ffffff;
}

.bento-card--dark {
  padding: 20px;
}

.bento-card--dark p {
  color: #aab7d3 !important;
}

.bento-card--large {
  grid-column: 2;
  grid-row: 1;
}

.bento-card:nth-of-type(2) {
  grid-column: 3;
  grid-row: 1;
}

.bento-card:nth-of-type(3) {
  grid-column: 1;
  grid-row: 2;
}

.bento-card:nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
}

.bento-card:nth-of-type(5) {
  grid-column: 3;
  grid-row: 2;
}

.bento-card:nth-of-type(6) {
  grid-column: 1;
  grid-row: 3;
}

.bento-card:nth-of-type(7) {
  grid-column: 2;
  grid-row: 3;
}

.bento-card--dark:hover {
  border-color: #2e5ac6;
  box-shadow: 0 18px 34px rgba(15, 35, 85, .25);
}

.card-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  align-self: flex-start;
}

.bento-card--dark .card-icon {
  background: rgba(255, 255, 255, .08);
  color: #79a0ff;
}

.card-icon--orange {
  background: #fff7ed !important;
  color: #ea580c !important;
}

.card-icon--blue {
  background: #eff6ff !important;
  color: #2563eb !important;
}

.card-icon--blue-bg {
  background: #eff6ff !important;
  color: #2563eb !important;
}

.bento-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 5px 0;
  font-family: 'Manrope', sans-serif;
}

.bento-card--dark h3 {
  color: #ffffff;
}

.bento-card p {
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
  margin: 0;
}

/* Bottom content visual elements */
.bento-action-buttons {
  display: flex;
  gap: 7px;
  margin-top: auto;
  padding-top: 11px;
  flex-wrap: wrap;
}

.bento-btn {
  --stripe-cycle: 28.28px;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, .08) 0 10px,
    rgba(0, 0, 0, .08) 10px 20px
  );
  background-repeat: repeat;
  background-size: var(--stripe-cycle) 100%;
  background-position: 0 0;
  color: #e6e7f2;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 7px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  border: 1px solid rgba(255, 255, 255, .12);
}

.bento-btn:hover {
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, .12) 0 10px,
    rgba(0, 0, 0, .04) 10px 20px
  );
  animation: button-stripes-roll .8s linear infinite;
}

.recording-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 11px;
  align-self: flex-start;
}

.rec-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.rec-text {
  font-size: 9px;
  font-weight: 800;
  color: #ef4444;
  letter-spacing: .04em;
}

.rec-badge {
  font-size: 11px;
  font-weight: 600;
  color: #8a8ea0;
  margin-left: 10px;
}

.bento-link {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 11px;
  font-size: 11px;
  font-weight: 700;
  color: #2563eb;
  cursor: pointer;
}

.bento-link:hover {
  text-decoration: underline;
}

.export-pills,
.orange-pills {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 11px;
}

.export-pills span {
  font-size: 9px;
  font-weight: 700;
  color: #2563eb;
  background: #eff6ff;
  padding: 5px 8px;
  border-radius: 20px;
}

.orange-pills span {
  font-size: 11px;
  font-weight: 700;
  color: #ea580c;
  background: #fff7ed;
  padding: 6px 12px;
  border-radius: 20px;
}

.bento-icons-row {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 11px;
}

.bento-icons-row span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  display: grid;
  place-items: center;
}

@keyframes pulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .bento__head,
  .bento-card--large,
  .bento-card:nth-of-type(2),
  .bento-card:nth-of-type(3),
  .bento-card:nth-of-type(4),
  .bento-card:nth-of-type(5),
  .bento-card:nth-of-type(6),
  .bento-card:nth-of-type(7) {
    grid-column: span 2;
    grid-row: auto;
    width: auto;
    transform: none;
  }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-rows: none;
  }

  .bento__head,
  .bento-card,
  .bento-card:nth-of-type(2),
  .bento-card:nth-of-type(3),
  .bento-card:nth-of-type(4),
  .bento-card:nth-of-type(5),
  .bento-card:nth-of-type(6),
  .bento-card:nth-of-type(7) {
    grid-column: 1;
    grid-row: auto;
    width: auto;
    transform: none;
  }
}

@media (max-width: 600px) {
  .bento {
    padding: 48px 0 60px;
  }

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

  .bento-card--large {
    grid-column: span 1;
  }

  .bento-card {
    padding: 16px;
  }

  .bento-action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .bento-btn {
    text-align: center;
  }
}
.integrations {
  padding: 60px 0;
  background: var(--surface);
  color: var(--ink);
}



.integration-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 42px;
}

.integration-copy h2 {
  font-size: clamp(28px, 3.1vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin: 13px 0 15px;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.03em;
}

.integration-copy h2 em {
  font-style: normal;
  color: var(--primary);
}

.integration-copy p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 24px;
}

.security-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.security-points > div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.point-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #27ae68;
  color: #ffffff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.security-points b {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  display: block;
}

.security-points small {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

/* Security Panel on the right */
.security-panel {
  background: #111a33;
  border: 1px solid rgba(182, 168, 255, .14);
  border-radius: 13px;
  box-shadow: 0 20px 42px rgba(15, 35, 85, .18);
  overflow: hidden;
  color: #ffffff;
  max-width: 530px;
  justify-self: end;
  transition: transform .3s ease, box-shadow .3s ease;
}

.security-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 48px rgba(15, 35, 85, .24);
}

.security-panel__top {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #a7abc4;
}

.secure-status {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #22c55e;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.security-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .03);
}

.metric-card {
  display: flex;
  flex-direction: column;
}

.metric-card > small {
  font-size: 11px;
  color: #8a8ea8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.protection-level {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 10px 0;
}

.protection-level strong {
  font-size: 20px;
  font-weight: 800;
  color: #22c55e;
}

.protection-level .pct {
  font-size: 13px;
  color: #94a3b8;
}

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #2fbf71;
  border-radius: 3px;
}

.metric-stats {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.stat-box strong {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Manrope', sans-serif;
}

.stat-box small {
  font-size: 11px;
  color: #8a8ea8;
  line-height: 1.3;
}

.security-alerts {
  padding: 20px;
}

.security-alerts h4 {
  font-size: 13px;
  font-weight: 700;
  color: #8a8ea8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px 0;
}

.alert-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.alert-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
}

.alert-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.alert-item--critical .alert-item__dot {
  background: #ef4444;
}

.alert-item--warning .alert-item__dot {
  background: #f59e0b;
}

.alert-item--info .alert-item__dot {
  background: #3b82f6;
}

.alert-item__content b {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  display: block;
}

.alert-item__content small {
  font-size: 11px;
  color: #8a8ea8;
  display: block;
  margin-top: 2px;
  overflow-wrap: anywhere;
}

.view-alerts-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #79a0ff;
  transition: color 0.2s ease;
}

.view-alerts-btn:hover {
  color: #c3caff;
}

@media (max-width: 900px) {
  .integration-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .integration-copy {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .integration__container {
    padding-inline: 0;
  }

  .integrations {
    padding: 48px 0 60px;
  }

  .integration-copy h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .security-panel {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .security-panel__top,
  .security-metrics,
  .security-alerts {
    padding-inline: 16px;
  }

  .alert-item {
    align-items: flex-start;
    padding-inline: 11px;
  }

  .security-metrics {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.audience {
  padding: 60px 0;
  background: #dfe7ff;
}


.audience__grid {
  display: grid;
  grid-template-columns: 1.25fr 2.4fr;
  gap: 42px;
  align-items: flex-start;
}

.audience__info {
  position: sticky;
  top: 100px;
}

.audience__info h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin: 13px 0 15px;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.03em;
}

.audience__info h2 em {
  font-style: normal;
  color: var(--primary);
}

.audience__info p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.audience__carousel {
  min-width: 0;
  --audience-visible: 3;
  --audience-loop-distance: calc(-133.333333% - 16px);
}

.audience__viewport {
  position: relative;
  overflow: hidden;
  padding: 3px 2px 8px;
  margin: -3px -2px -8px;
}

.audience__viewport::before,
.audience__viewport::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 42px;
  pointer-events: none;
}

.audience__viewport::before {
  left: 0;
  background: linear-gradient(90deg, #dfe7ff 8%, rgba(223, 231, 255, 0) 100%);
}

.audience__viewport::after {
  right: 0;
  background: linear-gradient(270deg, #dfe7ff 8%, rgba(223, 231, 255, 0) 100%);
}

.audience__track {
  display: flex;
  gap: 12px;
  animation: audience-scroll 22s linear infinite;
  will-change: transform;
}

@keyframes audience-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--audience-loop-distance), 0, 0);
  }
}

.audience-card {
  flex: 0 0 calc(
    (100% - (var(--audience-visible) - 1) * 12px) / var(--audience-visible)
  );
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 17px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 140px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.audience-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.audience-icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

.audience-icon--green {
  background: #f0fdf4;
  color: #16a34a;
}

.audience-icon--purple {
  background: #faf5ff;
  color: #536fe8;
}

.audience-icon--orange {
  background: #fff7ed;
  color: #ea580c;
}

.audience-card h3 {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 7px 0;
  font-family: 'Manrope', sans-serif;
  line-height: 1.3;
}

.audience-card p {
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 16px 0;
  flex-grow: 1;
}

.audience-card__link {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.audience-card__link:hover .arrow {
  transform: translateX(2px);
}

.audience-card__link .arrow {
  transition: transform 0.2s ease;
}

@media (max-width: 1200px) {
  .audience__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .audience__info {
    position: static;
    max-width: 600px;
  }

  .audience__carousel {
    --audience-visible: 2;
    --audience-loop-distance: calc(-200% - 24px);
  }
}

@media (max-width: 600px) {
  .audience__container {
    padding-inline: 0;
  }

  .audience {
    padding: 48px 0 60px;
  }

  .audience__info h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .audience__carousel {
    --audience-visible: 1;
    --audience-loop-distance: calc(-400% - 48px);
  }

  .audience__viewport::before,
  .audience__viewport::after {
    width: 28px;
  }

  .audience-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audience__track {
    animation-play-state: paused;
  }
}
.pricing {
  padding: 60px 0;
  background: var(--surface);
}


.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: 42px;
  align-items: start;
}

.pricing__head {
  max-width: 340px;
}

.pricing__head p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 16px;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.plan {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.plan:hover {
  transform: translateY(-5px);
  border-color: #b9cbfa;
  box-shadow: 0 18px 34px rgba(36, 87, 232, .14);
}

.plan--pro {
  border: 1.5px solid var(--primary);
  box-shadow: 0 20px 40px rgba(79, 70, 229, .12);
}

.plan-badge {
  position: absolute;
  right: 20px;
  top: 20px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.plan-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
}

.plan h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  font-family: 'Manrope', sans-serif;
}

.plan-desc {
  font-size: 11px;
  color: var(--muted);
  margin: 7px 0 0 0;
  line-height: 1.4;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 10px 0 8px 0;
}

.plan-price strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.03em;
}

.plan--pro .plan-price strong {
  color: var(--primary);
}

.price-subtext {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.plan-btn.button {
  width: 100%;
  padding: 9px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}

.plan-btn.button--primary {
  --button-color: var(--primary);
  --button-dark: #1f4dcc;
  color: #ffffff;
}

.plan-btn.button--primary:hover {
  --button-color: var(--primary-dark);
  --button-dark: #12358f;
}

.plan-btn.button--secondary {
  --button-color: #ffffff;
  --button-dark: #f0f1f4;
  border: 1px solid #d2d6dc;
  color: #4b5563;
}

.plan-btn.button--secondary:hover {
  --button-color: #f8fafc;
  --button-dark: #e9edf2;
}

.plan-divider {
  height: 1px;
  background: var(--line);
  margin: 9px 0;
}

.plan-features {
  list-style: none;
  padding: 0 0 12px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e9f8f0;
  color: #27ae68;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

@media (max-width: 1000px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing__head {
    max-width: 560px;
  }
}

@media (max-width: 800px) {
  .pricing__container {
    padding-inline: 0;
  }

  .plans {
    grid-template-columns: 1fr;
    max-width: 450px;
    width: 100%;
  }

  .plan {
    min-width: 0;
  }
}
.cta {
  padding: 60px 0 ;
      background-color: #9ab6f72b;
}

.cta-box {
  position: relative;
  height: 330px;
  min-height: 0;
  border-radius: 12px;
  background: linear-gradient(120deg, #172044 0%, #111a39 100%);
  overflow: hidden;
  padding: 12px 54px;
  color: #ffffff;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 42px rgba(15, 35, 85, .22);
  transition: transform .3s ease, box-shadow .3s ease;
}

.cta-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(15, 35, 85, .28);
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 430px;
}

.cta-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #78a0ff;
  text-transform: uppercase;
}

.cta h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin: 6px 0 8px;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.03em;
}

.cta h2 em {
  font-style: normal;
  color: #78a0ff;
}

.cta p {
  font-size: 10px;
  line-height: 1.5;
  color: #94a3b8;
  margin: 0 0 8px;
}

.cta-trust {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-trust svg {
  color: #22c55e;
}

.cta-btn.button {
  --button-color: var(--primary);
  --button-dark: #1f4dcc;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(36, 87, 232, .35);
}

.cta-btn.button:hover {
  --button-color: #5f54ec;
  --button-dark: #4b40c9;
  transform: translateY(-1px);
}

/* 3D and floating art on the right */
.cta-art {
  position: absolute;
  right: 190px;
  top: 0;
  width: 440px;
  height: 100%;
}

.cta-art__panel {
  position: absolute;
  z-index: 10;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid #e2e8f0;
  animation: cta-float 5s ease-in-out infinite;
}

.cta-art__title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1e293b;
}

.cta-art__title-row svg {
  color: #3b82f6;
}

.cta-art__title-row b {
  font-size: 13px;
  font-weight: 700;
}

.cta-art__subtext {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #22c55e;
  margin-top: 8px;
}

.cube {
  position: absolute;
  border-radius: 12px;
  transform: rotate(25deg) skewY(-10deg);
}

.cube--one {
  width: 140px;
  height: 140px;
  background: linear-gradient(150deg, #f79156, #e0703a);
  right: 50px;
  bottom: 40px;
  box-shadow: 20px 20px 0 #c25a2c;
}

.cube--two {
  width: 70px;
  height: 70px;
  background: linear-gradient(150deg, #5b89f2, #2457e8);
  right: 220px;
  bottom: 60px;
  box-shadow: 10px 10px 0 #1741b8;
}

.ring-art {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 20px solid #5b89f2;
  border-right-color: #2457e8;
  border-radius: 50%;
  right: 200px;
  top: 40px;
  transform: rotate(25deg);
}

@media (max-width: 900px) {
  .cta-box {
    padding: 48px;
    min-height: auto;
  }

  .cta-art {
    display: none;
  }
}

.cta .container {
  width: min(1200px, calc(100% - 48px));
}

@media (max-width: 600px) {
  .cta {
    padding: 40px 0 60px;
  }

  .cta-box {
    padding: 32px 24px;
  }

  .cta .container {
    width: min(1200px, calc(100% - 32px));
  }

  .cta h2 {
    font-size: clamp(25px, 8vw, 30px);
  }

  .cta-trust {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}
@keyframes cta-float {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 12px));
  }
}
.footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 24px 0 4px;
}

.footer__container {
  padding-inline: 20px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 42px;
}

.footer .logo {
  width: 96px;
  height: auto;
}

.footer p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 11px;
  max-width: 250px;
  line-height: 1.5;
}

.footer__links {
  display: flex;
  width: 520px;
  justify-content: space-between;
  gap: 0;
}

.footer__links div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 100px;
}

.footer__links b {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.footer__links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 500;
}

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

  .footer__top {
    flex-direction: column;
    gap: 32px;
  }

  .footer__links {
    width: auto;
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }
}

@media (max-width: 430px) {
  .footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
}
.home {
  position: relative;
  display: flow-root;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.home__top-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 900px;
  background:
    radial-gradient(ellipse 60% 45% at 78% 8%, rgba(36, 87, 232, .09), transparent 70%),
    radial-gradient(ellipse 50% 40% at 8% 4%, rgba(36, 87, 232, .06), transparent 70%);
  pointer-events: none;
}
.home > .hero {
  position: relative;
  z-index: 1;
}
.home main {
  position: relative;
}
.home main::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 900px;
  background: radial-gradient(circle at 78% 8%, rgba(36, 87, 232, .08), transparent 28%), radial-gradient(circle at 10% 18%, rgba(240, 139, 93, .05), transparent 24%);
  pointer-events: none;
}
.internal-page {
  min-height: 100vh;
  background: var(--surface-soft);
}

.internal-page main {
  position: relative;
  padding-bottom: 96px;
}

.internal-page__hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 96px;
  background:
    radial-gradient(circle at 80% 15%, rgba(36, 87, 232, .11), transparent 35%),
    radial-gradient(circle at 8% 20%, rgba(240, 139, 93, .07), transparent 30%);
}

.internal-page__hero::after {
  content: '';
  position: absolute;
  right: 9%;
  bottom: 34px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(36, 87, 232, .12);
  border-radius: 50%;
  pointer-events: none;
}

.internal-page__hero .container {
  position: relative;
  z-index: 1;
}

.internal-page__hero h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.internal-page__hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.internal-page__updated {
  display: inline-block;
  margin-top: 20px;
  color: var(--subtle);
  font-size: 13px;
}

.internal-page__container {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.internal-page__content {
  max-width: 920px;
  margin: 0 auto;
  padding: 52px clamp(24px, 5vw, 72px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.internal-page__content h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.internal-page__content h2:not(:first-child) {
  margin-top: 42px;
}

.internal-page__content h3 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-size: 17px;
}

.internal-page__content p,
.internal-page__content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.internal-page__content p {
  margin: 0 0 16px;
}

.internal-page__content p:last-child {
  margin-bottom: 0;
}

.internal-page__content ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.internal-page__content li + li {
  margin-top: 8px;
}

.internal-page__content strong {
  color: var(--ink);
  font-weight: 700;
}

.internal-page__content a {
  color: var(--primary);
  font-weight: 600;
}

.internal-page__content a:hover {
  color: var(--primary-dark);
}

@media (max-width: 640px) {
  .internal-page main {
    padding-bottom: 56px;
  }

  .internal-page__hero {
    padding: 82px 0 72px;
  }

  .internal-page__hero p {
    font-size: 17px;
  }

  .internal-page__container {
    margin-top: -28px;
  }

  .internal-page__content {
    padding: 34px 22px;
  }

  .internal-page__content h2 {
    font-size: 22px;
  }

  .internal-page__content p,
  .internal-page__content li {
    font-size: 15px;
  }
}
.company-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr);
  gap: 48px;
  align-items: start;
}

.company-page__quote {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--primary-soft);
  border: 1px solid rgba(36, 87, 232, .12);
  border-radius: var(--radius-md);
}

.company-page__quote span,
.company-page__cta span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.company-page__quote strong {
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  line-height: 1.3;
}

.company-page__principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.company-page__principle {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.company-page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 10px;
}

.company-page__principle h3 {
  margin-top: 18px;
}

.company-page__principle p {
  font-size: 14px;
}

.company-page__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 24px;
  background: var(--ink);
  border-radius: var(--radius-md);
}

.company-page__cta div {
  display: grid;
  gap: 8px;
}

.company-page__cta span {
  color: #9fb8ff;
}

.company-page__cta strong {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
}

.company-page__cta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 11px 15px;
  color: #fff;
  background: var(--primary);
  border-radius: 8px;
  font-size: 14px;
}

.company-page__cta a:hover {
  color: #fff;
  background: var(--primary-dark);
}

@media (max-width: 760px) {
  .company-page__intro,
  .company-page__principles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company-page__cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
.legal-page__notice {
  padding: 16px 18px;
  color: var(--muted) !important;
  background: var(--surface-soft);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 14px !important;
}

.legal-page__section + .legal-page__section {
  margin-top: 40px;
}

.legal-page__section h2 {
  margin-top: 0 !important;
  font-size: 22px;
}

.legal-page__contact {
  margin-top: 44px !important;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px !important;
}
#root {
  min-height: 100vh;
}


:root {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #20212a;
  background: #f7f7fa;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ink: #20212a;
  --muted: #737580;
  --subtle: #9a9ba5;
  --line: #e8e8ef;
  --surface: #ffffff;
  --surface-soft: #f7f7fa;
  --purple: #315eea;
  --purple-dark: #1741b8;
  --purple-soft: #edf2ff;
  --primary: #2457e8;
  --primary-dark: #1741b8;
  --primary-soft: #eaf0ff;
  --blue: #2457e8;
  --green: #35a66b;
  --orange: #ed8a55;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-sm: 0 4px 18px rgba(32, 33, 52, .05);
  --shadow-md: 0 18px 45px rgba(32, 33, 52, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface-soft);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

button,
a {
  font: inherit;
}

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

button {
  font-family: inherit;
}
