:root {
  --bg: #201e4b;
  --bg-soft: #292665;
  --ink: #201e4b;
  --muted: #77758f;
  --text-light: #ffffff;
  --text-muted: #b8b6dc;
  --surface: #ffffff;
  --surface-soft: #f5f2ff;
  --purple: #9156f1;
  --purple-soft: #d7d6ff;
  --lavender: #cdc3fd;
  --line: rgba(145, 86, 241, 0.18);
  --shadow: 0 24px 80px rgba(15, 12, 46, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-light);
  font-family: "Manrope", Arial, sans-serif;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 900;
  width: min(920px, calc(100% - 28px));
  min-height: 58px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 7px;
  border: 1px solid rgba(205, 195, 253, 0.18);
  border-radius: 999px;
  background: rgba(32, 30, 75, 0.78);
  box-shadow: 0 18px 60px rgba(8, 6, 27, 0.26);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.site-brand {
  display: none;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
}

.site-nav-links {
  display: flex;
  flex: 1 1 auto;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav-links a {
  flex: 1 1 0;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav-links a.is-active,
.site-nav-links a:hover {
  background: #fff;
  color: var(--ink);
}

.nav-cta {
  flex: 0 0 240px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(145, 86, 241, 0.28);
  white-space: nowrap;
}

.section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: var(--bg);
  color: var(--text-light);
}

.section-light {
  background: #fbfaff;
  color: var(--ink);
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.05;
  font-weight: 800;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
}

h2 {
  font-size: clamp(34px, 4.8vw, 58px);
}

h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
}

p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-light p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(145, 86, 241, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #8146e8;
  box-shadow: 0 24px 52px rgba(145, 86, 241, 0.34);
}

.button-secondary {
  background: #eeeafc;
  color: var(--ink);
  box-shadow: none;
}

.button-secondary:hover {
  background: #e2dafd;
  box-shadow: none;
}

.button-secondary-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.button-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
}

.pill.light {
  background: rgba(205, 195, 253, 0.16);
  color: var(--lavender);
  border: 1px solid rgba(205, 195, 253, 0.28);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 92px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: center;
  text-align: center;
}

.hero-copy {
  max-width: 900px;
  margin: 0 auto;
}

.hero-copy .pill {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy p {
  max-width: 760px;
  margin: 24px auto 0;
  color: #d8d5ff;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 600;
}

.hero-copy .cta-label {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.cta-note {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.hero-video {
  align-self: center;
}

.hero-video-wrap {
  width: min(860px, 100%);
  align-self: center;
  margin: 0 auto;
}

.hero-video-wrap .button {
  width: 100%;
  margin-top: 18px;
}

.hero-video-wrap .cta-note {
  text-align: center;
}

.cta-question {
  max-width: 720px;
  margin: 34px auto 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
  text-align: center;
}

.hero-art {
  position: relative;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--purple);
  filter: blur(0.2px);
}

.hero-art::before {
  width: 180px;
  height: 180px;
  right: 8%;
  top: 6%;
}

.hero-art::after {
  width: 96px;
  height: 96px;
  left: 7%;
  bottom: 6%;
  background: #cf91df;
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  margin-left: auto;
  filter: drop-shadow(0 34px 42px rgba(8, 6, 27, 0.38));
}

.case-hero {
  padding: 132px 0 64px;
}

.case-hero .centered {
  max-width: 920px;
}

.case-hero p {
  max-width: 760px;
  margin: 20px auto 0;
}

.centered {
  max-width: 820px;
  text-align: center;
}

.centered p {
  margin-top: 24px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 58px;
}

.card {
  padding: 34px;
  border-radius: 26px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.card .icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 42px;
}

.card h3 {
  margin-bottom: 18px;
}

.card p {
  font-size: 17px;
}

.showcase-grid,
.split,
.about-grid,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  align-items: center;
}

.showcase-copy p,
.about-copy p {
  margin-top: 18px;
}

.video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.video-card img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-fallback {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: var(--purple);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.copy-aside {
  padding: 42px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.copy-aside p {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 800;
}

.play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 18px 48px rgba(32, 30, 75, 0.28);
}

.play::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 24px;
  border-left: 24px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.marquee {
  width: 100%;
  margin-top: 56px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scroll 28s linear infinite;
}

.marquee span {
  border: 1px solid rgba(145, 86, 241, 0.34);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--purple);
  background: rgba(145, 86, 241, 0.08);
  white-space: nowrap;
  font-weight: 700;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

.benefit-list {
  display: grid;
  gap: 16px;
}

.benefit {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(205, 195, 253, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.benefit span,
.process-step span {
  color: var(--lavender);
  font-weight: 800;
}

.portrait {
  position: relative;
  width: min(100%, 460px);
}

.portrait > img:first-child {
  border-radius: 28px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.portrait .badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  width: calc(100% - 44px);
  border-radius: 16px;
  box-shadow: 0 18px 52px rgba(32, 30, 75, 0.16);
}

.about-copy {
  max-width: 620px;
}

.process-list {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(205, 195, 253, 0.22);
}

.process-step {
  padding: 30px 24px 0 0;
  border-right: 1px solid rgba(205, 195, 253, 0.22);
}

.process-step:last-child {
  border-right: 0;
}

.process-step h3 {
  margin: 22px 0 14px;
}

.process-step p {
  font-size: 16px;
}

.clients {
  padding-top: 100px;
  padding-bottom: 96px;
}

.clients h2 {
  max-width: 880px;
  margin: 0 auto;
}

.logo-carousel {
  width: 100%;
  margin-top: 54px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: logo-scroll 36s linear infinite;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.logo-tile {
  flex: 0 0 auto;
  width: 190px;
  height: 112px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(145, 86, 241, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(32, 30, 75, 0.08);
  overflow: hidden;
}

.logo-tile img {
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
  filter: saturate(0.92);
}

.logo-fill,
.logo-square,
.logo-portrait,
.logo-wide,
.logo-one {
  padding: 0;
}

.logo-fill img,
.logo-square img,
.logo-portrait img,
.logo-wide img,
.logo-one img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  filter: none;
}

.logo-fill img {
  object-fit: cover;
}

.logo-square {
  width: 124px;
  height: 124px;
}

.logo-square img {
  object-fit: cover;
}

.logo-portrait {
  width: 104px;
  height: 124px;
}

.logo-portrait img {
  object-fit: cover;
}

.logo-wide {
  width: 280px;
  height: 112px;
}

.logo-wide img {
  object-fit: contain;
}

.logo-dark {
  background: #0c1b32;
}

.logo-one {
  width: 124px;
  height: 124px;
  padding: 10px;
  background: #231f20;
}

.logo-one img {
  object-fit: contain;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(145, 86, 241, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.testimonial-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 44px rgba(32, 30, 75, 0.14);
}

.testimonial-card p {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}

.testimonial-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 18px;
}

.testimonial-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.cases-link-block {
  margin-top: 34px;
}

.case-studies,
.blog-section {
  padding-top: 28px;
}

.case-filter,
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.case-filter button,
.case-card button,
.blog-filter button,
.blog-card button {
  border: 0;
  cursor: pointer;
  font: 800 14px/1 "Manrope", Arial, sans-serif;
}

.case-filter button,
.blog-filter button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #eeeafc;
  color: var(--ink);
}

.case-filter button.is-active,
.blog-filter button.is-active {
  background: var(--purple);
  color: #fff;
}

.case-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.case-card,
.blog-card {
  overflow: hidden;
  border: 1px solid rgba(145, 86, 241, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.case-card-cover,
.blog-card-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f4f1ff;
}

.case-card-body,
.blog-card-body {
  padding: 28px;
}

.case-card-body span,
.case-modal-header span,
.blog-card-body span,
.blog-modal-header span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
}

.case-card-body h3,
.blog-card-body h3 {
  margin-top: 18px;
  color: var(--ink);
}

.case-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.case-includes small {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(145, 86, 241, 0.16);
  border-radius: 8px;
  background: #fbfaff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.case-includes-modal {
  margin-top: 26px;
}

.case-card-body p,
.blog-card-body p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.blog-card-body .blog-card-meta {
  margin-top: 16px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
}

.case-card button,
.blog-card button {
  min-height: 46px;
  margin-top: 24px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
}

.has-case-modal,
.has-blog-modal {
  overflow: hidden;
}

.case-modal,
.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.case-modal.is-open,
.blog-modal.is-open {
  display: block;
}

.case-modal-backdrop,
.blog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 48, 0.72);
  backdrop-filter: blur(10px);
}

.case-modal-dialog,
.blog-modal-dialog {
  position: relative;
  width: min(920px, calc(100vw - 28px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  overflow: auto;
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 32px 100px rgba(8, 6, 27, 0.45);
}

.case-modal-close,
.blog-modal-close {
  position: sticky;
  top: 18px;
  left: calc(100% - 58px);
  z-index: 1;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.case-modal-content,
.blog-modal-content {
  padding: 0 42px 42px;
}

.case-modal-header {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  align-items: center;
  padding-top: 12px;
}

.case-modal-header img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.case-modal-header h2 {
  margin-top: 12px;
  font-size: clamp(32px, 4vw, 48px);
}

.case-modal-header p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.case-modal blockquote {
  margin: 34px 0;
  padding: 28px;
  border-radius: 22px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
  font-weight: 800;
}

.case-modal section,
.blog-modal section {
  margin-top: 28px;
}

.case-modal section h3,
.blog-modal section h3 {
  margin-bottom: 12px;
  color: var(--ink);
}

.case-modal section p,
.case-modal section li,
.blog-modal section p,
.blog-modal section li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.case-modal section ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.case-modal-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.case-modal-images img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  background: #f4f1ff;
}

.blog-modal-header {
  padding-top: 12px;
}

.blog-modal-header p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.blog-modal-header h2 {
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}

.blog-modal-header img {
  width: 100%;
  aspect-ratio: 16 / 8;
  margin-top: 28px;
  border-radius: 22px;
  object-fit: cover;
  background: #f4f1ff;
}

.blog-modal-intro {
  color: var(--ink) !important;
  font-size: clamp(21px, 3vw, 30px) !important;
  line-height: 1.35 !important;
  font-weight: 800;
}

@keyframes logo-scroll {
  to {
    transform: translateX(-50%);
  }
}

.outcome-card {
  min-height: 520px;
  padding: 42px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.outcome-card h2 {
  font-size: clamp(34px, 4vw, 52px);
}

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

.outcome-card li {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
  padding-left: 34px;
  position: relative;
}

.outcome-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.avoid li::before {
  content: "×";
  background: #ee6f93;
}

.achieve li::before {
  content: "✓";
  background: var(--purple);
}

.outcome-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.alternatives-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
}

.alternatives-grid .outcome-card {
  min-height: 390px;
}

.result-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(145, 86, 241, 0.1);
  color: var(--purple);
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.fit-grid {
  align-items: stretch;
  margin-top: 54px;
}

.fit-grid .outcome-card {
  min-height: auto;
  background: #fff;
  color: var(--ink);
}

.fit-grid .outcome-card h3 {
  margin-bottom: 24px;
}

.fit-grid .achieve h3,
.fit-grid .achieve li {
  color: #16824b;
}

.fit-grid .avoid h3,
.fit-grid .avoid li {
  color: #b63458;
}

.fit-grid .achieve li::before {
  background: #16824b;
}

.fit-grid .avoid li::before {
  background: #b63458;
}

.alternatives-grid h3 {
  margin-bottom: 22px;
  color: var(--ink);
}

.cta-strip {
  margin-top: 44px;
  padding: 42px;
  border: 1px solid rgba(205, 195, 253, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.cta-strip h3 {
  max-width: 680px;
  margin: 0 auto 18px;
}

.cta-strip .cta-label {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.cta-strip .cta-note {
  margin: 16px auto 0;
  max-width: 620px;
}

.fit-section {
  padding-bottom: 96px;
}

.method-section {
  margin-top: 0;
  padding-top: 72px;
}

.method-section .split {
  align-items: start;
}

.about-proof .about-copy p {
  margin-top: 18px;
}

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

.copy-test .showcase-copy p + p {
  margin-top: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.faq-item {
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
}

.faq-item summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  color: #595869;
  font-size: 18px;
  font-weight: 800;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--purple);
  font-size: 26px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 16px;
}

.final-cta {
  padding-bottom: 120px;
}

.cta-box {
  position: relative;
  isolation: isolate;
  padding: 76px 40px;
  border-radius: 32px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow);
}

.cta-box::before,
.cta-box::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  background: rgba(145, 86, 241, 0.14);
}

.cta-box::before {
  width: 160px;
  height: 160px;
  left: 5%;
  top: 16%;
}

.cta-box::after {
  width: 120px;
  height: 120px;
  right: 8%;
  bottom: 15%;
}

.cta-box h2 {
  max-width: 760px;
  margin: 0 auto;
}

.cta-box p {
  margin: 20px auto 30px;
  max-width: 620px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 900px) {
  .site-nav {
    gap: 8px;
    width: min(760px, calc(100% - 20px));
    min-height: 56px;
    padding: 7px;
    border-radius: 999px;
  }

  .site-brand {
    display: none;
  }

  .nav-cta {
    flex-basis: 210px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .site-nav-links a {
    min-height: 36px;
    padding: 0 13px;
    font-size: 13px;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .case-hero {
    padding: 112px 0 54px;
  }

  .hero-grid,
  .showcase-grid,
  .split,
  .about-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .cards-grid,
  .process-list,
  .faq-grid,
  .alternatives-grid,
  .testimonials-grid,
  .case-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .process-list {
    border-top: 0;
    gap: 16px;
  }

  .process-step {
    padding: 26px;
    border: 1px solid rgba(205, 195, 253, 0.22);
    border-radius: 22px;
  }

  .logo-tile {
    width: 168px;
    height: 100px;
    padding: 20px;
  }

  .logo-fill,
  .logo-square,
  .logo-portrait,
  .logo-wide,
  .logo-one {
    padding: 0;
  }

  .logo-square {
    width: 108px;
    height: 108px;
  }

  .logo-portrait {
    width: 92px;
    height: 108px;
  }

  .logo-wide {
    width: 240px;
    height: 100px;
  }

  .logo-one {
    width: 108px;
    height: 108px;
    padding: 9px;
  }

  .portrait {
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .site-nav {
    width: calc(100% - 12px);
    gap: 4px;
    padding: 5px;
  }

  .site-nav-links {
    gap: 2px;
    padding: 3px;
  }

  .site-nav-links a {
    min-height: 32px;
    padding: 0 4px;
    font-size: 11px;
  }

  .nav-cta {
    flex-basis: 136px;
    min-height: 36px;
    padding: 0 6px;
    font-size: 11px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 15px;
  }

  .hero-art img {
    width: 100%;
  }

  .card,
  .outcome-card {
    padding: 26px;
  }

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

  .outcome-card {
    min-height: auto;
  }

  .faq-item summary {
    font-size: 16px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-card img {
    margin: 0 auto;
  }

  .case-modal-content,
  .blog-modal-content {
    padding: 0 22px 28px;
  }

  .case-modal-header,
  .case-modal-images {
    grid-template-columns: 1fr;
  }

  .case-modal-header {
    text-align: center;
  }

  .case-modal-header img {
    margin: 0 auto;
  }

  .blog-modal-header img {
    aspect-ratio: 16 / 10;
  }

  .cta-box {
    padding: 54px 24px;
  }
}

.edit-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--purple);
  color: #fff;
  font: 800 14px/1 "Manrope", Arial, sans-serif;
  box-shadow: 0 18px 46px rgba(32, 30, 75, 0.28);
  cursor: pointer;
}

.edit-panel {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 1000;
  width: min(340px, calc(100vw - 36px));
  max-height: min(720px, calc(100vh - 104px));
  overflow: auto;
  display: none;
  padding: 18px;
  border: 1px solid rgba(145, 86, 241, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(32, 30, 75, 0.2);
  backdrop-filter: blur(12px);
}

.edit-panel.is-open {
  display: block;
}

.edit-panel h2 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.15;
}

.edit-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.edit-field {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.edit-field label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.edit-field input[type="range"] {
  width: 100%;
}

.edit-value {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.edit-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.edit-actions button {
  flex: 1;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: #eeeafc;
  color: var(--ink);
  font: 800 12px/1 "Manrope", Arial, sans-serif;
  cursor: pointer;
}

.edit-actions .danger {
  background: #ffe7ef;
  color: #b63458;
}

.edit-logo-tools {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid rgba(145, 86, 241, 0.16);
}

.edit-logo-tools input[type="file"] {
  width: 100%;
  font-size: 12px;
}

.edit-url-row {
  display: flex;
  gap: 8px;
}

.edit-url-row input {
  min-width: 0;
  flex: 1;
  min-height: 38px;
  border: 1px solid rgba(145, 86, 241, 0.2);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--ink);
  font: 700 12px/1 "Manrope", Arial, sans-serif;
}

.edit-url-row button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  background: var(--purple);
  color: #fff;
  font: 800 12px/1 "Manrope", Arial, sans-serif;
  cursor: pointer;
}

.is-editing [data-editable-text] {
  outline: 1px dashed rgba(145, 86, 241, 0.6);
  outline-offset: 4px;
  cursor: text;
}

.is-editing [data-editable-box],
.is-editing .logo-tile,
.is-editing .portrait,
.is-editing .video-card,
.is-editing .hero-art img {
  outline: 1px dashed rgba(145, 86, 241, 0.55);
  outline-offset: 4px;
  cursor: pointer;
}

.edit-selected {
  outline: 3px solid var(--purple) !important;
  outline-offset: 5px !important;
}
