/* SWC hero redesign based on provided mockup. Header and canvas background stay untouched. */
html.swc-fixed-canvas,
body.swc-fixed-canvas {
  background: #050510 !important;
}

body.swc-fixed-canvas #app {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  background: transparent !important;
}

body.swc-fixed-canvas #app .h-screen[data-swc-redesign="1"] > canvas {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

#app {
  overflow-x: hidden;
}

#app .h-screen[data-swc-redesign="1"] {
  align-items: stretch !important;
  justify-content: flex-start !important;
  overflow: hidden !important;
  background: transparent !important;
}

body.swc-fixed-canvas #app > div[class*="bg-[#F8FAFC]"],
body.swc-fixed-canvas #app > div[class*="bg-[#f8fafc]"] {
  background-color: transparent !important;
}

/* Page shells — fully transparent so the fixed canvas stays visible */
body.swc-fixed-canvas #app section,
body.swc-fixed-canvas #app footer {
  background-color: transparent !important;
}

body.swc-fixed-canvas #app div[class*="bg-[#"] {
  background-color: transparent !important;
}

/* Header keeps a light glass bar */
body.swc-fixed-canvas #app header[class*="bg-[#"],
body.swc-fixed-canvas #app [class*="fixed"][class*="top-0"][class*="bg-[#"] {
  background-color: rgba(7, 7, 15, 0.72) !important;
  backdrop-filter: blur(12px);
}

@keyframes swcHeaderCtaPulse {
  0%, 100% {
    box-shadow:
      0 0 24px rgba(139, 44, 255, .5),
      0 8px 20px rgba(109, 24, 238, .32),
      inset 0 1px 0 rgba(255,255,255,.26);
  }
  50% {
    box-shadow:
      0 0 36px rgba(168, 85, 247, .72),
      0 10px 26px rgba(109, 24, 238, .4),
      inset 0 1px 0 rgba(255,255,255,.32);
  }
}

body.swc-fixed-canvas #app header a[href="/register"] {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 10px !important;
  color: #fff !important;
  background: linear-gradient(180deg, #c056ff 0%, #9b2cff 46%, #6d18ee 100%) !important;
  box-shadow:
    0 0 24px rgba(139, 44, 255, .5),
    0 8px 20px rgba(109, 24, 238, .32),
    inset 0 1px 0 rgba(255,255,255,.26) !important;
  font-weight: 700 !important;
  letter-spacing: .01em;
  animation: swcHeaderCtaPulse 2.8s ease-in-out infinite;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease !important;
}

body.swc-fixed-canvas #app header a[href="/register"]:hover {
  animation: none;
  transform: scale(1.04) !important;
  filter: brightness(1.07);
  box-shadow:
    0 0 40px rgba(168, 85, 247, .78),
    0 12px 28px rgba(109, 24, 238, .45),
    inset 0 1px 0 rgba(255,255,255,.34) !important;
}

body.swc-fixed-canvas #app header a[href="/register"] svg {
  color: #fff !important;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.35));
  transition: transform .2s ease;
}

body.swc-fixed-canvas #app header a[href="/register"]:hover svg {
  transform: translateX(2px);
}

@media (min-width: 1024px) {
  body.swc-fixed-canvas #app header a[href="/register"]:not(.flex) {
    min-height: 40px;
    padding: 10px 18px !important;
    font-size: 14px !important;
  }
}

/* Cards, panels, pricing tiles — readable glass over the animation */
body.swc-fixed-canvas #app [class*="rounded-xl"][class*="bg-[#"],
body.swc-fixed-canvas #app [class*="rounded-2xl"][class*="bg-[#"],
body.swc-fixed-canvas #app [class*="rounded-3xl"][class*="bg-[#"],
body.swc-fixed-canvas #app [class*="shadow-"][class*="bg-[#"] {
  background-color: rgba(10, 10, 24, 0.78) !important;
  backdrop-filter: blur(8px);
}

#app .h-screen[data-swc-redesign="1"] > canvas {
  opacity: .42 !important;
  filter: none !important;
}

#app .h-screen[data-swc-redesign="1"] > .relative.z-10:not(#swc-redesigned-hero) {
  display: none !important;
}

#swc-redesigned-hero {
  --swc-purple: #8b2cff;
  --swc-purple-2: #a855f7;
  --swc-purple-3: #6d28d9;
  --swc-text: #fff;
  --swc-muted: #a2a7b8;
  --swc-faint: rgba(255,255,255,.08);
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 84px 42px 28px;
  box-sizing: border-box;
  color: var(--swc-text);
  font-family: 'Inter', 'DM Sans', system-ui, sans-serif;
  pointer-events: none;
}

#swc-redesigned-hero * { box-sizing: border-box; }
#swc-redesigned-hero a { pointer-events: auto; }

.swc-hero-shell {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  transform: none;
}

.swc-hero-left {
  width: 100%;
  max-width: none;
  height: min(758px, calc(100svh - 110px));
  min-height: 620px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.swc-hero-left > * {
  transform: none;
}

.swc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 36px;
  padding: 0 15px;
  border-radius: 11px;
  color: #c79cff;
  font-size: 14px;
  font-weight: 500;
  background: rgba(23, 14, 42, .72);
  border: 1px solid rgba(139, 44, 255, .24);
  box-shadow: inset 0 0 22px rgba(139, 44, 255, .08), 0 0 18px rgba(139, 44, 255, .08);
  margin-bottom: 28px;
}

.swc-hero-badge svg { width: 17px; height: 17px; color: #9d4bff; }

.swc-hero-title {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: .96;
  font-size: clamp(70px, 7.2vw, 112px);
  color: #fff;
  text-align: center;
  text-shadow: 0 10px 38px rgba(255,255,255,.08);
}

.swc-hero-title .accent {
  display: inline-block;
  background: linear-gradient(180deg, #b969ff 0%, #7d28ff 45%, #5f1fed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(139,44,255,.34));
}

.swc-hero-subtitle {
  margin: 26px 0 31px;
  max-width: 690px;
  color: #b9bdc9;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -.015em;
  white-space: nowrap;
  text-align: center;
}

.swc-hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 0;
  max-width: 760px;
  margin: 0 0 34px;
}

.swc-hero-feature {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding-right: 20px;
  min-height: 58px;
}

.swc-hero-feature + .swc-hero-feature {
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,.10);
}

.swc-feature-icon {
  width: 42px;
  height: 42px;
  color: #a855f7;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 14px rgba(139,44,255,.65));
}
.swc-feature-icon svg { width: 38px; height: 38px; }

.swc-feature-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 6px;
  white-space: nowrap;
}
.swc-feature-text {
  font-size: 13px;
  color: #a7adbc;
  line-height: 1.35;
  white-space: nowrap;
}

.swc-hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.swc-btn-main,
.swc-btn-video {
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.swc-btn-main {
  min-width: 276px;
  color: #fff;
  background: linear-gradient(180deg, #a336ff 0%, #7d18ee 100%);
  box-shadow: 0 0 34px rgba(139, 44, 255, .42), inset 0 1px 0 rgba(255,255,255,.24);
}
.swc-btn-main svg { width: 18px; height: 18px; }

.swc-btn-video {
  min-width: 365px;
  color: #e9e7f0;
  background: rgba(5,5,10,.32);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.swc-btn-video svg { width: 18px; height: 18px; color: #a855f7; }

.swc-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: #a7adbc;
  font-size: 14px;
}
.swc-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.swc-hero-trust svg { width: 18px; height: 18px; color: #8b2cff; filter: drop-shadow(0 0 8px rgba(139,44,255,.6)); }

.swc-hero-right {
  display: none;
  justify-self: end;
  width: min(100%, 520px);
  transform: translateX(-128px) scale(.88);
  transform-origin: center right;
}

.swc-timeline-card {
  position: relative;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.swc-timeline-card:before {
  display: none;
}

.swc-timeline-head {
  margin: 0 auto 28px;
  text-align: center;
}

.swc-timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, .30);
  background: rgba(168, 85, 247, .10);
  color: #c084fc;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.swc-timeline-badge svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.swc-timeline-title {
  position: relative;
  margin: 0;
  text-align: center;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
}

.swc-timeline-title span {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.swc-path-subtitle {
  max-width: 560px;
  margin: 12px auto 0;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.55;
}

.swc-path-timer {
  max-width: 420px;
  margin: 0 auto 28px;
}

.swc-path-timer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: #a7adbc;
  font-size: 13px;
}

.swc-path-timer-meta strong {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
}

.swc-path-timer-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(60, 55, 95, .55);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.swc-path-timer-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8b2cff, #b24cff, #48e95e);
  box-shadow: 0 0 18px rgba(139,44,255,.55);
  transition: width .12s linear;
}

.swc-path-steps {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr) minmax(0, 0.95fr);
  gap: 16px;
  align-items: stretch;
}

.swc-path-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 18px 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(8, 8, 18, .62);
  box-shadow: 0 18px 50px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}

.swc-path-step-main {
  border-color: rgba(168,85,247,.28);
  background: rgba(12, 8, 24, .78);
  box-shadow: 0 22px 60px rgba(0,0,0,.34), 0 0 40px rgba(139,44,255,.12);
}

.swc-path-step-done {
  border-color: rgba(72,233,94,.24);
  background: rgba(6, 18, 12, .72);
}

.swc-path-step-head {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 12px;
  align-items: center;
}

.swc-path-num {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,.34);
  background: rgba(168,85,247,.12);
  color: #c084fc;
  font-size: 12px;
  font-weight: 800;
}

.swc-path-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #d8b4ff;
  background: radial-gradient(circle, rgba(139,44,255,.42), rgba(20,11,45,.82));
  box-shadow: 0 0 24px rgba(139,44,255,.42);
  border: 1px solid rgba(168,85,247,.34);
}

.swc-path-icon svg { width: 22px; height: 22px; }
.swc-path-icon.done {
  color: #e9fff1;
  background: radial-gradient(circle, #48e95e, #148c35);
  box-shadow: 0 0 28px rgba(72,233,94,.55);
  border-color: rgba(72,233,94,.45);
}

.swc-path-step-head h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 800;
}

.swc-path-step-head p {
  margin: 4px 0 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.35;
}

.swc-path-body { flex: 1; display: flex; align-items: stretch; }
.swc-path-body .swc-chip { min-height: 88px; display: flex; align-items: center; }

.swc-path-stage {
  position: relative;
  flex: 1;
  min-height: 190px;
}

.swc-path-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.swc-path-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(168,85,247,.24);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.swc-path-dots button.is-active {
  transform: scale(1.35);
  background: #a855f7;
  box-shadow: 0 0 12px rgba(168,85,247,.75);
}

.swc-path-slides {
  position: relative;
  min-height: 168px;
}

.swc-path-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px) scale(.985);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}

.swc-path-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.swc-path-slide .swc-progress-box,
.swc-path-slide .swc-site-card,
.swc-path-slide .swc-crm-card,
.swc-path-slide .swc-chat-card {
  min-height: 168px;
}

.swc-progress-fill-anim {
  width: 0 !important;
  animation: swcPathProgress 2.4s ease forwards;
}

@keyframes swcPathProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

.swc-path-done-body {
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.swc-path-done-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #dbe4ea;
  font-size: 13px;
  line-height: 1.45;
}

.swc-path-done-copy strong {
  color: #48e95e;
  font-size: 22px;
  line-height: 1.1;
}

.swc-path-cta {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(180deg, #a336ff 0%, #7d18ee 100%);
  box-shadow: 0 0 28px rgba(139, 44, 255, .38);
  pointer-events: auto;
}

.swc-path-cta svg { width: 16px; height: 16px; }

.swc-path-party {
  position: absolute;
  right: 12px;
  bottom: 8px;
  font-size: 28px;
  filter: drop-shadow(0 0 12px rgba(139,44,255,.45));
}

.swc-path-deliverables {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  color: #94a3b8;
  font-size: 12px;
  letter-spacing: .02em;
}

.swc-path-deliverables span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: #cbd5e1;
}

.swc-path-deliverables span svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: #a78bfa;
  opacity: .9;
}

.swc-path-v2 .swc-timeline-head {
  margin-bottom: 22px;
}

.swc-path-v2 {
  padding: 8px 0 0;
}

.swc-timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: 178px 1fr;
  column-gap: 14px;
  row-gap: 13px;
}
.swc-timeline-line {
  position: absolute;
  left: 26px;
  top: 50px;
  bottom: 54px;
  border-left: 2px dashed rgba(162, 124, 255, .38);
}

.swc-step-label {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
}
.swc-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #d8b4ff;
  background: radial-gradient(circle, rgba(139,44,255,.42), rgba(20,11,45,.82));
  box-shadow: 0 0 28px rgba(139,44,255,.45);
  border: 1px solid rgba(168,85,247,.34);
  z-index: 1;
}
.swc-step-icon svg { width: 24px; height: 24px; }
.swc-step-num {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin: 0 0 6px;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,.34);
  background: rgba(168,85,247,.12);
  color: #c084fc;
  font-size: 12px;
  font-weight: 800;
}
.swc-step-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #eef0f6;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
  font-weight: 600;
}

.swc-finish .swc-step-num,
.swc-finish-title .swc-step-num {
  display: inline;
  width: auto;
  height: auto;
  margin: 0 8px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9b63ff;
  font-size: 18px;
  vertical-align: middle;
}

.swc-step-visual { min-height: 58px; display: flex; align-items: stretch; width: 100%; }
.swc-chip {
  width: 100%;
  background: rgba(24,18,42,.92);
  color: #fff;
  border-radius: 14px;
  padding: 18px 16px;
  font-size: 13px;
  line-height: 1.35;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
}
.swc-step-icon.done { color: #e9fff1; background: radial-gradient(circle, #48e95e, #148c35); box-shadow: 0 0 28px rgba(72,233,94,.62); border-color: rgba(72,233,94,.45); }

.swc-progress-box {
  width: 100%;
  padding: 16px 14px;
  border-radius: 12px;
  background: rgba(12,10,25,.94);
  border: 1px solid rgba(255,255,255,.10);
  color: #d9d5e5;
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.swc-progress-row { display: grid; grid-template-columns: 1fr 38px; align-items: center; gap: 12px; margin-top: 12px; color: #aeb2c5; }
.swc-progress-track { height: 9px; border-radius: 999px; background: rgba(60,55,95,.75); overflow: hidden; }
.swc-progress-fill { width: 75%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #8b2cff, #b24cff); box-shadow: 0 0 18px rgba(139,44,255,.6); }

.swc-site-card,
.swc-crm-card,
.swc-chat-card {
  width: 100%;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  background: #0d1020;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.swc-site-card { min-height: 118px; background: linear-gradient(110deg, #111426 0%, #111426 52%, #03040a 53%); position: relative; }
.swc-site-top { height: 26px; display: flex; gap: 10px; align-items: center; padding: 0 12px; font-size: 6px; color: #9096aa; border-bottom: 1px solid rgba(255,255,255,.08); }
.swc-site-phone { margin-left: auto; color: #d8d1ff; white-space: nowrap; }
.swc-site-copy { padding: 14px 12px 10px; font-size: 15px; line-height: 1.12; font-weight: 800; color: #fff; max-width: 62%; }
.swc-site-btn { margin: 0 12px 12px; display: inline-block; padding: 6px 10px; border-radius: 5px; color: #fff; font-size: 7px; background: linear-gradient(180deg,#9b4dff,#7a2cff); box-shadow: 0 0 14px rgba(139,44,255,.45); }
.swc-car {
  position: absolute;
  right: -2px;
  bottom: 0;
  width: 96px;
  height: 52px;
  background:
    radial-gradient(circle at 72% 78%, rgba(139,44,255,.22), transparent 58%),
    linear-gradient(145deg, #2a2f45 0%, #121522 48%, #080a12 100%);
  border-radius: 10px 0 8px 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.swc-car:after {
  content: '';
  position: absolute;
  left: 18px;
  right: 14px;
  top: 18px;
  height: 16px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.03));
}

.swc-crm-card { min-height: 98px; display: grid; grid-template-columns: 86px 1fr; background: #f7f8fb; color: #111827; }
.swc-crm-side { background: #111827; color: #8e98aa; padding: 14px 11px; font-size: 7px; line-height: 2.5; }
.swc-crm-body { padding: 17px 20px; font-size: 11px; }
.swc-crm-title { font-weight: 800; margin-bottom: 14px; }
.swc-crm-user { display: grid; grid-template-columns: 28px 1fr auto; gap: 9px; align-items: center; }
.swc-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #d8c3a1, #5a3627); }
.swc-pill-new { color: #8b2cff; background: #f0e7ff; padding: 4px 8px; border-radius: 999px; font-size: 8px; }

.swc-chat-card { min-height: 124px; padding: 15px 17px; background: #101322; color: #fff; }
.swc-chat-head { display: flex; justify-content: space-between; color: #b7bcd0; font-size: 10px; margin-bottom: 17px; }
.swc-online { color: #40e36b; }
.swc-bubble { display: inline-block; max-width: 210px; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.07); color: #e7e7ee; font-size: 12px; line-height: 1.35; }
.swc-bubble.purple { float: right; margin-top: 16px; background: linear-gradient(180deg,#8b2cff,#5f20db); color: #fff; }

.swc-finish { align-items: start; padding-top: 6px; }
.swc-finish-title { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.swc-finish-copy { font-size: 12px; color: #c7cad6; line-height: 1.45; white-space: nowrap; }
.swc-party { justify-content: flex-end; font-size: 42px; filter: drop-shadow(0 0 18px rgba(139,44,255,.45)); }

.swc-how-clone {
  position: relative;
  overflow: visible;
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.swc-how-glow,
.swc-how-dots {
  display: none;
}

.swc-how-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}

.swc-how-head {
  margin: 0 auto 28px;
  text-align: center;
}

.swc-how-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(168,85,247,.30);
  background: rgba(168,85,247,.10);
  color: #c084fc;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.swc-how-head h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.04em;
}

.swc-how-head h2 span {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.swc-how-head p {
  max-width: 620px;
  margin: 0 auto;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.55;
}

.swc-how-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: none;
  margin: 0 auto 18px;
}

.swc-how-progress i {
  position: absolute;
  left: 8.33%;
  top: 50%;
  width: 83.34%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(168,85,247,.10), rgba(168,85,247,.24), rgba(168,85,247,.10));
}

.swc-how-progress div {
  position: relative;
  display: flex;
  justify-content: center;
}

.swc-how-progress div:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,.40);
  animation: swcHowPulse 2.4s ease-out infinite;
}

.swc-how-progress div:nth-child(3):before { animation-delay: .25s; }
.swc-how-progress div:nth-child(4):before { animation-delay: .5s; }
.swc-how-progress div:nth-child(5):before { animation-delay: .75s; }
.swc-how-progress div:nth-child(6):before { animation-delay: 1s; }
.swc-how-progress div:nth-child(7):before { animation-delay: 1.25s; }

.swc-how-progress span {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,.30);
  background: rgba(168,85,247,.10);
  color: #c084fc;
  font-weight: 800;
  font-size: 14px;
  box-shadow: none;
}

.swc-how-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.swc-how-cards article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 118px;
  padding: 18px 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(168,85,247,.18);
  background: rgba(18, 18, 26, .72);
  text-align: left;
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}

.swc-how-cards article:hover {
  border-color: rgba(168,85,247,.34);
  background: rgba(22, 18, 34, .88);
  transform: translateY(-2px);
}

.swc-how-step {
  position: absolute;
  top: 14px;
  right: 14px;
  color: rgba(168,85,247,.42);
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.swc-how-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin: 0 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(168,85,247,.28);
  background: rgba(168,85,247,.08);
  color: #c084fc;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.swc-how-cards article:hover .swc-how-icon {
  transform: scale(1.05);
  background: rgba(168,85,247,.14);
  border-color: rgba(168,85,247,.42);
}

.swc-how-icon svg {
  width: 20px;
  height: 20px;
}

.swc-how-shot {
  display: none !important;
}

.swc-how-cards h3 {
  min-height: 0;
  margin: 0;
  padding-right: 28px;
  color: #fff;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
}

.swc-how-cards p {
  margin: 0 0 20px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.55;
}

.swc-how-cards ul {
  margin: auto 0 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.05);
}

.swc-how-cards li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 24px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.35;
}

.swc-how-cards li:before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #c084fc 0 28%, rgba(168,85,247,.20) 30% 100%);
}

@keyframes swcHowPulse {
  0% { opacity: .8; transform: scale(.72); }
  80%, 100% { opacity: 0; transform: scale(1.75); }
}

.swc-scroll-cue {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 45;
  width: 44px;
  height: 62px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: .9;
  animation: swcScrollCueFloat 1.9s ease-in-out infinite;
  transition: opacity .25s ease, visibility .25s ease;
}

.swc-scroll-cue.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.swc-scroll-mouse {
  position: relative;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(190, 142, 255, .86);
  border-radius: 999px;
  box-shadow:
    0 0 16px rgba(139, 44, 255, .42),
    inset 0 0 14px rgba(139, 44, 255, .16);
  background: rgba(8, 6, 18, .36);
}

.swc-scroll-mouse:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(190, 142, 255, .82);
  border-bottom: 2px solid rgba(190, 142, 255, .82);
  transform: translateX(-50%) rotate(45deg);
  filter: drop-shadow(0 0 8px rgba(139,44,255,.6));
}

.swc-scroll-mouse span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #caa3ff, #8b2cff);
  transform: translateX(-50%);
  animation: swcScrollWheel 1.45s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(139,44,255,.76);
}

@keyframes swcScrollWheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  28% { opacity: 1; }
  70% { opacity: 1; transform: translate(-50%, 13px); }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

@keyframes swcScrollCueFloat {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

@media (min-width: 761px) {
  #app .h-screen[data-swc-redesign="1"] {
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
  }

  #swc-redesigned-hero {
    align-items: flex-start;
    padding-top: clamp(76px, 8.2vh, 92px);
    padding-bottom: 56px;
    min-height: 100vh;
    overflow: visible;
  }

  .swc-hero-shell {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: clamp(56px, 7vh, 88px);
  }

  .swc-hero-left {
    height: calc(100vh - 260px);
    min-height: 500px;
    max-height: 650px;
    justify-content: space-between;
    gap: 0;
  }

  .swc-hero-title {
    font-size: clamp(66px, 6.2vw, 92px);
    line-height: .94;
  }

  .swc-hero-subtitle {
    margin: 0;
  }

  .swc-hero-features,
  .swc-hero-actions,
  .swc-hero-trust {
    margin: 0;
  }

  .swc-hero-right {
    display: block;
    position: static;
    width: min(100%, 1180px);
    transform: none;
    transform-origin: center;
    justify-self: auto;
    margin: 0 auto;
  }

  .swc-timeline-card {
    min-height: 0;
    padding: 30px 32px 32px;
    border-radius: 16px;
  }

  .swc-timeline-head {
    margin-bottom: 32px;
  }

  .swc-path-steps {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr) minmax(0, 0.95fr);
    gap: 18px;
  }

  .swc-path-stage {
    min-height: 196px;
  }

  .swc-path-slide .swc-progress-box,
  .swc-path-slide .swc-site-card,
  .swc-path-slide .swc-crm-card,
  .swc-path-slide .swc-chat-card {
    min-height: 176px;
  }
}

@media (max-width: 1180px) {
  #swc-redesigned-hero { padding: 92px 28px 34px; align-items: flex-start; }
  .swc-hero-shell { width: 100%; grid-template-columns: 1fr; gap: 36px; transform: none; }
  .swc-hero-left { width: 100%; max-width: none; height: auto; min-height: 0; display: block; }
  .swc-hero-left > * { transform: none; }
  .swc-hero-right { justify-self: center; width: min(100%, 1180px); transform: none; }
  .swc-timeline-card { min-height: 0; padding: 0; }
}
@media (max-width: 760px) {
  #app .h-screen[data-swc-redesign="1"] {
    height: auto !important;
    min-height: 100svh !important;
    overflow: visible !important;
  }
  #swc-redesigned-hero { padding: 86px 18px 30px; }
  #swc-redesigned-hero { min-height: auto; }
  .swc-scroll-cue { bottom: 18px; }
  .swc-hero-title { font-size: clamp(44px, 16vw, 66px); }
  .swc-hero-subtitle { white-space: normal; }
  .swc-feature-title, .swc-feature-text, .swc-step-text, .swc-finish-copy { white-space: normal; }
  .swc-hero-features { grid-template-columns: 1fr; gap: 16px; }
  .swc-hero-feature, .swc-hero-feature + .swc-hero-feature { border-left: 0; padding-left: 0; }
  .swc-hero-actions { flex-direction: column; align-items: stretch; }
  .swc-btn-main, .swc-btn-video { min-width: 0; width: 100%; }
  .swc-path-steps { grid-template-columns: 1fr; }
  .swc-path-step-main { order: 2; }
  .swc-path-timer { max-width: none; }
  .swc-path-stage { min-height: 180px; }
  .swc-path-slide .swc-progress-box,
  .swc-path-slide .swc-site-card,
  .swc-path-slide .swc-crm-card,
  .swc-path-slide .swc-chat-card { min-height: 160px; }
  .swc-how-clone { min-height: 0; }
  .swc-how-progress { display: none; }
  .swc-how-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .swc-how-cards h3 { font-size: 13px; }
}

/* 2026-07-10: keep hero content centered in the first viewport; move the next block below the fold. */
@media (min-width: 761px) {
  #app .h-screen[data-swc-redesign="1"] {
    height: auto !important;
    min-height: 100svh !important;
    overflow: visible !important;
  }

  #swc-redesigned-hero {
    display: block !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  #swc-redesigned-hero .swc-hero-shell {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    min-height: 0 !important;
  }

  #swc-redesigned-hero .swc-hero-left {
    width: 100% !important;
    height: 100svh !important;
    min-height: 620px !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(18px, 2.35vh, 28px) !important;
    padding: clamp(86px, 9.5vh, 112px) 42px clamp(58px, 7vh, 84px) !important;
    box-sizing: border-box !important;
  }

  #swc-redesigned-hero .swc-hero-left > * {
    transform: none !important;
  }

  #swc-redesigned-hero .swc-hero-features,
  #swc-redesigned-hero .swc-hero-actions,
  #swc-redesigned-hero .swc-hero-trust,
  #swc-redesigned-hero .swc-hero-subtitle {
    margin: 0 !important;
  }

  #swc-redesigned-hero .swc-hero-right {
    display: block !important;
    position: static !important;
    width: min(100%, 1180px) !important;
    margin: 0 auto !important;
    padding: clamp(54px, 7vh, 84px) 42px 56px !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  #swc-redesigned-hero .swc-scroll-cue {
    bottom: 28px !important;
  }
}

/* 2026-07-10: loosen the main hero title tracking for better readability. */
#swc-redesigned-hero .swc-hero-title {
  letter-spacing: -0.035em !important;
}

@media (max-width: 760px) {
  #swc-redesigned-hero .swc-hero-title {
    letter-spacing: -0.045em !important;
  }
}

