:root {
  --bg: #f6f7f9;
  --panel: rgba(255, 255, 255, 0.86);
  --border: rgba(0, 0, 0, 0.08);
  --subtle-border: rgba(0, 0, 0, 0.05);
  --text: #07080a;
  --text-secondary: rgba(7, 8, 10, 0.62);
  --accent: #8275e5;
  --accent-ink: #6f63d8;
  --accent-soft: rgba(130, 117, 229, 0.12);
  --accent-line: rgba(130, 117, 229, 0.26);
  --shadow-soft: 0 20px 44px rgba(12, 16, 26, 0.08), 0 3px 10px rgba(12, 16, 26, 0.05);
  --shadow-card: 0 16px 34px rgba(14, 18, 30, 0.06), 0 2px 6px rgba(14, 18, 30, 0.04);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --content-max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.52;
  text-rendering: optimizeLegibility;
}

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

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

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

ul,
ol {
  padding: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  z-index: 100;
  background: #000;
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

.skip-link:focus-visible {
  top: 8px;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 10%, rgba(130, 117, 229, 0.17), transparent 48%),
    radial-gradient(circle at 20% 0%, rgba(72, 65, 127, 0.038), transparent 44%);
  z-index: -1;
}

.section {
  width: min(var(--content-max), calc(100% - 3rem));
  margin-inline: auto;
}

.topbar-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 0.72rem;
  transition: padding-top 280ms ease;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  padding: 0.62rem 0.88rem;
  border-radius: 18px;
  border: 1px solid rgba(7, 8, 10, 0.06);
  background: rgba(246, 247, 249, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(8, 12, 20, 0.05);
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.topbar-wrap.is-scrolled {
  padding-top: 0.45rem;
}

.topbar-wrap.is-scrolled .topbar {
  background: rgba(252, 253, 255, 0.92);
  border-color: rgba(130, 117, 229, 0.2);
  box-shadow: 0 18px 32px rgba(10, 16, 30, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(7, 8, 10, 0.08);
  box-shadow: 0 1px 2px rgba(14, 18, 30, 0.08);
  image-rendering: -webkit-optimize-contrast;
}

.mock-title-row img {
  border-radius: 6px;
  border: 1px solid rgba(7, 8, 10, 0.08);
  box-shadow: 0 1px 2px rgba(14, 18, 30, 0.08);
  image-rendering: -webkit-optimize-contrast;
}

.topnav {
  display: none;
  gap: 1.45rem;
  color: var(--text-secondary);
  font-size: 0.93rem;
}

.nav-link {
  position: relative;
  transition: color 220ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: var(--accent-ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.8;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  padding: 0.74rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 280ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 280ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

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

.btn:focus-visible,
.faq-question:focus-visible,
.topnav a:focus-visible {
  outline: 2px solid var(--accent-ink);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(180deg, #8275e5 0%, #6f63d8 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(88, 76, 180, 0.3), 0 2px 6px rgba(30, 26, 70, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #786cdd 0%, #6256cb 100%);
}

.btn-ghost {
  border-color: var(--subtle-border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

.btn-ghost:hover {
  border-color: var(--accent-line);
  background: rgba(255, 255, 255, 0.95);
}

.btn-small {
  padding: 0.62rem 0.98rem;
  font-size: 0.86rem;
}

main {
  display: grid;
  gap: 3.8rem;
  padding: 2rem 0 6rem;
}

.hero {
  display: grid;
  gap: 2.2rem;
  align-items: center;
  padding-top: 2.8rem;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent-ink);
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 8vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.032em;
  max-width: 11.5ch;
}

.subline {
  margin-top: 1.2rem;
  max-width: 48ch;
  color: var(--text-secondary);
  font-size: clamp(1rem, 2.8vw, 1.16rem);
}

.hero-assurance {
  margin-top: 0.85rem;
  color: rgba(111, 99, 216, 0.92);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero-actions .btn-primary {
  opacity: 1 !important;
  border-color: transparent !important;
  background-color: #7468dc !important;
  background-image: linear-gradient(180deg, #8275e5 0%, #6f63d8 100%) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  filter: none !important;
  box-shadow: 0 10px 22px rgba(88, 76, 180, 0.3), 0 2px 6px rgba(30, 26, 70, 0.18) !important;
}

.hero-actions .btn-primary:hover {
  background-color: #6f63d8 !important;
  background-image: linear-gradient(180deg, #786cdd 0%, #6256cb 100%) !important;
}

.meta-note {
  margin-top: 1.1rem;
  color: rgba(111, 99, 216, 0.88);
  font-size: 0.88rem;
}

.seo-inline-link {
  margin-left: 0.24rem;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(111, 99, 216, 0.45);
  text-underline-offset: 2px;
  transition: text-decoration-color 220ms ease;
}

.seo-inline-link:hover,
.seo-inline-link:focus-visible {
  text-decoration-color: rgba(111, 99, 216, 0.95);
}

.hero-visual {
  width: min(100%, 530px);
}

.mock-window {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 58px rgba(13, 17, 28, 0.13), 0 4px 14px rgba(13, 17, 28, 0.06);
  overflow: hidden;
  transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1), box-shadow 500ms cubic-bezier(0.19, 1, 0.22, 1);
  animation: mockFloat 9s ease-in-out infinite;
}

.mock-window-bar {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.82rem;
  border-bottom: 1px solid var(--subtle-border);
  background: rgba(255, 255, 255, 0.78);
}

.mock-window-bar span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  border: 1px solid var(--subtle-border);
}

.mock-window-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
}

.mock-title-row {
  display: flex;
  align-items: center;
  gap: 0.56rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.mock-dropzone {
  border: 1px dashed rgba(7, 8, 10, 0.14);
  border-radius: 12px;
  padding: 1rem;
  min-height: 96px;
  display: grid;
  gap: 0.28rem;
  align-content: center;
}

.mock-heading {
  font-size: 0.95rem;
  font-weight: 600;
}

.mock-caption {
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding-bottom: 0.32rem;
  border-bottom: 1px solid var(--subtle-border);
}

.mock-row strong {
  font-family: "Menlo", "SFMono-Regular", Menlo, Consolas, monospace;
  color: var(--text);
  font-size: 0.78rem;
}

.mock-button {
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0.72rem;
  background: linear-gradient(180deg, #8275e5 0%, #6f63d8 100%);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
}

.split {
  padding: 0.1rem 0;
}

.section-heading {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.026em;
  max-width: 19ch;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

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

.cards-5 {
  grid-template-columns: 1fr;
}

.card {
  border: 1px solid var(--subtle-border);
  border-radius: var(--radius-md);
  background: var(--panel);
  padding: 1.28rem;
  display: grid;
  gap: 0.5rem;
  box-shadow: var(--shadow-card);
  transition:
    transform 320ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 320ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 220ms ease;
}

.card h3 {
  font-size: 1.04rem;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
}

.feature-card {
  gap: 0.65rem;
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--accent-line);
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
}

.feature-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--accent-ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.step {
  border: 1px solid var(--subtle-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.79);
  padding: 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  box-shadow: 0 12px 26px rgba(14, 18, 30, 0.05);
  transition:
    transform 300ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 300ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 220ms ease;
}

.step-index {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: inline-grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.81rem;
}

.step h3 {
  font-size: 0.99rem;
  margin-bottom: 0.33rem;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-card {
  gap: 0.65rem;
}

.pricing-sub {
  color: var(--text-secondary);
  font-size: 0.86rem;
}

.pricing-fit {
  font-size: 0.84rem;
  color: rgba(111, 99, 216, 0.9);
}

.price {
  font-size: 1.52rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.list-plain {
  list-style: none;
  display: grid;
  gap: 0.32rem;
  margin: 0.12rem 0 0.45rem;
}

.list-plain li {
  color: var(--text-secondary);
  font-size: 0.89rem;
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.faq {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  overflow: clip;
  box-shadow: 0 12px 26px rgba(14, 18, 30, 0.05);
  transition:
    transform 300ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 300ms cubic-bezier(0.19, 1, 0.22, 1),
    background-color 220ms ease;
}

.faq-question {
  width: 100%;
  border: 0;
  margin: 0;
  padding: 1.1rem 1.15rem;
  background: transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question::after {
  content: "+";
  font-size: 1rem;
  color: var(--text-secondary);
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-panel {
  overflow: hidden;
  max-height: 0;
  padding: 0 1.15rem;
  color: var(--text-secondary);
  font-size: 0.91rem;
  transition: max-height 320ms ease, padding-bottom 320ms ease;
}

.faq-item.is-open .faq-panel {
  padding-bottom: 1rem;
}

.final-cta {
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(130, 117, 229, 0.11));
  padding: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  box-shadow: 0 18px 42px rgba(13, 17, 28, 0.09);
}

.final-cta h2 {
  font-size: clamp(1.45rem, 4vw, 2.3rem);
  letter-spacing: -0.022em;
}

.final-cta p {
  color: var(--text-secondary);
  max-width: 44ch;
}

.site-footer {
  padding: 0.6rem 0 2.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-footer a {
  transition: color 220ms ease;
}

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

.legal-main {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 5rem;
}

.legal-hero {
  max-width: 760px;
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.026em;
  margin-bottom: 0.85rem;
}

.legal-content {
  display: grid;
  gap: 0.9rem;
}

.legal-card {
  border: 1px solid var(--subtle-border);
  border-radius: var(--radius-md);
  background: var(--panel);
  padding: 1.2rem;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.52rem;
}

.legal-card h2 {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.legal-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  max-width: 68ch;
}

.legal-list {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  display: grid;
  gap: 0.25rem;
}

.legal-list li {
  color: var(--text-secondary);
  font-size: 0.91rem;
}

.legal-action {
  margin-top: 0.15rem;
  justify-self: start;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (hover: hover) {
  .hero-visual:hover .mock-window {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 34px 64px rgba(13, 17, 28, 0.18), 0 8px 18px rgba(13, 17, 28, 0.08);
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(14, 18, 30, 0.09), 0 4px 12px rgba(14, 18, 30, 0.04);
    border-color: rgba(130, 117, 229, 0.22);
  }

  .step:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(14, 18, 30, 0.08);
    border-color: rgba(130, 117, 229, 0.22);
  }

  .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(14, 18, 30, 0.08);
    background: rgba(255, 255, 255, 0.95);
  }
}

.reveal .card,
.reveal .step,
.reveal .faq-item {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible .card,
.reveal.is-visible .step,
.reveal.is-visible .faq-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .card:nth-child(2),
.reveal.is-visible .step:nth-child(2),
.reveal.is-visible .faq-item:nth-child(2) {
  transition-delay: 80ms;
}

.reveal.is-visible .card:nth-child(3),
.reveal.is-visible .step:nth-child(3),
.reveal.is-visible .faq-item:nth-child(3) {
  transition-delay: 140ms;
}

.reveal.is-visible .card:nth-child(4),
.reveal.is-visible .faq-item:nth-child(4) {
  transition-delay: 200ms;
}

.reveal.is-visible .card:nth-child(5),
.reveal.is-visible .faq-item:nth-child(5) {
  transition-delay: 260ms;
}

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

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

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

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

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

  .legal-content .legal-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .topnav {
    display: flex;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
  }

  .hero-visual {
    justify-self: end;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .mock-window {
    animation: none;
  }

  .reveal .card,
  .reveal .step,
  .reveal .faq-item {
    opacity: 1;
    transform: none;
  }
}
