:root {
  --background: #08080b;
  --foreground: #f7f7fb;
  --card: #17171f;
  --card-soft: #111117;
  --secondary: #20202a;
  --muted: #9a9aa8;
  --muted-strong: #c3c3cf;
  --border: #292934;
  --primary-action: #6868cd;
  --primary-action-hover: #5f5fc4;
  --primary-action-active: #5555b5;
  --primary-light: #b8b8ff;
  --focus-ring: #b8b8ff;
  --danger: #ef6262;
  --success: #74d8a1;
  --radius: 0.9rem;
  --font: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--foreground);
  background: rgba(104, 104, 205, 0.45);
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

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

[id] {
  scroll-margin-top: 5.5rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 3rem), 1400px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 6rem;
}

.site-background {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.site-background::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(155, 155, 180, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 155, 180, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(79, 79, 144, 0.13), transparent 42%);
  background-position: center top;
  background-size: 200px 200px, 200px 200px, 100% 100%;
  content: "";
  mask-image: radial-gradient(100% 100% at 50% 0%, #fff 30%, transparent 85%);
  pointer-events: none;
}

.text-gradient {
  color: transparent;
  background: linear-gradient(135deg, var(--primary-light), #e6e6ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.38rem 1rem;
  border: 1px solid rgba(104, 104, 205, 0.28);
  border-radius: 999px;
  color: var(--primary-light);
  background: rgba(104, 104, 205, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--danger {
  border-color: rgba(239, 98, 98, 0.28);
  color: var(--danger);
  background: rgba(239, 98, 98, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: var(--foreground);
  background: transparent;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

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

.button:active {
  transform: translateY(1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.58;
  box-shadow: none;
  transform: none;
}

.button:focus-visible,
.nav-link:focus-visible,
.feature-tab:focus-visible,
.mobile-menu-toggle:focus-visible,
.modal-close:focus-visible,
.footer-link:focus-visible,
.feature-demo:focus-visible,
.faq-item summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.button--primary {
  color: #fff;
  background: var(--primary-action);
  box-shadow: 0 12px 28px -12px rgba(104, 104, 205, 0.7);
}

.button--primary:hover {
  background: var(--primary-action-hover);
  box-shadow: 0 16px 34px -12px rgba(104, 104, 205, 0.75);
}

.button--primary:active {
  background: var(--primary-action-active);
}

.button--secondary {
  border: 1px solid rgba(155, 155, 180, 0.28);
  color: var(--muted-strong);
  background: rgba(32, 32, 42, 0.62);
}

.button--secondary:hover {
  border-color: rgba(184, 184, 255, 0.45);
  color: var(--foreground);
  background: rgba(32, 32, 42, 0.92);
}

.button--large {
  min-height: 3.25rem;
  padding-inline: 1.4rem;
  border-radius: 0.85rem;
  font-size: 1rem;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(23, 23, 31, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.interactive-card {
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.interactive-card:hover,
.interactive-card:focus-within {
  border-color: rgba(104, 104, 205, 0.42);
  background: #1b1b25;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.gradient-border {
  position: relative;
}

.gradient-border::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(104, 104, 205, 0.42), transparent 52%, rgba(184, 184, 255, 0.12));
  content: "";
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  pointer-events: none;
}

/* Header */
.site-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-nav.is-scrolled {
  border-color: rgba(155, 155, 180, 0.18);
  background: rgba(8, 8, 11, 0.86);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
}

.brand,
.footer-brand {
  color: var(--foreground);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-dot {
  color: var(--primary-light);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link {
  min-height: 2.75rem;
  padding: 0.6rem 0.85rem;
  border-radius: 0.6rem;
  color: var(--muted);
  background: transparent;
  font-size: 0.84rem;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover {
  color: var(--foreground);
  background: rgba(32, 32, 42, 0.7);
}

.nav-action {
  min-height: 2.75rem;
  margin-left: 0.75rem;
  padding-inline: 1rem;
  font-size: 0.84rem;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  color: var(--foreground);
  background: transparent;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle[aria-expanded="true"] {
  background: var(--secondary);
}

.mobile-menu-toggle .icon {
  transition: transform 180ms ease;
}

.mobile-menu-toggle[aria-expanded="true"] .icon {
  transform: rotate(90deg);
}

.mobile-menu {
  position: fixed;
  z-index: 49;
  top: 4.25rem;
  right: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(8, 8, 11, 0.97);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
}

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

.mobile-menu .nav-link {
  width: 100%;
  padding: 0.8rem 1rem;
  text-align: left;
  font-size: 1rem;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 0.75rem;
}

/* Hero */
.hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 4rem;
}

.hero h1 {
  max-width: 44rem;
  margin-top: 1.5rem;
  font-size: clamp(2.55rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.hero-copy {
  max-width: 38rem;
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.hero-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-media {
  min-width: 0;
}

.hero-media-inner {
  width: 58rem;
  max-width: none;
  transform: translateX(1rem);
}

.hero-media picture,
.hero-media img {
  width: 100%;
}

.hero-media img {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.9rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

/* Product facts */
.facts-section {
  padding-block: 1.25rem 2rem;
}

.facts-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(155, 155, 180, 0.16);
}

.facts-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 4.25rem;
  padding: 0.75rem 1rem;
  color: var(--muted-strong);
  font-size: 0.9rem;
  text-align: center;
}

.facts-list li + li {
  border-left: 1px solid rgba(155, 155, 180, 0.16);
}

.facts-list .icon {
  color: var(--primary-light);
}

/* Shared section headings */
.section-heading {
  max-width: 47rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.features-copy h2,
.proof-copy h2,
.pricing-card h2,
.cta-copy h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.section-heading p,
.features-copy > p,
.proof-copy > p,
.pricing-card p,
.cta-copy p {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Problem */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
}

.problem-card h3 {
  font-size: 1rem;
  font-weight: 800;
}

.problem-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  border: 1px solid rgba(104, 104, 205, 0.24);
  border-radius: 0.75rem;
  color: var(--primary-light);
  background: rgba(104, 104, 205, 0.12);
}

.problem-card .icon-box {
  border-color: rgba(239, 98, 98, 0.24);
  color: #ff9292;
  background: rgba(239, 98, 98, 0.1);
}

.icon-box .icon {
  width: 1.35rem;
  height: 1.35rem;
}

/* Features */
.features-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 3.5rem;
}

.features-copy > p {
  max-width: 34rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.feature-item {
  position: relative;
  padding: 1rem 1rem 1rem 2.4rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
}

.feature-item.is-active {
  border-color: rgba(104, 104, 205, 0.25);
  background: rgba(104, 104, 205, 0.08);
}

.feature-tab {
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-height: 2.25rem;
  padding: 0;
  color: var(--foreground);
  background: transparent;
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
}

.feature-tab .icon {
  position: absolute;
  top: 1.1rem;
  left: 0.9rem;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--primary-light);
}

.feature-description {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.feature-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  color: var(--primary-light);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.feature-demo:hover {
  color: var(--foreground);
}

.feature-demo .icon {
  width: 1rem;
  height: 1rem;
}

.feature-mobile-preview {
  display: none;
}

.features-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 3024 / 1888;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.85rem;
  background: var(--card-soft);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.features-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-preview-image {
  will-change: transform, opacity;
}

@keyframes feature-preview-old {
  from { opacity: 1; transform: translate3d(0, 0, 0); }
  to { opacity: 0; transform: translate3d(-3%, 0, 0); }
}

@keyframes feature-preview-new {
  from { opacity: 0; transform: translate3d(3%, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.feature-preview-image-in {
  animation: feature-preview-new 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feature-preview-image-out {
  animation: feature-preview-old 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.audience-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.audience-card h3 {
  margin-top: 1.35rem;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.audience-card--primary {
  background: linear-gradient(145deg, rgba(104, 104, 205, 0.16), rgba(23, 23, 31, 0.92) 55%);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.check-list .icon {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 1.2rem;
  margin-top: 0.12rem;
  color: var(--primary-light);
}

.audience-action {
  width: 100%;
  margin-top: 1.75rem;
}

/* Proof */
.proof-section {
  padding-top: 2rem;
}

.proof-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 3rem;
  padding: 3rem;
  border: 1px solid rgba(104, 104, 205, 0.28);
  border-radius: 1.3rem;
  background: linear-gradient(135deg, rgba(104, 104, 205, 0.15), rgba(23, 23, 31, 0.94) 50%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.proof-copy .button {
  margin-top: 1.75rem;
}

.proof-note {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.proof-media {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.proof-media picture,
.proof-media img {
  width: 100%;
}

/* Outcomes and process */
.benefits-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}

.benefit-card {
  padding: 1.5rem;
  text-align: center;
}

.benefit-card .icon-box {
  margin-inline: auto;
}

.benefit-card h3 {
  margin-top: 1.2rem;
  font-size: 1rem;
  font-weight: 800;
}

.benefit-card p,
.step-card p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.how-it-works {
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(90, 90, 170, 0.08), transparent 60%);
}

.step-card {
  padding: 1.75rem;
}

.step-number {
  display: block;
  color: var(--primary-light);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.step-card h3 {
  margin-top: 1.2rem;
  font-size: 1.02rem;
  font-weight: 800;
}

/* Pricing */
.pricing-section {
  padding-top: 2rem;
}

.pricing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
}

.pricing-card > div {
  max-width: 48rem;
}

.pricing-card h2 {
  font-size: clamp(1.9rem, 4vw, 2.65rem);
}

.pricing-card .button {
  flex: 0 0 auto;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 4rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  background: rgba(23, 23, 31, 0.82);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.8rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 2px;
  border-radius: 2px;
  background: var(--primary-light);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item > p {
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Final CTA and forms */
.cta-section {
  padding-block: 4rem 7rem;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 3rem;
  padding: 3.5rem;
  border: 1px solid rgba(155, 155, 180, 0.2);
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(23, 23, 31, 0.96), rgba(32, 32, 42, 0.62));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.cta-copy {
  max-width: 34rem;
}

.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.lead-form--inline {
  padding: 1.5rem;
  border: 1px solid rgba(155, 155, 180, 0.18);
  border-radius: 1rem;
  background: rgba(8, 8, 11, 0.32);
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  color: var(--muted-strong);
  font-size: 0.85rem;
  font-weight: 600;
}

.form-field input {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  color: var(--foreground);
  background: rgba(8, 8, 11, 0.72);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input::placeholder {
  color: #858592;
}

.form-field input:focus {
  border-color: var(--primary-action);
  box-shadow: 0 0 0 3px rgba(104, 104, 205, 0.18);
  outline: 0;
}

.form-field input[aria-invalid="true"],
.form-consent--checkbox input[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 1.05rem;
  color: #ff9b9b;
  font-size: 0.78rem;
  line-height: 1.35;
}

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

.form-error {
  min-height: 1.15rem;
  color: #ff9b9b;
  font-size: 0.82rem;
}

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

.form-status {
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(116, 216, 161, 0.35);
  border-radius: 0.65rem;
  color: var(--success);
  background: rgba(116, 216, 161, 0.08);
  font-size: 0.86rem;
  line-height: 1.45;
}

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

.form-consent--checkbox {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.7rem;
  color: var(--muted-strong);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-consent--checkbox input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem 0 0;
  accent-color: var(--primary-action);
}

.form-consent--checkbox label {
  cursor: pointer;
}

.form-consent a,
.footer-link {
  color: var(--primary-light);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.form-consent a:hover,
.footer-link:hover {
  color: var(--foreground);
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.lead-form .button {
  width: 100%;
}

/* Footer */
.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid rgba(155, 155, 180, 0.15);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-copy,
.footer-link {
  font-size: 0.82rem;
}

.footer-copy {
  color: #a4a4b0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

/* Modal */
.contact-dialog {
  width: min(calc(100% - 2rem), 30rem);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0;
  border: 1px solid rgba(155, 155, 180, 0.25);
  border-radius: 1rem;
  color: var(--foreground);
  background: var(--card);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.6);
}

.contact-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.contact-dialog.is-open {
  display: block;
  position: fixed;
  z-index: 80;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

.modal-content {
  position: relative;
  padding: 2rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.55rem;
  color: var(--muted);
  background: transparent;
}

.modal-close:hover {
  color: var(--foreground);
  background: var(--secondary);
}

.modal-title {
  padding-right: 2.5rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.modal-description {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-dialog .lead-form {
  margin-top: 1.5rem;
}

/* Progressive enhancement */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

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

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

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 0;
  }

  .nav-link {
    padding-inline: 0.6rem;
    font-size: 0.8rem;
  }

  .hero-layout,
  .features-layout {
    gap: 2rem;
  }

  .hero-media-inner {
    width: 100%;
    max-width: 100%;
    transform: none;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .hero-layout,
  .features-layout,
  .proof-card,
  .faq-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-media {
    margin-top: 1rem;
  }

  .hero-media-inner {
    width: 100%;
    max-width: 100%;
  }

  .features-preview {
    order: -1;
  }

  .feature-mobile-preview {
    display: none;
  }

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

  .faq-layout {
    gap: 2rem;
  }

  .pricing-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-card {
    gap: 2rem;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 2rem), 1400px);
  }

  .section {
    padding-block: 4.75rem;
  }

  .hero {
    padding-top: 7.5rem;
    padding-bottom: 3.5rem;
  }

  .hero h1 {
    margin-top: 1.25rem;
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  .hero-copy,
  .section-heading p,
  .features-copy > p,
  .proof-copy > p,
  .pricing-card p,
  .cta-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .proof-copy .button,
  .pricing-card .button {
    width: 100%;
  }

  .hero-media img {
    aspect-ratio: 1.3;
    object-fit: cover;
    object-position: center;
  }

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

  .facts-list li {
    justify-content: flex-start;
    min-height: 3.6rem;
    padding-inline: 0.3rem;
    font-size: 0.82rem;
    text-align: left;
  }

  .facts-list li:nth-child(odd) {
    border-left: 0;
  }

  .facts-list li:nth-child(n + 3) {
    border-top: 1px solid rgba(155, 155, 180, 0.16);
  }

  .problem-grid,
  .audience-grid,
  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }

  .problem-card,
  .audience-card,
  .step-card {
    padding: 1.35rem;
  }

  .features-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .features-preview {
    display: none;
  }

  .feature-list {
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .feature-item {
    padding: 0.95rem 0.9rem 0.95rem 2.3rem;
  }

  .feature-mobile-preview {
    display: none;
    margin-top: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.65rem;
  }

  .feature-item.is-active .feature-mobile-preview {
    display: block;
  }

  .feature-mobile-preview img {
    width: 100%;
    aspect-ratio: 1.6;
    object-fit: cover;
  }

  .proof-section {
    padding-top: 1rem;
  }

  .proof-card,
  .pricing-card,
  .cta-card {
    padding: 1.5rem;
  }

  .proof-card {
    gap: 1.75rem;
  }

  .pricing-section {
    padding-top: 1rem;
  }

  .faq-layout {
    gap: 1.75rem;
  }

  .cta-section {
    padding-block: 3rem 5rem;
  }

  .cta-card {
    gap: 1.5rem;
  }

  .lead-form--inline,
  .modal-content {
    padding: 1.25rem;
  }

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

@media (max-width: 680px) and (max-height: 700px) {
  .contact-dialog {
    max-height: calc(100dvh - 1rem);
  }

  .contact-dialog .lead-form {
    gap: 0.75rem;
    margin-top: 1rem;
  }
}
