/* =============================================
  Webflow Pilot - Fresh Redesign
  ============================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0a0d14;
  --surface: #0f1320;
  --card: #131827;
  --line: rgba(255, 255, 255, 0.07);
  --line-hi: rgba(255, 255, 255, 0.13);

  --txt: #e8ecff;
  --txt-2: rgba(232, 236, 255, 0.55);
  --txt-3: rgba(232, 236, 255, 0.28);

  --blue: #4f62ff;
  --purple: #9b6dff;
  --rose: #f471b5;
  --green: #34d399;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --r: 14px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--ink);
  color: var(--txt);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── NAV ── */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 20px 24px;
  pointer-events: none;
}

.nav {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 19, 32, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--line-hi);
  border-radius: 100px;
  padding: 8px 8px 8px 20px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.4s;
  width: 100%;
  max-width: 780px;
}
.nav:hover {
  box-shadow:
    0 12px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--txt);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
  padding: 0 8px;
}
.nav__links a {
  display: inline-flex;
  align-items: center;
  color: var(--txt-2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.1;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  transition:
    color 0.15s,
    background 0.15s;
}
.nav__links a:hover {
  color: var(--txt);
  background: rgba(255, 255, 255, 0.07);
}
.nav__links a.active {
  color: var(--txt);
  background: rgba(255, 255, 255, 0.07);
}

.hero__meta-link {
  color: var(--txt-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 236, 255, 0.2);
  transition:
    color 0.15s,
    border-color 0.15s;
}
.hero__meta-link:hover {
  color: var(--txt);
  border-color: var(--txt-2);
}

.nav__cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--blue);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s var(--ease),
    box-shadow 0.2s;
  white-space: nowrap;
}
.nav__cta:hover {
  background: #6070ff;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(79, 98, 255, 0.45);
}
.nav__cta:active {
  transform: translateY(0);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-hi);
  border-radius: 100px;
  padding: 10px 12px;
  cursor: pointer;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--txt-2);
  border-radius: 2px;
}

@media (max-width: 820px) {
  .nav {
    padding: 8px;
  }
  .nav__logo {
    font-size: 14px;
    gap: 8px;
  }
  .nav__links {
    padding: 0 6px;
  }
  .nav__links a {
    font-size: 12.5px;
    padding: 6px 10px;
  }
  .nav__cta {
    padding: 9px 16px;
    font-size: 13px;
  }
}

/* DRAWER */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: var(--surface);
  border-left: 1px solid var(--line-hi);
  z-index: 300;
  padding: 64px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.drawer.open {
  transform: translateX(0);
}

.drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-hi);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--txt-2);
}
.drawer__link {
  display: block;
  color: var(--txt-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.15s;
}
.drawer__link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--txt);
}
.drawer__cta {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer__overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ══════════════════════════════════════════
   SECTION BACKGROUND SYSTEM
   Each section gets its own canvas.
   .sb = section background
   ══════════════════════════════════════════ */

/* Base canvas */
.sb {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Content sits above the canvas */
.hero > .container,
.benefits > .container,
.faq > .container,
.footer > .container {
  position: relative;
  z-index: 1;
}

/* Shared blob base */
.sb__blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

/* Fade overlays for smooth section transitions */
.sb__fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 220px;
  z-index: 5;
}
.sb__fade--top {
  top: 0;
  background: linear-gradient(to bottom, var(--ink) 0%, transparent 100%);
}
.sb__fade--bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--ink) 0%, transparent 100%);
}

/* ── HERO canvas - Blue / Purple dominant ── */
.sb--hero .sb__aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 120% 80% at 10% 20%,
      rgba(79, 98, 255, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 80% 70% at 90% 60%,
      rgba(155, 109, 255, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 50% at 50% 95%,
      rgba(244, 113, 181, 0.07) 0%,
      transparent 60%
    );
  animation: hero-aurora 18s ease-in-out infinite alternate;
}
@keyframes hero-aurora {
  0% {
    opacity: 0.7;
    transform: scale(1) translateY(0);
  }
  40% {
    opacity: 1;
    transform: scale(1.06) translateY(-24px);
  }
  100% {
    opacity: 0.85;
    transform: scale(1.02) translateY(12px);
  }
}

.sb--hero .sb__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(
    ellipse 100% 90% at 55% 40%,
    black 15%,
    transparent 75%
  );
  mask-image: radial-gradient(
    ellipse 100% 90% at 55% 40%,
    black 15%,
    transparent 75%
  );
  animation: mesh-drift 50s linear infinite;
}
@keyframes mesh-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 48px 48px;
  }
}

.sb--hero .sb__grain {
  position: absolute;
  inset: 0;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.sb--hero .sb__blob--a {
  width: min(820px, 85vw);
  height: min(820px, 85vw);
  background: radial-gradient(
    circle,
    rgba(79, 98, 255, 0.26) 0%,
    transparent 65%
  );
  filter: blur(90px);
  top: -30%;
  left: -18%;
  animation: hero-a 26s ease-in-out infinite;
}
.sb--hero .sb__blob--b {
  width: min(620px, 65vw);
  height: min(620px, 65vw);
  background: radial-gradient(
    circle,
    rgba(155, 109, 255, 0.18) 0%,
    transparent 65%
  );
  filter: blur(80px);
  top: 5%;
  right: -12%;
  animation: hero-b 32s ease-in-out infinite;
}
.sb--hero .sb__blob--c {
  width: min(480px, 50vw);
  height: min(480px, 50vw);
  background: radial-gradient(
    circle,
    rgba(244, 113, 181, 0.12) 0%,
    transparent 65%
  );
  filter: blur(70px);
  bottom: 10%;
  left: 35%;
  animation: hero-c 21s ease-in-out infinite;
}

@keyframes hero-a {
  0% {
    transform: translate(0, 0) scale(1);
  }
  20% {
    transform: translate(60px, -50px) scale(1.08);
  }
  50% {
    transform: translate(20px, 40px) scale(0.94);
  }
  80% {
    transform: translate(-40px, -20px) scale(1.05);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes hero-b {
  0% {
    transform: translate(0, 0) scale(1);
  }
  30% {
    transform: translate(-50px, 40px) scale(1.07);
  }
  65% {
    transform: translate(30px, -60px) scale(0.93);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes hero-c {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
  35% {
    transform: translate(40px, -35px) scale(1.1);
    opacity: 1;
  }
  70% {
    transform: translate(-25px, 25px) scale(0.96);
    opacity: 0.7;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
}

/* ── BENEFITS canvas - Purple / Teal dominant ── */
.sb--benefits .sb__blob--a {
  width: min(700px, 75vw);
  height: min(700px, 75vw);
  background: radial-gradient(
    circle,
    rgba(155, 109, 255, 0.2) 0%,
    transparent 65%
  );
  filter: blur(100px);
  top: -15%;
  right: -10%;
  animation: ben-a 28s ease-in-out infinite;
}
.sb--benefits .sb__blob--b {
  width: min(550px, 60vw);
  height: min(550px, 60vw);
  background: radial-gradient(
    circle,
    rgba(52, 211, 153, 0.12) 0%,
    transparent 65%
  );
  filter: blur(90px);
  bottom: 5%;
  left: -8%;
  animation: ben-b 22s ease-in-out infinite;
}
.sb--benefits .sb__blob--c {
  width: min(400px, 45vw);
  height: min(400px, 45vw);
  background: radial-gradient(
    circle,
    rgba(79, 98, 255, 0.14) 0%,
    transparent 65%
  );
  filter: blur(80px);
  top: 40%;
  left: 40%;
  animation: ben-c 18s ease-in-out infinite;
}

/* Shimmer sweep */
.sb--benefits .sb__shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(155, 109, 255, 0.04) 50%,
    transparent 60%
  );
  animation: shimmer-sweep 8s ease-in-out infinite;
}
@keyframes shimmer-sweep {
  0% {
    left: -60%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: 140%;
    opacity: 0;
  }
}

@keyframes ben-a {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-55px, 45px) scale(1.09);
  }
  55% {
    transform: translate(35px, -40px) scale(0.93);
  }
  80% {
    transform: translate(-20px, 20px) scale(1.04);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes ben-b {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  40% {
    transform: translate(50px, -30px) scale(1.1);
    opacity: 1;
  }
  75% {
    transform: translate(-30px, 40px) scale(0.94);
    opacity: 0.7;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
}
@keyframes ben-c {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-40px, -40px) scale(1.12);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* ── FAQ canvas - Rose / Blue warm tones ── */
.sb--faq .sb__blob--a {
  width: min(650px, 70vw);
  height: min(650px, 70vw);
  background: radial-gradient(
    circle,
    rgba(244, 113, 181, 0.16) 0%,
    transparent 65%
  );
  filter: blur(100px);
  top: -10%;
  left: -12%;
  animation: faq-a 24s ease-in-out infinite;
}
.sb--faq .sb__blob--b {
  width: min(500px, 55vw);
  height: min(500px, 55vw);
  background: radial-gradient(
    circle,
    rgba(79, 98, 255, 0.16) 0%,
    transparent 65%
  );
  filter: blur(90px);
  bottom: 0%;
  right: -8%;
  animation: faq-b 30s ease-in-out infinite;
}
.sb--faq .sb__blob--c {
  width: min(380px, 40vw);
  height: min(380px, 40vw);
  background: radial-gradient(
    circle,
    rgba(155, 109, 255, 0.1) 0%,
    transparent 65%
  );
  filter: blur(80px);
  top: 45%;
  left: 45%;
  animation: faq-c 19s ease-in-out infinite;
}

/* Radial spotlight pulse */
.sb--faq .sb__spotlight {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 90vw);
  height: min(900px, 90vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 113, 181, 0.04) 0%,
    transparent 60%
  );
  animation: spotlight-pulse 6s ease-in-out infinite alternate;
}
@keyframes spotlight-pulse {
  from {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.5;
  }
  to {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

@keyframes faq-a {
  0% {
    transform: translate(0, 0) scale(1);
  }
  30% {
    transform: translate(50px, -45px) scale(1.08);
  }
  60% {
    transform: translate(-30px, 35px) scale(0.95);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes faq-b {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
  35% {
    transform: translate(-45px, -35px) scale(1.07);
    opacity: 1;
  }
  70% {
    transform: translate(30px, 30px) scale(0.94);
    opacity: 0.8;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
}
@keyframes faq-c {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(35px, 35px) scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* ── FOOTER canvas - Deep blue, minimal ── */
.sb--footer .sb__blob--a {
  width: min(700px, 80vw);
  height: min(400px, 50vw);
  background: radial-gradient(
    ellipse,
    rgba(79, 98, 255, 0.12) 0%,
    transparent 65%
  );
  filter: blur(100px);
  bottom: -20%;
  left: -5%;
  border-radius: 50%;
  animation: foot-a 30s ease-in-out infinite;
}
.sb--footer .sb__blob--b {
  width: min(500px, 55vw);
  height: min(350px, 40vw);
  background: radial-gradient(
    ellipse,
    rgba(155, 109, 255, 0.08) 0%,
    transparent 65%
  );
  filter: blur(90px);
  bottom: -10%;
  right: -5%;
  border-radius: 50%;
  animation: foot-b 24s ease-in-out infinite;
}
@keyframes foot-a {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(40px, -20px) scale(1.08);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
}
@keyframes foot-b {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-30px, -15px) scale(1.06);
    opacity: 0.9;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 100px;
  display: flex;
  align-items: center;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 72px;
  align-items: center;
  width: 100%;
}

/* Tag */
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #a5b4fc;
  background: rgba(79, 98, 255, 0.1);
  border: 1px solid rgba(79, 98, 255, 0.25);
  padding: 5px 14px 5px 10px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.tag__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(79, 98, 255, 0.6);
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 98, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(79, 98, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 98, 255, 0);
  }
}

/* Headline uses Instrument Serif for the italic */
.hero__h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
}
.hero__h1 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  background: linear-gradient(
    130deg,
    #7b8fff 0%,
    var(--purple) 40%,
    var(--rose) 70%,
    #7b8fff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s linear infinite;
}
@keyframes gradient-shift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero__body {
  font-size: 17px;
  line-height: 1.78;
  color: var(--txt-2);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero__body strong {
  color: var(--txt);
  font-weight: 600;
}

.hero__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--txt-2);
}
.hero__checks svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__avatars {
  display: flex;
}
.av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  margin-right: -8px;
}
.hero__meta p {
  font-size: 13px;
  color: var(--txt-3);
  padding-left: 14px;
  line-height: 1.5;
}
.hero__meta p strong {
  color: var(--txt-2);
  font-weight: 600;
}

/* FORM CARD */
.hero__right {
  position: relative;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--line-hi);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 32px 64px rgba(0, 0, 0, 0.5),
    0 0 120px rgba(79, 98, 255, 0.08);
  animation: form-in 1s 0.3s var(--ease) both;
}
@keyframes form-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form-card__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--line);
}
.form-card__dots {
  display: flex;
  gap: 6px;
}
.form-card__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  font-style: normal;
}
.form-card__label {
  flex: 1;
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--txt-3);
  letter-spacing: 0.04em;
}
.form-card__live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.04em;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: ring 1.8s ease-out infinite;
}

/* ── APPLICATION FORM ── */
.app-form__progress {
  height: 2px;
  background: var(--line-hi);
}
.app-form__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  transition: width 0.5s var(--ease);
}

.app-form__step {
  display: none;
  padding: 28px 28px 32px;
}
.app-form__step.active {
  display: block;
}

.app-form__step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.app-form__step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-3);
  margin-bottom: 6px;
}
.app-form__step-header .app-form__step-label {
  margin-bottom: 0;
}

.app-form__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--txt);
  margin-bottom: 22px;
}

.app-form__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--txt-3);
  font-size: 12px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.app-form__back:hover {
  color: var(--txt-2);
}

.app-form__field {
  margin-bottom: 14px;
}
.app-form__field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--txt-2);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.app-form__opt {
  font-weight: 400;
  color: var(--txt-3);
}

.app-form__field input,
.app-form__field select,
.app-form__field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-hi);
  border-radius: 10px;
  color: var(--txt);
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.app-form__field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(232,236,255,0.3)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.app-form__field select option {
  background: var(--card);
  color: var(--txt);
}
.app-form__field textarea {
  resize: none;
  line-height: 1.6;
}
.app-form__field input[type="number"]::-webkit-inner-spin-button,
.app-form__field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.app-form__field input[type="number"] {
  -moz-appearance: textfield;
}

.app-form__field input:focus,
.app-form__field select:focus,
.app-form__field textarea:focus {
  border-color: rgba(79, 98, 255, 0.6);
  background: rgba(79, 98, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(79, 98, 255, 0.12);
}
.app-form__field input.error,
.app-form__field select.error {
  border-color: rgba(244, 113, 181, 0.6);
  box-shadow: 0 0 0 3px rgba(244, 113, 181, 0.1);
}
.app-form__field input::placeholder,
.app-form__field textarea::placeholder {
  color: var(--txt-3);
}

.app-form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.app-form__chip {
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-hi);
  border-radius: 100px;
  color: var(--txt-2);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
}
.app-form__chip:hover {
  border-color: rgba(79, 98, 255, 0.4);
  color: var(--txt);
}
.app-form__chip.selected {
  background: rgba(79, 98, 255, 0.15);
  border-color: rgba(79, 98, 255, 0.6);
  color: #a5b4fc;
}
.app-form__chip.error {
  border-color: rgba(244, 113, 181, 0.6);
}

.app-form__conditional {
  display: none;
}
.app-form__conditional.visible {
  display: block;
}

.app-form__btn {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 20px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s var(--ease),
    box-shadow 0.2s;
}
.app-form__btn:hover {
  background: #6070ff;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(79, 98, 255, 0.4);
}
.app-form__btn:active {
  transform: translateY(0);
}
.app-form__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.app-form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 28px;
  gap: 14px;
}
.app-form__success.active {
  display: flex;
}
.app-form__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.app-form__success h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.app-form__success p {
  font-size: 14px;
  color: var(--txt-2);
  line-height: 1.7;
  max-width: 280px;
}

/* ── BENEFITS ── */
.benefits {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.benefits__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 40px;
  display: block;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.benefit {
  background: var(--ink);
  padding: 36px 32px;
  transition: background 0.25s;
  position: relative;
}
.benefit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 98, 255, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}
.benefit:hover {
  background: var(--surface);
}
.benefit:hover::after {
  opacity: 1;
}

.benefit__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(79, 98, 255, 0.1);
  border: 1px solid rgba(79, 98, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7b8fff;
  margin-bottom: 18px;
}

.benefit h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.benefit p {
  font-size: 13.5px;
  color: var(--txt-2);
  line-height: 1.75;
}

/* ── EXAMPLES ── */
.examples {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

.examples__title {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}

.examples__intro {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--txt-2);
  margin-bottom: 30px;
}

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

.example-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(19, 24, 39, 0.8);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s,
    box-shadow 0.25s;
}

.example-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 98, 255, 0.35);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.example-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.example-card__preview {
  height: 176px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.example-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.02);
}

.example-card__preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 13, 20, 0.2), transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.example-card__preview::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  z-index: 2;
  pointer-events: none;
}

.example-card__preview--a {
  background:
    radial-gradient(
      120% 90% at 10% 10%,
      rgba(79, 98, 255, 0.4),
      transparent 60%
    ),
    linear-gradient(145deg, #0f1320, #171d2d);
}

.example-card__preview--b {
  background:
    radial-gradient(
      120% 90% at 85% 15%,
      rgba(52, 211, 153, 0.35),
      transparent 60%
    ),
    linear-gradient(145deg, #101723, #162030);
}

.example-card__preview--c {
  background:
    radial-gradient(
      120% 90% at 15% 90%,
      rgba(244, 113, 181, 0.3),
      transparent 60%
    ),
    linear-gradient(145deg, #111427, #1a1f36);
}

.example-card__preview--d {
  background:
    radial-gradient(
      110% 90% at 85% 85%,
      rgba(255, 190, 92, 0.22),
      transparent 62%
    ),
    radial-gradient(
      120% 90% at 10% 15%,
      rgba(79, 98, 255, 0.28),
      transparent 58%
    ),
    linear-gradient(145deg, #131726, #1f2538);
}

.example-card__preview--e {
  background:
    radial-gradient(
      120% 90% at 8% 12%,
      rgba(96, 239, 255, 0.22),
      transparent 58%
    ),
    linear-gradient(145deg, #101826, #1a2a38);
}

.example-card__preview--f {
  background:
    radial-gradient(
      120% 90% at 85% 18%,
      rgba(244, 113, 181, 0.24),
      transparent 60%
    ),
    linear-gradient(145deg, #161524, #262133);
}

.example-card__preview--g {
  background:
    radial-gradient(
      120% 90% at 15% 88%,
      rgba(52, 211, 153, 0.22),
      transparent 60%
    ),
    linear-gradient(145deg, #112019, #1a3128);
}

.example-card__preview--h {
  background:
    radial-gradient(
      120% 90% at 85% 82%,
      rgba(79, 98, 255, 0.25),
      transparent 62%
    ),
    linear-gradient(145deg, #12192a, #1d2740);
}

.example-card__preview--i {
  background:
    radial-gradient(
      120% 90% at 12% 16%,
      rgba(255, 190, 92, 0.18),
      transparent 58%
    ),
    linear-gradient(145deg, #1a1a26, #2a2236);
}

.example-card__body {
  padding: 18px 18px 20px;
}

.example-card__body h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.example-card__body p {
  color: var(--txt-2);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.example-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #a5b4fc;
  background: rgba(79, 98, 255, 0.12);
  border: 1px solid rgba(79, 98, 255, 0.25);
  border-radius: 100px;
  padding: 5px 10px;
}

.example-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── PARTNERS ── */
.partners {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

.partners__inner {
  max-width: 980px;
}

.partners__title {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}

.partners__body {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--txt-2);
  margin-bottom: 28px;
}

.partners__card {
  border: 1px solid var(--line);
  background: linear-gradient(
    160deg,
    rgba(19, 24, 39, 0.92),
    rgba(15, 19, 32, 0.92)
  );
  border-radius: 18px;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.partners__list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.partners__list li {
  color: var(--txt-2);
  font-size: 14.5px;
  line-height: 1.65;
  position: relative;
  padding-left: 18px;
}

.partners__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.partners__link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 100px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    transform 0.2s var(--ease),
    background 0.2s,
    box-shadow 0.2s;
}

.partners__link:hover {
  background: #6070ff;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(79, 98, 255, 0.35);
}

.partners__link:active {
  transform: translateY(0);
}

/* ── FAQ ── */
.faq {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
.faq__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.faq__left {
  position: sticky;
  top: 120px;
}

.faq__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  display: inline-block;
  padding-right: 0.12em;
  overflow: visible;
  margin-bottom: 16px;
}
.faq__title em {
  font-family: "Instrument Serif", Georgia, serif;
  display: inline-block;
  padding-right: 0.08em;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(130deg, #7b8fff, var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq__hint {
  font-size: 14px;
  color: var(--txt-2);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 280px;
}
.faq__btn {
  margin-top: 4px;
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq__item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.faq__item:first-child {
  border-top: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  background: none;
  border: none;
  color: var(--txt);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}
.faq__q:hover {
  color: #fff;
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--txt-3);
  transition: transform 0.35s var(--ease);
}
.faq__item.open .faq__chevron {
  transform: rotate(180deg);
  color: var(--blue);
}
.faq__item.open .faq__q {
  color: #fff;
}

.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__item.open .faq__body {
  max-height: 160px;
}
.faq__body p {
  font-size: 14px;
  color: var(--txt-2);
  line-height: 1.8;
  padding-bottom: 20px;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    filter 0.75s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.on {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Hero entrance animations */
.hero__tag {
  animation: up 0.8s 0.05s var(--ease) both;
}
.hero__h1 {
  animation: up 0.9s 0.15s var(--ease) both;
}
.hero__body {
  animation: up 0.8s 0.25s var(--ease) both;
}
.hero__checks {
  animation: up 0.8s 0.35s var(--ease) both;
}
.hero__meta {
  animation: up 0.8s 0.45s var(--ease) both;
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ── FOOTER ── */
/* ── CONTACT ── */
.contact {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--txt);
  margin: 14px 0 20px;
}

.contact__title em {
  display: inline-block;
  font-style: italic;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact__sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--txt-2);
  max-width: 440px;
}

.contact__right {
  display: flex;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--txt-2);
}

.contact__input {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--txt);
  font-size: 15px;
  font-family: inherit;
  padding: 12px 16px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  resize: none;
  width: 100%;
  box-sizing: border-box;
}

.contact__input::placeholder {
  color: var(--txt-3);
}

.contact__input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 18%, transparent);
}

.contact__textarea {
  min-height: 140px;
}

.contact__submit {
  align-self: flex-start;
  margin-top: 4px;
}

.contact__form--submitted .contact__field,
.contact__form--submitted .contact__submit {
  display: none;
}

.contact__form--submitted {
  min-height: 320px;
  align-items: center;
  justify-content: center;
}

.contact__success {
  font-size: 14px;
  color: var(--green);
  min-height: 1.4em;
  margin: 0;
}

.contact__form--submitted .contact__success {
  position: relative;
  width: min(100%, 400px);
  min-height: auto;
  margin: 0 auto;
  padding: 24px 24px 24px 92px;
  border: 1px solid rgba(72, 239, 181, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(
      circle at top left,
      rgba(72, 239, 181, 0.12),
      transparent 48%
    ),
    linear-gradient(180deg, rgba(10, 24, 27, 0.94), rgba(8, 18, 23, 0.9));
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(72, 239, 181, 0.05);
  color: #7ef2c9;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  text-align: left;
  overflow: hidden;
  animation: contact-success-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact__form--submitted .contact__success::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 56px;
  height: 56px;
  margin: 0;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4.2 4.2L19 7.5' stroke='%23ebfff7' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      center/24px 24px no-repeat,
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.2),
      transparent 35%
    ),
    linear-gradient(135deg, rgba(72, 239, 181, 0.32), rgba(16, 185, 129, 0.12));
  border: 1px solid rgba(72, 239, 181, 0.3);
  box-shadow:
    0 12px 32px rgba(16, 185, 129, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 999px rgba(0, 0, 0, 0);
  overflow: hidden;
  transform: translateY(-50%) scale(0.82);
  animation: contact-success-badge 0.7s 0.16s cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}

.contact__form--submitted .contact__success::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 45%,
    transparent 62%
  );
  transform: translateX(-140%);
  animation: contact-success-sheen 1.2s 0.22s ease-out both;
  pointer-events: none;
}

@keyframes contact-success-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes contact-success-badge {
  from {
    transform: translateY(-50%) scale(0.82);
  }
  68% {
    transform: translateY(-50%) scale(1.06);
  }
  to {
    transform: translateY(-50%) scale(1);
  }
}

@keyframes contact-success-sheen {
  from {
    transform: translateX(-140%);
  }
  to {
    transform: translateX(140%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact__form--submitted .contact__success,
  .contact__form--submitted .contact__success::before,
  .contact__form--submitted .contact__success::after {
    animation: none;
  }

  .contact__form--submitted .contact__success::before {
    transform: translateY(-50%) scale(1);
  }
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--txt);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.footer__tagline {
  font-size: 13px;
  color: var(--txt-3);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 240px;
}
.footer__contact {
  font-size: 13px;
  font-weight: 500;
  color: var(--txt-2);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__contact:hover {
  color: var(--txt);
}

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

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-3);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 13.5px;
  color: var(--txt-2);
  text-decoration: none;
  transition: color 0.15s;
  width: fit-content;
}
.footer__col a:hover {
  color: var(--txt);
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.footer__bottom-inner {
  @media (max-width: 480px) {
    .nav-wrap {
      padding: 14px 16px;
    }
    .nav {
      padding: 7px 7px 7px 14px;
    }
    .nav__logo span {
      font-size: 14px;
    }
    .nav__logo img {
      width: 22px;
      height: 22px;
    }

    .footer__inner {
      gap: 36px;
      padding-top: 40px;
      padding-bottom: 40px;
    }
    .footer__cols {
      grid-template-columns: 1fr;
    }
    .footer__bottom-inner {
      gap: 12px;
    }
  }
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p {
  font-size: 13px;
  color: var(--txt-3);
}
.footer__bottom p a {
  color: var(--txt-2);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__bottom p a:hover {
  color: var(--txt);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__social a {
  color: var(--txt-3);
  text-decoration: none;
  transition: color 0.15s;
  display: flex;
}
.footer__social a:hover {
  color: var(--txt-2);
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  .hero__checks li {
    justify-content: center;
  }
  .hero__meta {
    justify-content: center;
  }
  .hero__body {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__tag {
    justify-content: center;
  }

  .faq__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq__left {
    position: static;
  }
  .faq__hint {
    max-width: 100%;
  }
  .benefits__grid {
    grid-template-columns: 1fr 1fr;
  }
  .examples__grid {
    grid-template-columns: 1fr 1fr;
  }
  .partners__card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav__links {
    display: none;
  }
  .nav > .nav__cta {
    display: none;
  }
  .nav {
    padding: 8px 12px 8px 16px;
  }
  .nav__burger {
    display: flex;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 110px 0 80px;
  }
  .benefits {
    padding: 80px 0;
  }
  .examples {
    padding: 80px 0;
  }
  .examples__grid {
    grid-template-columns: 1fr;
  }
  .partners {
    padding: 80px 0;
  }
  .faq {
    padding: 80px 0;
  }
  .contact {
    padding: 80px 0;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__inner {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 36px;
  }
  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer__bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-wrap {
    padding: 14px 16px;
  }
  .nav {
    padding: 7px 10px 7px 14px;
  }
  .nav__logo {
    gap: 7px;
  }
  .nav__logo span {
    font-size: 14px;
    line-height: 1;
  }
  .nav__logo img {
    width: 22px;
    height: 22px;
  }
  .nav__burger {
    padding: 9px 11px;
  }

  .footer__inner {
    gap: 36px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer__cols {
    grid-template-columns: 1fr;
  }
  .footer__bottom-inner {
    gap: 12px;
  }
}

/* ══════════════════════════════════════════════════
   DYNAMIC ANIMATION SYSTEM
   ══════════════════════════════════════════════════ */

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--rose));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  transition: transform 0.1s linear;
}

/* ── Custom cursor ── */
.cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(79, 98, 255, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s var(--ease),
    height 0.25s var(--ease),
    border-color 0.25s,
    background 0.25s,
    opacity 0.3s;
}
.cursor.hover {
  width: 56px;
  height: 56px;
  background: rgba(79, 98, 255, 0.08);
  border-color: rgba(155, 109, 255, 0.9);
}
.cursor.clicking {
  width: 20px;
  height: 20px;
  background: rgba(79, 98, 255, 0.25);
}
.cursor__dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 8px rgba(79, 98, 255, 0.9),
    0 0 20px rgba(79, 98, 255, 0.4);
  transition: transform 0.05s;
}
.cursor__trail {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9996;
  transform: translate(-50%, -50%);
  animation: trail-fade 0.5s ease forwards;
}
@keyframes trail-fade {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1);
  }
}

/* ── Morphing blobs - add morph to existing position animations ── */
@keyframes morph-1 {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  50% {
    border-radius: 50% 60% 30% 40% / 40% 50% 60% 50%;
  }
  75% {
    border-radius: 70% 30% 50% 60% / 30% 70% 40% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}
@keyframes morph-2 {
  0% {
    border-radius: 40% 60% 60% 40% / 70% 30% 50% 50%;
  }
  33% {
    border-radius: 60% 40% 40% 60% / 30% 70% 60% 40%;
  }
  66% {
    border-radius: 50% 50% 70% 30% / 50% 50% 30% 70%;
  }
  100% {
    border-radius: 40% 60% 60% 40% / 70% 30% 50% 50%;
  }
}
@keyframes morph-3 {
  0% {
    border-radius: 70% 30% 40% 60% / 40% 60% 50% 60%;
  }
  50% {
    border-radius: 30% 70% 60% 40% / 60% 40% 70% 30%;
  }
  100% {
    border-radius: 70% 30% 40% 60% / 40% 60% 50% 60%;
  }
}

.sb--hero .sb__blob--a {
  animation:
    hero-a 26s ease-in-out infinite,
    morph-1 11s ease-in-out infinite;
}
.sb--hero .sb__blob--b {
  animation:
    hero-b 32s ease-in-out infinite,
    morph-2 15s ease-in-out infinite;
}
.sb--hero .sb__blob--c {
  animation:
    hero-c 21s ease-in-out infinite,
    morph-3 9s ease-in-out infinite;
}
.sb--benefits .sb__blob--a {
  animation:
    ben-a 28s ease-in-out infinite,
    morph-2 13s ease-in-out infinite;
}
.sb--benefits .sb__blob--b {
  animation:
    ben-b 22s ease-in-out infinite,
    morph-1 10s ease-in-out infinite;
}
.sb--benefits .sb__blob--c {
  animation:
    ben-c 18s ease-in-out infinite,
    morph-3 8s ease-in-out infinite;
}
.sb--faq .sb__blob--a {
  animation:
    faq-a 24s ease-in-out infinite,
    morph-3 12s ease-in-out infinite;
}
.sb--faq .sb__blob--b {
  animation:
    faq-b 30s ease-in-out infinite,
    morph-1 10s ease-in-out infinite;
}
.sb--faq .sb__blob--c {
  animation:
    faq-c 19s ease-in-out infinite,
    morph-2 9s ease-in-out infinite;
}

/* ── Holographic form card border ── */
.form-card {
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(
    130deg,
    rgba(79, 98, 255, 0.5),
    rgba(155, 109, 255, 0.5),
    rgba(244, 113, 181, 0.4),
    rgba(79, 98, 255, 0.5)
  );
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
  animation: holo-shift 4s ease-in-out infinite;
}
.form-card:hover::before {
  opacity: 0;
}
@keyframes holo-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ── Neon glow behind CTA buttons ── */
.nav__cta {
  position: relative;
  isolation: isolate;
}
.nav__cta::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--purple),
    var(--rose),
    var(--blue)
  );
  background-size: 300% auto;
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  animation: neon-sweep 3s linear infinite;
  transition: opacity 0.3s;
}
.nav__cta:hover::after {
  opacity: 0.6;
}
@keyframes neon-sweep {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 300% center;
  }
}

/* ── 3D benefit cards ── */
.benefit {
  transform-style: preserve-3d;
  transition:
    background 0.25s,
    transform 0.12s ease-out,
    box-shadow 0.25s;
  will-change: transform;
}
.benefit__icon {
  transition: transform 0.3s var(--ease);
}
.benefit:hover .benefit__icon {
  transform: translateZ(12px) scale(1.15) rotate(-5deg);
}

/* ── Click ripple ── */
.click-ripple {
  position: fixed;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(79, 98, 255, 0.12);
  border: 1px solid rgba(79, 98, 255, 0.25);
  pointer-events: none;
  z-index: 9995;
  transform: translate(-50%, -50%);
  animation: click-ripple-out 0.7s ease-out forwards;
}
@keyframes click-ripple-out {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 180px;
    height: 180px;
    opacity: 0;
  }
}

/* ── Particle burst ── */
.particle {
  position: fixed;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9994;
  animation: particle-burst 0.9s cubic-bezier(0, 0.9, 0.57, 1) forwards;
}
@keyframes particle-burst {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--dx), var(--dy)) scale(0.1);
    opacity: 0;
  }
}

/* ── Floating hero particles ── */
.float-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: float-rise linear forwards;
}
@keyframes float-rise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-110vh) translateX(var(--drift, 0px)) scale(0.2);
    opacity: 0;
  }
}

/* ── Text scramble ── */
.scramble-char {
  color: var(--blue);
  opacity: 0.6;
  font-family: monospace;
}

/* ── FAQ question ripple ── */
.faq__q {
  position: relative;
  overflow: hidden;
}
.faq-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(244, 113, 181, 0.08);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: faq-ripple-out 0.7s ease-out forwards;
}
@keyframes faq-ripple-out {
  to {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

/* ── Counter number animation ── */
.hero__meta strong.counting {
  color: var(--blue);
}

/* ── Floating label on form inputs ── */
.app-form__field input:focus + label,
.app-form__field input:not(:placeholder-shown) + label {
  transform: translateY(-22px) scale(0.85);
  color: var(--blue);
}

/* ── Spotlight cursor in FAQ ── */
.sb--faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 400px at var(--mx, 50%) var(--my, 50%),
    rgba(244, 113, 181, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  transition: background 0.05s;
}
