:root {
  --background: hsl(264 100% 98%);
  --foreground: hsl(280 12% 15%);
  --card: hsl(270 100% 99%);
  --card-foreground: hsl(280 12% 15%);
  --popover: hsl(270 100% 99%);
  --popover-foreground: hsl(280 12% 15%);
  --primary: hsl(280 12% 15%);
  --primary-foreground: hsl(264 100% 98%);
  --secondary: hsl(264 60% 86%);
  --secondary-foreground: hsl(280 12% 15%);
  --muted: hsl(264 40% 95%);
  --muted-foreground: hsl(280 8% 45%);
  --accent: hsl(264 100% 86%);
  --accent-foreground: hsl(280 12% 15%);
  --destructive: hsl(0 84.2% 60.2%);
  --destructive-foreground: hsl(0 0% 98%);
  --border: hsl(264 20% 90%);
  --input: hsl(264 20% 90%);
  --ring: hsl(264 60% 86%);
  --chart-1: hsl(264 60% 70%);
  --chart-2: hsl(280 40% 60%);
  --chart-3: hsl(240 50% 65%);
  --chart-4: hsl(300 40% 70%);
  --chart-5: hsl(220 50% 60%);
  --radius: 1rem;
  --sidebar-background: hsl(264 100% 98%);
  --sidebar-foreground: hsl(280 12% 15%);
  --sidebar-primary: hsl(280 12% 15%);
  --sidebar-primary-foreground: hsl(264 100% 98%);
  --sidebar-accent: hsl(264 40% 95%);
  --sidebar-accent-foreground: hsl(280 12% 15%);
  --sidebar-border: hsl(264 20% 90%);
  --sidebar-ring: hsl(264 60% 86%);
  --shadow: none;
  --sticky-offset: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--sticky-offset);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--foreground);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.12) 48%, rgba(255, 255, 255, 0.28) 72%),
    linear-gradient(90deg, #ffffff 0%, #f3ecff 8%, #f3ecff 92%, #ffffff 100%);
}

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

main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 0;
}

.section,
.cta,
.footer {
  border: 1px solid var(--border);
  background: hsl(270 100% 99% / 0.72);
  backdrop-filter: none;
  border-radius: 1rem;
  box-shadow: none;
}

.section[id],
.cta[id] {
  scroll-margin-top: var(--sticky-offset);
}

.topbar {
  width: 100%;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 30;
  background-color: rgb(251 250 255 / var(--topbar-bg-alpha, 0));
  backdrop-filter: blur(var(--topbar-blur, 0px));
  -webkit-backdrop-filter: blur(var(--topbar-blur, 0px));
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 -0.5px 0 rgb(42 34 43 / var(--topbar-line-alpha, 0));
  filter: none;
  outline: 0;
  background-image: none;
  transition:
    background-color 0.42s ease,
    backdrop-filter 0.42s ease,
    opacity 0.7s ease,
    transform 0.7s ease;
  opacity: 0;
  transform: translateY(-16px);
}

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

.topbar.is-scrolled {
  box-shadow: inset 0 -0.5px 0 rgb(42 34 43 / var(--topbar-line-alpha, 0));
}

.topbar-inner {
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
}

.brand-logo {
  width: 46px;
  height: 46px;
  display: block;
  flex: 0 0 auto;
  margin-top: 0;
  margin-right: -3px;
  transition: transform 200ms ease;
  transform-origin: center;
}

.brand:hover .brand-logo {
  transform: scale(1.06);
}

.brand-text {
  font-size: 1.25rem;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.nav-actions .nav-button {
  height: 40px;
  padding: 8px 20px;
  font-size: 0.875rem;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.nav-actions .nav-button.button-primary {
  background: #2a222b;
  color: #f5f0ff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(42, 34, 43, 0.15);
  font-weight: 600;
}

.nav-actions .nav-button.button-primary:hover,
.nav-actions .nav-button.button-primary:focus-visible {
  background: rgba(42, 34, 43, 0.9);
  box-shadow: 0 8px 20px rgba(42, 34, 43, 0.2);
  transform: none;
}

.nav-actions .nav-button.button-secondary {
  background: transparent;
  color: rgba(42, 34, 43, 0.65);
  border-color: transparent;
  box-shadow: none;
  font-weight: 500;
}

.nav-actions .nav-button.button-secondary:hover,
.nav-actions .nav-button.button-secondary:focus-visible {
  background: rgba(42, 34, 43, 0.05);
  color: #2a222b;
  transform: none;
}

.nav-center {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: translate(-50%, -50%);
}

.nav-center a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 12px;
  color: rgba(42, 34, 43, 0.55);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nav-center a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 0;
  border-bottom: 1px solid rgba(42, 34, 43, 0.18);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nav-center a:hover,
.nav-center a:focus-visible {
  color: #2a222b;
  outline: none;
  box-shadow: none;
}

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

.hero {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding: 60px 0 24px;
  margin-top: 0;
  min-height: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  text-align: left;
}

@media (min-width: 768px) {
  .topbar {
    height: 72px;
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: hsl(280 12% 15%);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta h2 {
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1;
}

.hero-solo {
  text-align: left;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 470px;
  flex: 1 1 0;
  min-height: 430px;
  padding-bottom: 52px;
}

.hero-title {
  font-size: clamp(2.75rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.22;
  max-width: none;
  color: #2a222b;
  margin-bottom: 1.5rem;
  padding-bottom: 10px;
  letter-spacing: -0.015em;
  overflow: visible;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
  line-height: 1.22;
}

.hero-title-accent {
  background: linear-gradient(90deg, #2a222b 0%, #6b4fbb 55%, #cdb7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 2px 0 0;
  max-width: 100%;
  color: var(--muted-foreground);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 0;
  transform: none;
}

.hero-button-primary {
  gap: 8px;
  height: 56px;
  width: 277px;
  padding: 0 32px;
  background: #2a222b;
  color: #f5f0ff;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(42, 34, 43, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.hero-button-primary span {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}

.hero-button-primary svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.hero-button-primary:hover,
.hero-button-primary:focus-visible {
  background: rgba(42, 34, 43, 0.92);
  box-shadow: 0 18px 34px rgba(42, 34, 43, 0.3);
  transform: translateY(-1px);
}

.hero-button-primary:hover svg,
.hero-button-primary:focus-visible svg {
  transform: translateX(4px);
}

.hero-button-secondary {
  gap: 0;
  height: 56px;
  padding: 8px 32px;
  background: transparent;
  color: #2a222bb3;
  border: 1px solid rgba(42, 34, 43, 0.1);
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.hero-button-secondary span {
  color: #2a222bb3;
}

.hero-button-secondary:hover,
.hero-button-secondary:focus-visible {
  background: rgba(205, 183, 255, 0.1);
  border-color: rgba(205, 183, 255, 0.4);
  color: #2a222b;
  transform: translateY(-1px);
}

.hero-button-secondary:hover span,
.hero-button-secondary:focus-visible span {
  color: #2a222b;
}

.hero-visual {
  width: min(560px, 100%);
  height: 468px;
  margin-top: -16px;
  margin-left: 24px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid hsl(214.3 31.8% 91.4%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  flex: 0 1 560px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.doc-upload-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 264px;
  height: 184px;
  transform: translateY(-22px);
}

.doc-stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 264px;
  height: 184px;
  margin: 0;
  transform: translateY(-44px) scale(1.26);
  transform-origin: center;
}

.doc-upload-icon {
  position: absolute;
  left: 50%;
  top: calc(100% - 12px);
  transform: translateX(-50%);
  font-size: 1.9rem;
  line-height: 1;
  color: rgba(107, 79, 187, 0.36);
  pointer-events: none;
}

.doc-upload-copy {
  position: absolute;
  left: 50%;
  top: calc(100% + 30px);
  margin: 0;
  transform: translateX(-50%);
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(42, 34, 43, 0.58);
  white-space: nowrap;
  pointer-events: none;
}

.doc-upload-divider {
  position: absolute;
  left: 50%;
  top: calc(100% + 50px);
  display: flex;
  align-items: center;
  gap: 12px;
  width: 172px;
  transform: translateX(-50%);
  pointer-events: none;
}

.doc-upload-divider span {
  flex: 1;
  height: 1px;
}

.doc-upload-divider span:first-child {
  background: linear-gradient(
    to left,
    rgba(42, 34, 43, 0.14),
    rgba(42, 34, 43, 0)
  );
}

.doc-upload-divider span:last-child {
  background: linear-gradient(
    to right,
    rgba(42, 34, 43, 0.14),
    rgba(42, 34, 43, 0)
  );
}

.doc-upload-divider em {
  font-style: normal;
  font-size: 0.7rem;
  line-height: 1;
  color: rgba(42, 34, 43, 0.42);
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.doc-upload-button {
  position: absolute;
  left: 50%;
  top: calc(100% + 78px);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 46px;
  padding: 0 22px;
  border-radius: 16px;
  border: 0;
  background: rgba(205, 183, 255, 0.18);
  color: #28222b;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  pointer-events: auto;
}

.doc-upload-button:hover,
.doc-upload-button:focus-visible {
  background: rgba(205, 183, 255, 0.26);
  color: #28222b;
}

.doc-sheet {
  --x: 0px;
  --y: 0px;
  --rot: 0deg;

  position: relative;
  width: 96px;
  height: 128px;
  border-radius: 8px;
  border: 1px solid rgba(107, 79, 187, 0.34);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 18px rgba(107, 79, 187, 0.08);
  backdrop-filter: blur(3px);
  overflow: hidden;
  will-change: transform;
  transform: translate(var(--x), var(--y)) rotate(var(--rot));
  transition:
    transform 1.45s cubic-bezier(0.22, 1, 0.3, 1),
    border-color 0.7s ease,
    box-shadow 0.7s ease,
    background 0.7s ease;
}

.doc-sheet-left {
  --x: 24px;
  --y: -10px;
  --rot: -14deg;
  transform-origin: top right;
  z-index: 10;
  transition-delay: 0s;
}

.doc-sheet-center {
  --x: 0px;
  --y: 0px;
  --rot: 0deg;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-delay: 0.05s;
}

.doc-sheet-right {
  --x: -24px;
  --y: -10px;
  --rot: 14deg;
  transform-origin: top left;
  z-index: 10;
  transition-delay: 0.1s;
}

.doc-upload-card.is-open .doc-sheet-left {
  --x: -25px;
  --y: -25px;
  --rot: -22deg;
}

.doc-upload-card.is-open .doc-sheet-center {
  --y: -25px;
}

.doc-upload-card.is-open .doc-sheet-right {
  --x: 25px;
  --y: -25px;
  --rot: 22deg;
}

.doc-sheet span {
  display: block;
  height: 8px;
  margin: 0 8px 8px;
  border-radius: 2px;
  background: rgba(107, 79, 187, 0.24);
  width: auto;
}

.doc-sheet span:first-child {
  margin-top: 18px;
}

.doc-sheet span:nth-child(2) {
  width: 83%;
}

.doc-sheet span:last-child {
  margin-bottom: 0;
}

.doc-sheet-left span:first-child {
  width: calc(100% - 16px);
}

.doc-sheet-left span:nth-child(2) {
  width: calc(100% - 28px);
}

.doc-sheet-left span:last-child {
  width: calc(100% - 20px);
}

.doc-sheet-right span:first-child {
  width: calc(100% - 20px);
}

.doc-sheet-right span:nth-child(2) {
  width: calc(100% - 26px);
}

.doc-sheet-right span:last-child {
  width: calc(100% - 16px);
}

.doc-sheet-center svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: rgba(107, 79, 187, 0.24);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: inherit;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--primary-foreground);
  background: var(--primary);
  box-shadow: none;
}

.button-secondary {
  color: var(--primary);
  background: hsl(270 100% 99% / 0.6);
  border-color: var(--border);
}

.nav-button {
  min-width: 92px;
}

.feature-card {
  padding: 18px;
  border-radius: 1rem;
  background: hsl(270 100% 99% / 0.92);
  border: 1px solid hsl(264 20% 90% / 0.8);
  text-align: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #cdb7ff1a;
  color: #2a222bb3;
}

.feature-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.feature-icon i {
  font-size: 20px;
  line-height: 1;
}

.feature-card h3 {
  margin-top: 0;
}

.step-card {
  width: 285px;
  padding: 18px;
  border-radius: 16px;
  background: transparent;
  border: 0;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.section {
  margin-top: 0;
  padding: 30px 34px 34px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.section-heading {
  display: grid;
  place-items: center;
  gap: 0;
  margin-bottom: 64px;
  text-align: center;
}

.contact-section {
  display: grid;
  justify-items: center;
}

.contact-section .section-heading {
  margin-bottom: 48px;
}

.section--pricing .section-heading {
  margin-bottom: 64px;
}

.section-kicker {
  margin: 0 0 12px;
  color: #cdb7ff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  color: #2a222b;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  max-width: none;
  white-space: nowrap;
}

.section-description {
  margin: 0;
  max-width: 32rem;
  color: hsl(280 12% 15% / 0.5);
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.contact-panel {
  width: min(632px, 100%);
  min-height: 518px;
  height: auto;
  border-radius: 16px;
  background: #faf8ff;
  box-shadow: none;
  border: 0;
}

.contact-form {
  padding: 40px;
  display: grid;
  gap: 0;
  align-content: start;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field + .contact-field {
  margin-top: 24px;
}

.contact-field--message {
  margin-top: 24px;
}

.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2a222b;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}

.contact-label i {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  line-height: 1;
  color: rgba(42, 34, 43, 0.36);
  flex: 0 0 auto;
}

.contact-label svg {
  width: 15px;
  height: 15px;
  display: block;
  flex: 0 0 auto;
  color: rgba(42, 34, 43, 0.36);
  fill: currentColor;
  stroke: none;
  transform: scaleX(-1);
}

.contact-field input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(42, 34, 43, 0.08);
  background: rgba(250, 247, 255, 0.6);
  color: #2a222b;
  font: inherit;
  font-size: 0.875rem;
  line-height: 1;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-field textarea {
  width: 100%;
  min-height: 130px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(42, 34, 43, 0.08);
  background: rgba(250, 247, 255, 0.6);
  color: #2a222b;
  font: inherit;
  font-size: 0.875rem;
  line-height: 1.5;
  outline: none;
  resize: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-field input::placeholder {
  color: rgba(42, 34, 43, 0.2);
}

.contact-field textarea::placeholder {
  color: rgba(42, 34, 43, 0.2);
}

.contact-field input:focus {
  border-color: rgba(205, 183, 255, 0.55);
}

.contact-field textarea:focus {
  border-color: rgba(205, 183, 255, 0.55);
}

.contact-field.is-invalid input,
.contact-field.is-invalid textarea {
  border-color: rgba(255, 99, 99, 0.75);
}

.contact-field.is-invalid input:focus,
.contact-field.is-invalid textarea:focus {
  border-color: rgba(255, 99, 99, 0.75);
}

.contact-error {
  margin: 0;
  color: #ff665f;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.contact-error:empty {
  display: none;
}

.contact-submit {
  width: 100%;
  height: 48px;
  margin-top: 32px;
  padding: 8px 16px;
  border: 0;
  border-radius: 16px;
  background: #2a222b;
  color: #f5f0ff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(42, 34, 43, 0.16);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: none;
  background: rgba(42, 34, 43, 0.92);
  box-shadow: 0 10px 24px rgba(42, 34, 43, 0.2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 299px);
  justify-content: space-between;
  gap: 0;
  width: 938px;
  max-width: 938px;
  margin: 0 auto;
  align-items: start;
}

.pricing-grid > * {
  min-width: 0;
}

.pricing-card {
  position: relative;
  width: 299px;
  height: 496px;
  padding: 32px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(205, 183, 255, 0.22);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow:
    0 2px 6px rgba(42, 34, 43, 0.04),
    0 16px 32px rgba(42, 34, 43, 0.08);
}

.pricing-card-featured {
  border-color: rgba(205, 183, 255, 0.34);
  box-shadow:
    0 2px 6px rgba(42, 34, 43, 0.04),
    0 18px 40px rgba(205, 183, 255, 0.14);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 4px 16px;
  border-radius: 9999px;
  background: #2a222b;
  color: #f5f0ff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
}

.pricing-card-featured .pricing-badge {
  background: #2a222b;
  color: #f5f0ff;
}

.pricing-label {
  margin: 0 0 4px;
  color: #2a222b;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

.pricing-card h3 {
  margin: 0;
  color: #2a222b;
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pricing-period {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(42, 34, 43, 0.45);
  letter-spacing: 0;
}

.pricing-note {
  margin: 0 0 22px;
  color: rgba(42, 34, 43, 0.45);
  font-size: 0.875rem;
  line-height: 1.6;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.pricing-card li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(42, 34, 43, 0.7);
  font-size: 0.875rem;
  line-height: 1.5;
}

.pricing-card li::before {
  content: none;
}

.pricing-card li i {
  flex: 0 0 auto;
  color: #cdb7ff;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 3px;
  opacity: 0.85;
}

.pricing-card li span {
  display: block;
}

.pricing-button {
  margin-top: 28px;
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 16px;
  background: #f4edff;
  color: #2a222b;
  border: 1px solid rgba(205, 183, 255, 0.18);
  gap: 12px;
  box-shadow:
    0 1px 2px rgba(42, 34, 43, 0.04),
    0 4px 10px rgba(42, 34, 43, 0.06);
}

.pricing-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.pricing-button:hover,
.pricing-button:focus-visible {
  background: #ece3ff;
  border-color: rgba(205, 183, 255, 0.28);
  color: #2a222b;
  box-shadow:
    0 2px 4px rgba(42, 34, 43, 0.05),
    0 8px 16px rgba(42, 34, 43, 0.08);
  transform: none;
}

.pricing-button:hover svg,
.pricing-button:focus-visible svg {
  transform: translateX(6px);
}

.pricing-button-featured {
  background: #2a222b;
  color: #f5f0ff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(42, 34, 43, 0.2);
}

.pricing-button-featured:hover,
.pricing-button-featured:focus-visible {
  background: rgba(42, 34, 43, 0.9);
  border-color: transparent;
  color: #f5f0ff;
  box-shadow: 0 12px 28px rgba(42, 34, 43, 0.24);
}

.section-heading + .faq-list {
  margin-top: 0;
}

.faq-list {
  width: min(723px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(42, 34, 43, 0.05);
  background: rgba(255, 255, 255, 0.6);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}

.faq-item:hover,
.faq-item:focus-within {
  background: rgba(255, 255, 255, 0.8);
}

.faq-item.is-open {
  background: #ffffff;
  border-color: rgba(42, 34, 43, 0.05);
  box-shadow:
    0 1px 2px rgba(42, 34, 43, 0.03),
    0 10px 24px rgba(205, 183, 255, 0.08);
}

.faq-trigger {
  width: 100%;
  min-height: 0;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: inherit;
  color: #2a222b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}

.faq-trigger span {
  min-width: 0;
}

.faq-trigger svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  stroke: rgba(42, 34, 43, 0.38);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease, stroke 0.25s ease;
}

.faq-item.is-open .faq-trigger {
  color: #2a222b;
  font-weight: 600;
}

.faq-item.is-open .faq-trigger svg {
  transform: rotate(180deg);
  stroke: rgba(42, 34, 43, 0.42);
}

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

.faq-panel-inner {
  padding: 0 24px 20px;
}

.faq-item.is-open .faq-panel {
  max-height: 520px;
  opacity: 1;
}

.faq-panel p {
  margin: 0;
  color: rgba(42, 34, 43, 0.55);
  font-size: 0.875rem;
  line-height: 1.625;
  letter-spacing: -0.01em;
}

.section-heading + .feature-grid,
.section-heading + .steps {
  margin-top: 0;
}

.feature-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.steps {
  position: relative;
  grid-template-columns: repeat(3, 285px);
  justify-content: space-between;
  justify-items: center;
  width: 915px;
  margin: 0 auto;
}

.feature-card h3,
.step-card h3 {
  margin: 18px 0 10px;
  font-size: 1.1rem;
}

.feature-card p,
.step-card p {
  margin: 0;
  color: hsl(280 12% 15% / 0.5);
  font-size: 0.875rem;
  line-height: 1.625;
  letter-spacing: -0.01em;
}

.step-card h3 {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.step-card h3::before,
.step-card h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(42, 34, 43, 0) 0%,
    rgba(42, 34, 43, 0.14) 100%
  );
}

.step-card h3::before {
  margin-right: 4px;
}

.step-card h3::after {
  margin-left: 4px;
  transform: scaleX(-1);
}

.step-number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #2a222b;
  color: #f5f0ff;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}

.cta {
  width: 100vw;
  margin: 18px calc(50% - 50vw) 0;
  padding: 34px 32px 28px;
  display: block;
  background: #2a222b;
  color: #f5f0ff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-extended {
  display: block;
}

.footer-extended.reveal,
.footer-extended.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-links-block {
  display: grid;
  gap: 12px;
  justify-items: center;
  width: 100%;
}

.footer-label {
  margin: 0 0 6px;
  color: rgba(245, 240, 255, 0.48);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.footer-links-block a {
  color: rgba(245, 240, 255, 0.58);
  font-size: 0.95rem;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 240, 255, 0.12);
  border-radius: 12px;
  color: rgba(245, 240, 255, 0.34);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(245, 240, 255, 0.24);
  color: rgba(245, 240, 255, 0.82);
  background: rgba(245, 240, 255, 0.03);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.footer-socials svg path {
  display: block;
}

.footer-links-block a:hover,
.footer-links-block a:focus-visible {
  color: #f5f0ff;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin: 26px 0 22px;
  background: rgba(245, 240, 255, 0.24);
}

.footer-bottom {
  display: grid;
  gap: 8px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(245, 240, 255, 0.34);
  font-size: 0.875rem;
  line-height: 1.6;
}

.cta .eyebrow {
  color: hsl(264 100% 98% / 0.72);
}

.cta h2 {
  max-width: 11ch;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.cta .button-secondary {
  background: hsl(264 100% 98% / 0.08);
  color: var(--primary-foreground);
  border-color: hsl(264 100% 98% / 0.14);
}

.cta .button-primary {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.topbar.reveal {
  opacity: 0;
  transform: translateY(-16px);
}

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

@media (max-width: 980px) {
  .cta,
  .section-heading,
  .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .pricing-grid {
    grid-template-columns: repeat(2, 299px);
    justify-content: center;
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .hero,
  .section,
  .cta,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links-block {
    justify-items: start;
  }

  .hero-copy {
    min-height: 0;
  }

  .hero-actions {
    margin-top: 28px;
    padding-top: 0;
  }

  .nav-actions {
    gap: 10px;
  }

  .topbar-inner {
    width: min(100% - 20px, 1180px);
  }

  .nav-center {
    display: none;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 18px;
    max-width: none;
  }

  .pricing-card {
    width: 100%;
    max-width: 299px;
    margin: 0 auto;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section h2 {
    white-space: normal;
  }

  .hero {
    min-height: 420px;
    padding: 58px 18px 34px;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .hero-copy {
    gap: 14px;
    max-width: none;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-visual {
    width: 100%;
    height: 320px;
    flex-basis: auto;
    margin-left: 0;
  }
}
