:root {
  --bg: #030303;
  --primary: #5b21b6;
  --primary-bright: #8b5cf6;
  --secondary: #d946ef;
  --accent: #10b981;
  --text-main: #ffffff;
  --text-alt: #94a3b8;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --gold: #fbbf24;
  --cursor-glow: rgba(91, 33, 182, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: default;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.5;
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(91, 33, 182, 0.5) var(--bg);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(91, 33, 182, 0.5);
  border-radius: 100px;
  border: 3px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-bright);
}

.syne-bold {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.container,
.container-full {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-full {
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.trial-unavailable-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.trial-unavailable-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.trial-unavailable-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at top right,
      rgba(139, 92, 246, 0.24),
      rgba(8, 8, 14, 0.96)),
    #07070d;
  padding: 28px 24px 22px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
}

.trial-unavailable-dialog h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
}

.trial-unavailable-dialog p {
  margin: 12px 0 18px;
  color: #d6deea;
  line-height: 1.6;
}

.trial-unavailable-subscribe {
  margin: 0;
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.trial-unavailable-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.support-desk-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-desk-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.support-desk-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-desk-modal.active .support-desk-backdrop {
  opacity: 1;
}

.support-desk-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  height: min(88vh, 840px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at top right,
      rgba(91, 33, 182, 0.2),
      rgba(8, 8, 14, 0.96)),
    #07070d;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.6);
  padding: 16px;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-desk-modal.active .support-desk-dialog {
  transform: scale(1) translateY(0);
}

.support-desk-dialog h3 {
  margin: 4px 0 10px;
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  background: linear-gradient(135deg, #fff 40%, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(109, 40, 217, 0.35));
}

.support-desk-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  line-height: 1;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transform: rotate(0deg);
  transform-origin: center center;
  transition: 0.3s;
}

.support-desk-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

.support-desk-iframe {
  width: 100%;
  height: calc(100% - 42px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 1024px) {
  .support-desk-modal {
    padding: 0;
  }

  .support-desk-dialog {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    border: 0;
    padding: 12px;
  }

  .support-desk-dialog h3 {
    margin: 6px 0 10px;
    font-size: 1rem;
  }

  .support-desk-close {
    top: 10px;
    right: 10px;
  }

  .support-desk-iframe {
    height: calc(100% - 40px);
    border-radius: 10px;
  }
}

body.modal-open {
  overflow: hidden;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  z-index: 2000;
}

#mouse-spotlight {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--cursor-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s;
}

.kinetic-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #000;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  width: 60vw;
  height: 60vw;
  filter: blur(150px);
  opacity: 0.15;
  border-radius: 50%;
}

.orb-purple {
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, var(--primary), transparent);
}

.orb-blue {
  bottom: -10%;
  left: -10%;
  background: radial-gradient(circle, #3b82f6, transparent);
}

.orb-pink {
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, var(--secondary), transparent);
  opacity: 0.1;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.neo-nav {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: 95%;
  max-width: 1200px;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition:
    top 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change:
    top, width, border-radius, background-color, box-shadow, border-color,
    padding;
}

.neo-nav.scrolled {
  top: 0;
  width: 100%;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.8);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand-glyph {
  width: 32px;
  height: 32px;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border-radius: 6px;
}

.brand-text {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -1px;
}

.nav-menu {
  display: flex;
  gap: 3rem;
}

.menu-link {
  text-decoration: none;
  color: var(--text-alt);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s;
}

.menu-link:hover,
.menu-link.active {
  color: #fff;
  text-shadow: 0 0 10px var(--primary-bright);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-icon-sign {
  display: flex;
  align-items: center;
  color: var(--text-alt);
  transition: 0.3s;
}

.nav-icon-sign:hover {
  color: #fff;
  filter: drop-shadow(0 0 8px var(--primary-bright));
}

.nav-btn-main {
  background: #fff;
  color: #000;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.nav-btn-main:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.3s;
  border-top: 1px solid var(--glass-border);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-link {
  text-decoration: none;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Syne";
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.mobile-link:last-child {
  border-bottom: none;
}

.mobile-link:hover {
  padding-left: 10px;
  color: var(--primary-bright);
}

.mobile-link.active {
  padding-left: 10px;
  color: var(--primary-bright);
  text-shadow: 0 0 10px var(--primary-bright);
}

.section-v4 {
  padding: 160px 0;
  scroll-margin-top: 100px;
}

.v4-title-center {
  text-align: center;
  margin-bottom: 6rem;
}

.sup-title {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--primary-bright);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.text-glow {
  background: linear-gradient(135deg, #fff 40%, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(109, 40, 217, 0.4));
}

.text-stroke {
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: transparent;
}

.p-card-v4::after,
.trial-box::after,
.e-feature-card::after,
.s-v4-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 1;
}

.p-card-v4:hover::after,
.trial-box:hover::after,
.e-feature-card:hover::after,
.s-v4-card:hover::after {
  animation: shine-sweep 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-v4::after,
.highlight::after {
  animation: shine-sweep 6s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes shine-sweep {
  0% {
    left: -150%;
  }

  50% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

.ios-window {
  background: #0d0d0d;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 60px 100px -20px rgba(0, 0, 0, 0.9);
  position: relative;
}

.window-bar {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-bar .dots {
  display: flex;
  gap: 6px;
  flex: 1;
}

.window-bar .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
}

.url-bar {
  background: #1a1a1a;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.window-content {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  display: block;
  filter: brightness(0.8);
}

.overlay-brand {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}

.brand-badge {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--primary-bright);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  display: inline-block;
  max-width: 100%;
  line-height: 1.2;
}

.v4-hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hero-v4 h1 {
  font-size: clamp(2rem, 10vw, 6.5rem);
  margin-bottom: 2rem;
  line-height: 0.9;
  overflow-wrap: break-word;
  width: 100%;
}

.hero-p {
  font-size: 1.1rem;
  color: var(--text-alt);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.v4-hero-note {
  font-size: 0.85rem;
  color: var(--text-alt);
  opacity: 0.7;
  font-weight: 600;
}

.hero-stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.h-stat .v {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: "Outfit";
  line-height: 1;
  display: block;
}

.h-stat .l {
  font-size: 0.8rem;
  font-weight: 700;
  color: #4b5563;
  text-transform: uppercase;
}

.engine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.e-feature-card {
  background: rgba(15, 15, 15, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 2.5rem;
  border-radius: 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 40px 100px -20px rgba(0, 0, 0, 0.5);
}

.e-feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-12px);
  border-color: var(--primary-bright);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 40px 100px -20px rgba(0, 0, 0, 0.7);
}

.e-icon {
  font-size: 2.5rem;
  color: var(--primary-bright);
  margin-bottom: 1.5rem;
  display: block;
}

.e-feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.e-feature-card p {
  font-size: 0.95rem;
  color: var(--text-alt);
  line-height: 1.6;
  opacity: 0.8;
}

.trial-v4 {
  padding: 80px 0;
}

.trial-box {
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.05), transparent),
    rgba(20, 20, 20, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trial-box .v4-badge {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  background: var(--secondary);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
}

.trial-box h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.v4-hyphen {
  display: inline;
}

.v4-forced-break {
  display: block;
}

@media (min-width: 1440px) {
  .v4-hyphen {
    display: none;
  }

  .v4-forced-break {
    display: none;
  }
}

.trial-box p {
  font-size: 1.2rem;
  color: var(--text-alt);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.trial-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.trial-subtext {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-alt);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-deck-v4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.p-card-v4 {
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid var(--glass-border);
  padding: 4.5rem 2.5rem;
  border-radius: 40px;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.p-card-v4:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 255, 255, 0.2);
}

.p-card-v4.featured-v4 {
  border-color: var(--primary);
  background: radial-gradient(circle at top right,
      rgba(91, 33, 182, 0.1),
      transparent);
}

.p-cycle {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-bright);
  margin-bottom: 1rem;
}

.p-price {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: "Outfit";
  letter-spacing: -2px;
  color: #fff;
}

.p-price span {
  font-size: 1rem;
  color: var(--text-alt);
  opacity: 0.8;
  letter-spacing: 0;
  margin-left: 4px;
}

.p-billing {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-top: 1rem;
  font-weight: 500;
}

.p-total {
  margin: 2.5rem 0;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.p-action,
.p-action-glow {
  display: block;
  text-align: center;
  padding: 1.2rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s;
}

.p-action {
  border: 1px solid var(--glass-border);
  color: #fff;
}

.p-action-glow {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 40px rgba(91, 33, 182, 0.3);
}

.price-footer-note {
  text-align: center;
  margin-top: 3rem;
  color: var(--text-alt);
  font-size: 0.8rem;
  opacity: 0.6;
}

.v4-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 100px;
}

.it-prime {
  background: rgba(5, 5, 5, 0.4);
}

.sup-title-gold {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  display: block;
}

.gradient-gold {
  background: linear-gradient(90deg, #fff 20%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.it-sub {
  max-width: 700px;
  margin: 1.5rem auto 0;
  color: var(--text-alt);
  font-size: 1.1rem;
}

.service-grid-v4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

.s-v4-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 3.5rem 2.5rem;
  border-radius: 40px;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.s-v4-card.highlight {
  border-color: var(--gold);
  background: radial-gradient(circle at top right,
      rgba(251, 191, 36, 0.05),
      transparent);
}

.v4-badge-gold {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}

.s-v4-head {
  margin-bottom: 2.5rem;
}

.s-v4-head h4 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.s-v4-price {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: "Outfit";
  color: var(--gold);
}

.s-v4-features {
  list-style: none;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.s-v4-features li {
  margin-bottom: 1rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  display: flex;
  gap: 12px;
  line-height: 1.4;
}

.s-v4-features li::before {
  content: "◈";
  color: var(--gold);
  flex-shrink: 0;
}

.s-v4-btn,
.s-v4-btn-gold {
  width: 100%;
  text-align: center;
  padding: 1.1rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s;
}

.s-v4-btn {
  border: 1px solid var(--glass-border);
  color: #fff;
}

.s-v4-btn-gold {
  background: var(--gold);
  color: #000;
}

.it-benefits-row {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid var(--glass-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.it-b-item {
  display: flex;
  gap: 25px;
  align-items: center;
}

.it-b-item .icon {
  font-size: 2rem;
  color: var(--gold);
}

.it-b-item h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #fff;
}

.it-b-item p {
  font-size: 0.95rem;
  color: var(--text-alt);
}

.bento-grid-v4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 1.5rem;
  margin-top: 4rem;
}

.bento-tile {
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tile-large {
  grid-column: span 2;
  grid-row: span 1;
}

.tile-medium {
  grid-column: span 1;
  grid-row: span 1;
}

.tile-cta {
  grid-column: span 1;
  grid-row: span 1;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  transition: 0.8s;
}

.bento-tile:hover .tile-bg {
  transform: scale(1.05);
  filter: brightness(0.6);
}

.bento-tile:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
}

.tile-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tile-content h2 {
  font-size: 3rem;
  line-height: 0.9;
  margin-bottom: 1rem;
}

.tile-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.tile-content p {
  color: var(--text-alt);
  font-size: 0.95rem;
}

.tile-link {
  text-decoration: none;
  color: var(--primary-bright);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1.5rem;
  display: inline-block;
}

.tile-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  align-self: flex-start;
  margin-bottom: 1rem;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.neo-btn-white {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #fff;
  color: #000;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 900;
  margin-top: 2rem;
}

.v4-footer {
  padding: 120px 0 60px;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 10;
}

.footer-grid-v4 {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 4rem;
  margin-bottom: 80px;
  align-items: start;
}

.logo-v4 {
  font-family: "Syne";
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 20px;
}

.f-brand-block p {
  max-width: 300px;
  color: var(--text-alt);
}

.f-nav-block h5 {
  font-size: 0.9rem;
  color: var(--text-alt);
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.f-nav-block a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1rem;
  opacity: 0.6;
  transition: 0.3s;
}

.f-nav-block a:hover {
  opacity: 1;
  transform: translateX(5px);
}

.f-social-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.f-social-block a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: #fff;
  opacity: 0.75;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    border-color 0.25s ease;
}

.f-social-block a:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.65);
}

.f-social-block svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.f-social-block svg.icon-fill {
  fill: currentColor;
  stroke: none;
}

.f-bottom-v4 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  color: #888;
  font-size: 0.9rem;
}

.f-bottom-v4 span:first-child {
  justify-self: start;
}

.f-bottom-v4 span:last-child {
  justify-self: end;
}

@media (max-width: 1024px) {
  .neo-nav {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .neo-nav {
    top: 20px;
    padding: 0.8rem 1.5rem;
  }

  .nav-menu,
  .nav-inner>.nav-btn-main {
    display: none;
  }

  .nav-actions {
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .section-v4 {
    padding: 80px 0;
  }

  .hero-v4 {
    padding-top: 160px;
  }

  .v4-hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }

  .hero-p {
    margin: 2rem auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats-row {
    justify-content: center;
  }

  .ios-window {
    max-width: 800px;
    margin: 2rem auto 0;
    width: 100%;
  }

  .engine-grid,
  .pricing-deck-v4,
  .service-grid-v4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-v4 {
    padding-top: 140px;
  }

  .hero-v4 h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .hero-stats-row {
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
  }

  .h-stat .v {
    font-size: 1.8rem;
  }

  .h-stat .l {
    font-size: 0.65rem;
  }

  .engine-grid,
  .pricing-deck-v4,
  .service-grid-v4,
  .it-benefits-row {
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  .trial-box {
    padding: 3rem 1.5rem;
  }

  .trial-box h2 {
    font-size: 2.2rem;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .p-price {
    font-size: 2.5rem;
  }

  .p-card-v4 {
    padding: 4rem 1.5rem 3rem;
  }

  .s-v4-card {
    padding: 3.5rem 1.5rem 2.5rem;
    width: 100%;
  }

  .f-bottom-v4 {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .f-bottom-v4 span:first-child,
  .f-bottom-v4 span:last-child {
    justify-self: center;
  }

  .ios-window {
    width: 100%;
    max-width: 100%;
    margin-top: 2rem;
  }

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

  .tile-large,
  .tile-medium,
  .tile-cta {
    grid-column: span 1;
    height: 350px;
  }

  .tile-content h2 {
    font-size: 2.2rem;
  }

  .tile-content {
    padding: 2rem;
  }

  .url-bar {
    display: none;
  }

  .v4-footer {
    padding: 60px 0 40px;
  }

  .footer-grid-v4 {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .f-social-block {
    justify-content: center;
  }

  .f-bottom-v4 {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .f-bottom-v4 span:first-child,
  .f-bottom-v4 span:last-child {
    justify-self: center;
  }

  .f-brand-block p {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .neo-nav .container-full {
    padding: 0;
  }

  .neo-nav {
    top: 0;
    width: 100%;
    padding: 0.65rem;
    background: rgba(0, 0, 0, 0.76);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
    transform: translate3d(-50%, 14px, 0) scaleX(0.96);
    transform-origin: center top;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition:
      transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
      border-radius 0.5s cubic-bezier(0.16, 1, 0.3, 1),
      background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
      border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, border-radius, background-color, border-color;
  }

  .neo-nav.scrolled {
    top: 0;
    width: 100%;
    padding: 0.65rem;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
    transform: translate3d(-50%, 0, 0) scaleX(1);
  }

  .nav-inner {
    gap: 0.5rem;
  }

  .nav-toggle {
    padding: 8px 6px 8px 8px;
    margin-right: 2px;
    margin-left: 0;
  }

  .nav-brand {
    gap: 8px;
    min-width: 0;
    margin-right: auto;
  }

  .brand-text {
    font-size: 1.05rem;
    letter-spacing: -0.6px;
    white-space: nowrap;
  }

  .nav-actions {
    gap: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-btn-main.btn-auth-sync {
    min-width: 138px;
    width: 138px;
    max-width: 138px;
  }
}

@media (max-width: 380px) {
  .brand-glyph {
    display: none;
  }
}

@media (min-width: 2000px) {
  .container {
    max-width: 1600px;
  }

  body {
    font-size: 1.2rem;
  }

  .hero-v4 h1 {
    font-size: 8.5rem;
  }
}

.platform-marquee {
  padding: 0 0 80px;
  position: relative;
  z-index: 10;
}

.pm-label {
  text-align: center;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 3rem;
  opacity: 1;
}

.pm-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.pm-item {
  color: var(--text-alt);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-item svg {
  width: 32px;
  height: 32px;
  display: block;
}

.pm-item:hover {
  opacity: 1;
  color: #fff;
  transform: translateY(-5px);
  filter: drop-shadow(0 0 15px var(--primary-bright));
}

/* FAQ Section */
.faq-v4 {
  background: transparent;
}

.faq-accordion-v4 {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item-v4 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item-v4:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item-v4.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-bright);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.faq-trigger-v4 {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.faq-trigger-v4 * {
  cursor: pointer;
}

.faq-icon-v4 {
  width: 20px;
  height: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--primary-bright);
}

.faq-item-v4.active .faq-icon-v4 {
  transform: rotate(180deg);
}

.faq-content-v4 {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item-v4.active .faq-content-v4 {
  max-height: 500px;
}

.faq-inner-v4 {
  padding: 0 2rem 1.5rem;
  color: var(--text-alt);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .platform-marquee {
    padding-bottom: 40px;
    margin-top: 2rem;
  }

  .pm-grid {
    gap: 2rem;
  }

  .pm-item svg {
    width: 28px;
    height: 28px;
  }
}
