/* Design system: component + utility stylesheet.
 * Pair with a theme file (theme-new.css or theme-current.css).
 * Plain CSS with custom properties only.
 */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface);
}

:root {
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --navbar-height: 72px;
}

@media (max-width: 1024px) {
  :root {
    --navbar-height: 64px;
  }
}

body {
  font-family: var(--font-base), system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  padding-top: var(--navbar-height);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--accent);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.font-mono {
  font-family: var(--font-mono);
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.glass-card {
  background: var(--glass-card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-card-border);
}

.glass-strong {
  background: rgba(var(--accent-rgb), 0.08);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-warm {
  background: var(--gradient-text-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-purple {
  box-shadow:
    0 0 40px rgba(var(--accent-rgb), 0.3),
    0 0 80px rgba(var(--accent-rgb), 0.1);
}

.glow-text {
  text-shadow: 0 0 40px rgba(var(--accent-rgb), 0.8);
}

.btn-primary {
  color: var(--btn-text);
  background: var(--gradient-primary);
  box-shadow:
    0 4px 24px rgba(var(--accent-rgb), 0.4),
    0 1px 0 var(--overlay-white-10, rgba(255, 255, 255, 0.1)) inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  color: var(--btn-text-hover);
  box-shadow:
    0 8px 40px rgba(var(--accent-rgb), 0.6),
    0 1px 0 var(--overlay-white-15, rgba(255, 255, 255, 0.15)) inset;
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  border: 1px solid var(--border);
  background: var(--glass-bg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-ghost:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  background: rgba(var(--accent-rgb), 0.1);
  transform: translateY(-1px);
}

.noise-bg {
  position: relative;
}

.noise-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.3) !important;
  box-shadow: 0 20px 60px rgba(var(--accent-rgb), 0.15);
}

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, var(--overlay-white-06, rgba(255, 255, 255, 0.06)), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.shine-effect:hover::after {
  left: 125%;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  color: var(--tag-text);
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tag-text);
}

.mesh-gradient {
  background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(var(--accent-rgb), 0.3), var(--overlay-white-00, rgba(255, 255, 255, 0)));
}

.mesh-gradient-2 {
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(var(--accent-rgb), 0.15), transparent),
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(var(--accent-rgb), 0.1), transparent);
}

.animated-border {
  position: relative;
}

.animated-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.5), rgba(var(--accent-rgb), 0.5), rgba(var(--accent-rgb), 0.1));
  -webkit-mask: linear-gradient(var(--text) 0 0) content-box, linear-gradient(var(--text) 0 0);
  mask: linear-gradient(var(--text) 0 0) content-box, linear-gradient(var(--text) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes blob {
  0%, 100% { 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% 60% / 40% 70% 60% 50%; }
  75% { border-radius: 60% 40% 60% 30% / 60% 40% 50% 70%; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes counter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes draw-line {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 7s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
.animate-slide-up { animation: slide-up 0.7s ease-out forwards; }
.animate-fade-in { animation: fade-in 0.7s ease-out forwards; }
.animate-gradient { animation: gradient-shift 6s ease infinite; background-size: 200% 200%; }
.animate-spin-slow { animation: spin-slow 20s linear infinite; }
.animate-blob { animation: blob 8s ease-in-out infinite; }
.animate-marquee { animation: marquee 30s linear infinite; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-1000 { animation-delay: 1s; }
.delay-2000 { animation-delay: 2s; }
.delay-3000 { animation-delay: 3s; }

.in-view {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.in-view.visible {
  opacity: 1;
  transform: translateY(0);
}

.in-view-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.in-view-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.in-view-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.in-view-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.in-view-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.in-view-scale.visible {
  opacity: 1;
  transform: scale(1);
}

html.no-js .in-view,
html.no-js .in-view-left,
html.no-js .in-view-right,
html.no-js .in-view-scale {
  opacity: 1;
  transform: none;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(var(--accent-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.dot-bg {
  background-image: radial-gradient(rgba(var(--accent-rgb), 0.15) 1px, transparent 1px);
  background-size: 32px 32px;
}

.pricing-popular {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  box-shadow: 0 0 60px rgba(var(--accent-rgb), 0.3);
}

.number-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.progress-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  border-radius: 1px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: var(--scroll-progress, 0%);
  z-index: 100;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  transition: width 0.15s ease-out;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--navbar-height);
  padding: 1.25rem 0;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-scrolled {
  padding: 0.75rem 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar-open {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .navbar-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .navbar-container {
    padding: 0 2rem;
  }
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.navbar-brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 0.5rem;
}

.navbar-brand-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: var(--gradient-primary);
  box-shadow: 0 4px 24px rgba(var(--accent-rgb), 0.4);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand:hover .navbar-brand-icon,
.navbar-brand:focus-visible .navbar-brand-icon {
  transform: scale(1.05);
}

.navbar-brand-text,
.footer-brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}

.navbar-brand-text .brand-clan,
.footer-brand-text .brand-clan {
  color: var(--accent);
}

.navbar-brand-text .brand-dot,
.footer-brand-text .brand-dot {
  color: var(--accent-2);
}

.navbar-brand-text .brand-by,
.footer-brand-text .brand-by {
  color: var(--text-muted);
  font-weight: 300;
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .navbar-nav {
    display: flex;
  }
}

.navbar-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.navbar-link:hover,
.navbar-link:focus-visible {
  color: var(--text);
  background: var(--surface-2);
}

.navbar-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar-link:hover::after,
.navbar-link:focus-visible::after {
  transform: scaleX(1);
}

.navbar-cta {
  display: none;
}

@media (min-width: 1024px) {
  .navbar-cta {
    display: flex;
    align-items: center;
  }
}

.navbar-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--btn-text);
  text-decoration: none;
}

.navbar-cta-link:focus-visible {
  outline: 2px solid var(--btn-text);
  outline-offset: 3px;
}

.navbar-toggle {
  display: flex;
  padding: 0.625rem;
  border-radius: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.navbar-toggle:hover,
.navbar-toggle:focus-visible {
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.5);
}

.navbar-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (min-width: 1024px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-toggle-icon {
  display: none;
}

.navbar-toggle-open {
  display: block;
}

.navbar-open .navbar-toggle-open {
  display: none;
}

.navbar-open .navbar-toggle-close {
  display: block;
}

.navbar-mobile {
  display: block;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-open .navbar-mobile {
  max-height: 600px;
  opacity: 1;
  visibility: visible;
}

.navbar-mobile-inner {
  padding: 1rem 1rem 1.5rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--glass-border);
}

.navbar-mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.navbar-mobile-link:hover,
.navbar-mobile-link:focus-visible {
  color: var(--text);
  background: var(--surface-2);
}

.navbar-mobile-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.navbar-mobile-cta {
  padding-top: 1rem;
}

.navbar-mobile-cta .navbar-cta-link {
  width: 100%;
  justify-content: center;
}

/* Footer */
.footer {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
  z-index: 0;
}

.footer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--accent-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.1;
}

.footer-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(var(--accent-rgb), 0.3) 50%, transparent 100%);
  z-index: 1;
}

.footer-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .footer-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    padding: 0 2rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: span 4 / span 4;
  }

  .footer-column {
    grid-column: span 2 / span 2;
  }
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  color: var(--text-dim);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.3);
  background: rgba(var(--accent-rgb), 0.1);
}

.footer-social:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.footer-status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--color-success);
  animation: pulse-glow 2s ease-in-out infinite;
}

.bg-red { background: var(--color-danger); }
.bg-amber { background: var(--color-warning); }
.bg-emerald { background: var(--color-success); }

.text-indigo { color: var(--accent); }
.text-emerald { color: var(--color-success); }
.text-sky { color: var(--accent); }
.text-amber { color: var(--color-warning); }
.text-red { color: var(--color-danger); }
.text-white { color: var(--text); }

/* Icon sizing utilities */
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }

.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }

.footer-status-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-column-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--text);
}

.footer-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 0.25rem;
}

.footer-tech {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.footer-tech-tag {
  font-size: 0.6875rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Section shared layout
   ========================================================================== */

.section-inner,
.hero-content,
.social-proof-inner,
.services-inner,
.products-inner,
.benefits-inner,
.process-inner,
.cases-inner,
.testimonials-inner,
.pricing-inner,
.faq-inner,
.cta-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .section-inner,
  .hero-content,
  .social-proof-inner,
  .services-inner,
  .products-inner,
  .benefits-inner,
  .process-inner,
  .cases-inner,
  .testimonials-inner,
  .pricing-inner,
  .faq-inner,
  .cta-inner {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-inner,
  .hero-content,
  .social-proof-inner,
  .services-inner,
  .products-inner,
  .benefits-inner,
  .process-inner,
  .cases-inner,
  .testimonials-inner,
  .pricing-inner,
  .faq-inner,
  .cta-inner {
    padding: 0 2rem;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-secondary) 50%, var(--bg) 100%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.hero-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(120px);
  opacity: 0.2;
  animation: blob 8s ease-in-out infinite;
  will-change: transform;
}

.hero-blob--1 {
  top: 25%;
  left: 25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent), var(--accent-2), transparent);
}

.hero-blob--2 {
  bottom: 25%;
  right: 25%;
  width: 400px;
  height: 400px;
  filter: blur(100px);
  opacity: 0.15;
  background: radial-gradient(circle, var(--accent-3), var(--accent-2), transparent);
  animation-delay: 3s;
}

.hero-blob--3 {
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  filter: blur(80px);
  opacity: 0.1;
  background: radial-gradient(circle, var(--accent), var(--accent), transparent);
  animation-delay: 1s;
}

.hero-content {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--tag-text);
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
}

.hero-underline-wrap {
  position: relative;
  display: inline-block;
}

.hero-underline {
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.625;
  color: var(--text-muted);
  max-width: 36rem;
}

.hero-features {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-feature-icon {
  color: var(--tag-text);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.5rem;
  flex-wrap: wrap;
}

.hero-scroll--inline {
  display: none;
}

@media (min-width: 1024px) {
  .hero-scroll--inline {
    display: flex;
    margin-left: auto;
    margin-right: 1rem;
  }
}

@media (max-width: 1023px) {
  .hero-scroll--inline {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 2.25rem;
  height: 2.25rem;
  margin-left: -0.75rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  box-shadow: 0 10px 15px -3px var(--overlay-black-30, rgba(0, 0, 0, 0.3));
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.125rem;
}

.hero-star {
  color: var(--color-warning);
}

.hero-social-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-visual {
  display: none;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hero-terminal-wrap {
  position: relative;
  width: 100%;
  max-width: 32rem;
}

.hero-terminal-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  filter: blur(1.5rem);
  opacity: 0.3;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.hero-terminal {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px var(--overlay-black-50, rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(var(--accent-rgb), 0.1);
}

.hero-terminal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-terminal-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  opacity: 0.7;
}

.bg-red { background: var(--color-danger); }
.bg-amber { background: var(--color-warning); }
.bg-emerald { background: var(--color-success); }

.hero-terminal-url {
  flex: 1;
  margin-left: 1rem;
  height: 1.5rem;
  padding: 0 0.75rem;
  border-radius: 0.375rem;
  background: var(--overlay-white-04, rgba(255, 255, 255, 0.04));
  border: 1px solid var(--glass-card-border);
  display: flex;
  align-items: center;
}

.hero-terminal-url span {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
}

.hero-terminal-code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-code-line {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-code-num {
  width: 1rem;
  text-align: right;
  margin-right: 0.5rem;
  color: var(--text-dim);
}

.hero-code-purple { color: var(--accent-2); }
.hero-code-slate { color: var(--text); }
.hero-code-muted { color: var(--text-muted); }
.text-indigo { color: var(--tag-text); }
.text-emerald { color: var(--color-success); }
.text-sky { color: var(--accent); }
.text-amber { color: var(--color-warning); }
.text-red { color: var(--color-danger); }
.text-white { color: var(--text); }
.font-semibold { font-weight: 600; }

.hero-terminal-metrics {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--glass-card-border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.hero-metric {
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-align: center;
}

.hero-metric-label {
  font-size: 0.625rem;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.hero-metric-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.hero-metric-trend {
  font-size: 0.625rem;
}

.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: var(--glass-card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 25px -5px var(--overlay-black-30, rgba(0, 0, 0, 0.3));
  animation: float 4s ease-in-out infinite;
}

.hero-floating-card--indigo { border: 1px solid rgba(var(--accent-rgb), 0.2); }
.hero-floating-card--violet { border: 1px solid rgba(var(--accent-rgb), 0.2); }
.hero-floating-card--emerald { border: 1px solid rgba(var(--accent-rgb), 0.2); }

.hero-floating-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.hero-floating-icon--indigo { background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.2)); }
.hero-floating-icon--violet { background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.2)); }
.hero-floating-icon--emerald { background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.2)); }

.hero-floating-label {
  font-size: 0.6875rem;
  color: var(--text-dim);
}

.hero-floating-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.hero-tech {
  margin-top: 5rem;
}

.hero-tech-label {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.hero-tech-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-tech-item {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-card-border);
  font-size: 0.875rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  transition: all 0.3s ease;
  cursor: default;
}

.hero-tech-item:hover {
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.3);
  background: rgba(var(--accent-rgb), 0.05);
}

.hero-scroll {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
  opacity: 0.4;
  z-index: 5;
}

.hero-scroll--inline {
  position: static;
  transform: none;
  animation: none;
  opacity: 0.5;
  margin-left: auto;
  margin-right: 1rem;
}

.hero-scroll--inline .hero-scroll-line {
  height: 2rem;
}

.hero-scroll-label {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.hero-scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

@media (min-width: 1024px) {
  .hero-scroll {
    bottom: 7rem;
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ==========================================================================
   Social Proof
   ========================================================================== */

.social-proof {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.social-proof-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 50%, var(--bg) 100%);
}

.social-proof-dots {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.social-proof-marquee {
  margin-bottom: 5rem;
}

.social-proof-label {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.marquee-wrap {
  position: relative;
  overflow: hidden;
}

.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}

.marquee-fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.marquee-fade--right {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.marquee-item:hover {
  border-color: rgba(var(--accent-rgb), 0.2);
}

.marquee-icon {
  font-size: 1.5rem;
}

.marquee-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.social-proof-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .social-proof-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
}

.stat-value {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.stat-info {
  margin-top: 0.75rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
}

.services-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.services-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  border-radius: 9999px;
  filter: blur(120px);
  opacity: 0.1;
  background: radial-gradient(circle, var(--accent), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-title,
.products-title,
.benefits-title,
.process-title,
.cases-title,
.testimonials-title,
.pricing-title,
.faq-title,
.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.services-subtitle,
.products-subtitle,
.pricing-subtitle,
.faq-subtitle,
.cta-subtitle {
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: default;
}

.service-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-card:hover .service-glow {
  opacity: 1;
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: rgba(var(--accent-rgb), 0.2);
  color: var(--tag-text);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}

.service-content {
  position: relative;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 15px -3px var(--overlay-black-30, rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon--indigo { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.service-icon--violet { background: linear-gradient(135deg, var(--accent-2), var(--accent-3)); }
.service-icon--emerald { background: linear-gradient(135deg, var(--color-success), var(--accent-2)); }
.service-icon--amber { background: linear-gradient(135deg, var(--color-warning), var(--color-warning)); }
.service-icon--sky { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.service-icon--red { background: linear-gradient(135deg, var(--color-danger), var(--color-danger)); }
.service-icon--pink { background: linear-gradient(135deg, var(--accent-2), var(--accent-3)); }

.service-subtitle {
  font-size: 0.6875rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-bottom: 0.25rem;
}

.service-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.service-desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.service-bullet {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 9999px;
  background: var(--tag-text);
  flex-shrink: 0;
}

/* ==========================================================================
   Products
   ========================================================================== */

.products {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.products-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
}

.products-tag {
  display: inline-flex;
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.products-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.products-tab {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--glass-card-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.products-tab:hover {
  color: var(--text);
  border-color: var(--overlay-white-10, rgba(255, 255, 255, 0.1));
}

.products-tab--active {
  color: var(--text);
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.33));
  border-color: rgba(var(--accent-rgb), 0.25);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.19);
}

.products-panel {
  display: none;
}

.products-panel--active {
  display: block;
}

.products-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .products-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.products-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.products-info-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.products-badge {
  display: inline-flex;
  width: fit-content;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid;
}

.products-name {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--text);
}

.products-tagline {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.products-desc {
  line-height: 1.625;
  color: var(--text-muted);
}

.products-features {
  display: grid;
  gap: 0.625rem;
}

@media (min-width: 640px) {
  .products-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.products-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.products-check {
  flex-shrink: 0;
}

.products-actions {
  display: flex;
  gap: 0.75rem;
}

.products-cta,
.products-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

.products-demo {
  color: var(--text-muted);
}

.products-visual {
  position: relative;
}

.products-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  filter: blur(1.5rem);
  opacity: 0.2;
}

.products-window {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid;
}

.products-window-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.products-window-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: var(--color-danger);
  opacity: 0.6;
}

.products-window-url {
  margin-left: 0.75rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
}

.products-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.625rem;
}

.products-image {
  width: 100%;
  object-fit: cover;
  display: block;
}

.products-float {
  position: absolute;
  top: -1rem;
  right: -1rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 20px 25px -5px var(--overlay-black-30, rgba(0, 0, 0, 0.3));
  animation: float 4s ease-in-out infinite;
}

.products-float-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  animation: pulse-glow 3s ease-in-out infinite;
}

.products-float-tag {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.products-tech {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.products-tech-tag {
  font-size: 0.75rem;
  padding: 0.375rem 0.875rem;
  border-radius: 0.5rem;
  background: var(--overlay-white-04, rgba(255, 255, 255, 0.04));
  border: 1px solid var(--glass-card-border);
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ==========================================================================
   Benefits
   ========================================================================== */

.benefits {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
}

.benefits-dots {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.benefits-head {
  display: grid;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .benefits-head {
    grid-template-columns: 1fr 1fr;
  }
}

.benefits-intro {
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--text-muted);
}

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

.benefits-mini {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  font-size: 1.5rem;
  font-weight: 900;
}

.benefits-mini-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: default;
}

.benefit-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.benefit-card:hover .benefit-glow {
  opacity: 1;
}

.benefit-content {
  position: relative;
}

.benefit-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon.bg-indigo { background: rgba(var(--accent-rgb), 0.1); border: 1px solid rgba(var(--accent-rgb), 0.2); color: var(--tag-text); }
.benefit-icon.bg-violet { background: rgba(var(--accent-rgb), 0.1); border: 1px solid rgba(var(--accent-rgb), 0.2); color: var(--accent-2); }
.benefit-icon.bg-emerald { background: rgba(var(--accent-rgb), 0.1); border: 1px solid rgba(var(--accent-rgb), 0.2); color: var(--color-success); }
.benefit-icon.bg-amber { background: rgba(var(--accent-rgb), 0.1); border: 1px solid rgba(var(--accent-rgb), 0.2); color: var(--color-warning); }
.benefit-icon.bg-sky { background: rgba(var(--accent-rgb), 0.1); border: 1px solid rgba(var(--accent-rgb), 0.2); color: var(--accent); }
.benefit-icon.bg-pink { background: rgba(var(--accent-rgb), 0.1); border: 1px solid rgba(var(--accent-rgb), 0.2); color: var(--accent-2); }

.benefit-metric {
  text-align: right;
}

.benefit-metric-value {
  font-size: 1.25rem;
  font-weight: 900;
}

.benefit-metric-label {
  font-size: 0.625rem;
  color: var(--text-dim);
}

.benefit-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.benefit-desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.benefit-bar {
  height: 2px;
  margin-top: 1rem;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}

.benefit-progress {
  height: 100%;
  border-radius: 1px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Process
   ========================================================================== */

.process {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
}

.process-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 auto;
}

.process-steps-wrap {
  position: relative;
}

.process-line {
  display: none;
}

@media (min-width: 1024px) {
  .process-steps-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-3), var(--color-success), var(--color-warning), transparent);
    z-index: 0;
    pointer-events: none;
  }

  .process-step {
    position: relative;
    z-index: 1;
  }

  .process-circle {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
  }
}

.process-steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-circle {
  position: relative;
  z-index: 1;
  width: 5rem;
  height: 5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  background: color-mix(in srgb, var(--step-color, var(--accent)) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--step-color, var(--accent)) 25%, transparent);
  color: var(--step-color, var(--accent));
}

.process-step:hover .process-circle {
  transform: scale(1.05);
}

.process-step-num {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--step-color, var(--accent));
  color: var(--step-color, var(--accent));
}

.process-step-num span {
  font-size: 0.625rem;
  font-weight: 700;
}

.process-circle-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  filter: blur(1rem);
  opacity: 0;
  transition: opacity 0.3s ease;
  background: var(--step-color, var(--accent));
}

.process-step:hover .process-circle-glow {
  opacity: 0.6;
}

.process-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.process-duration {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  background: color-mix(in srgb, var(--step-color, var(--accent)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--step-color, var(--accent)) 25%, transparent);
  color: var(--step-color, var(--accent));
}

.process-cta {
  margin-top: 4rem;
  text-align: center;
}

.process-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
}

/* ==========================================================================
   Cases
   ========================================================================== */

.cases {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.cases-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
}

.cases-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.cases-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  border-radius: 9999px;
  filter: blur(120px);
  opacity: 0.08;
  background: radial-gradient(circle, var(--accent), transparent);
}

.cases-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .cases-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.cases-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  text-decoration: none;
}

.cases-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-card {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: default;
}

.case-gradient {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  opacity: 0.5;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-rgb), 0.1));
}

.case-content {
  position: relative;
}

.case-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.case-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.case-emoji {
  font-size: 1.5rem;
}

.case-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid;
}

.case-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.case-arrow {
  color: var(--text-dim);
  flex-shrink: 0;
  margin-top: 0.25rem;
  transition: all 0.3s ease;
}

.case-card:hover .case-arrow {
  color: var(--text-muted);
  transform: translate(0.25rem, -0.25rem);
}

.case-desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

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

.case-metric {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--text);
}

.case-metric svg {
  color: var(--case-accent);
}

.case-result-label {
  font-size: 0.625rem;
  color: var(--text-dim);
  margin-top: 0.125rem;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.case-tag {
  font-size: 0.6875rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
  background: var(--overlay-white-04, rgba(255, 255, 255, 0.04));
  border: 1px solid var(--glass-card-border);
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
}

.testimonials-dots {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.testimonials-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  border-radius: 9999px;
  filter: blur(120px);
  opacity: 0.1;
  background: radial-gradient(circle, var(--accent), var(--accent-3), transparent);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-main {
  max-width: 56rem;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--glass-card-border);
  overflow: hidden;
  transition: all 0.5s ease;
}

@media (min-width: 640px) {
  .testimonial-card {
    padding: 3rem;
  }
}

.testimonial-quote {
  position: absolute;
  top: 2rem;
  right: 2rem;
  opacity: 0.1;
  color: var(--tag-text);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
}

.testimonial-star {
  color: var(--color-warning);
}

.testimonial-text {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.625;
  color: var(--text);
  font-weight: 300;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 15px -3px var(--overlay-black-30, rgba(0, 0, 0, 0.3));
}

.testimonial-name {
  font-weight: 700;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonial-project {
  font-size: 0.75rem;
  color: var(--tag-text);
  margin-top: 0.125rem;
}

.testimonial-controls {
  display: flex;
  gap: 0.75rem;
}

.testimonial-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.testimonial-btn:hover {
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.3);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--overlay-white-20, rgba(255, 255, 255, 0.2));
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot--active {
  width: 1.5rem;
  background: var(--accent);
}

.testimonials-mini {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .testimonials-mini {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-mini {
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-mini:hover,
.testimonial-mini--active {
  border-color: rgba(var(--accent-rgb), 0.3);
  background: rgba(var(--accent-rgb), 0.05);
}

.testimonial-mini-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.testimonial-mini-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-mini-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.testimonial-mini-avatar {
  font-size: 1.125rem;
}

.testimonial-mini-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-mini-role {
  font-size: 0.625rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
}

.pricing-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.pricing-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 400px;
  border-radius: 9999px;
  filter: blur(140px);
  opacity: 0.1;
  background: radial-gradient(circle, var(--accent), var(--accent-3), transparent);
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

.pricing-toggle-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-toggle-btn:hover {
  color: var(--text);
}

.pricing-toggle-btn--active {
  background: var(--gradient-primary);
  color: var(--text);
  box-shadow: 0 4px 24px rgba(var(--accent-rgb), 0.4);
}

.pricing-toggle-badge {
  font-size: 0.625rem;
  padding: 0.125rem 0.375rem;
  border-radius: 9999px;
  background: rgba(var(--accent-rgb), 0.2);
  color: var(--color-success);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card:not(.pricing-card--popular) {
  background: var(--glass-card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-card-border);
}

.pricing-card--popular {
  background: transparent;
}

.pricing-popular-bg {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-rgb), 0.12));
}

.pricing-popular-border {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}

.pricing-popular-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}

.pricing-card-inner {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.pricing-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: var(--text);
  box-shadow: 0 10px 15px -3px var(--overlay-black-30, rgba(0, 0, 0, 0.3));
}

.pricing-badge-star {
  fill: currentColor;
}

.pricing-plan-info {
  margin-bottom: 2rem;
}

.pricing-plan-subtitle {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-bottom: 0.25rem;
}

.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.pricing-plan-desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pricing-support-note {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--color-success);
  margin-bottom: 1.5rem;
}

.pricing-support-note svg {
  color: var(--color-success);
}

.pricing-price-value {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--text), var(--plan-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-price-custom {
  font-size: 2rem;
  font-weight: 900;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pricing-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.pricing-check {
  color: var(--tag-text);
  flex-shrink: 0;
}

.pricing-cross {
  color: var(--text-dim);
  flex-shrink: 0;
}

.pricing-feature-included {
  color: var(--text-muted);
}

.pricing-feature-excluded {
  color: var(--text-dim);
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.pricing-note {
  margin-top: 3rem;
  text-align: center;
}

.pricing-note-line {
  font-size: 0.875rem;
  color: var(--text-dim);
}

.pricing-note-accent {
  color: var(--text-muted);
}

.pricing-note-custom {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

.pricing-note-link {
  color: var(--tag-text);
  text-decoration: underline;
  text-decoration-style: dotted;
  transition: color 0.2s ease;
}

.pricing-note-link:hover {
  color: var(--tag-text);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
}

.faq-dots {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.faq-inner {
  max-width: 56rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-link {
  color: var(--tag-text);
  text-decoration: underline;
  text-decoration-style: dotted;
  transition: color 0.2s ease;
}

.faq-link:hover {
  color: var(--tag-text);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 1rem;
  background: var(--glass-card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item--open {
  border-color: rgba(var(--accent-rgb), 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.faq-question-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--tag-text);
}

.faq-q-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.faq-item--open .faq-q-text {
  color: var(--text);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item--open .faq-chevron {
  transform: rotate(180deg);
  color: var(--tag-text);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem 4.25rem;
}

.faq-a-text {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.faq-cta {
  margin-top: 3rem;
}

.faq-cta-card {
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  border: 1px solid rgba(var(--accent-rgb), 0.15);
}

.faq-cta-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(var(--accent-rgb), 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tag-text);
  margin-bottom: 1rem;
}

.faq-cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.faq-cta-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
}

/* ==========================================================================
   CTA / Contact
   ========================================================================== */

.cta {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
}

.cta-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(140px);
  opacity: 0.15;
  animation: blob 8s ease-in-out infinite;
}

.cta-blob--1 {
  top: 25%;
  left: 25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent), transparent);
}

.cta-blob--2 {
  bottom: 25%;
  right: 25%;
  width: 400px;
  height: 400px;
  filter: blur(120px);
  opacity: 0.1;
  background: radial-gradient(circle, var(--accent-3), transparent);
  animation-delay: 2s;
}

.cta-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.cta-layout {
  display: grid;
  gap: 4rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .cta-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-left {
  display: flex;
  flex-direction: column;
}

.cta-subtitle {
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cta-benefit-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.cta-benefit-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.cta-direct {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--glass-card-border);
}

.cta-direct-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cta-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-direct-link:hover {
  color: var(--tag-text);
}

.cta-direct-telegram {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.cta-direct-handle {
  font-weight: 500;
}

.cta-direct-arrow {
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cta-direct-link:hover .cta-direct-arrow {
  opacity: 1;
}

.cta-form {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--glass-card-border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cta-field {
  display: flex;
  flex-direction: column;
}

.cta-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.cta-input,
.cta-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-card-border);
  color: var(--text);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.cta-input::placeholder,
.cta-textarea::placeholder {
  color: var(--text-dim);
}

.cta-input:focus,
.cta-textarea:focus {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.cta-textarea {
  resize: none;
}

.cta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cta-chip {
  padding: 0.5rem 0.875rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--glass-bg);
  border: 1px solid var(--glass-card-border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta-chip:hover {
  border-color: var(--overlay-white-15, rgba(255, 255, 255, 0.15));
  color: var(--text);
}

.cta-chip--active {
  background: rgba(var(--accent-rgb), 0.2);
  border-color: rgba(var(--accent-rgb), 0.4);
  color: var(--tag-text);
}

.cta-form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .cta-form-actions {
    flex-direction: row;
  }
}

.cta-submit,
.cta-telegram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.cta-submit {
  flex: 1;
}

.cta-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cta-submit-loader {
  display: none;
  animation: spin-slow 1s linear infinite;
}

.cta-submit.is-loading .cta-submit-icon,
.cta-submit.is-loading .cta-submit-text {
  display: none;
}

.cta-submit.is-loading .cta-submit-loader {
  display: inline-block;
}

.cta-privacy {
  font-size: 0.6875rem;
  color: var(--text-dim);
  text-align: center;
}

.cta-privacy-link {
  color: var(--text-dim);
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: pointer;
}

.cta-success {
  padding: 3rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  text-align: center;
}

.cta-success-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: rgba(var(--accent-rgb), 0.15);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  margin-bottom: 1.5rem;
  animation: pulse-glow 3s ease-in-out infinite;
}

.cta-success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.cta-success-text {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.cta-success-text a {
  color: var(--tag-text);
  text-decoration: underline;
}

/* ==========================================================================
   Product pages
   ========================================================================== */

.projects-page {
  position: relative;
  padding: 0 0 6rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
  min-height: calc(100vh - var(--navbar-height));
}

.projects-header {
  text-align: center;
  padding-top: 6rem;
  margin-bottom: 4rem;
}

.projects-header .tag {
  display: inline-flex;
  margin-bottom: 1rem;
}

.projects-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.projects-subtitle {
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.project-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
}

.project-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-card-image img {
  transform: scale(1.05);
}

.project-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
  gap: 0.75rem;
}

.project-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.project-card-desc {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.project-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--btn-text);
}

.project-hero {
  position: relative;
  display: flex;
  align-items: center;
  height: clamp(20rem, 40vw, 28rem);
  overflow: hidden;
}

.project-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg) 0%,
    rgba(var(--bg-rgb), 0.85) 60%,
    rgba(var(--bg-rgb), 0.5) 100%
  );
  z-index: 1;
}

.project-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.project-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.project-hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.project-body {
  padding: 4rem 0;
}

.project-section {
  padding: 2rem;
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .project-section {
    padding: 2.5rem;
  }
}

.project-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.project-section p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
}

.project-section p:last-child {
  margin-bottom: 0;
}

.project-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.project-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.project-list svg {
  flex-shrink: 0;
  color: var(--color-success);
  margin-top: 0.125rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.project-actions {
  margin-top: 2rem;
}

.project-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--btn-text);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
