:root {
  --bg: #090812;
  --surface: rgba(20, 20, 38, 0.78);
  --surface-soft: rgba(28, 30, 52, 0.82);
  --text: #f5f8ff;
  --muted: #b7c2df;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #6f7bff;
  --primary-strong: #4f62ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 5%, rgba(111, 123, 255, 0.35), transparent 36%),
    radial-gradient(circle at 90% 15%, rgba(23, 217, 255, 0.3), transparent 32%),
    radial-gradient(circle at 20% 80%, rgba(50, 245, 169, 0.2), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

.js-reveal {
  --parallax-x: 0px;
  --parallax-y: 0px;
  --reveal-y: 20px;
  --reveal-scale: 0.99;
  opacity: 0;
  transform: translate3d(var(--parallax-x), calc(var(--reveal-y) + var(--parallax-y)), 0) scale(var(--reveal-scale));
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-reveal.is-visible {
  opacity: 1;
  --reveal-y: 0px;
  --reveal-scale: 1;
}

.page {
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(111, 123, 255, 0.14), rgba(23, 217, 255, 0.1));
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 1.25rem;
}

.hero__fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__fx::before,
.hero__fx::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0.4px);
  opacity: 0.7;
}

.hero__fx::before {
  width: 360px;
  height: 360px;
  left: -110px;
  top: -130px;
  background: radial-gradient(circle, rgba(111, 123, 255, 0.3), rgba(111, 123, 255, 0) 65%);
  animation: floatOrbLeft 12s ease-in-out infinite;
}

.hero__fx::after {
  width: 320px;
  height: 320px;
  right: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(23, 217, 255, 0.22), rgba(23, 217, 255, 0) 70%);
  animation: floatOrbRight 14s ease-in-out infinite;
}

.hero__content,
.hero__panel {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  color: #dcf7ff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0.9rem 0 0.55rem;
  font-size: clamp(1.95rem, 3.7vw, 2.8rem);
  line-height: 1.15;
}

.hero__subtitle {
  margin: 0;
  color: #d9e2ff;
  font-weight: 600;
}

.hero__description {
  margin: 0.95rem 0 0;
  color: var(--muted);
  max-width: 64ch;
}

.hero__actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.72rem 1.12rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(36, 93, 255, 0.25);
}

.btn--primary:hover {
  background: var(--primary-strong);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #e8eeff;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero__trust {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__trust li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.85rem;
  color: #d7e5ff;
  background: rgba(255, 255, 255, 0.06);
}

.hero__panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
  padding: 1.1rem;
  box-shadow: 0 14px 35px rgba(5, 9, 29, 0.35);
}

.hero__panel h2 {
  margin: 0;
  font-size: 1rem;
}

.hero__metrics {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.metric {
  padding: 0.8rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.metric:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 123, 255, 0.52);
  box-shadow: 0 8px 18px rgba(6, 11, 35, 0.38);
}

.metric strong {
  display: block;
  font-size: 1.23rem;
  margin-bottom: 0.18rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.93rem;
}

.section {
  margin-top: 1.8rem;
}

.section__header h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  line-height: 1.2;
}

.section__lead {
  margin: 0.65rem 0 0;
  color: var(--muted);
  max-width: 82ch;
}

.split {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1.2fr;
}

.surface {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 1.15rem;
}

.surface h3 {
  margin: 0 0 0.7rem;
}

.grid {
  display: grid;
  gap: 0.9rem;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 123, 255, 0.52);
  box-shadow: 0 10px 24px rgba(6, 11, 35, 0.38);
}

.card h3,
.card h4 {
  margin: 0;
  font-size: 1.03rem;
}

.card p {
  margin: 0.52rem 0 0;
  color: var(--muted);
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.list li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 2px;
  background: var(--primary);
}

.pill-list {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d7e5ff;
  padding: 0.37rem 0.78rem;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pill:hover {
  transform: translateY(-1px);
  background: rgba(111, 123, 255, 0.2);
  border-color: rgba(111, 123, 255, 0.52);
}

.timeline {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.timeline__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.8rem;
  align-items: flex-start;
}

.timeline__badge {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(111, 123, 255, 0.22);
  border: 1px solid rgba(111, 123, 255, 0.45);
  color: #dce6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.timeline__body {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 0.95rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline__item:hover .timeline__body {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(5, 10, 31, 0.4);
}

.timeline__body h3 {
  margin: 0;
  font-size: 1rem;
}

.timeline__period {
  margin: 0.3rem 0 0;
  color: #9db4ff;
  font-weight: 600;
}

.timeline__body p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.chips {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.34rem 0.74rem;
  background: var(--surface);
  color: #d7e5ff;
  font-size: 0.9rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(111, 123, 255, 0.52);
  background: rgba(111, 123, 255, 0.16);
}

.legal-note {
  margin-top: 0.8rem;
  color: #9fa9c7;
  font-size: 0.83rem;
}

.card--case .card__summary,
.card--plan .card__summary {
  margin-top: 0.5rem;
  color: var(--muted);
}

.card__bullets {
  margin: 0.65rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.card__bullets li + li {
  margin-top: 0.35rem;
}

.surface--cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1rem;
}

.surface--cta h3 {
  margin: 0;
}

.surface--cta p {
  margin: 0;
  color: var(--muted);
  max-width: 68ch;
}

.faq {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq__item[open] {
  border-color: rgba(111, 123, 255, 0.52);
  box-shadow: 0 10px 22px rgba(6, 11, 35, 0.4);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq__item p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.contact {
  border: 1px solid rgba(111, 123, 255, 0.35);
  border-radius: 24px;
  background: linear-gradient(130deg, rgba(111, 123, 255, 0.2), rgba(23, 217, 255, 0.16));
  padding: 1.3rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.9fr;
}

.contact h2 {
  margin: 0;
  font-size: 1.5rem;
}

.contact__content p {
  margin: 0.65rem 0 0;
  color: #dde7ff;
}

.contact__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.contact__line {
  margin-top: 0.9rem;
}

.contact__line a {
  color: #e6ecff;
  text-decoration: none;
  font-weight: 700;
}

.contact__note {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(20, 20, 38, 0.78);
  padding: 0.9rem 1rem;
}

.contact__note h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.footer {
  margin-top: 1rem;
  color: #9fa9c7;
  font-size: 0.89rem;
}

@keyframes floatOrbLeft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(28px, 16px, 0);
  }
}

@keyframes floatOrbRight {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-24px, -18px, 0);
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .grid--3 {
    grid-template-columns: 1fr 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .page {
    width: min(1140px, calc(100% - 1.2rem));
    padding-top: 1rem;
  }

  .hero {
    padding: 1.2rem;
  }

  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .surface--cta {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    --parallax-x: 0px;
    --parallax-y: 0px;
    --reveal-y: 0px;
    --reveal-scale: 1;
    transition: none;
  }

  .hero__fx::before,
  .hero__fx::after,
  .btn,
  .card,
  .metric,
  .pill,
  .chip,
  .timeline__body {
    animation: none;
    transition: none;
  }
}
