/* Brand asset integration and experience polish */
.brand img {
  display: block;
  width: 170px;
  height: auto;
  object-fit: contain;
}

.site-footer .brand img { width: 184px; }

.site-header {
  transition: height .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: #fffffff2;
  box-shadow: 0 10px 34px #0b20440d;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #d8e2f0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 6px 18px #0b20440d;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 10px;
  background: #0b2044;
  transform-origin: center;
  transition: transform .25s ease, opacity .2s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; }

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  left: -330px;
  top: 20px;
  background: #8a42f621;
  filter: blur(4px);
  animation: ambientFloatLeft 9s ease-in-out infinite;
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  right: -250px;
  bottom: -80px;
  background: #ff7c451f;
  animation: ambientFloatRight 10.5s ease-in-out infinite;
  will-change: transform;
}

.hero-copy { animation: heroEnter .75s cubic-bezier(.2,.8,.2,1) both; }

.hero-visual {
  animation: visualEnter .9s .12s cubic-bezier(.2,.8,.2,1) both;
  box-shadow: 0 30px 70px #2455a51c;
}

.product-visual {
  background: linear-gradient(145deg, #f8fbff, #edf4ff);
  border-color: #d5e2f5;
  box-shadow: 0 28px 75px #345fae22;
}

.product-visual::before,
.product-visual::after { display: none; }

.product-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.product-visual picture,
.dashboard-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.product-visual:hover .product-shot { transform: scale(1.025); }

.dashboard-visual {
  padding: 0;
  background: #edf3ff;
  border-color: #c8d9f2;
  box-shadow: 0 24px 60px #224f991c;
}

.dashboard-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.dashboard-visual:hover img { transform: scale(1.018); }

.dashboard-visual::after { display: none; }

.hero-brand-symbol {
  position: absolute;
  width: 260px;
  height: 260px;
  object-fit: contain;
  right: -48px;
  bottom: -70px;
  opacity: .075;
  filter: saturate(1.2);
  transform: rotate(-8deg);
}

.dashboard-card {
  transition: transform .3s ease, box-shadow .3s ease;
}

.placeholder-art:hover .main-card {
  transform: translateY(-5px) rotate(-.4deg);
  box-shadow: 0 19px 32px #7b95bb40;
}

.placeholder-art:hover .alert-card { transform: translate(-3px,-4px); }
.placeholder-art:hover .products-card { transform: translate(3px,-5px); }
.floating-orb { animation: float 4s ease-in-out infinite; }
.orb-two { animation-delay: -1.7s; }

.feature-card,
.price-card,
.steps article {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.feature-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: #bbcdf0;
  box-shadow: 0 20px 45px #2f5eaa14;
}

.steps article:hover {
  transform: translateX(7px);
  border-color: #5577ab;
}

.feature-icon {
  background: linear-gradient(145deg,#e4ecff,#f2e5ff);
  box-shadow: inset 0 0 0 1px #fff;
}

.button-primary {
  background: linear-gradient(105deg,#2455a5 10%,#6848d5 72%,#9343e9);
  background-size: 140% 100%;
}

.button-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 14px 26px #6546d536;
}

.popular-label { background: linear-gradient(100deg,#e6efff,#f3e5ff); }

/* Consistent vertical rhythm across the landing page */
.intro {
  padding-top: 104px;
  padding-bottom: 100px;
}

.section-title { margin-bottom: 40px; }
.split-section { padding-top: 92px; padding-bottom: 92px; }
.showcase { padding-top: 104px; padding-bottom: 104px; }
.pricing { padding-top: 96px; padding-bottom: 104px; }
.pricing-head { margin-bottom: 38px; }
.final-cta { margin-bottom: 92px; }
.faq { padding-bottom: 88px; }
.faq h2 { margin-bottom: 24px; }
.faq details { padding-top: 18px; padding-bottom: 18px; }

.faq summary {
  align-items: center;
  gap: 24px;
}

.faq summary span {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: #f1f5fb;
  color: #2e61b3;
}

.faq summary span::before {
  content: "+";
  font: 700 18px/1 Manrope, sans-serif;
}

.faq details[open] summary span::before { content: "−"; }

.popular::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg,#2455a5,#8845eb,#ff7546);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg,#102b59,#2455a5 55%,#6848d5);
  justify-content: flex-start;
  gap: clamp(52px, 8vw, 108px);
  padding-top: 46px;
  padding-bottom: 46px;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 70px solid #ffffff09;
  border-radius: 50%;
  right: 45px;
  top: -150px;
}

.final-cta > * { position: relative; z-index: 1; }

.final-cta-copy {
  width: min(100%, 580px);
}

.final-cta-description {
  max-width: 510px;
  margin: 16px 0 0;
  color: #d8e6ff;
  font-size: 14px;
  line-height: 1.55;
}

.final-cta-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.final-cta-benefits li {
  position: relative;
  color: #bfd5f8;
  font-size: 12px;
  font-weight: 600;
}

.final-cta-benefits li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -12px;
  color: #7fa5df;
}
.logo-strip div span {
  position: relative;
  padding: 7px 0;
  cursor: default;
}

.logo-strip div span,
.logo-strip div span:nth-child(1),
.logo-strip div span:nth-child(3) {
  color: #667792;
  font-weight: 700;
}

.screen-placeholder::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -90px;
  bottom: -105px;
  background: linear-gradient(135deg,#8045f21c,#ff81461c);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1);
}

.js .reveal.is-visible { opacity: 1; transform: none; }
.js .feature-card:nth-child(2),
.js .price-card:nth-child(2),
.js .steps article:nth-child(2) { transition-delay: .09s; }
.js .feature-card:nth-child(3),
.js .price-card:nth-child(3),
.js .steps article:nth-child(3) { transition-delay: .18s; }

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

@keyframes visualEnter {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: none; }
}

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}

@keyframes ambientFloatLeft {
  0%, 100% { transform: translate3d(0, 18px, 0) scale(1); }
  50% { transform: translate3d(12px, -34px, 0) scale(1.035); }
}

@keyframes ambientFloatRight {
  0%, 100% { transform: translate3d(0, -14px, 0) scale(1); }
  50% { transform: translate3d(-10px, 30px, 0) scale(1.04); }
}

@media (max-width: 800px) {
  .brand img { width: 150px; }
  .site-footer .brand img { width: 170px; }
  .hero-brand-symbol { width: 210px; height: 210px; }
  .site-header.is-scrolled { height: 64px; }

  .menu-toggle { display: flex; }

  .site-header nav {
    display: flex;
    position: absolute;
    top: calc(100% + 9px);
    left: 20px;
    right: 20px;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    border: 1px solid #dce5f2;
    border-radius: 14px;
    background: #fffffff7;
    box-shadow: 0 22px 55px #0b204426;
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transform-origin: top right;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }

  .site-header.menu-open nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-header nav a {
    padding: 13px 14px;
    border-radius: 8px;
    color: #233c63;
    font-size: 15px;
  }

  .site-header nav a:hover,
  .site-header nav a:focus-visible {
    color: #2455a5;
    background: #eef4ff;
    outline: none;
  }

  .final-cta-description { max-width: 460px; }

  .hero { padding-top: 48px; padding-bottom: 58px; }
  .intro { padding-top: 72px; padding-bottom: 76px; }
  .section-title { margin-bottom: 32px; }
  .split-section { padding-top: 72px; padding-bottom: 72px; }
  .showcase { padding-top: 76px; padding-bottom: 76px; }
  .pricing { padding-top: 72px; padding-bottom: 78px; }
  .pricing-head { margin-bottom: 34px; }
  .final-cta { margin-bottom: 72px; }
  .faq { padding-bottom: 72px; }
}

@media (max-width: 460px) {
  .brand img { width: 136px; }
  .hero::before, .hero::after { display: none; }
  .site-header .header-cta { display: none; }
  .final-cta-benefits { display: grid; gap: 8px; }
  .final-cta-benefits li::before { content: "✓"; margin-right: 7px; color: #a9c9fb; }
  .final-cta-benefits li:not(:last-child)::after { display: none; }

  .hero { padding-top: 40px; padding-bottom: 50px; gap: 32px; }
  .intro { padding-top: 60px; padding-bottom: 64px; }
  .split-section { padding-top: 64px; padding-bottom: 64px; }
  .showcase { padding-top: 64px; padding-bottom: 64px; }
  .pricing { padding-top: 64px; padding-bottom: 68px; }
  .final-cta { margin-bottom: 60px; padding-top: 38px; padding-bottom: 38px; }
  .faq { padding-bottom: 60px; }
  .faq h2 { margin-bottom: 20px; }
  .faq details { padding-top: 16px; padding-bottom: 16px; }
  .faq summary { gap: 16px; font-size: 15px; }
  .faq summary span { flex-basis: 30px; width: 30px; height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy, .hero-visual, .floating-orb { animation: none !important; }
  .hero::before, .hero::after { animation: none !important; }
  .menu-toggle span, .site-header nav { transition: none !important; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .dashboard-card, .feature-card, .price-card, .steps article, .button { transition: none !important; }
}
