:root {
  --bg: #0c0b12;
  --bg-2: #12111a;
  --panel: rgba(25, 23, 36, 0.88);
  --panel-strong: #191725;
  --panel-soft: rgba(38, 35, 54, 0.62);
  --text: #f5f3fb;
  --muted: #b1adbf;
  --muted-2: #8c869d;
  --accent: #4f3b78;
  --accent-strong: #69509e;
  --accent-soft: rgba(105, 80, 158, 0.2);
  --border: rgba(255, 255, 255, 0.09);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.24);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1200px;
  --font-sans: "Inter", Arial, Helvetica, sans-serif;
  --font-serif: "Roboto Slab", "Rockwell", "Georgia", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top right, rgba(88, 65, 138, 0.28), transparent 26%),
    radial-gradient(circle at 20% 0%, rgba(63, 48, 102, 0.24), transparent 22%),
    linear-gradient(180deg, #09080d 0%, var(--bg) 28%, var(--bg-2) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.015)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  opacity: 0.18;
}

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

.site-shell {
  position: relative;
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 28px 0 88px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0 24px;
}

.brand-mark {
  padding-left: 0;
}

.brand-mark img {
  width: 148px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}

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

.site-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.site-nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  min-height: 720px;
  padding: 42px 0 64px;
  border-radius: 28px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  right: -235px;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  will-change: transform;
  mask-image: radial-gradient(circle at center, black 88%, transparent 93%);
  -webkit-mask-image: radial-gradient(circle at center, black 88%, transparent 93%);
}

.hero-backdrop::after {
  content: none;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #a98bdf;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.contact-form__intro h3,
.story-panel__body h3,
.step-card h3,
.outcomes-grid h3,
.data-points strong {
  margin: 0;
  font-family: var(--font-serif);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

 .hero h1 {
  max-width: 16ch;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 0.92;
}

 .section-heading h2,
.contact-copy h2 {
  max-width: none;
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  line-height: 0.96;
}

.contact-form__intro h3 {
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  line-height: 0.96;
}

.story-panel__body h3,
.step-card h3,
.outcomes-grid h3,
.data-points strong {
  font-size: 1.9rem;
  line-height: 0.98;
}

.hero-text,
.section-heading p,
.outcomes-grid p,
.data-points p,
.contact-copy p,
.contact-copy li,
.step-card p,
.proof-label,
.story-panel__body p,
.contact-form__intro p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-text {
  max-width: 36ch;
  margin: 22px 0 0;
  font-size: 18px;
}

.text-highlight {
  color: #d7c7ff;
}

.text-emphasis {
  color: var(--text);
  font-weight: 700;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1), transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-image {
  overflow: hidden;
}

.reveal-image > img {
  opacity: 0;
  transform: scale(1.035);
  clip-path: inset(0 0 100% 0 round 20px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, clip-path;
}

.reveal-image.is-visible > img {
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0 0 0 0 round 20px);
}

.data-band__item.reveal-on-scroll {
  transform: translate3d(0, 18px, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-image > img {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 32px 0 24px;
}


.hero-copy > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: hero-reveal 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy h1 {
  animation-delay: 80ms;
}

.hero-copy .hero-text {
  animation-delay: 180ms;
}

.hero-copy .hero-actions {
  animation-delay: 300ms;
}


.hero-copy .hero-points {
  animation-delay: 420ms;
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button--primary {
  background: linear-gradient(180deg, #6f53ab 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(79, 59, 120, 0.4);
}

.button--primary:hover {
  background: linear-gradient(180deg, #7b5eb9 0%, var(--accent-strong) 100%);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 28px 30px;
  border-radius: 28px;
  background: rgba(12, 11, 18, 0.66);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}



.hero-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.35em;
  flex-shrink: 0;
  border-radius: 50%;
  background: #8b68d0;
  box-shadow: 0 0 0 6px rgba(139, 104, 208, 0.12);
}




 

.proof-strip {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  gap: 18px;
  align-items: stretch;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(24, 22, 34, 0.86), rgba(18, 17, 27, 0.76));
  box-shadow: var(--shadow-soft);
}

.proof-strip > div {
  display: grid;
  gap: 6px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.proof-strip__featured {
  background: linear-gradient(180deg, rgba(86, 63, 134, 0.28), rgba(42, 33, 62, 0.44)) !important;
  border: 1px solid rgba(169, 139, 223, 0.14);
}

.proof-value {
  color: #a98bdf;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-strip__featured .proof-label {
  color: var(--text);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.55;
}

.section {
  padding: 82px 0 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.section-heading--narrow {
  width: min(100%, 980px);
  max-width: 980px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.story-panel,
.step-card,
.outcomes-grid article,
.data-points > div,
.mockup-panel,
.contact-section,
.contact-form {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(24, 22, 34, 0.82), rgba(18, 17, 27, 0.72));
  box-shadow: var(--shadow-soft);
}

.story-panel {
  display: grid;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  will-change: transform;
}

.story-panel--feature {
  grid-template-columns: 0.95fr 1.05fr;
}

.story-panel__media {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

.story-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-panel__media--device {
  padding: 18px;
}

.story-panel__body {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
}

.story-kicker {
  margin: 0;
  color: #a98bdf;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.steps-grid,
.outcomes-grid,
.data-points {
  display: grid;
  gap: 20px;
}

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

.steps-carousel {
  position: relative;
}

.steps-carousel__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(18, 17, 27, 0.92);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.steps-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.steps-carousel__arrow svg {
  width: 18px;
  height: 18px;
}

.steps-carousel__progress {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.steps-carousel__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.steps-carousel__dot.is-active {
  background: linear-gradient(180deg, #6f53ab 0%, var(--accent) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 22px rgba(79, 59, 120, 0.28);
}

.step-card {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  will-change: transform;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(104, 79, 158, 0.18), transparent 68%);
}

.step-card img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.step-number {
  color: #a98bdf;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.step-card__footer-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 6px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7a5ac0 0%, #6145a1 100%);
  box-shadow: 0 12px 26px rgba(67, 46, 113, 0.22);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.step-card__footer-link:hover,
.step-card__footer-link:focus-visible {
  filter: brightness(1.04);
}

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

.outcomes-grid article,
.data-points > div {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.outcomes-grid article h3,
.data-points > div strong {
  display: block;
  max-width: 14ch;
}

.products-section .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.mockup-panel {
  margin-top: 28px;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(80, 59, 120, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(26, 24, 38, 0.92), rgba(19, 18, 28, 0.82));
}

.mockup-panel img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px;
}

.data-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.data-band__intro {
  margin-bottom: 0;
}

.data-band__points {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.data-band__item {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.data-band__item strong {
  display: block;
}

.data-band__item p {
  margin: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(84, 63, 130, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(25, 23, 36, 0.96), rgba(18, 17, 27, 0.86));
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-form--wide {
  max-width: none;
}

.contact-form__intro {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(169, 139, 223, 0.14);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(95, 72, 148, 0.16), rgba(255, 255, 255, 0.02));
}

.contact-form__eyebrow {
  margin: 0;
  color: #a98bdf;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-form span {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form__required-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.5;
}

.contact-form__required {
  color: #d7c7ff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(11, 11, 18, 0.66);
  color: var(--text);
  font: 500 15px/1.4 var(--font-sans);
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7f7a90;
}

.contact-form__full,
.contact-form__actions {
  grid-column: 1 / -1;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-form__note {
  margin: 0;
  max-width: 28ch;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.5;
}

.contact-form__note[data-state="pending"] {
  color: var(--text);
}

.contact-form__note[data-state="success"] {
  color: #b9f2c1;
}

.contact-form__note[data-state="error"] {
  color: #ffb0b0;
}

.contact-form [data-contact-submit]:disabled {
  opacity: 0.7;
  cursor: wait;
}

@media (max-width: 1100px) {
  .hero {
    min-height: 620px;
  }

  .hero h1,
  .section-heading h2,
  .contact-copy h2 {
    max-width: none;
  }

  .section-heading--narrow {
    width: 100%;
    max-width: none;
  }
}


@media (max-width: 1100px) {
  .proof-strip,
  .story-grid,
  .story-panel--feature,
  .steps-grid,
  .data-points,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .data-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .data-band__intro {
    max-width: 760px;
  }

  .data-band__item {
    padding: 20px 0;
  }

  .hero {
    min-height: 640px;
    padding: 36px 0 56px;
  }

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

  .proof-strip {
    gap: 14px;
    padding: 16px;
  }

  .proof-strip > div,
  .proof-strip__featured {
    padding: 18px;
  }

  .story-panel__body,
  .outcomes-grid article,
  .data-points > div,
  .step-card,
  .contact-section,
  .contact-form {
    padding: 24px;
  }

  .mockup-panel {
    padding: 20px;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--content));
    padding: 20px 0 64px;
  }

  .site-header {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 0 20px;
  }

  .brand-mark {
    padding-left: 8px;
  }

  .site-nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 20;
    display: none;
    min-width: 220px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(18, 17, 27, 0.96);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: auto;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 18px 12px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
  }

  .hero-backdrop {
    position: relative;
    inset: auto;
    order: -1;
    width: 100%;
    height: 260px;
    margin-bottom: -62px;
    border-radius: 24px;
    overflow: hidden;
    mask-image: linear-gradient(180deg, black 0%, black 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, black 0%, black 78%, transparent 100%);
  }

  .hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 11, 18, 0) 0%, rgba(12, 11, 18, 0) 68%, rgba(12, 11, 18, 0.58) 100%);
  }

  .hero-copy {
    width: min(100%, calc(var(--content) - 24px));
    max-width: 100%;
    margin: 0 auto;
    padding: 22px 20px 10px;
    border-radius: 24px;
    background: rgba(12, 11, 18, 0.38);
    backdrop-filter: blur(8px);
    align-self: stretch;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.5rem, 10vw, 3.8rem);
    line-height: 0.94;
  }

  .hero-text {
    max-width: none;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

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

  .hero-actions {
    margin: 24px 0 20px;
  }


  .button {
    min-height: 50px;
  }

  .hero-points {
    display: none;
  }

  .section {
    padding-top: 56px;
  }

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

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 0.98;
  }

  .section-heading p,
  .proof-label,
  .story-panel__body p,
  .step-card p,
  .outcomes-grid p,
  .data-points p,
  .data-band__item p {
    font-size: 15px;
    line-height: 1.65;
  }

  .data-band {
    gap: 22px;
  }

  .data-band__points {
    border-top-color: rgba(255, 255, 255, 0.06);
  }

  .data-band__item {
    gap: 6px;
    padding: 18px 0;
  }

  .data-band__item strong {
    font-size: 1.45rem;
    line-height: 1.02;
  }

  .proof-strip {
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .proof-strip > div,
  .proof-strip__featured {
    padding: 16px;
    border-radius: 18px;
  }

  .proof-strip__featured .proof-label {
    font-size: 17px;
  }

  .story-panel,
  .step-card,
  .outcomes-grid article,
  .data-points > div,
  .contact-section,
  .contact-form,
  .mockup-panel {
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  }

  .story-panel__body,
  .step-card,
  .outcomes-grid article,
  .data-points > div,
  .contact-section,
  .contact-form {
    padding: 20px;
  }

  .story-panel__body h3,
  .step-card h3,
  .outcomes-grid h3,
  .data-points strong {
    font-size: 1.65rem;
  }

  .steps-grid .step-card {
    justify-items: center;
    text-align: center;
  }

  .steps-grid .step-card img {
    width: 168px;
    height: 168px;
  }

  .story-panel__media img,
  .mockup-panel img {
    aspect-ratio: 4 / 3;
  }

  .steps-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "prev track next"
      "progress progress progress";
    gap: 10px;
    align-items: center;
  }

  .steps-carousel__arrow {
    display: inline-flex;
  }

  .steps-carousel__arrow--prev {
    grid-area: prev;
  }

  .steps-carousel__arrow--next {
    grid-area: next;
  }

  .steps-carousel__viewport {
    grid-area: track;
    overflow: hidden;
    min-width: 0;
  }

  .steps-grid {
    display: flex;
    width: 100%;
    gap: 0;
    padding: 2px 0 12px;
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
    user-select: none;
    backface-visibility: hidden;
  }

  .steps-carousel__progress {
    grid-area: progress;
    display: flex;
  }

  .steps-grid::-webkit-scrollbar {
    display: none;
  }

  .steps-grid .step-card {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
  }

  .steps-carousel__dot {
    touch-action: manipulation;
  }

  .mockup-panel {
    margin-top: 20px;
    padding: 16px;
  }

  .tag-list {
    gap: 10px;
  }

  .tag-list span {
    padding: 10px 14px;
    font-size: 12px;
  }

  .contact-section {
    gap: 18px;
    padding: 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .data-band {
    gap: 18px;
  }

  .data-band__item {
    padding: 16px 0;
  }

  .site-shell {
    width: min(calc(100% - 20px), var(--content));
    padding-bottom: 56px;
  }

  .brand-mark {
    padding-left: 10px;
  }

  .brand-mark img {
    width: 124px;
  }

  .site-nav {
    min-width: 200px;
    gap: 10px;
    font-size: 13px;
  }

  .hero {
    padding: 12px 8px 20px;
  }

  .hero-backdrop {
    mask-image: linear-gradient(180deg, black 0%, black 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, black 0%, black 78%, transparent 100%);
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
    max-width: 10.5ch;
  }

  .hero-text {
    max-width: 28ch;
    font-size: 15px;
  }


  .section {
    padding-top: 44px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.4rem);
  }

  .story-panel__body,
  .step-card,
  .outcomes-grid article,
  .data-points > div,
  .contact-form,
  .contact-section {
    padding: 18px;
  }

  .step-card img {
    width: 92px;
    height: 92px;
  }

  .story-panel__body h3,
  .step-card h3,
  .outcomes-grid h3,
  .data-points strong {
    font-size: 1.45rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 15px;
    border-radius: 16px;
  }
}

@media (max-width: 420px) {
  .site-shell {
    width: min(calc(100% - 16px), var(--content));
  }

  .brand-mark {
    padding-left: 12px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 11vw, 2.5rem);
  }

  .hero-text,
  .section-heading p,
  .proof-label,
  .story-panel__body p,
  .step-card p,
  .outcomes-grid p,
  .data-points p {
    font-size: 14px;
  }

  .proof-strip > div,
  .proof-strip__featured,
  .story-panel__body,
  .step-card,
  .outcomes-grid article,
  .data-points > div,
  .contact-section,
  .contact-form {
    padding: 16px;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
    font-size: 13px;
  }

  .tag-list span {
    width: 100%;
    text-align: center;
  }

  .steps-carousel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "track"
      "progress";
  }

  .steps-carousel__arrow {
    display: inline-flex;
  }

  .steps-grid {
    width: 100%;
  }
}



.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
}

.site-footer__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease, transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

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

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.site-footer__social:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(215, 199, 255, 0.2);
}

.site-footer__social svg {
  width: 18px;
  height: 18px;
}

.site-footer__meta {
  margin-top: 28px;
  color: var(--muted-2);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 820px) {
  .site-footer {
    margin-top: 48px;
    padding-top: 20px;
  }

  .site-footer__meta {
    margin-top: 24px;
  }

  .site-footer__links {
    gap: 12px 14px;
  }
}

@media (max-width: 420px) {
  .site-footer__links a {
    font-size: 13px;
  }
}



.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(215, 199, 255, 0.18);
  border-radius: 999px;
  background: rgba(18, 17, 27, 0.92);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease, background-color 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: rgba(28, 26, 40, 0.98);
  border-color: rgba(215, 199, 255, 0.3);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 820px) {
  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}


.legal-page {
  padding-top: 36px;
}

.legal-page__heading {
  margin-bottom: 28px;
}

.legal-page__content {
  display: grid;
  gap: 28px;
  max-width: 860px;
}

.legal-page__content section {
  display: grid;
  gap: 12px;
}

.legal-page__content h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.legal-page__content p,
.legal-page__content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-page__content ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 10px;
}

.legal-page__content a {
  color: #d7c7ff;
}

@media (max-width: 820px) {
  .legal-page {
    padding-top: 24px;
  }

  .legal-page__content {
    gap: 24px;
  }

  .legal-page__content p,
  .legal-page__content li {
    font-size: 15px;
    line-height: 1.7;
  }
}


.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


.contact-form__checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 2px 0;
}

.contact-form__checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #6f53ab;
}

.contact-form__checkbox-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: normal;
  text-transform: none;
}
