:root {
  --bg: #f7f8f8;
  --surface: #ffffff;
  --surface-soft: #f3f4f5;
  --text: #08090a;
  --text-secondary: #474b52;
  --text-tertiary: #686d75;
  --border: #d9dce1;
  --border-strong: #b8bdc5;
  --brand: #7c3aed;
  --brand-soft: rgba(124, 58, 237, 0.08);
  --shadow: 0 18px 48px rgba(8, 9, 10, 0.08);
  --shadow-small: 0 8px 24px rgba(8, 9, 10, 0.06);
  --radius-small: 8px;
  --radius: 14px;
  --radius-large: 24px;
  --wrap: 1160px;
  --font: "Inter var", "Inter", "SF Pro Display", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-feature-settings: "cv01", "ss03";
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
  font-feature-settings: "cv01", "ss03";
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

h1,
h2,
h3,
strong {
  font-weight: 590;
}

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 12vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: -0.012em;
}

p {
  color: var(--text-secondary);
}

.wrap {
  width: min(100% - 32px, var(--wrap));
  margin-inline: auto;
}

.wrap--narrow {
  max-width: 780px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-small);
  background: var(--text);
  color: var(--surface);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 220, 225, 0.88);
  background: rgba(247, 248, 248, 0.94);
  backdrop-filter: blur(14px);
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 590;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand img {
  width: 30px;
  height: 30px;
}

.site-nav__links,
.mobile-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 510;
}

.site-nav__links {
  display: none;
}

.site-nav__links a,
.mobile-nav a {
  color: var(--text-secondary);
  text-decoration: none;
}

.site-nav__links a:hover,
.mobile-nav a:hover {
  color: var(--text);
}

.site-nav__links .button {
  color: var(--surface);
}

.nav-toggle {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.mobile-nav {
  padding: 10px 20px 20px;
  flex-direction: column;
  align-items: stretch;
}

.mobile-nav[hidden] {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 19px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--text);
  border-radius: var(--radius-small);
  background: var(--text);
  color: var(--surface);
  font-weight: 590;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-small);
}

.button--brand {
  border-color: var(--brand);
  background: var(--brand);
}

.button--secondary {
  border-color: var(--border-strong);
  background: var(--surface);
  color: var(--text);
}

.button--small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

.eyebrow,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 590;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.tag {
  margin-bottom: 0;
  padding: 5px 10px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 999px;
  background: var(--brand-soft);
}

.hero {
  padding: clamp(76px, 11vw, 142px) 0 clamp(84px, 12vw, 150px);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.hero__art {
  max-width: 580px;
}

.hero__lead,
.page-intro {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.actions .button {
  width: 100%;
}

.hero__note {
  margin: 22px 0 0;
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.preview-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.preview-card::before,
.preview-card::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(124, 58, 237, 0.28);
  background: var(--brand-soft);
  content: "";
}

.preview-card::before {
  top: -28px;
  right: -24px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
}

.preview-card::after {
  bottom: -25px;
  left: -30px;
  width: 74px;
  height: 74px;
  border-radius: 18px;
}

.browser-bar {
  display: flex;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
}

.preview-card__body {
  padding: 36px 10px 12px;
}

.preview-kicker {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 590;
}

.preview-card__body h2 {
  max-width: 400px;
  margin: 8px 0 16px;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
}

.preview-lines {
  display: grid;
  gap: 9px;
  margin-top: 28px;
}

.preview-lines span {
  height: 8px;
  border-radius: 99px;
  background: var(--surface-soft);
}

.preview-lines span:nth-child(2) {
  width: 78%;
}

.preview-lines span:nth-child(3) {
  width: 58%;
  background: var(--brand);
}

.section {
  padding: clamp(72px, 10vw, 124px) 0;
  border-top: 1px solid var(--border);
}

.section--white {
  background: var(--surface);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.06rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.step-number {
  display: flex;
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(124, 58, 237, 0.28);
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 590;
}

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.price-card--featured {
  border-color: rgba(124, 58, 237, 0.48);
}

.price {
  margin: 24px 0 4px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 590;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price small {
  font-size: 0.93rem;
  font-weight: 510;
  letter-spacing: 0;
}

.vat {
  margin-bottom: 24px;
  color: var(--text-tertiary);
  font-size: 0.88rem;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--text-secondary);
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--brand);
  font-weight: 590;
  content: "✓";
}

.price-card .button {
  margin-top: auto;
}

.note {
  padding: 20px 22px;
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: var(--radius);
  background: var(--brand-soft);
}

.note p:last-child {
  margin-bottom: 0;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-row {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.proof-row:last-child {
  border-bottom: 0;
}

.proof-row svg {
  width: 24px;
  color: var(--brand);
}

.company-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
}

.company-fact {
  min-width: 0;
  padding: 22px;
  background: var(--surface);
}

.company-fact span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-tertiary);
  font-size: 0.78rem;
  font-weight: 510;
}

.company-fact strong,
.company-fact a {
  overflow-wrap: anywhere;
}

.demo-window {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.demo-window__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.demo-window__body {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 280px;
}

.demo-copy {
  padding: clamp(26px, 5vw, 50px);
}

.demo-art {
  display: grid;
  min-height: 240px;
  padding: 30px;
  place-items: center;
  background: var(--surface-soft);
}

.demo-art__shape {
  width: min(230px, 70%);
  aspect-ratio: 1;
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 34% 66% 44% 56%;
  background: var(--brand-soft);
}

.faq {
  border-top: 1px solid var(--border);
}

.faq details {
  border-bottom: 1px solid var(--border);
}

.faq summary {
  padding: 22px 36px 22px 0;
  cursor: pointer;
  font-weight: 590;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  float: right;
  margin-right: -28px;
  color: var(--brand);
  content: "+";
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 730px;
  padding: 0 0 22px;
}

.form-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.field label {
  font-size: 0.9rem;
  font-weight: 510;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-small);
  background: var(--surface);
  color: var(--text);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
}

.form-status {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--surface-soft);
}

.form-status[hidden] {
  display: none;
}

.form-status:focus {
  outline: none;
}

.form-status a {
  color: var(--brand);
}

.page-hero {
  padding: clamp(72px, 10vw, 118px) 0 64px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 780px;
}

.prose {
  padding: 72px 0 112px;
}

.prose h2 {
  margin-top: 54px;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 32px;
}

.prose p,
.prose li {
  color: var(--text-secondary);
}

.prose li + li {
  margin-top: 8px;
}

.prose a {
  color: var(--brand);
}

.legal-meta {
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}

.contact-link {
  display: block;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-small);
  text-decoration: none;
}

.contact-link span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-tertiary);
  font-size: 0.82rem;
  font-weight: 510;
}

.contact-link strong {
  color: var(--brand);
  overflow-wrap: anywhere;
}

.steps-list {
  padding: 0;
  list-style: none;
  counter-reset: install-step;
}

.steps-list li {
  position: relative;
  margin-bottom: 18px;
  padding: 72px 22px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  counter-increment: install-step;
}

.steps-list li::before {
  position: absolute;
  top: 22px;
  left: 22px;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--surface);
  font-weight: 590;
  content: counter(install-step);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 54px 0;
  align-items: start;
}

.site-footer p {
  max-width: 480px;
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.site-footer__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 28px;
  font-size: 0.9rem;
}

.site-footer__links a {
  color: var(--text-secondary);
}

.site-footer__bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  color: var(--text-tertiary);
  font-size: 0.8rem;
}

@media (min-width: 621px) {
  h1 {
    font-size: clamp(2.6rem, 6.5vw, 4.75rem);
  }

  .wrap {
    width: min(100% - 40px, var(--wrap));
  }

  .grid--2,
  .form-grid,
  .company-facts,
  .contact-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .actions {
    flex-direction: row;
    align-items: center;
  }

  .actions .button {
    width: auto;
  }

  .steps-list li {
    padding: 26px 26px 26px 78px;
  }

  .steps-list li::before {
    top: 25px;
    left: 25px;
  }

  .site-footer__main {
    grid-template-columns: 1fr auto;
  }

  .site-footer__links {
    grid-template-columns: repeat(2, auto);
  }
}

@media (min-width: 841px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  }

  .hero__art {
    max-width: none;
  }

  .form-shell {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .demo-window__body {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .site-nav__links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .demo-art {
    min-height: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
