﻿:root {
  --bg-0: #f5f3ff;
  --bg-1: #eeebff;
  --bg-2: #f7f8ff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #2f2f53;
  --muted: #66638f;
  --brand: #7655e7;
  --brand-strong: #6244d1;
  --accent: #4bcad8;
  --border: rgba(118, 85, 231, 0.18);
  --shadow: 0 20px 44px rgba(91, 75, 165, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(880px 480px at 84% -12%, rgba(118, 85, 231, 0.2), transparent 70%),
    radial-gradient(820px 440px at 10% 18%, rgba(75, 202, 216, 0.18), transparent 65%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 45%, var(--bg-2) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 380px at 0% 65%, rgba(75, 202, 216, 0.1), transparent 70%),
    radial-gradient(520px 360px at 100% 72%, rgba(118, 85, 231, 0.11), transparent 70%);
  z-index: 0;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
}

main,
footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(247, 245, 255, 0.82);
  border-bottom: 1px solid rgba(118, 85, 231, 0.1);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 245, 255, 0.95);
  box-shadow: 0 10px 26px rgba(112, 92, 190, 0.13);
}

.header-inner {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--text);
  padding: 9px 14px;
  font-weight: 700;
  cursor: pointer;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  box-shadow: 0 12px 26px rgba(108, 79, 208, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(108, 79, 208, 0.34);
}

.btn-ghost {
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(118, 85, 231, 0.28);
}

.btn-ghost:hover {
  border-color: rgba(118, 85, 231, 0.44);
  background: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 78px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(850px 440px at 80% 22%, rgba(118, 85, 231, 0.18), transparent 70%),
    radial-gradient(760px 400px at 8% 80%, rgba(75, 202, 216, 0.15), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 38px;
  align-items: center;
  grid-template-columns: minmax(320px, 520px) minmax(300px, 1fr);
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 800;
  font-size: 0.74rem;
  color: var(--brand);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw + 0.9rem, 3.7rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.58rem, 2.3vw + 0.85rem, 2.8rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.lead {
  font-size: clamp(1rem, 0.9vw + 0.85rem, 1.24rem);
  color: var(--muted);
  max-width: 54ch;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.hero-points li {
  position: relative;
  padding-left: 24px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(118, 85, 231, 0.2);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(244, 242, 255, 0.85));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual > img:first-child {
  width: 100%;
  height: auto;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background:
    radial-gradient(700px 420px at 18% 8%, rgba(75, 202, 216, 0.14), transparent 70%),
    linear-gradient(180deg, rgba(249, 248, 255, 0.78), rgba(239, 236, 255, 0.78));
}

.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.subhead {
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card,
.price-card,
.help-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card {
  padding: 24px;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(75, 202, 216, 0.25), rgba(118, 85, 231, 0.24));
  margin-bottom: 12px;
}

.icon svg {
  width: 23px;
  height: 23px;
  stroke: var(--brand);
}

.card p {
  color: var(--muted);
}

.steps-wrap {
  display: grid;
  gap: 20px;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.steps-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  font-weight: 800;
}

.steps-list p {
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  padding: 26px;
  display: grid;
  gap: 14px;
}

.price-card.featured {
  border-color: rgba(118, 85, 231, 0.4);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.98), rgba(236, 232, 255, 0.95));
}

.price-tag {
  font-size: 0.9rem;
  color: var(--brand-strong);
  font-weight: 700;
}

.price-value {
  font-size: clamp(1.8rem, 2.2vw + 1rem, 2.6rem);
  line-height: 1;
  font-weight: 800;
}

.price-value span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.price-note {
  color: var(--muted);
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.help-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.82fr);
  align-items: start;
}

.help-card {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.help-card p {
  color: var(--muted);
}

.help-card strong {
  color: var(--text);
}

.cta-final {
  padding-bottom: 118px;
}

.cta-card {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(118, 85, 231, 0.26);
  background:
    radial-gradient(660px 280px at 72% 18%, rgba(75, 202, 216, 0.16), transparent 70%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.95), rgba(238, 233, 255, 0.92));
  box-shadow: var(--shadow);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 38px 0 70px;
  border-top: 1px solid rgba(118, 85, 231, 0.14);
  background: rgba(244, 242, 255, 0.74);
}

.footer-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
}

.footer-logo {
  width: 176px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-links a {
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.92rem;
}

.footer-inner p {
  color: var(--muted);
  font-size: 0.92rem;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 40;
  display: none;
}

.sticky-cta .btn {
  box-shadow: 0 14px 28px rgba(102, 79, 190, 0.35);
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 4vw;
    right: 4vw;
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-btn {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 80px;
  }

  .hero {
    padding-top: 64px;
  }

  .header-btn {
    display: none;
  }

  .benefit-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 24px;
  }

  .sticky-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Landing polish 2026-02-18 */
:root {
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-fast: 140ms;
  --t-med: 200ms;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo img {
  width: 170px;
  height: auto;
}

.footer-logo {
  width: 150px;
  height: auto;
  opacity: 0.95;
}

.site-nav a {
  position: relative;
  transition: color var(--t-med) var(--ease-out);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(111, 87, 232, 0.75);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-out);
}

.site-nav a:hover {
  color: rgba(111, 87, 232, 1);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a:focus-visible {
  outline: 3px solid rgba(38, 181, 170, 0.35);
  outline-offset: 6px;
  border-radius: 10px;
}

.btn {
  transition:
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-med) var(--ease-out),
    background-color var(--t-med) var(--ease-out),
    border-color var(--t-med) var(--ease-out);
  will-change: transform;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(30, 20, 60, 0.14);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(30, 20, 60, 0.12);
}

.btn:focus-visible {
  outline: 3px solid rgba(38, 181, 170, 0.35);
  outline-offset: 5px;
}

.hero-visual {
  align-self: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(120, 90, 220, 0.18);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 18px 60px rgba(30, 20, 60, 0.1);
  transition: box-shadow var(--t-med) var(--ease-out), transform var(--t-fast) var(--ease-out);
}

.hero-visual > img:first-child {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}

@media (hover: hover) {
  .hero-visual:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 80px rgba(30, 20, 60, 0.14);
  }
}

.trustbar {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(40, 40, 60, 0.75);
}

.trustbar span {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(120, 90, 220, 0.14);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.card,
.price-card,
.help-card,
.cta-card {
  transition:
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-med) var(--ease-out),
    border-color var(--t-med) var(--ease-out);
  will-change: transform;
}

.card:hover,
.price-card:hover,
.help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(30, 20, 60, 0.12);
  border-color: rgba(111, 87, 232, 0.22);
}

.card .icon svg {
  transition: transform var(--t-fast) var(--ease-out);
}

.card:hover .icon svg {
  transform: scale(1.05);
}

.steps-list li {
  transition: background-color var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease-out);
}

.steps-list li:hover {
  background: rgba(111, 87, 232, 0.06);
  border-color: rgba(111, 87, 232, 0.18);
}

.step-number {
  transition: box-shadow var(--t-med) var(--ease-out), transform var(--t-fast) var(--ease-out);
}

.steps-list li:hover .step-number {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(111, 87, 232, 0.18);
}
