:root {
  --ws-bg: #020617;
  --ws-bg-soft: #020617;
  --ws-bg-elevated: rgba(15, 23, 42, 0.95);
  --ws-primary: #38bdf8;
  --ws-primary-soft: rgba(56, 189, 248, 0.12);
  --ws-primary-strong: #0ea5e9;
  --ws-accent: #a855f7;
  --ws-text: #e5e7eb;
  --ws-text-soft: #9ca3af;
  --ws-border: rgba(148, 163, 184, 0.25);
  --ws-radius-lg: 22px;
  --ws-radius-md: 16px;
  --ws-radius-full: 999px;
  --ws-shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.9);
  --ws-shadow-card: 0 18px 50px rgba(15, 23, 42, 0.8);
  --ws-max-width: 1120px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #0f172a, #020617 52%, #020617 100%);
  color: var(--ws-text);
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1536px) and (min-height: 900px) {
  body {
    font-size: 18px;
  }
  :root {
    --ws-max-width: 1280px;
  }
  .ws-hero-title {
    font-size: clamp(2.8rem, 3.6vw, 3.4rem);
  }
  .ws-hero-subtitle {
    font-size: 1.1rem;
  }
  .ws-hero-bullets {
    font-size: 1.06rem;
  }
  .ws-section-text {
    font-size: 1.05rem;
  }
}

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

.ws-container {
  width: 100%;
  max-width: var(--ws-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ws-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.8));
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.ws-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.ws-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ws-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.35);
}

.ws-logo-text {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}

.ws-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--ws-text-soft);
}

.ws-nav-link {
  position: relative;
  padding: 0.25rem 0;
}

.ws-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--ws-primary), var(--ws-accent));
  transition: width 0.18s ease-out;
}

.ws-nav-link:hover::after {
  width: 100%;
}

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

.ws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: var(--ws-radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.16s ease-out, color 0.16s ease-out, border-color 0.16s ease-out, box-shadow 0.16s ease-out, transform 0.05s ease-out;
  background: transparent;
  color: var(--ws-text);
}

.ws-btn-primary {
  background: radial-gradient(circle at top left, #38bdf8, #0ea5e9 40%, #06b6d4 100%);
  color: #0b1120;
  box-shadow: 0 10px 40px rgba(56, 189, 248, 0.45);
}

.ws-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 50px rgba(56, 189, 248, 0.55);
}

.ws-btn-ghost {
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.7);
}

.ws-btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.9);
}

.ws-btn-lg {
  padding: 0.7rem 1.7rem;
  font-size: 0.95rem;
}

.ws-nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.ws-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

.ws-nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 1.5rem 0.75rem;
  background: rgba(2, 6, 23, 0.98);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.ws-nav-mobile-link {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--ws-text-soft);
}

.ws-nav-mobile-cta {
  margin-top: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: var(--ws-radius-full);
  text-align: center;
  font-weight: 500;
  background: radial-gradient(circle at top left, #38bdf8, #0ea5e9 40%, #06b6d4 100%);
  color: #0b1120;
}

.ws-header-scrolled {
  box-shadow: 0 12px 45px rgba(15, 23, 42, 0.9);
}

.ws-section {
  padding: 4.5rem 0;
}

.ws-hero {
  padding-top: 3.5rem;
}

.ws-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: center;
  gap: 2.75rem;
}

.ws-hero-text {
  max-width: 620px;
}

.ws-hero-title {
  font-size: clamp(2.4rem, 3.4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1.2rem;
}

.ws-hero-highlight {
  display: block;
  background: linear-gradient(to right, #e5e7eb, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.ws-hero-subtitle {
  margin: 0 0 1.4rem;
  color: var(--ws-text-soft);
  font-size: 1rem;
}

.ws-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.96rem;
}

.ws-hero-bullets li::before {
  content: "•";
  margin-right: 0.4rem;
  color: var(--ws-primary);
}

.ws-hero-bullets li:nth-child(1)::before {
  content: "✓";
}

.ws-hero-bullets li:nth-child(2)::before {
  content: "🎯";
}

.ws-hero-bullets li:nth-child(3)::before {
  content: "☁️";
}

.ws-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.ws-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: var(--ws-text-soft);
}

.ws-hero-meta span {
  padding: 0.35rem 0.75rem;
  border-radius: var(--ws-radius-full);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
}

.ws-hero-visual {
  display: flex;
  justify-content: center;
}

.ws-hero-card {
  width: 100%;
  max-width: 360px;
  border-radius: var(--ws-radius-lg);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), rgba(15, 23, 42, 0.96));
  padding: 1.25rem 1.2rem 1.2rem;
  box-shadow: var(--ws-shadow-card);
  border: 1px solid rgba(148, 163, 184, 0.4);
  position: relative;
  overflow: hidden;
}

.ws-hero-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.12), transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

.ws-hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.ws-chip {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--ws-radius-full);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.ws-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

.ws-hero-card-body {
  position: relative;
  z-index: 1;
}

.ws-hero-question {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1.1rem;
  color: #f9fafb;
}

.ws-hero-wave {
  position: relative;
  height: 36px;
  border-radius: 999px;
  margin-bottom: 1.1rem;
  background: radial-gradient(circle at 0 50%, rgba(56, 189, 248, 0.4), transparent 55%);
  overflow: hidden;
}

.ws-hero-wave::before,
.ws-hero-wave::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat-x;
  opacity: 0.4;
}

.ws-hero-wave::before {
  background-image: radial-gradient(circle at 0 50%, rgba(56, 189, 248, 0.7) 0, rgba(56, 189, 248, 0.7) 30%, transparent 32%);
  background-size: 32px 100%;
  animation: ws-wave 5s linear infinite;
}

.ws-hero-wave::after {
  background-image: radial-gradient(circle at 0 50%, rgba(129, 140, 248, 0.6) 0, rgba(129, 140, 248, 0.6) 26%, transparent 28%);
  background-size: 26px 100%;
  animation: ws-wave 7s linear infinite reverse;
}

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

.ws-hero-feedback {
  padding: 0.85rem;
  border-radius: var(--ws-radius-md);
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.ws-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.55rem;
  border-radius: var(--ws-radius-full);
  font-size: 0.75rem;
}

.ws-badge-score {
  background: rgba(22, 163, 74, 0.15);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.45);
}

.ws-hero-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0.75rem 0;
  font-size: 0.8rem;
}

.ws-hero-score-grid div {
  padding: 0.45rem 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle at 0 50%, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ws-hero-score-grid span {
  color: var(--ws-text-soft);
}

.ws-hero-score-grid strong {
  color: #e5e7eb;
}

.ws-hero-tip {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  color: var(--ws-text-soft);
}

.ws-chip-inline {
  display: inline-flex;
  align-items: center;
  padding: 0.08rem 0.4rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.ws-section-title {
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
}

.ws-section-title-center {
  text-align: center;
}

.ws-section-text {
  font-size: 0.98rem;
  color: var(--ws-text-soft);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.ws-section-text-center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.ws-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.ws-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--ws-text-soft);
}

.ws-list li {
  display: flex;
  align-items: flex-start;
}

.ws-list li::before {
  content: "•";
  margin-right: 0.5rem;
  margin-top: 0.08rem;
  color: var(--ws-text-soft);
}

.ws-list-checked li::before {
  content: "✓";
  color: #4ade80;
}

.ws-list-problem li::before {
  content: "⚠";
  color: #fb923c;
}

.ws-features {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.7), rgba(2, 6, 23, 1));
}

.ws-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.ws-feature-card {
  border-radius: var(--ws-radius-md);
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 14px 45px rgba(15, 23, 42, 0.9);
  font-size: 0.95rem;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
}

.ws-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.95);
  border-color: rgba(56, 189, 248, 0.65);
}

.ws-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), rgba(15, 23, 42, 1));
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 1.15rem;
}

.ws-feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.ws-feature-card p {
  margin: 0;
  color: var(--ws-text-soft);
}

.ws-how {
  background: radial-gradient(circle at center, rgba(8, 47, 73, 0.7), rgba(2, 6, 23, 1));
}

.ws-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.ws-step {
  border-radius: var(--ws-radius-md);
  padding: 1.1rem 1.1rem 1.2rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 14px 45px rgba(15, 23, 42, 0.9);
  font-size: 0.95rem;
}

.ws-step-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.ws-step-number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at top, #38bdf8, #0ea5e9);
  color: #0b1120;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.ws-step-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ws-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.ws-step p {
  margin: 0;
  color: var(--ws-text-soft);
}

.ws-steps-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.ws-note {
  font-size: 0.85rem;
  color: var(--ws-text-soft);
}

.ws-testimonials {
  background: radial-gradient(circle at top left, rgba(8, 47, 73, 0.65), rgba(2, 6, 23, 1));
}

.ws-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.ws-testimonial-card {
  border-radius: var(--ws-radius-md);
  padding: 1.35rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.95);
  font-size: 0.95rem;
}

.ws-testimonial-text {
  margin: 0 0 0.8rem;
  color: var(--ws-text-soft);
  line-height: 1.6;
}

.ws-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.ws-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.2), rgba(37, 99, 235, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: #0b1120;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.9);
  flex-shrink: 0;
}

.ws-testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.88rem;
}

.ws-testimonial-info span {
  color: var(--ws-text-soft);
}

.ws-faq {
  background: radial-gradient(circle at bottom, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 1));
}

.ws-faq-item {
  padding: 0.9rem 1rem;
  border-radius: var(--ws-radius-md);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.9);
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.ws-faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.ws-faq-item p {
  margin: 0;
  color: var(--ws-text-soft);
  line-height: 1.6;
}

.ws-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.ws-legal-links a {
  color: var(--ws-primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ws-faq-item-legal p {
  color: #d1d5db;
}

.ws-cta-final {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at center, rgba(8, 47, 73, 0.6), rgba(2, 6, 23, 1));
}

.ws-cta-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ws-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: #020617;
  padding: 1.25rem 0 1.5rem;
  font-size: 0.86rem;
  color: var(--ws-text-soft);
}

.ws-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ws-footer-links {
  display: flex;
  gap: 1rem;
}

.ws-footer-links a {
  color: var(--ws-text-soft);
}

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

.ws-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.ws-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .ws-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ws-hero-visual {
    order: -1;
  }

  .ws-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ws-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ws-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ws-header-inner {
    padding-inline: 1rem;
  }

  .ws-nav {
    display: none;
  }

  .ws-nav-actions {
    display: none;
  }

  .ws-nav-toggle {
    display: inline-flex;
  }

  .ws-section {
    padding: 3.25rem 0;
  }

  .ws-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .ws-features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ws-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .ws-testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ws-cta-final-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ws-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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