:root {
  --page-bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --ink: #0f172a;
  --muted: #475569;
  --navy: #020617;
  --navy-soft: #0f172a;
  --line: rgba(148, 163, 184, 0.24);
  --accent: #f59e0b;
  --accent-soft: #fbbf24;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--page-bg);
  color: var(--ink);
}

::selection {
  background: rgba(37, 99, 235, 0.18);
}

.section-kicker {
  letter-spacing: 0.24em;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(245, 158, 11, 0.14), transparent 24%),
    linear-gradient(180deg, #020617 0%, #0f172a 62%, #111827 100%);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 92%);
  pointer-events: none;
}

.hero-screen {
  border: 1px solid rgba(226, 232, 240, 0.22);
  box-shadow:
    0 40px 120px rgba(15, 23, 42, 0.6),
    0 12px 32px rgba(15, 23, 42, 0.24);
}

.window-chrome {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.75));
}

.glass-note {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.feature-tile,
.soft-panel,
.policy-card {
  background: var(--surface-soft);
  backdrop-filter: blur(10px);
}

.feature-tile {
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.demo-frame,
.media-frame {
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.12);
}

.warriorplus-button img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(15, 23, 42, 0.28));
}

.faq-item {
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
}

.faq-item[data-open="true"] .faq-panel {
  opacity: 1;
}

.faq-chevron {
  transition: transform 0.25s ease;
}

.faq-item[data-open="true"] .faq-chevron {
  transform: rotate(180deg);
}

.legal-copy h1,
.legal-copy h2 {
  color: var(--ink);
}

.legal-copy h2 {
  margin-top: 2.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  line-height: 1.8;
}

.legal-copy ul {
  margin-top: 0.75rem;
  list-style: disc;
  padding-left: 1.25rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-delay-1 {
  animation-delay: 0.12s;
}

.fade-delay-2 {
  animation-delay: 0.24s;
}

.fade-delay-3 {
  animation-delay: 0.36s;
}

.float-slow {
  animation: floatSlow 7s ease-in-out infinite;
}

.float-slower {
  animation: floatSlow 9s ease-in-out infinite;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 767px) {
  .hero-screen {
    box-shadow:
      0 28px 72px rgba(15, 23, 42, 0.42),
      0 10px 26px rgba(15, 23, 42, 0.18);
  }

  .warriorplus-button img {
    width: min(100%, 260px);
  }
}
