.hero {
  position: relative;
  padding: 82px 0 68px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1fr);
  gap: 56px;
  align-items: center;
}

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

.hero-lead {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  background: rgba(15, 23, 42, 0.64);
  font-weight: 800;
}

.proof-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--success);
}

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

.command-center {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(17, 28, 49, 0.92), rgba(11, 18, 32, 0.88)),
    var(--surface);
  box-shadow: var(--shadow), var(--glow);
}

.command-center::after {
  position: absolute;
  inset: auto -20% -26% 8%;
  height: 220px;
  content: "";
  background: radial-gradient(circle, rgba(168, 85, 247, 0.16), transparent 62%);
}

.dashboard-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dashboard-topbar h2 {
  margin-top: 7px;
  font-size: clamp(1.35rem, 2.8vw, 2.05rem);
}

.dashboard-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.dashboard-metrics article,
.pipeline-panel,
.integration-panel,
.mini-chat-module,
.lead-card,
.info-card,
.process-card,
.mechanism-card,
.audience-card,
.deliverables-grid article,
.implementation-grid article,
.cta-panel,
.faq-list details {
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(19, 34, 56, 0.84), rgba(15, 23, 42, 0.82)),
    rgba(15, 23, 42, 0.82);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

.dashboard-metrics article,
.pipeline-panel,
.lead-card,
.integration-panel,
.mini-chat-module {
  min-width: 0;
  padding: 16px;
  border-radius: 22px;
}

.pipeline-panel {
  grid-row: span 2;
}

.dashboard-metrics span,
.dashboard-metrics small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
}

.dashboard-metrics strong {
  display: block;
  margin: 4px 0;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.dashboard-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 12px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-title h3,
.integration-panel h3,
.featured-lead h3 {
  font-size: 1rem;
}

.panel-title small {
  color: var(--muted);
}

.pipeline-row,
.integration-panel div {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr;
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(183, 140, 255, 0.1);
}

.pipeline-row:last-child,
.integration-panel div:last-child {
  border-bottom: 0;
}

.pipeline-row span,
.integration-panel span {
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.pipeline-row strong,
.integration-panel strong {
  color: var(--text-soft);
  font-size: 0.86rem;
}

.pipeline-row em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.integration-panel div {
  grid-template-columns: 1fr auto;
}

.mini-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.mini-header div {
  min-width: 0;
}

.mini-header strong,
.mini-header small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-header small {
  color: var(--success);
  font-size: 0.76rem;
}

.avatar,
.sheet-icon,
.card-icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(183, 140, 255, 0.24);
  border-radius: 14px;
  color: var(--blue-soft);
  background: rgba(139, 75, 220, 0.16);
  font-weight: 900;
}

.bubble {
  max-width: 92%;
  margin: 10px 0;
  padding: 11px 12px;
  border-radius: 16px;
  color: var(--text-soft);
  background: rgba(148, 163, 184, 0.08);
  font-size: 0.86rem;
}

.bubble.user {
  margin-left: auto;
  color: var(--text);
  background: linear-gradient(135deg, rgba(139, 75, 220, 0.92), rgba(168, 85, 247, 0.82));
}

.status-pill {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #052e16;
  background: var(--success);
  font-size: 0.75rem;
  font-weight: 900;
}

.lead-card h2 {
  font-size: 1.3rem;
}

.lead-card dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.lead-card dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-card dd {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.mini-table {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr;
  overflow-x: auto;
  border: 1px solid rgba(183, 140, 255, 0.12);
  border-radius: 14px;
}

.mini-table span {
  min-width: 72px;
  padding: 9px 10px;
  border-right: 1px solid rgba(183, 140, 255, 0.08);
  border-bottom: 1px solid rgba(183, 140, 255, 0.08);
  color: var(--muted);
  font-size: 0.74rem;
  white-space: nowrap;
}

.cta-panel h2 {
  font-size: var(--heading-section);
}

.cta-panel p,
.faq-list p {
  color: var(--muted);
}

.benefit-grid,
.process-grid,
.mechanism-grid,
.audience-grid,
.deliverables-grid,
.implementation-grid {
  display: grid;
  gap: 18px;
}

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

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

.audience-grid,
.deliverables-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.process-card,
.mechanism-card,
.audience-card,
.implementation-grid article {
  min-width: 0;
  padding: 24px;
  border-radius: var(--radius-md);
}

.mechanism-card {
  display: flex;
  flex-direction: column;
}

.info-card,
.mechanism-card,
.audience-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.info-card:hover,
.mechanism-card:hover,
.audience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 140, 255, 0.34);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.36), var(--glow);
}

.info-card h3,
.process-card h3,
.mechanism-card h3,
.audience-card h3,
.implementation-grid h3 {
  margin-top: 18px;
  font-size: 1.08rem;
}

.info-card p,
.process-card p,
.mechanism-card p,
.audience-card p,
.implementation-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.mechanism-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 0 14px;
  border: 1px solid rgba(183, 140, 255, 0.32);
  border-radius: 999px;
  color: var(--text);
  background: rgba(139, 75, 220, 0.08);
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mechanism-action:hover,
.mechanism-action:focus-visible {
  border-color: rgba(168, 85, 247, 0.6);
  background: rgba(139, 75, 220, 0.2);
  transform: translateY(-1px);
}

.process-card {
  position: relative;
}

.process-card:not(:last-child)::after {
  position: absolute;
  top: 44px;
  right: -18px;
  width: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(183, 140, 255, 0.2), rgba(168, 85, 247, 0.56));
}

.process-card span,
.implementation-grid span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(183, 140, 255, 0.28);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(139, 75, 220, 0.16);
  font-weight: 900;
}

.audience-card small {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-soft);
  font-weight: 800;
}

.deliverables-grid article {
  min-height: 96px;
  padding: 24px;
  border-radius: var(--radius-md);
  color: var(--text-soft);
  font-weight: 900;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 5vw, 48px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 0%, rgba(139, 75, 220, 0.25), transparent 24rem),
    linear-gradient(145deg, rgba(17, 28, 49, 0.94), rgba(11, 18, 32, 0.9));
}

.cta-panel p {
  max-width: 64ch;
  margin: 16px 0 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(19, 34, 56, 0.84), rgba(15, 23, 42, 0.82)),
    rgba(15, 23, 42, 0.82);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--text-soft);
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  color: var(--text);
  background: rgba(3, 7, 18, 0.56);
  font: inherit;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(183, 140, 255, 0.54);
  outline: 3px solid rgba(139, 75, 220, 0.18);
}

.contact-form textarea {
  min-height: 100px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}

.faq-list details {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-list summary {
  min-height: 58px;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .process-grid,
  .implementation-grid,
  .mechanism-grid,
  .dashboard-metrics,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-card:not(:last-child)::after {
    display: none;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .hero {
    padding: 56px 0;
  }

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

@media (max-width: 640px) {
  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .proof-list,
  .dashboard-metrics,
  .dashboard-main,
  .benefit-grid,
  .process-grid,
  .mechanism-grid,
  .audience-grid,
  .deliverables-grid,
  .implementation-grid,
  .contact-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .command-center {
    padding: 14px;
    border-radius: 24px;
  }

  .dashboard-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .lead-card,
  .dashboard-metrics article,
  .pipeline-panel,
  .integration-panel,
  .mini-chat-module,
  .info-card,
  .process-card,
  .mechanism-card,
  .audience-card,
  .implementation-grid article,
  .deliverables-grid article {
    padding: 20px;
  }

  .pipeline-row {
    grid-template-columns: 1fr;
  }
}

.tools-teaser {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.tools-teaser-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.tools-teaser-step {
  min-width: 0;
  padding: 20px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(19, 34, 56, 0.72), rgba(15, 23, 42, 0.78)),
    rgba(15, 23, 42, 0.78);
  text-align: left;
}

.tools-teaser-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 10px;
  border: 1px solid rgba(183, 140, 255, 0.28);
  border-radius: 8px;
  background: rgba(139, 75, 220, 0.12);
  color: var(--blue-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.tools-teaser-step h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.tools-teaser-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.product-landing-card {
  max-width: 640px;
  margin: 0 auto 24px;
  padding: 22px 24px;
  border: 1px solid rgba(183, 140, 255, 0.24);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 14% 0%, rgba(139, 75, 220, 0.1), transparent 42%),
    linear-gradient(145deg, rgba(19, 34, 56, 0.72), rgba(15, 23, 42, 0.78)),
    rgba(15, 23, 42, 0.78);
  text-align: left;
}

.product-landing-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.product-landing-card > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-landing-card__list {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
  padding-left: 1.1rem;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.product-landing-card__domain {
  margin: 0 0 18px;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.tools-teaser > .product-landing-card__domain {
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 22px;
  padding-top: 0;
  border-top: none;
  text-align: center;
}

.tools-teaser > .btn {
  margin: 0 8px 8px;
}

.product-landing-card__cta {
  width: 100%;
  max-width: 320px;
}

#mechanizmy.section {
  padding-top: 68px;
  padding-bottom: 68px;
}

@media (max-width: 960px) {
  .tools-teaser-flow {
    grid-template-columns: 1fr;
  }

  .product-landing-card {
    padding: 18px 20px;
  }
}

.hero::after {
  position: absolute;
  inset: 10% 0 auto 52%;
  z-index: -1;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(139, 75, 220, 0.42), rgba(168, 85, 247, 0.12) 42%, transparent 68%);
  filter: blur(8px);
  opacity: 0.72;
  animation: hero-glow-shift 9s ease-in-out infinite alternate;
}

.hero-copy .eyebrow {
  animation: hero-copy-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy h1 {
  animation: hero-copy-in 0.78s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-lead {
  animation: hero-copy-in 0.78s 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-actions,
.proof-list {
  animation: hero-copy-in 0.78s 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-product,
.command-center {
  transform-style: preserve-3d;
}

.command-center {
  animation: mockup-float 7s ease-in-out infinite;
  will-change: transform;
}

.command-center::before {
  position: absolute;
  inset: -1px;
  z-index: 0;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(183, 140, 255, 0.2), transparent);
  opacity: 0;
  transform: translateX(-28%);
  transition: opacity 320ms ease, transform 520ms ease;
}

.command-center:hover::before {
  opacity: 1;
  transform: translateX(28%);
}

.status-pill {
  animation: status-pulse 2.4s ease-in-out infinite;
}

.info-card,
.process-card,
.audience-card,
.deliverables-grid article,
.implementation-grid article,
.dashboard-metrics article,
.pipeline-panel,
.lead-card,
.integration-panel,
.mini-chat-module,
.cta-panel,
.contact-form,
.faq-list details {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    box-shadow 320ms ease,
    background 320ms ease;
}

.info-card::before,
.process-card::before,
.audience-card::before,
.deliverables-grid article::before,
.implementation-grid article::before,
.dashboard-metrics article::before,
.pipeline-panel::before,
.lead-card::before,
.integration-panel::before,
.mini-chat-module::before,
.cta-panel::before,
.contact-form::before,
.faq-list details::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(183, 140, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(183, 140, 255, 0.08), transparent 44%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.info-card > *,
.process-card > *,
.audience-card > *,
.deliverables-grid article > *,
.implementation-grid article > *,
.dashboard-metrics article > *,
.pipeline-panel > *,
.lead-card > *,
.integration-panel > *,
.mini-chat-module > *,
.cta-panel > *,
.contact-form > *,
.faq-list details > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .audience-card[role="button"]:hover,
  .faq-list details:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(183, 140, 255, 0.48);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44), 0 0 52px rgba(139, 75, 220, 0.2);
  }

  .audience-card[role="button"]:hover::before,
  .faq-list details:hover::before {
    opacity: 1;
  }
}

.faq-list details {
  border-color: var(--border);
}

.faq-list details[open],
.faq-list details.is-open {
  border-color: rgba(183, 140, 255, 0.5);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34), 0 0 38px rgba(139, 75, 220, 0.14);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(183, 140, 255, 0.28);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(139, 75, 220, 0.12);
  content: "+";
  font-size: 1rem;
  line-height: 1;
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.faq-list details[open] summary::after,
.faq-list details.is-open summary::after {
  border-color: rgba(183, 140, 255, 0.56);
  background: rgba(139, 75, 220, 0.2);
  transform: rotate(45deg);
}

.faq-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 260ms ease;
}

@media (max-width: 640px) {
  .hero::after {
    inset: 6% -18% auto 20%;
    width: 80vw;
    height: 80vw;
    opacity: 0.42;
    filter: blur(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after {
    animation: none !important;
  }
}

.hero-cosmic {
  isolation: isolate;
  display: grid;
  min-height: calc(100svh - var(--nav-height));
  place-items: center;
  padding: clamp(58px, 8.5vh, 96px) 0 clamp(46px, 6.5vh, 78px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(139, 75, 220, 0.38), transparent 18rem),
    radial-gradient(circle at 50% 44%, rgba(183, 140, 255, 0.22), transparent 26rem),
    radial-gradient(circle at 50% 76%, rgba(139, 75, 220, 0.12), transparent 32rem),
    #000;
}

.hero-cosmic::before {
  z-index: -3;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.5px);
  background-position: 0 0, 42px 68px;
  background-size: 118px 118px, 176px 176px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 26%, black 76%, transparent 100%);
  opacity: 0.28;
  animation: hero-stars-drift 34s linear infinite;
}

.hero-cosmic::after {
  inset: 50% auto auto 50%;
  z-index: -2;
  width: min(72vw, 760px);
  height: min(72vw, 760px);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(183, 140, 255, 0.45), rgba(139, 75, 220, 0.3) 22%, rgba(139, 75, 220, 0.08) 46%, transparent 68%);
  filter: blur(20px);
  opacity: 0.78;
  transform: translate(-50%, -50%);
  animation: hero-purple-pulse 7s ease-in-out infinite alternate;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.78) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(183, 140, 255, 0.58) 0 1px, transparent 1.6px);
  background-position: 12% 24%, 76% 18%;
  background-size: 210px 210px, 260px 260px;
  opacity: 0.28;
  animation: hero-particles-float 24s ease-in-out infinite alternate;
}

.hero-cosmic .hero-grid {
  display: block;
  width: 100%;
}

.hero-copy {
  min-width: 0;
  overflow: visible;
}

.hero-copy-centered {
  max-width: 1320px;
  margin-inline: auto;
  text-align: center;
  overflow: visible;
  padding-bottom: 0.12em;
}

.hero-cosmic .hero-grid {
  overflow: visible;
  max-height: none;
}

.hero-cosmic .hero-title,
.hero-cosmic h1,
.hero-title {
  display: block;
  max-width: 1280px;
  margin-inline: auto;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4.6rem, 7.4vw, 7.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-align: center;
  color: #d9b3ff;
  overflow: visible;
  padding-top: 0.04em;
  padding-bottom: 0.16em;
  text-wrap: balance;
  text-shadow:
    0 0 18px rgba(216, 180, 255, 0.2),
    0 0 52px rgba(143, 76, 255, 0.16);
}

.hero-title-line,
.hero-title .hero-title-line,
.hero-cosmic h1.hero-title span {
  display: block;
  overflow: visible;
  color: inherit;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
}

.hero-title-line:first-child {
  margin-bottom: -0.06em;
}

.hero-title-line:last-child {
  margin-top: -0.02em;
}

@media (min-width: 769px) {
  .hero-title-line:nth-child(2) {
    white-space: nowrap;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 24px;
  padding: 7px 13px 7px 8px;
  border: 1px solid rgba(183, 140, 255, 0.28);
  border-radius: 999px;
  color: rgba(248, 250, 252, 0.92);
  background: rgba(13, 13, 18, 0.72);
  box-shadow: 0 0 0 1px rgba(183, 140, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.hero-badge span {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a855f7, #8b4bdc);
  color: #fff;
}

.hero-cosmic .hero-lead {
  max-width: 780px;
  margin: 24px auto 0;
  color: rgba(244, 236, 255, 0.82);
  font-size: clamp(0.95rem, 1.18vw, 1.08rem);
  line-height: 1.5;
  text-wrap: balance;
}

.hero-cosmic .hero-actions {
  justify-content: center;
  margin-top: 24px;
}

.hero-cosmic .proof-list {
  grid-template-columns: repeat(4, minmax(0, auto));
  justify-content: center;
  max-width: none;
  margin: 30px auto 0;
}

.hero-cosmic .proof-list li {
  border-color: rgba(183, 140, 255, 0.2);
  background: rgba(10, 10, 14, 0.72);
}

.hero-cosmic + .section {
  position: relative;
  margin-top: 0;
}

.hero-cosmic + .section::before {
  display: none;
  content: none;
}

.hero-copy-centered .hero-badge {
  animation: hero-copy-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy-centered h1 {
  animation: hero-copy-in 0.82s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy-centered .hero-lead {
  animation: hero-copy-in 0.82s 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy-centered .hero-actions {
  animation: hero-copy-in 0.82s 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy-centered .proof-list {
  animation: hero-copy-in 0.82s 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (max-width: 1100px) {
  .hero-cosmic .hero-title,
  .hero-cosmic h1,
  .hero-title {
    font-size: clamp(4rem, 8.5vw, 6.6rem);
    max-width: 980px;
    line-height: 1.02;
  }
}

@media (max-width: 820px) {
  .hero-cosmic {
    min-height: calc(100svh - var(--nav-height));
    padding: 72px 0 60px;
  }

  .hero-cosmic .hero-title,
  .hero-cosmic h1 {
    max-width: 92%;
    font-size: clamp(3.4rem, 15vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    padding-bottom: 0.16em;
  }

  .hero-cosmic .hero-title-line:nth-child(2) {
    white-space: nowrap;
  }

  .hero-cosmic .hero-lead {
    max-width: 92%;
    font-size: 1rem;
  }

  .hero-cosmic .proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }
}

@media (max-width: 430px) {
  .hero-cosmic {
    padding: 64px 0 52px;
  }

  .hero-badge {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 6px;
    white-space: normal;
  }

  .hero-cosmic .hero-title,
  .hero-cosmic h1 {
    max-width: 92%;
    font-size: clamp(3rem, 14vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    padding-bottom: 0.16em;
  }

  .hero-cosmic .hero-title-line:nth-child(2) {
    white-space: normal;
  }

  .hero-cosmic .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-cosmic .proof-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cosmic::before,
  .hero-cosmic::after,
  .hero-particles,
  .hero-copy-centered .hero-badge,
  .hero-copy-centered h1,
  .hero-copy-centered .hero-lead,
  .hero-copy-centered .hero-actions,
  .hero-copy-centered .proof-list {
    animation: none !important;
  }
}

.hero-cosmic {
  background-size: 100% 100%, 120% 120%, 140% 140%, auto;
  animation: hero-background-breathe 18s ease-in-out infinite alternate;
}

.hero-cosmic::before {
  animation: hero-stars-drift 42s linear infinite, hero-stars-fade-in 1.4s 0.18s ease both;
}

.hero-cosmic::after {
  animation: hero-purple-pulse 7s ease-in-out infinite alternate, hero-glow-load 1.35s ease both;
}

.hero-particles {
  animation: hero-particles-float 24s ease-in-out infinite alternate, hero-stars-fade-in 1.25s 0.22s ease both;
}

.hero-badge,
.hero-title,
.hero-cosmic .hero-lead,
.hero-cosmic .hero-actions,
.hero-proof {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(24px);
}

body.is-loaded .hero-badge {
  animation: hero-start-in 760ms 80ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-loaded .hero-title {
  animation: hero-start-in 840ms 210ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-loaded .hero-cosmic .hero-lead {
  animation: hero-start-in 820ms 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-loaded .hero-cosmic .hero-actions {
  animation: hero-start-in 820ms 500ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-loaded .hero-proof {
  animation: hero-start-in 820ms 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy-centered .hero-badge,
.hero-copy-centered h1,
.hero-copy-centered .hero-lead,
.hero-copy-centered .hero-actions,
.hero-copy-centered .proof-list {
  animation-name: none;
}

@media (hover: hover) and (pointer: fine) {
  .audience-card[role="button"]:hover,
  .faq-list details:hover {
    transform: translateY(-8px) scale(1.012);
    border-color: rgba(183, 140, 255, 0.62);
    box-shadow: 0 30px 96px rgba(0, 0, 0, 0.48), 0 0 62px rgba(139, 75, 220, 0.24);
  }

  .audience-card[role="button"]:hover .audience-card__icon {
    animation: icon-soft-pulse 1.25s ease-in-out infinite;
    transform: translateY(-1px) rotate(-2deg);
  }
}

@media (max-width: 640px) {
  .hero-cosmic {
    animation-duration: 26s;
  }

  .hero-cosmic::before {
    opacity: 0.24;
    background-size: 150px 150px, 220px 220px;
  }

  .hero-particles {
    opacity: 0.2;
    background-size: 280px 280px, 360px 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cosmic,
  .hero-cosmic::before,
  .hero-cosmic::after,
  .hero-particles,
  .hero-badge,
  .hero-title,
  .hero-cosmic .hero-lead,
  .hero-cosmic .hero-actions,
  .hero-proof {
    animation: none !important;
  }

  .hero-badge,
  .hero-title,
  .hero-cosmic .hero-lead,
  .hero-cosmic .hero-actions,
  .hero-proof {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

.hero-cosmic {
  min-height: clamp(480px, 68svh, 620px);
  padding: clamp(60px, 7vh, 92px) 0 clamp(44px, 6vh, 72px);
  background:
    radial-gradient(ellipse at 50% 42%, rgba(139, 75, 220, 0.18), transparent 21rem),
    radial-gradient(ellipse at 52% 60%, rgba(183, 140, 255, 0.08), transparent 30rem),
    transparent;
  background-size: 100% 100%;
  animation: hero-background-breathe 22s ease-in-out infinite alternate;
}

.hero-cosmic .hero-grid {
  position: relative;
}

.hero-cosmic::after {
  width: min(80vw, 760px);
  height: min(40vw, 390px);
  border-radius: 54% 46% 48% 52% / 38% 44% 56% 62%;
  background:
    conic-gradient(from 225deg at 50% 50%,
      transparent 0deg,
      rgba(183, 140, 255, 0.07) 36deg,
      rgba(168, 85, 247, 0.31) 80deg,
      rgba(139, 75, 220, 0.16) 124deg,
      transparent 176deg,
      transparent 246deg,
      rgba(183, 140, 255, 0.16) 292deg,
      transparent 338deg),
    radial-gradient(ellipse at 50% 50%, rgba(183, 140, 255, 0.2), rgba(139, 75, 220, 0.09) 44%, transparent 74%);
  filter: blur(16px) saturate(1.1);
  opacity: 0.68;
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at center, black 0%, black 43%, transparent 76%);
  animation: hero-crescent-breathe 13s ease-in-out infinite alternate, hero-glow-load 1.05s ease both;
}

.hero-cosmic .hero-grid::before {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: min(62vw, 610px);
  height: min(23vw, 220px);
  content: "";
  pointer-events: none;
  border-radius: 999px;
  background: linear-gradient(95deg, transparent 8%, rgba(183, 140, 255, 0.21) 42%, rgba(139, 75, 220, 0.1) 60%, transparent 88%);
  filter: blur(14px);
  opacity: 0.38;
  transform: translate(-50%, -62%) rotate(-12deg);
  animation: hero-arc-drift 16s ease-in-out infinite alternate;
}

.hero-copy-centered {
  position: relative;
  z-index: 3;
  overflow: visible;
  padding-bottom: 0.12em;
  max-height: none;
}

.hero-copy-centered::before {
  position: absolute;
  inset: -48px -72px;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 40%, rgba(122, 61, 255, 0.18), transparent 42%),
    radial-gradient(circle at 50% 55%, rgba(0, 0, 0, 0.28), transparent 55%);
}

.hero-proof {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px);
}

body.is-loaded .hero-proof {
  animation: hero-start-in 720ms 620ms cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

.hero-cosmic + .section {
  margin-top: 0;
}

.hero-cosmic + .section::before {
  display: none;
  content: none;
  background: none;
}

@media (hover: hover) and (pointer: fine) {
  .audience-card[role="button"]:hover,
  .faq-list details:hover {
    transform: translateY(-5px);
    border-color: rgba(183, 140, 255, 0.48);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38), 0 0 36px rgba(139, 75, 220, 0.16);
  }
}

@media (max-width: 640px) {
  .hero-cosmic {
    min-height: auto;
    padding: 72px 0 52px;
  }

  .hero-cosmic::after {
    width: 90vw;
    height: 54vw;
    filter: blur(12px) saturate(1.04);
    opacity: 0.46;
  }

  .hero-cosmic .hero-grid::before {
    width: 80vw;
    height: 34vw;
    filter: blur(10px);
    opacity: 0.25;
  }

  .hero-proof {
    filter: none;
    transform: translateY(14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cosmic::after,
  .hero-cosmic .hero-grid::before {
    animation: none !important;
  }
}

.hero-cosmic {
  overflow: hidden;
}

.hero-cosmic::after,
.hero-cosmic .hero-grid::before {
  display: none !important;
}

/* Hero plasma — procedural WebGL smoke/plasma layer (see js/hero-plasma.js).
   `.hero-plasma` replaced the old orbital ring SVG behind the hero heading. */
.hero-plasma {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1100ms ease;
}

body.page-loaded .hero-plasma {
  opacity: 1;
}

.hero-plasma__canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* Darkens the middle of the hero so the smoke never fights the H1 for
   attention; heavier at centre, fades out toward the edges. */
.hero-plasma__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 46% 68% at 50% 46%, rgba(4, 3, 9, 0.68) 0%, rgba(4, 3, 9, 0.28) 48%, transparent 78%);
}

/* CSS fallback for browsers/devices without WebGL — hero-plasma.js adds
   this class instead of drawing when the context fails to init. */
.hero-plasma--fallback .hero-plasma__canvas {
  display: none;
}

.hero-plasma--fallback::before {
  position: absolute;
  inset: -10% -8%;
  content: "";
  background:
    radial-gradient(ellipse 24% 11% at 15% 38%, rgba(168, 85, 247, 0.28), rgba(76, 29, 149, 0.08) 48%, transparent 72%),
    radial-gradient(ellipse 22% 10% at 50% 56%, rgba(217, 70, 239, 0.22), rgba(88, 28, 135, 0.06) 46%, transparent 70%),
    radial-gradient(ellipse 20% 9% at 85% 42%, rgba(139, 92, 246, 0.2), transparent 68%);
  background-size: 260% 100%;
  filter: blur(32px);
  animation: hero-smoke-fallback-drift 11s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-plasma--fallback::before {
    animation: none !important;
  }
}

.hero-copy-centered {
  position: relative;
  z-index: 3;
  overflow: visible;
  padding-bottom: 0.12em;
  max-height: none;
}

.hero-cosmic {
  min-height: clamp(460px, 64svh, 580px);
  padding: clamp(64px, 7vh, 96px) 0 clamp(42px, 6vh, 72px);
}

.hero-particles {
  opacity: 0.18;
  animation-duration: 34s !important;
}

@media (max-width: 640px) {
  .hero-cosmic {
    min-height: auto;
    padding: 58px 0 42px;
  }

  .hero-particles {
    opacity: 0.08;
    animation: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-particles {
    animation: none !important;
    opacity: 1 !important;
    will-change: auto !important;
  }
}

.hero-cosmic {
  min-height: clamp(400px, 56svh, 520px);
  padding: clamp(48px, 6vh, 78px) 0 clamp(30px, 4.8vh, 56px);
}

.hero-cosmic .hero-grid {
  gap: clamp(24px, 4vw, 42px);
}

.hero-cosmic .hero-actions {
  margin-top: clamp(18px, 3vw, 26px);
}

.hero-cosmic .proof-list,
.hero-proof {
  margin-top: clamp(18px, 3vw, 26px);
}

.hero-cosmic + .section {
  padding-top: clamp(38px, 5vw, 58px);
}

.benefit-grid,
.process-grid,
.audience-grid,
.deliverables-grid,
.implementation-grid {
  gap: clamp(14px, 2vw, 18px);
}

.tools-teaser {
  gap: clamp(18px, 2.8vw, 28px);
}

@media (max-width: 768px) {
  .hero-cosmic {
    min-height: auto;
    padding: 48px 0 34px;
  }

  .tools-teaser {
    gap: 18px;
  }
}

@media (max-width: 430px) {
  .hero-cosmic {
    padding: 42px 0 28px;
  }

  .hero-cosmic .hero-actions,
  .hero-cosmic .proof-list,
  .hero-proof {
    margin-top: 16px;
  }
}

.human-ai-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(46px, 5.6vw, 64px);
  padding-bottom: clamp(46px, 5.6vw, 64px);
}

.human-ai-section::before {
  position: absolute;
  inset: 16% auto auto 50%;
  width: min(760px, 82vw);
  height: min(360px, 42vw);
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 48%, rgba(168, 85, 247, 0.2), transparent 20%),
    radial-gradient(circle at 34% 54%, rgba(192, 132, 252, 0.08), transparent 26%);
  opacity: 0.9;
  transform: translateX(-18%);
}

.human-ai-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  min-height: clamp(400px, 46vw, 540px);
}

.human-ai-copy {
  max-width: 560px;
}

.human-ai-copy h2 {
  max-width: 620px;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.human-ai-copy > p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
}

.human-ai-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.human-ai-points li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border: 1px solid rgba(183, 140, 255, 0.16);
  border-radius: 16px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.035);
}

.human-ai-points li::before {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.7);
  transform: translateY(-50%);
}

.human-ai-visual {
  position: relative;
  min-height: clamp(300px, 34vw, 420px);
  border: 1px solid rgba(183, 140, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 45%, rgba(168, 85, 247, 0.14), transparent 26%),
    radial-gradient(circle at 40% 62%, rgba(255, 255, 255, 0.05), transparent 34%),
    linear-gradient(145deg, rgba(12, 10, 18, 0.92), rgba(3, 3, 6, 0.96));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  isolation: isolate;
}

.human-ai-hand {
  position: absolute;
  inset: auto -4% 2% -10%;
  z-index: 2;
  width: 112%;
  height: auto;
  opacity: 0.72;
  transform: translate3d(-18px, 18px, 0);
}

.hand-line {
  fill: none;
  stroke: rgba(226, 232, 240, 0.62);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hand-wrist,
.hand-palm {
  stroke: rgba(226, 232, 240, 0.38);
  stroke-width: 14;
}

.human-ai-orb {
  position: absolute;
  top: 36%;
  right: 18%;
  z-index: 3;
  width: clamp(38px, 5vw, 58px);
  height: clamp(38px, 5vw, 58px);
  border: 1px solid rgba(216, 180, 254, 0.56);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.86), transparent 12%),
    radial-gradient(circle, rgba(192, 132, 252, 0.95), rgba(124, 58, 237, 0.76) 48%, rgba(88, 28, 135, 0.42));
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.44), 0 0 80px rgba(124, 58, 237, 0.2);
}

.human-ai-pixels {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.human-ai-pixel {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: rgba(216, 180, 254, 0.92);
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.5);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.8);
}

.pixel-1 { left: 43%; top: 49%; --dx: 120px; --dy: -34px; animation-delay: 0ms; }

.pixel-2 { left: 46%; top: 45%; --dx: 94px; --dy: -12px; animation-delay: 520ms; }

.pixel-3 { left: 39%; top: 53%; --dx: 148px; --dy: -52px; animation-delay: 980ms; }

.pixel-4 { left: 50%; top: 55%; --dx: 78px; --dy: -52px; animation-delay: 1450ms; }

.pixel-5 { left: 36%; top: 48%; --dx: 170px; --dy: -22px; animation-delay: 1960ms; }

.pixel-6 { left: 45%; top: 59%; --dx: 112px; --dy: -78px; animation-delay: 2500ms; }

.pixel-7 { left: 41%; top: 43%; --dx: 138px; --dy: 4px; animation-delay: 3100ms; }

body.page-loaded .human-ai-section.is-visible .human-ai-hand {
  animation: human-ai-hand-in 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.page-loaded .human-ai-section.is-visible .human-ai-orb {
  animation: human-ai-orb-pulse 2.8s ease-in-out infinite;
}

body.page-loaded .human-ai-section.is-visible .human-ai-pixel {
  animation: human-ai-pixel-flow 4.6s ease-in-out infinite;
}

@media (max-width: 768px) {
  .human-ai-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .human-ai-visual {
    min-height: 280px;
  }

  .human-ai-hand {
    width: 120%;
  }

  .human-ai-orb {
    right: 14%;
  }
}

@media (max-width: 430px) {
  .human-ai-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .human-ai-copy h2 {
    font-size: clamp(1.75rem, 10vw, 2.25rem);
  }

  .human-ai-visual {
    min-height: 230px;
    border-radius: 22px;
  }

  .human-ai-hand {
    inset: auto -18% 2% -22%;
    width: 138%;
  }

  .human-ai-pixel {
    width: 5px;
    height: 5px;
  }

  .pixel-5,
  .pixel-6,
  .pixel-7 {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .human-ai-hand,
  .human-ai-orb,
  .human-ai-pixel {
    animation: none !important;
  }

  .human-ai-pixel {
    opacity: 0.52;
    transform: none !important;
  }
}

.human-ai-visual {
  border-color: rgba(183, 140, 255, 0.1);
  background:
    radial-gradient(circle at 48% 48%, rgba(168, 85, 247, 0.08), transparent 18%),
    radial-gradient(circle at 18% 58%, rgba(226, 232, 240, 0.045), transparent 28%),
    linear-gradient(145deg, rgba(8, 8, 12, 0.94), rgba(2, 2, 4, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.human-ai-cloud {
  position: absolute;
  top: 41%;
  left: 8%;
  z-index: 2;
  width: 34%;
  height: 32%;
  opacity: 0.74;
  transform: translate3d(0, 0, 0);
}

.human-ai-cloud::before {
  position: absolute;
  inset: 34% 12% auto 2%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.24), transparent);
}

.human-ai-cloud span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: rgba(226, 232, 240, 0.5);
}

.human-ai-cloud span:nth-child(1) { left: 0%; top: 42%; opacity: 0.18; }

.human-ai-cloud span:nth-child(2) { left: 8%; top: 38%; opacity: 0.28; }

.human-ai-cloud span:nth-child(3) { left: 14%; top: 52%; opacity: 0.2; }

.human-ai-cloud span:nth-child(4) { left: 20%; top: 32%; opacity: 0.38; }

.human-ai-cloud span:nth-child(5) { left: 28%; top: 46%; opacity: 0.32; }

.human-ai-cloud span:nth-child(6) { left: 36%; top: 26%; opacity: 0.42; }

.human-ai-cloud span:nth-child(7) { left: 40%; top: 58%; opacity: 0.24; }

.human-ai-cloud span:nth-child(8) { left: 50%; top: 36%; opacity: 0.52; }

.human-ai-cloud span:nth-child(9) { left: 56%; top: 48%; opacity: 0.36; }

.human-ai-cloud span:nth-child(10) { left: 64%; top: 28%; opacity: 0.62; }

.human-ai-cloud span:nth-child(11) { left: 70%; top: 42%; opacity: 0.42; }

.human-ai-cloud span:nth-child(12) { left: 76%; top: 56%; opacity: 0.3; }

.human-ai-cloud span:nth-child(13) { left: 82%; top: 36%; opacity: 0.66; }

.human-ai-cloud span:nth-child(14) { left: 88%; top: 48%; opacity: 0.34; }

.human-ai-cloud span:nth-child(15) { left: 94%; top: 40%; opacity: 0.22; }

.human-ai-orb {
  top: 45%;
  right: 47%;
  width: clamp(30px, 3.8vw, 42px);
  height: clamp(30px, 3.8vw, 42px);
  transform: translate(50%, -50%) rotate(45deg);
  border-radius: 12px;
}

.human-ai-orb::before,
.human-ai-orb::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 140%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(216, 180, 254, 0.78), transparent);
  transform: translate(-50%, -50%);
}

.human-ai-orb::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.human-ai-hand {
  position: absolute;
  right: -4%;
  bottom: 18%;
  z-index: 3;
  width: min(360px, 58%);
  height: 170px;
  opacity: 0.72;
  transform: translate3d(0, 0, 0);
}

.hand-wrist,
.hand-palm,
.hand-finger,
.hand-thumb {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, rgba(226, 232, 240, 0.08), rgba(226, 232, 240, 0.42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hand-wrist {
  right: -10px;
  bottom: 26px;
  width: 178px;
  height: 62px;
  border-radius: 999px 0 0 999px;
  transform: rotate(5deg);
}

.hand-palm {
  right: 118px;
  bottom: 40px;
  width: 112px;
  height: 82px;
  border-radius: 48% 38% 42% 52%;
  transform: rotate(-8deg);
}

.hand-finger {
  height: 21px;
  border-radius: 999px;
  transform-origin: right center;
}

.hand-index {
  right: 210px;
  bottom: 105px;
  width: 128px;
  transform: rotate(-6deg);
}

.hand-middle {
  right: 184px;
  bottom: 79px;
  width: 100px;
  transform: rotate(12deg);
  opacity: 0.86;
}

.hand-ring {
  right: 170px;
  bottom: 54px;
  width: 84px;
  transform: rotate(26deg);
  opacity: 0.72;
}

.hand-little {
  right: 160px;
  bottom: 31px;
  width: 66px;
  transform: rotate(36deg);
  opacity: 0.58;
}

.hand-thumb {
  right: 188px;
  bottom: 28px;
  width: 84px;
  height: 24px;
  border-radius: 999px;
  transform: rotate(-38deg);
  opacity: 0.8;
}

.pixel-1 { left: 36%; top: 47%; --dx: 82px; --dy: -8px; }

.pixel-2 { left: 41%; top: 42%; --dx: 54px; --dy: 8px; }

.pixel-3 { left: 32%; top: 53%; --dx: 104px; --dy: -22px; }

.pixel-4 { left: 46%; top: 56%; --dx: 34px; --dy: -34px; }

.pixel-5 { left: 28%; top: 44%; --dx: 126px; --dy: 4px; }

.pixel-6 { left: 42%; top: 60%; --dx: 58px; --dy: -44px; }

.pixel-7 { left: 50%; top: 38%; --dx: 24px; --dy: 26px; }

body.page-loaded .human-ai-section.is-visible .human-ai-hand {
  animation: human-ai-hand-float 5.8s ease-in-out infinite;
}

body.page-loaded .human-ai-section.is-visible .human-ai-orb {
  animation: human-ai-node-pulse 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .human-ai-cloud {
    left: 7%;
    width: 38%;
  }

  .human-ai-hand {
    right: -12%;
    width: min(330px, 66%);
  }
}

@media (max-width: 430px) {
  .human-ai-cloud span:nth-child(n+10) {
    display: none;
  }

  .human-ai-orb {
    right: 44%;
  }

  .human-ai-hand {
    right: -28%;
    bottom: 14%;
    width: 82%;
    transform: scale(0.86);
    transform-origin: right bottom;
  }
}

.human-ai-flow-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px minmax(104px, 0.78fr) 86px minmax(0, 1fr);
  gap: 0;
  align-items: center;
  min-height: clamp(300px, 34vw, 410px);
  padding: clamp(18px, 3vw, 30px);
  border-color: rgba(183, 140, 255, 0.14);
  background:
    radial-gradient(circle at 50% 48%, rgba(139, 92, 246, 0.18), transparent 22%),
    linear-gradient(145deg, rgba(12, 12, 18, 0.96), rgba(3, 3, 7, 0.98));
}

.human-ai-flow-panel::before {
  position: absolute;
  inset: 18px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 22px;
}

.flow-card,
.flow-ai-node,
.flow-connector {
  position: relative;
  z-index: 2;
}

.flow-card {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(183, 140, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.flow-card-kicker {
  display: block;
  margin-bottom: 12px;
  color: rgba(216, 180, 254, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.flow-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.flow-card-lead p {
  color: rgba(248, 250, 252, 0.86);
}

.flow-ai-node {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.flow-ai-orb {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(216, 180, 254, 0.6);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.9), transparent 12%),
    linear-gradient(145deg, #a855f7, #7c3aed);
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.36), 0 0 72px rgba(124, 58, 237, 0.18);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  transform: translate3d(0, 0, 0);
}

.flow-ai-label {
  max-width: 120px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.flow-connector {
  height: 90px;
  overflow: hidden;
}

.flow-line {
  position: absolute;
  top: 50%;
  left: 8px;
  right: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(183, 140, 255, 0.08), rgba(168, 85, 247, 0.46), rgba(183, 140, 255, 0.08));
}

.flow-dot {
  position: absolute;
  top: calc(50% - 3px);
  left: 8px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: rgba(216, 180, 254, 0.92);
  opacity: 0;
  transform: translate3d(0, 0, 0);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.42);
}

.flow-connector-right .flow-dot {
  left: auto;
  right: 8px;
}

body.page-loaded .human-ai-section.is-visible .flow-ai-orb {
  animation: flow-ai-pulse 2.8s ease-in-out infinite;
}

body.page-loaded .human-ai-section.is-visible .flow-connector-left .flow-dot {
  animation: flow-dot-right 2.7s ease-in-out infinite;
}

body.page-loaded .human-ai-section.is-visible .flow-connector-right .flow-dot {
  animation: flow-dot-left 2.7s ease-in-out infinite;
}

.flow-dot.dot-a { animation-delay: 0ms; }

.flow-dot.dot-b { animation-delay: 420ms; }

.flow-dot.dot-c { animation-delay: 840ms; }

@media (hover: hover) and (pointer: fine) {
  .flow-card:hover {
    border-color: rgba(183, 140, 255, 0.32);
    box-shadow: 0 22px 62px rgba(0, 0, 0, 0.28), 0 0 28px rgba(139, 92, 246, 0.08);
    transform: translateY(-3px);
  }
}

@media (max-width: 768px) {
  .human-ai-flow-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
  }

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

  .flow-ai-node {
    gap: 8px;
  }

  .flow-ai-orb {
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }

  .flow-connector {
    width: 100%;
    height: 34px;
  }

  .flow-line {
    top: 50%;
    left: 18%;
    right: 18%;
  }

  .flow-connector-right .flow-dot,
  .flow-dot {
    left: 18%;
    right: auto;
  }

  body.page-loaded .human-ai-section.is-visible .flow-connector-right .flow-dot,
  body.page-loaded .human-ai-section.is-visible .flow-connector-left .flow-dot {
    animation: flow-dot-right-mobile 2.7s ease-in-out infinite;
  }
}

@media (max-width: 430px) {
  .human-ai-flow-panel {
    padding: 14px;
  }

  .flow-card {
    padding: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-ai-orb,
  .flow-dot {
    animation: none !important;
  }

  .flow-dot {
    opacity: 0.42;
  }
}

.human-ai-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(400px, 44vw, 560px);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(6px, 1.6vw, 14px);
  box-sizing: border-box;
  overflow: visible;
  background: none;
  border: none;
  box-shadow: none;
}

.human-ai-diamond-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(520px, 96%);
  height: min(520px, 94%);
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(139, 75, 220, 0.38), rgba(168, 85, 247, 0.14) 42%, transparent 72%);
  filter: blur(14px);
  opacity: 0.88;
  transform: translate(-50%, -50%);
}

.human-ai-diamond-glow--outer {
  z-index: 0;
  width: min(580px, 104%);
  height: min(580px, 100%);
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.12), rgba(139, 75, 220, 0.04) 50%, transparent 76%);
  filter: blur(20px);
  opacity: 0.55;
}

.human-ai-diamond-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: min(540px, 100%);
  height: clamp(380px, 42vw, 540px);
  max-width: 100%;
  opacity: 0;
  transition: opacity 420ms ease;
}

.human-ai-diamond-canvas.is-ready {
  opacity: 1;
}

body.js-enabled .human-ai-visual {
  transform: translate3d(0, 20px, 0) scale(0.98);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.js-enabled .human-ai-section.is-visible .human-ai-visual {
  transform: translate3d(0, 0, 0) scale(1);
}

body.page-loaded .human-ai-section.is-visible .human-ai-diamond-glow {
  animation: human-ai-diamond-glow-pulse 5.6s ease-in-out infinite;
}

@media (max-width: 768px) {
  .human-ai-visual {
    min-height: clamp(300px, 62vw, 400px);
  }

  .human-ai-diamond-canvas {
    height: clamp(300px, 58vw, 400px);
  }

  .human-ai-diamond-glow {
    width: min(420px, 98%);
    height: min(420px, 96%);
  }

  .human-ai-diamond-glow--outer {
    width: min(480px, 104%);
    height: min(480px, 100%);
  }
}

@media (max-width: 430px) {
  .human-ai-visual {
    min-height: 280px;
  }

  .human-ai-diamond-canvas {
    height: clamp(270px, 72vw, 340px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .human-ai-visual,
  .human-ai-diamond-glow {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .human-ai-diamond-canvas {
    opacity: 1 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  .human-ai-visual-card:hover .human-ai-image {
    transform: translate3d(0, -2px, 0) scale(1.01);
  }
}

@media (max-width: 430px) {
  body.page-loaded .human-ai-section.is-visible .human-ai-image {
    animation-duration: 18s;
  }

  .human-ai-glow {
    width: 46%;
  }

  .human-ai-particles .human-ai-pixel:nth-child(n+9) {
    display: none;
  }

  .human-ai-particles .pixel-1 { --dx: 104px; --dy: -22px; }

  .human-ai-particles .pixel-2 { --dx: 88px; --dy: 4px; }

  .human-ai-particles .pixel-3 { --dx: 84px; --dy: -38px; }

  .human-ai-particles .pixel-4 { --dx: 70px; --dy: 16px; }

  .human-ai-particles .pixel-5 { --dx: 58px; --dy: -8px; }

  .human-ai-particles .pixel-6 { --dx: 96px; --dy: -48px; }

  .human-ai-particles .pixel-7 { --dx: 48px; --dy: 10px; }

  .human-ai-particles .pixel-8 { --dx: 108px; --dy: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  .human-ai-image,
  .human-ai-glow,
  .human-ai-node,
  .human-ai-particles .human-ai-pixel {
    animation: none !important;
  }

  .human-ai-image {
    transform: none !important;
  }

  .human-ai-node,
  .human-ai-glow {
    transform: translate(-50%, -50%) !important;
  }

  .human-ai-particles .human-ai-pixel {
    opacity: 0.42;
  }
}

.human-ai-image {
  animation: none !important;
  filter: saturate(0.92) contrast(1.04) brightness(0.74);
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 220ms ease;
  will-change: auto;
}

body.page-loaded .human-ai-section.is-visible .human-ai-image {
  animation: none !important;
}

.human-ai-node {
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.5), 0 0 34px rgba(139, 92, 246, 0.18);
}

body.page-loaded .human-ai-section.is-visible .human-ai-node {
  animation: human-ai-node-lite-pulse 3.4s ease-in-out infinite;
}

.human-ai-glow {
  opacity: 0.42;
}

body.page-loaded .human-ai-section.is-visible .human-ai-glow {
  animation: human-ai-glow-lite 6.2s ease-in-out infinite;
}

.human-ai-particles .human-ai-pixel {
  box-shadow: none;
}

.human-ai-particles .human-ai-pixel:nth-child(n+9) {
  display: none;
}

body.page-loaded .human-ai-section.is-visible .human-ai-particles .human-ai-pixel {
  animation-duration: 7.2s;
}

@media (hover: hover) and (pointer: fine) {
  .human-ai-visual-card:hover .human-ai-image {
    transform: translate3d(0, -1px, 0) scale(1.004);
  }
}

@media (max-width: 430px) {
  .human-ai-particles .human-ai-pixel:nth-child(n+7) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .human-ai-image,
  .human-ai-glow,
  .human-ai-node,
  .human-ai-particles .human-ai-pixel {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  .human-ai-node,
  .human-ai-glow {
    transform: translate(-50%, -50%) !important;
  }
}

.hero::before,
.hero::after,
.hero-cosmic::before,
.hero-cosmic::after,
.hero-particles,
.hero-plasma,
.hero-plasma__canvas,
.hero-plasma__vignette,
.human-ai-glow,
.human-ai-node,
.human-ai-particles,
.human-ai-pixel,
.human-ai-visual-card::before,
.human-ai-visual-card::after,
.flow-line,
.flow-dot {
  pointer-events: none !important;
}

.human-ai-image {
  pointer-events: none;
}

.human-ai-section {
  height: auto !important;
  max-height: none !important;
  overflow-x: visible;
  overflow-y: visible !important;
  scroll-snap-align: none !important;
  scroll-snap-stop: normal !important;
}

.human-ai-visual-card {
  background:
    radial-gradient(circle at 52% 42%, rgba(168, 85, 247, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(8, 8, 12, 0.96), rgba(2, 2, 5, 0.98));
}

.human-ai-visual-card::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 24%, transparent 72%, rgba(0, 0, 0, 0.36)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 48%, rgba(0, 0, 0, 0.22));
}

.human-ai-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04) brightness(0.86);
  opacity: 0.9;
}

.human-ai-glow {
  opacity: 0.32;
}

.human-ai-node,
.human-ai-particles {
  display: none;
}

body.page-loaded .human-ai-section.is-visible .human-ai-glow {
  animation: human-ai-glow-lite 7.2s ease-in-out infinite;
}

.dashboard-metrics article,
.pipeline-panel,
.integration-panel,
.mini-chat-module,
.lead-card,
.tools-teaser-step,
.info-card,
.process-card,
.mechanism-card,
.audience-card,
.deliverables-grid article,
.implementation-grid article,
.cta-panel,
.contact-form,
.faq-list details {
  background:
    var(--card-bg-dark-gradient),
    var(--card-bg-dark);
}

.deliverables-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  text-align: center;
  line-height: 1.35;
}

@media (hover: hover) and (pointer: fine) {
  .audience-card[role="button"]:hover,
  .faq-list details:hover {
    border-color: rgba(216, 180, 254, 0.34);
    background:
      radial-gradient(circle at 22% 0%, rgba(168, 85, 247, 0.13), transparent 38%),
      rgba(255, 255, 255, 0.055);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3), 0 0 34px rgba(139, 75, 220, 0.12);
    transform: translateY(-6px);
  }
}

.tools-teaser-step,
.proof-list li,
.faq-list details {
  transition:
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.tools-teaser-step:nth-child(1) {
  --child-delay: 80ms;
}

.tools-teaser-step:nth-child(2) {
  --child-delay: 160ms;
}

.tools-teaser-step:nth-child(3) {
  --child-delay: 240ms;
}

.tools-teaser-step:nth-child(4) {
  --child-delay: 320ms;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(183, 140, 255, 0.3);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid rgba(183, 140, 255, 0.34);
  outline-offset: 2px;
  border-color: rgba(216, 180, 254, 0.52);
  box-shadow: 0 0 0 6px rgba(139, 75, 220, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(203, 213, 225, 0.62);
}

.faq-list summary {
  transition: color 200ms ease;
}

.faq-list details[open] summary,
.faq-list details.is-open summary {
  color: var(--text);
}

.faq-list details:focus-within {
  border-color: rgba(216, 180, 254, 0.4);
  box-shadow: 0 0 0 4px rgba(139, 75, 220, 0.12);
}

@media (max-width: 768px) {
  .hero-grid,
  .human-ai-grid,
  .contact-form {
    max-width: 100%;
  }

  .hero,
  .hero-cosmic {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero-cosmic {
    min-height: auto;
  }

  .hero-cosmic .hero-grid {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 26px;
  }

  .hero-copy-centered {
    gap: 16px;
    width: 100%;
  }

  .hero-badge {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-cosmic h1,
  .hero-cosmic .hero-title,
  .hero-title {
    max-width: 92%;
    font-size: clamp(3.4rem, 15vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    padding-bottom: 0.16em;
  }

  .hero-cosmic .hero-lead {
    max-width: 92%;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    justify-content: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
  }

  .proof-list,
  .hero-cosmic .proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .proof-list li,
  .hero-cosmic .proof-list li {
    min-width: 0;
    padding: 11px 12px;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .human-ai-copy h2 {
    font-size: clamp(1.72rem, 7vw, 2.35rem);
    line-height: 1.1;
    text-wrap: balance;
  }

  .benefit-grid,
  .process-grid,
  .mechanism-grid,
  .audience-grid,
  .deliverables-grid,
  .implementation-grid,
  .tools-teaser-flow,
  .contact-grid,
  .contact-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .info-card,
  .process-card,
  .mechanism-card,
  .audience-card,
  .implementation-grid article,
  .deliverables-grid article,
  .tools-teaser-step,
  .lead-card,
  .mini-chat-module {
    width: 100%;
    padding: 20px;
    transform: none;
  }

  .audience-card.is-tapped,
  .faq-list details.is-tapped {
    border-color: rgba(216, 180, 254, 0.42);
    background:
      radial-gradient(circle at 18% 0%, rgba(168, 85, 247, 0.18), transparent 42%),
      rgba(255, 255, 255, 0.065);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34), 0 0 30px rgba(139, 75, 220, 0.16);
    transform: translateY(-3px) scale(1.006);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .process-card:not(:last-child)::after {
    display: none;
  }

  .human-ai-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .human-ai-visual-card {
    min-height: 300px;
    aspect-ratio: 1.28;
  }

  .human-ai-image {
    width: 100%;
    height: 100%;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form label {
    min-width: 0;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero,
  .hero-cosmic {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero-cosmic .hero-grid {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .hero-badge {
    padding: 5px 10px;
    font-size: 0.68rem;
  }

  .hero-cosmic h1,
  .hero-title {
    font-size: clamp(3rem, 14vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    padding-bottom: 0.16em;
  }

  .hero-cosmic .hero-title-line:nth-child(2) {
    white-space: normal;
  }

  .hero-cosmic .hero-lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .proof-list,
  .hero-cosmic .proof-list {
    grid-template-columns: 1fr;
  }

  .info-card,
  .process-card,
  .mechanism-card,
  .audience-card,
  .implementation-grid article,
  .deliverables-grid article,
  .tools-teaser-step,
  .lead-card,
  .mini-chat-module,
  .contact-form {
    padding: 18px;
    border-radius: 18px;
  }

  .human-ai-visual-card {
    min-height: 260px;
    border-radius: 22px;
  }

  .human-ai-particles .human-ai-pixel:nth-child(n+7) {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero-cosmic h1,
  .hero-title {
    font-size: clamp(1.82rem, 10vw, 2.34rem);
  }

  .human-ai-copy h2 {
    font-size: clamp(1.54rem, 8vw, 2rem);
  }
}

.hero-ascii-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-ascii-canvas.is-ready {
  opacity: 1;
}

.ascii-divider-section {
  position: relative;
  padding: 36px 0 44px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(139, 75, 220, 0.12), transparent),
    var(--panel);
}

.ascii-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 196px;
  max-height: 220px;
}

.ascii-visual-glow {
  position: absolute;
  width: min(320px, 72vw);
  height: min(320px, 72vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 75, 220, 0.28), rgba(139, 75, 220, 0.06) 42%, transparent 72%);
  filter: blur(2px);
  pointer-events: none;
}

.ascii-visual-pre {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.7rem;
  line-height: 1.12;
  color: rgba(183, 140, 255, 0.62);
  text-shadow: 0 0 14px rgba(139, 75, 220, 0.35);
  white-space: pre;
  letter-spacing: 0.04em;
  user-select: none;
}

@media (max-width: 680px) {
  .ascii-divider-section {
    padding: 28px 0 32px;
  }

  .ascii-visual-wrap {
    min-height: 148px;
    max-height: 168px;
  }

  .ascii-visual-pre {
    font-size: 0.52rem;
    letter-spacing: 0.02em;
  }
}

.human-ai-section {
  background-color: transparent;
}

.hero-cosmic {
  background: transparent;
  animation: none;
}

.hero-cosmic::before,
.hero-cosmic .hero-grid::before,
.hero-particles,
.hero-plasma,
.hero-ascii-canvas {
  display: none;
}

.hero-cosmic::after {
  display: block;
  inset: 8% -18% 4% -18%;
  z-index: -1;
  width: auto;
  height: auto;
  border-radius: 42% 58% 54% 46% / 58% 44% 56% 42%;
  background:
    radial-gradient(ellipse 48% 14% at 6% 58%, rgba(88, 28, 135, 0.16), transparent 72%),
    radial-gradient(ellipse 54% 18% at 27% 48%, rgba(126, 34, 206, 0.3), transparent 70%),
    radial-gradient(ellipse 62% 16% at 52% 45%, rgba(168, 85, 247, 0.24), transparent 72%),
    radial-gradient(ellipse 54% 14% at 76% 40%, rgba(107, 33, 168, 0.2), transparent 72%),
    radial-gradient(ellipse 42% 12% at 98% 31%, rgba(76, 29, 149, 0.15), transparent 74%),
    radial-gradient(ellipse 24% 22% at 31% 51%, rgba(244, 114, 182, 0.08), transparent 72%),
    radial-gradient(ellipse 30% 20% at 68% 43%, rgba(216, 180, 254, 0.09), transparent 74%);
  filter: blur(28px) saturate(1.08);
  mix-blend-mode: screen;
  opacity: 0.76;
  transform: translate3d(-2%, 1%, 0) rotate(-10deg) scale(1.04);
  transform-origin: 50% 50%;
  animation: hero-cosmic-flame 38s ease-in-out infinite alternate;
}

.hero-cosmic + .section::before {
  display: none;
  content: none;
  background: none;
}

.human-ai-section::before {
  opacity: 0.18;
}

.ascii-divider-section {
  background: transparent;
}

@media (max-width: 768px) {
  .hero-cosmic::before,
  .hero-cosmic .hero-grid::before,
  .hero-particles,
  .hero-plasma,
  .hero-ascii-canvas {
    display: none;
  }

  .hero-cosmic::after {
    display: block;
    inset: 12% -46% 8% -46%;
    filter: blur(22px) saturate(1.04);
    opacity: 0.58;
    animation: hero-cosmic-flame-mobile 54s ease-in-out infinite alternate;
  }
}

.hero-cosmic {
  isolation: isolate;
}

.hero-cosmic::after {
  display: none;
}

.hero-cosmic .hero-grid {
  position: relative;
  z-index: 2;
}

#hero.hero-cosmic .hero-bg {
  display: none !important;
}

#hero.hero-cosmic::after {
  display: none !important;
}

#hero.hero-cosmic::before {
  display: block !important;
  position: absolute;
  inset: -20% -14% -60% -14%;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse 120% 50% at 50% -2%, rgba(18, 36, 88, 0.5), transparent 72%),
    radial-gradient(ellipse 90% 58% at 50% 42%, rgba(109, 40, 217, 0.42), rgba(88, 28, 135, 0.18) 52%, transparent 76%),
    radial-gradient(ellipse 100% 44% at 50% 78%, rgba(88, 28, 135, 0.08), transparent 80%);
  filter: none;
  mix-blend-mode: normal;
  opacity: 0.72;
  transform: translate3d(0, 0, 0);
  animation: none;
  /* Smooth continuous fade — no plateau→ramp kink → no horizontal seam. */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.99) 34%, rgba(0, 0, 0, 0.95) 48%, rgba(0, 0, 0, 0.86) 60%, rgba(0, 0, 0, 0.7) 71%, rgba(0, 0, 0, 0.46) 81%, rgba(0, 0, 0, 0.22) 91%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.99) 34%, rgba(0, 0, 0, 0.95) 48%, rgba(0, 0, 0, 0.86) 60%, rgba(0, 0, 0, 0.7) 71%, rgba(0, 0, 0, 0.46) 81%, rgba(0, 0, 0, 0.22) 91%, rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 768px) {
  #hero.hero-cosmic::before {
    inset: -12% -18% -46% -18%;
    filter: none;
    opacity: 0.52;
  }
}

@media (prefers-reduced-motion: reduce) {
  #hero.hero-cosmic::before {
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }
}

/* Let the hero smoke bleed softly past the section instead of being hard-
   clipped at the box edge (which produced a visible horizontal cut). Safe:
   only the homepage uses .hero-cosmic, html/body have overflow-x:hidden so
   the negative L/R insets can't create horizontal scroll, the sticky navbar
   (opaque) covers any upward bleed, and later sections paint over the soft
   downward tail. */
#hero.hero-cosmic {
  overflow: visible;
}

#hero.hero-cosmic .hero-plasma {
  display: block !important;
  inset: -4% -10% -52% -10%;
  z-index: 1;
  overflow: visible;
  /* Smooth continuous fade (no flat plateau → steep ramp) so there is no
     Mach-band horizontal line at the mask stops. */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.99) 32%, rgba(0, 0, 0, 0.95) 46%, rgba(0, 0, 0, 0.86) 58%, rgba(0, 0, 0, 0.7) 69%, rgba(0, 0, 0, 0.48) 79%, rgba(0, 0, 0, 0.24) 90%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.99) 32%, rgba(0, 0, 0, 0.95) 46%, rgba(0, 0, 0, 0.86) 58%, rgba(0, 0, 0, 0.7) 69%, rgba(0, 0, 0, 0.48) 79%, rgba(0, 0, 0, 0.24) 90%, rgba(0, 0, 0, 0) 100%);
}

#hero.hero-cosmic .hero-grid {
  position: relative;
  z-index: 2;
  overflow: visible;
  max-height: none;
}

@media (max-width: 640px) {
  #hero.hero-cosmic .hero-plasma__vignette {
    background:
      radial-gradient(ellipse 62% 72% at 50% 44%, rgba(4, 3, 9, 0.66) 0%, rgba(4, 3, 9, 0.3) 50%, transparent 80%);
  }
}

#wdrozenie .process-timeline {
  --timeline-progress: 0;
  --panel-shift-current: 14px;
  --panel-shift-past: 8px;
  --panel-scale-current: 1.02;
  --panel-scale-past: 1.01;
  position: relative;
  max-width: 1080px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  padding: 12px 0 8px;
}

#wdrozenie .process-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#wdrozenie .process-timeline__axis {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

#wdrozenie .process-timeline__track {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  overflow: hidden;
}

#wdrozenie .process-timeline__fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--timeline-progress, 0) * 100%);
  border-radius: inherit;
  background: linear-gradient(180deg, #c084fc 0%, #a855f7 45%, #7c3aed 100%);
  box-shadow:
    0 0 14px rgba(168, 85, 247, 0.45),
    0 0 28px rgba(124, 58, 237, 0.22);
  transform-origin: top center;
  transition: height 100ms linear;
}

@keyframes timelineTrackGlow {
  0%, 100% {
    transform: translateY(-25%);
    opacity: 0.28;
  }

  50% {
    transform: translateY(70%);
    opacity: 0.62;
  }
}

@keyframes timelineDotPulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(124, 58, 237, 0.16),
      0 0 22px rgba(168, 85, 247, 0.48),
      0 0 40px rgba(124, 58, 237, 0.18);
  }

  50% {
    box-shadow:
      0 0 0 5px rgba(124, 58, 237, 0.22),
      0 0 30px rgba(168, 85, 247, 0.62),
      0 0 52px rgba(124, 58, 237, 0.24);
  }
}

#wdrozenie .process-timeline__track::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: 0;
  height: 30%;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(216, 180, 254, 0.42) 50%,
    transparent 100%
  );
  pointer-events: none;
  animation: timelineTrackGlow 6s ease-in-out infinite;
  opacity: 0.5;
}

#wdrozenie .process-timeline__step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px minmax(0, 1fr);
  gap: clamp(22px, 3.5vw, 44px);
  align-items: center;
  min-height: clamp(220px, 28vw, 280px);
  margin-bottom: clamp(48px, 8vw, 96px);
}

#wdrozenie .process-timeline__step:last-child {
  margin-bottom: 0;
}

#wdrozenie .process-timeline__marker {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#wdrozenie .process-timeline__dot {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(192, 132, 252, 0.32);
  background: rgba(12, 10, 22, 0.92);
  color: rgba(216, 180, 254, 0.72);
  font-size: 1rem;
  font-weight: 800;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 12px rgba(124, 58, 237, 0.14);
  transition:
    border-color 400ms cubic-bezier(0.22, 1, 0.36, 1),
    background 400ms cubic-bezier(0.22, 1, 0.36, 1),
    color 400ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 400ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

#wdrozenie .process-timeline__step.is-active .process-timeline__dot {
  border: 2px solid rgba(192, 132, 252, 0.68);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.38) 0%, rgba(124, 58, 237, 0.28) 100%);
  color: #ede9fe;
  box-shadow:
    0 0 0 3px rgba(124, 58, 237, 0.1),
    0 0 18px rgba(168, 85, 247, 0.32);
  transform: scale(1.04);
}

#wdrozenie .process-timeline__step.is-current .process-timeline__dot {
  border-color: rgba(216, 180, 254, 0.88);
  background: linear-gradient(145deg, rgba(192, 132, 252, 0.5) 0%, rgba(124, 58, 237, 0.38) 100%);
  color: #faf5ff;
  box-shadow:
    0 0 0 4px rgba(124, 58, 237, 0.16),
    0 0 24px rgba(168, 85, 247, 0.5),
    0 0 44px rgba(124, 58, 237, 0.18);
  transform: scale(1.06);
  animation: timelineDotPulse 3.4s ease-in-out infinite;
}

#wdrozenie .process-timeline__step--content-left .process-timeline__content {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  width: min(100%, 420px);
  transform-origin: right center;
}

#wdrozenie .process-timeline__step--content-left .process-timeline__visual {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  width: min(100%, 360px);
  transform-origin: left center;
}

#wdrozenie .process-timeline__step--content-right .process-timeline__visual {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  width: min(100%, 360px);
  transform-origin: right center;
}

#wdrozenie .process-timeline__step--content-right .process-timeline__content {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  width: min(100%, 420px);
  transform-origin: left center;
}

#wdrozenie .process-timeline__panel {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 420ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

#wdrozenie .process-timeline__step.is-revealed .process-timeline__panel {
  opacity: 1;
  transform: translateY(0);
}

#wdrozenie .process-timeline__content {
  margin: 0;
  padding: clamp(28px, 3.5vw, 36px);
  border-radius: 20px;
  border: 1px solid rgba(183, 140, 255, 0.2);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(139, 92, 246, 0.1), transparent 55%),
    rgba(12, 10, 22, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

#wdrozenie .process-timeline__label {
  margin: 0 0 12px;
  color: #c084fc;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#wdrozenie .process-timeline__content h3 {
  margin: 0;
  font-size: clamp(1.28rem, 2.2vw, 1.62rem);
  line-height: 1.25;
  color: rgba(248, 250, 252, 0.92);
  transition: color 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

#wdrozenie .process-timeline__content > p:not(.process-timeline__label) {
  margin: 14px 0 0;
  color: rgba(203, 213, 225, 0.72);
  font-size: clamp(0.94rem, 1.2vw, 1.02rem);
  line-height: 1.68;
  transition: color 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

#wdrozenie .process-timeline__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

#wdrozenie .process-timeline__tags li {
  padding: 7px 11px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 999px;
  background: rgba(88, 28, 135, 0.16);
  color: rgba(237, 233, 254, 0.82);
  font-size: 0.74rem;
  line-height: 1.3;
}

#wdrozenie .process-timeline__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: clamp(18px, 2.5vw, 24px);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(139, 92, 246, 0.08), transparent 50%),
    rgba(8, 7, 14, 0.55);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

#wdrozenie .process-timeline__step.is-active:not(.is-current) .process-timeline__content {
  border-color: rgba(192, 132, 252, 0.28);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(124, 58, 237, 0.08);
}

#wdrozenie .process-timeline__step.is-current .process-timeline__content {
  border-color: rgba(216, 180, 254, 0.48);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(139, 92, 246, 0.16), transparent 55%),
    rgba(18, 12, 36, 0.82);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.36),
    0 0 32px rgba(168, 85, 247, 0.18);
}

#wdrozenie .process-timeline__step.is-current .process-timeline__content h3 {
  color: #faf5ff;
}

#wdrozenie .process-timeline__step.is-current .process-timeline__content > p:not(.process-timeline__label) {
  color: rgba(245, 243, 255, 0.88);
}

#wdrozenie .process-timeline__step--content-left.is-active:not(.is-current).is-revealed .process-timeline__content {
  transform: translateY(0) translateX(calc(-1 * var(--panel-shift-past))) scale(var(--panel-scale-past));
}

#wdrozenie .process-timeline__step--content-right.is-active:not(.is-current).is-revealed .process-timeline__content {
  transform: translateY(0) translateX(var(--panel-shift-past)) scale(var(--panel-scale-past));
}

#wdrozenie .process-timeline__step--content-left.is-current.is-revealed .process-timeline__content {
  transform: translateY(0) translateX(calc(-1 * var(--panel-shift-current))) scale(var(--panel-scale-current));
}

#wdrozenie .process-timeline__step--content-right.is-current.is-revealed .process-timeline__content {
  transform: translateY(0) translateX(var(--panel-shift-current)) scale(var(--panel-scale-current));
}

#wdrozenie .process-timeline__step.is-active:not(.is-current) .process-timeline__visual {
  border-color: rgba(168, 85, 247, 0.18);
}

#wdrozenie .process-timeline__step.is-current .process-timeline__visual {
  border-color: rgba(192, 132, 252, 0.28);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(124, 58, 237, 0.1);
}

/* Mini visuals */
#wdrozenie .pt-visual {
  width: 100%;
  max-width: 280px;
}

#wdrozenie .pt-visual--analysis {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 12, 28, 0.72);
}

#wdrozenie .pt-visual__toolbar {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
}

#wdrozenie .pt-visual__toolbar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.28);
}

#wdrozenie .pt-visual__toolbar span:first-child {
  background: rgba(248, 113, 113, 0.45);
}

#wdrozenie .pt-visual__toolbar span:nth-child(2) {
  background: rgba(251, 191, 36, 0.45);
}

#wdrozenie .pt-visual__toolbar span:nth-child(3) {
  background: rgba(74, 222, 128, 0.45);
}

#wdrozenie .pt-visual__title {
  margin: 0 0 10px;
  color: rgba(226, 232, 240, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#wdrozenie .pt-visual__checks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

#wdrozenie .pt-visual__checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(203, 213, 225, 0.78);
  font-size: 0.8rem;
}

#wdrozenie .pt-visual__check {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.6);
  flex-shrink: 0;
}

#wdrozenie .pt-visual__check--on {
  border-color: rgba(192, 132, 252, 0.5);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.45), rgba(124, 58, 237, 0.32));
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.25);
}

#wdrozenie .pt-visual--wireframe {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed rgba(168, 85, 247, 0.22);
  background: rgba(12, 10, 22, 0.5);
}

#wdrozenie .pt-visual__wf-hero {
  height: 52px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(88, 28, 135, 0.12));
  border: 1px solid rgba(192, 132, 252, 0.16);
}

#wdrozenie .pt-visual__wf-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

#wdrozenie .pt-visual__wf-blocks span {
  height: 28px;
  border-radius: 6px;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

#wdrozenie .pt-visual__wf-cta {
  width: 42%;
  margin-inline: auto;
  padding: 6px 0;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.28);
  border: 1px solid rgba(192, 132, 252, 0.32);
  color: rgba(237, 233, 254, 0.88);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}

#wdrozenie .pt-visual__wf-form {
  display: grid;
  gap: 6px;
}

#wdrozenie .pt-visual__wf-form span {
  height: 22px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

#wdrozenie .pt-visual--build {
  display: grid;
  gap: 12px;
  width: 100%;
}

#wdrozenie .pt-visual__chat {
  display: grid;
  gap: 7px;
}

#wdrozenie .pt-visual__bubble {
  max-width: 88%;
  padding: 8px 11px;
  border-radius: 12px;
  font-size: 0.72rem;
  line-height: 1.4;
}

#wdrozenie .pt-visual__bubble--bot {
  justify-self: start;
  background: rgba(88, 28, 135, 0.22);
  border: 1px solid rgba(192, 132, 252, 0.2);
  color: rgba(237, 233, 254, 0.86);
  border-bottom-left-radius: 4px;
}

#wdrozenie .pt-visual__bubble--user {
  justify-self: end;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: rgba(226, 232, 240, 0.82);
  border-bottom-right-radius: 4px;
}

#wdrozenie .pt-visual__mini-form {
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(12, 10, 22, 0.65);
}

#wdrozenie .pt-visual__mini-form span {
  height: 22px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 0.65rem;
  color: rgba(148, 163, 184, 0.55);
  display: flex;
  align-items: center;
  padding: 0 8px;
}

#wdrozenie .pt-visual__mini-form button {
  height: 26px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #f5f3ff;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: default;
}

#wdrozenie .pt-visual--leads {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(12, 10, 22, 0.68);
}

#wdrozenie .pt-visual__lead-head,
#wdrozenie .pt-visual__lead-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 0.74rem;
}

#wdrozenie .pt-visual__lead-head {
  padding-bottom: 8px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  color: rgba(148, 163, 184, 0.55);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#wdrozenie .pt-visual__lead-row {
  padding: 7px 0;
  color: rgba(226, 232, 240, 0.82);
}

#wdrozenie .pt-visual__lead-row + .pt-visual__lead-row {
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

#wdrozenie .pt-visual__badge {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  white-space: nowrap;
}

#wdrozenie .pt-visual__badge--mail {
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.28);
  color: rgba(191, 219, 254, 0.9);
}

#wdrozenie .pt-visual__badge--sheet {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.28);
  color: rgba(187, 247, 208, 0.9);
}

#wdrozenie .pt-visual__badge--new {
  background: rgba(168, 85, 247, 0.16);
  border: 1px solid rgba(192, 132, 252, 0.3);
  color: rgba(237, 233, 254, 0.9);
}

#wdrozenie .wdrozenie-cta {
  max-width: 720px;
  margin-inline: auto;
  margin-top: clamp(40px, 6vw, 64px);
}

.wdrozenie-cta {
  position: relative;
  padding: clamp(28px, 4vw, 44px) 0;
  text-align: center;
}

.wdrozenie-cta::before {
  content: "";
  position: absolute;
  inset: -18% -12%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 72% 58% at 50% 50%, rgba(139, 75, 220, 0.14), transparent 72%);
}

.wdrozenie-cta__title {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.wdrozenie-cta__lead {
  max-width: 54ch;
  margin: 0 auto 24px;
  color: var(--text-soft);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.65;
}

.wdrozenie-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (hover: hover) and (pointer: fine) {
  #wdrozenie .process-timeline__step.is-revealed:not(.is-current) .process-timeline__content:hover {
    border-color: rgba(192, 132, 252, 0.36);
    box-shadow:
      0 22px 56px rgba(0, 0, 0, 0.32),
      0 0 22px rgba(124, 58, 237, 0.12);
  }
}

@media (max-width: 900px) {
  #wdrozenie .process-timeline {
    max-width: 640px;
  }

  #wdrozenie .process-timeline__step--content-left .process-timeline__content,
  #wdrozenie .process-timeline__step--content-right .process-timeline__content,
  #wdrozenie .process-timeline__step--content-left .process-timeline__visual,
  #wdrozenie .process-timeline__step--content-right .process-timeline__visual {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  #wdrozenie .process-timeline {
    --panel-shift-current: 0;
    --panel-shift-past: 0;
    --panel-scale-current: 1;
    --panel-scale-past: 1;
    margin-top: 36px;
    padding-left: 2px;
  }

  #wdrozenie .process-timeline__axis {
    left: 23px;
    transform: none;
  }

  #wdrozenie .process-timeline__step {
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 14px 16px;
    min-height: 0;
    margin-bottom: 40px;
    align-items: start;
  }

  #wdrozenie .process-timeline__marker {
    grid-column: 1;
    grid-row: 1 / -1;
    justify-content: flex-start;
    align-self: start;
    padding-top: 6px;
  }

  #wdrozenie .process-timeline__dot {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  #wdrozenie .process-timeline__step--content-left .process-timeline__content,
  #wdrozenie .process-timeline__step--content-right .process-timeline__content {
    grid-column: 2;
    grid-row: 1;
    justify-self: stretch;
    transform-origin: left center;
  }

  #wdrozenie .process-timeline__step--content-left .process-timeline__visual,
  #wdrozenie .process-timeline__step--content-right .process-timeline__visual {
    grid-column: 2;
    grid-row: 2;
    justify-self: stretch;
    min-height: 160px;
  }

  #wdrozenie .process-timeline__step.is-revealed .process-timeline__panel,
  #wdrozenie .process-timeline__step.is-current.is-revealed .process-timeline__content {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #wdrozenie .process-timeline__fill {
    transition: none;
  }

  #wdrozenie .process-timeline__track::after {
    animation: none;
    opacity: 0.35;
  }

  #wdrozenie .process-timeline__step.is-current .process-timeline__dot {
    animation: none;
  }

  #wdrozenie .process-timeline__dot {
    transition: border-color 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
  }

  #wdrozenie .process-timeline__step.is-active .process-timeline__dot,
  #wdrozenie .process-timeline__step.is-current .process-timeline__dot {
    transform: none;
  }

  #wdrozenie .process-timeline__panel {
    opacity: 1;
    transform: none;
    transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
    transition-delay: 0ms;
  }
}

body.home-page #hero.hero-cosmic::after {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0 -10% -55% -10%;
  z-index: 0;
  pointer-events: none;
  border-radius: 0;
  background:
    radial-gradient(ellipse 52% 46% at 50% 34%, rgba(139, 92, 246, 0.16), transparent 72%),
    radial-gradient(ellipse 36% 40% at 19% 44%, rgba(88, 28, 135, 0.1), transparent 74%),
    radial-gradient(ellipse 34% 36% at 82% 40%, rgba(168, 85, 247, 0.09), transparent 76%),
    radial-gradient(ellipse 40% 28% at 51% 66%, rgba(192, 132, 252, 0.06), transparent 78%);
  filter: none;
  mix-blend-mode: screen;
  opacity: 0.62;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: 50% 45%;
  animation: none;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%, rgba(0, 0, 0, 0.55) 76%, rgba(0, 0, 0, 0.18) 90%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%, rgba(0, 0, 0, 0.55) 76%, rgba(0, 0, 0, 0.18) 90%, rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 768px) {
  body.home-page #hero.hero-cosmic::after {
    inset: 4% -22% -44% -22%;
    filter: none;
    opacity: 0.48;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page #hero.hero-cosmic::after {
    animation: none !important;
    opacity: 0.56;
    transform: none;
  }
}

.implementation-roadmap-section .section-heading {
  max-width: 780px;
  margin-inline: auto;
}

.implementation-roadmap-section .section-heading > p:last-child {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
}

.implementation-roadmap {
  position: relative;
  margin-top: clamp(38px, 5vw, 64px);
  padding: clamp(28px, 3.5vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(192, 132, 252, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.11), transparent 38%),
    linear-gradient(145deg, rgba(12, 10, 19, 0.88), rgba(5, 5, 9, 0.78));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
}

.implementation-roadmap::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.04), transparent),
    radial-gradient(circle at 12% 14%, rgba(192, 132, 252, 0.08), transparent 24%);
}

.implementation-roadmap__path {
  position: absolute;
  top: 65px;
  left: calc(clamp(28px, 3.5vw, 46px) + 6.25%);
  right: calc(clamp(28px, 3.5vw, 46px) + 6.25%);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
}

.implementation-roadmap__progress {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7c3aed, #c084fc 52%, #8b5cf6);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.62);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1200ms 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.implementation-roadmap-section.is-visible .implementation-roadmap__progress {
  transform: scaleX(1);
}

.implementation-roadmap__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.implementation-roadmap__step {
  min-width: 0;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.implementation-roadmap__step:nth-child(2) {
  transition-delay: 100ms;
}

.implementation-roadmap__step:nth-child(3) {
  transition-delay: 200ms;
}

.implementation-roadmap__step:nth-child(4) {
  transition-delay: 300ms;
}

.implementation-roadmap-section.is-visible .implementation-roadmap__step {
  opacity: 1;
  transform: translateY(0);
}

.implementation-roadmap__marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgba(216, 180, 254, 0.46);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.42), rgba(43, 18, 76, 0.92));
  box-shadow:
    0 0 0 6px rgba(7, 6, 12, 0.9),
    0 0 24px rgba(168, 85, 247, 0.22);
  color: #f5f3ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.implementation-roadmap__content {
  height: calc(100% - 66px);
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 8px;
  background: rgba(7, 7, 12, 0.58);
  transition:
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.implementation-roadmap__label {
  margin: 0 0 10px;
  color: #c084fc;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.implementation-roadmap__content h3 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
}

.implementation-roadmap__content > p:not(.implementation-roadmap__label) {
  min-height: 76px;
  margin: 12px 0 0;
  color: rgba(203, 213, 225, 0.72);
  line-height: 1.62;
}

.implementation-roadmap__deliverables {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.implementation-roadmap__deliverables > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(226, 232, 240, 0.58);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.implementation-roadmap__deliverables ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.implementation-roadmap__deliverables li {
  padding: 6px 9px;
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 999px;
  background: rgba(88, 28, 135, 0.14);
  color: rgba(237, 233, 254, 0.78);
  font-size: 0.72rem;
  line-height: 1.3;
}

.implementation-roadmap__result {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: clamp(24px, 3vw, 36px);
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid rgba(192, 132, 252, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(76, 29, 149, 0.22), rgba(12, 10, 20, 0.78) 48%, rgba(88, 28, 135, 0.12));
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.implementation-roadmap__result-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(216, 180, 254, 0.38);
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.18);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.18);
}

.implementation-roadmap__result-icon span {
  width: 14px;
  height: 14px;
  border: 3px solid #c084fc;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(192, 132, 252, 0.7);
}

.implementation-roadmap__result p {
  margin: 0;
}

.implementation-roadmap__result-label {
  margin-bottom: 6px !important;
  color: #d8b4fe;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.implementation-roadmap__result-label + p {
  color: rgba(241, 245, 249, 0.84);
  line-height: 1.55;
}

.implementation-roadmap__status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  padding: 9px 12px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 999px;
  background: rgba(22, 101, 52, 0.12);
  color: rgba(220, 252, 231, 0.8);
  font-size: 0.75rem;
  font-weight: 700;
}

.implementation-roadmap__status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.65);
}

@media (hover: hover) and (pointer: fine) {
  .implementation-roadmap__step:hover .implementation-roadmap__content {
    border-color: rgba(192, 132, 252, 0.32);
    background: rgba(17, 12, 30, 0.7);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), 0 0 24px rgba(124, 58, 237, 0.1);
    transform: translateY(-3px);
  }
}

@media (max-width: 900px) {
  .implementation-roadmap {
    padding: 28px;
  }

  .implementation-roadmap__path {
    top: 64px;
    left: calc(28px + 6.25%);
    right: calc(28px + 6.25%);
  }

  .implementation-roadmap__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }

  .implementation-roadmap__path {
    display: none;
  }

  .implementation-roadmap__content > p:not(.implementation-roadmap__label) {
    min-height: 52px;
  }
}

@media (max-width: 600px) {
  .implementation-roadmap {
    margin-top: 34px;
    padding: 22px 18px;
  }

  .implementation-roadmap__steps {
    display: block;
  }

  .implementation-roadmap__step {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 22px;
  }

  .implementation-roadmap__step:not(:last-child)::after {
    position: absolute;
    top: 42px;
    bottom: -22px;
    left: 20px;
    width: 2px;
    content: "";
    background: linear-gradient(180deg, rgba(192, 132, 252, 0.55), rgba(124, 58, 237, 0.12));
  }

  .implementation-roadmap__marker {
    grid-column: 1;
    margin: 0;
  }

  .implementation-roadmap__content {
    grid-column: 2;
    height: auto;
    padding: 18px;
  }

  .implementation-roadmap__content > p:not(.implementation-roadmap__label) {
    min-height: 0;
  }

  .implementation-roadmap__result {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .implementation-roadmap__status {
    grid-column: 1 / -1;
    justify-self: start;
    white-space: normal;
  }
}

@media (max-width: 380px) {
  .implementation-roadmap {
    padding-inline: 14px;
  }

  .implementation-roadmap__step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .implementation-roadmap__marker {
    width: 38px;
    height: 38px;
  }

  .implementation-roadmap__step:not(:last-child)::after {
    top: 38px;
    left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .implementation-roadmap__progress,
  .implementation-roadmap__step,
  .implementation-roadmap__content {
    transition: none !important;
  }

  .implementation-roadmap__progress {
    transform: scaleX(1);
  }

  .implementation-roadmap__step {
    opacity: 1;
    transform: none;
  }
}

.implementation-roadmap-section .section-heading {
  max-width: 700px;
}

.implementation-roadmap-section .section-heading > p:last-child {
  max-width: 620px;
  margin-top: 14px;
}

.implementation-roadmap {
  margin-top: clamp(34px, 4vw, 52px);
  padding: 8px 0 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.implementation-roadmap::before {
  display: none;
}

.implementation-roadmap__path {
  top: 20px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(192, 132, 252, 0.18);
}

.implementation-roadmap__progress {
  height: 2px;
  margin-top: -1px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.72), #c084fc 52%, rgba(139, 92, 246, 0.76));
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.46);
}

.implementation-roadmap__steps {
  gap: clamp(18px, 3vw, 38px);
}

.implementation-roadmap__step {
  text-align: center;
}

.implementation-roadmap__marker {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  background: rgba(17, 10, 29, 0.96);
  box-shadow:
    0 0 0 5px rgba(3, 3, 7, 0.92),
    0 0 20px rgba(168, 85, 247, 0.18);
  transition:
    opacity 460ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.implementation-roadmap__content {
  height: auto;
  padding: 0 clamp(4px, 1vw, 12px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.implementation-roadmap__content h3 {
  font-size: clamp(1.04rem, 1.3vw, 1.2rem);
}

.implementation-roadmap__content > p:not(.implementation-roadmap__label) {
  min-height: 72px;
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.implementation-roadmap__deliverables {
  margin-top: 14px;
  padding-top: 0;
  border-top: 0;
}

.implementation-roadmap__deliverables ul {
  justify-content: center;
  gap: 6px;
}

.implementation-roadmap__deliverables li {
  padding: 5px 9px;
  background: rgba(88, 28, 135, 0.12);
  font-size: 0.7rem;
}

.implementation-roadmap__result {
  grid-template-columns: auto minmax(0, 1fr);
  max-width: 680px;
  margin: clamp(30px, 4vw, 46px) auto 0;
  padding: 18px 20px;
  border-color: rgba(192, 132, 252, 0.18);
  background: linear-gradient(110deg, rgba(76, 29, 149, 0.16), rgba(7, 7, 12, 0.66));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.implementation-roadmap__result-icon {
  width: 40px;
  height: 40px;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.14);
}

.implementation-roadmap__result-icon span {
  width: 11px;
  height: 11px;
  border-width: 2px;
}

body.js-enabled .implementation-roadmap__progress {
  transform: scaleX(0);
}

body.js-enabled .implementation-roadmap__step {
  opacity: 0;
  transform: translateY(12px);
}

body.js-enabled .implementation-roadmap__marker {
  opacity: 0;
  transform: scale(0.82);
}

body.js-enabled .implementation-roadmap-section.is-roadmap-visible .implementation-roadmap__progress {
  transform: scaleX(1);
}

body.js-enabled .implementation-roadmap-section.is-roadmap-visible .implementation-roadmap__step {
  opacity: 1;
  transform: translateY(0);
}

body.js-enabled .implementation-roadmap-section.is-roadmap-visible .implementation-roadmap__marker {
  opacity: 1;
  transform: scale(1);
}

body.js-enabled .implementation-roadmap-section.is-roadmap-visible .implementation-roadmap__step:nth-child(1) .implementation-roadmap__marker {
  transition-delay: 180ms;
}

body.js-enabled .implementation-roadmap-section.is-roadmap-visible .implementation-roadmap__step:nth-child(2) .implementation-roadmap__marker {
  transition-delay: 300ms;
}

body.js-enabled .implementation-roadmap-section.is-roadmap-visible .implementation-roadmap__step:nth-child(3) .implementation-roadmap__marker {
  transition-delay: 420ms;
}

body.js-enabled .implementation-roadmap-section.is-roadmap-visible .implementation-roadmap__step:nth-child(4) .implementation-roadmap__marker {
  transition-delay: 540ms;
}

body.js-enabled .implementation-roadmap-section.is-roadmap-visible .implementation-roadmap__step:nth-child(4) .implementation-roadmap__marker {
  border-color: rgba(216, 180, 254, 0.72);
  box-shadow:
    0 0 0 5px rgba(3, 3, 7, 0.92),
    0 0 28px rgba(168, 85, 247, 0.36);
}

@media (hover: hover) and (pointer: fine) {
  .implementation-roadmap__step:hover .implementation-roadmap__content {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    transform: translateY(-2px);
  }

  .implementation-roadmap__step:hover .implementation-roadmap__marker {
    border-color: rgba(216, 180, 254, 0.72);
    box-shadow:
      0 0 0 5px rgba(3, 3, 7, 0.92),
      0 0 28px rgba(168, 85, 247, 0.34);
  }
}

@media (max-width: 900px) and (min-width: 769px) {
  .implementation-roadmap {
    padding: 8px 0 0;
  }

  .implementation-roadmap__steps {
    gap: 26px 36px;
  }

  .implementation-roadmap__content > p:not(.implementation-roadmap__label) {
    min-height: 48px;
  }
}

@media (max-width: 768px) {
  .implementation-roadmap {
    margin-top: 32px;
    padding: 0;
  }

  .implementation-roadmap__steps {
    display: block;
  }

  .implementation-roadmap__step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    text-align: left;
  }

  .implementation-roadmap__step:not(:last-child)::after {
    top: 40px;
    bottom: -24px;
    left: 19px;
    background: linear-gradient(180deg, rgba(192, 132, 252, 0.42), rgba(124, 58, 237, 0.1));
  }

  .implementation-roadmap__marker {
    width: 40px;
    height: 40px;
  }

  .implementation-roadmap__content {
    padding: 0 0 4px;
  }

  .implementation-roadmap__content > p:not(.implementation-roadmap__label) {
    min-height: 0;
  }

  .implementation-roadmap__deliverables ul {
    justify-content: flex-start;
  }

  .implementation-roadmap__result {
    margin-top: 28px;
  }
}

@media (max-width: 430px) {
  .implementation-roadmap__step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .implementation-roadmap__marker {
    width: 38px;
    height: 38px;
  }

  .implementation-roadmap__step:not(:last-child)::after {
    top: 38px;
    left: 18px;
  }

  .implementation-roadmap__result {
    gap: 12px;
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.js-enabled .implementation-roadmap__progress,
  body.js-enabled .implementation-roadmap__step,
  body.js-enabled .implementation-roadmap__marker {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
}

.implementation-roadmap__path {
  top: 24px;
}

.implementation-roadmap__marker {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #d8b4fe;
}

.implementation-roadmap__marker svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    color 240ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.implementation-roadmap__marker small {
  position: absolute;
  right: -6px;
  bottom: -5px;
  display: grid;
  min-width: 20px;
  height: 18px;
  padding-inline: 4px;
  place-items: center;
  border: 1px solid rgba(216, 180, 254, 0.28);
  border-radius: 6px;
  background: rgba(5, 5, 10, 0.96);
  color: rgba(226, 232, 240, 0.62);
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1;
}

.implementation-roadmap__content {
  padding: 17px 15px 15px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 8px;
  background: rgba(8, 8, 14, 0.38);
}

.implementation-roadmap__content > p:not(.implementation-roadmap__label),
.implementation-roadmap__deliverables li {
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.implementation-roadmap__result {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 560ms 580ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms 580ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 280ms ease,
    background 280ms ease,
    box-shadow 280ms ease;
}

.implementation-roadmap__status {
  justify-self: end;
}

body.js-enabled .implementation-roadmap-section .section-heading {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(12px);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.js-enabled .implementation-roadmap-section .implementation-roadmap__result {
  opacity: 0;
  transform: translateY(14px);
}

body.js-enabled .implementation-roadmap-section.is-roadmap-visible .section-heading {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

body.js-enabled .implementation-roadmap-section.is-roadmap-visible .implementation-roadmap__result {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .implementation-roadmap__step:hover .implementation-roadmap__content {
    border-color: rgba(192, 132, 252, 0.28);
    background: rgba(19, 12, 32, 0.58);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24), 0 0 22px rgba(124, 58, 237, 0.1);
    transform: translateY(-4px);
  }

  .implementation-roadmap__step:hover .implementation-roadmap__marker {
    transform: translateY(-2px);
  }

  .implementation-roadmap__step:hover .implementation-roadmap__marker svg {
    color: #f3e8ff;
    transform: scale(1.08) rotate(-3deg);
  }

  .implementation-roadmap__step:hover .implementation-roadmap__content > p {
    color: rgba(226, 232, 240, 0.86);
  }

  .implementation-roadmap__step:hover .implementation-roadmap__deliverables li {
    border-color: rgba(192, 132, 252, 0.3);
    background: rgba(126, 34, 206, 0.16);
    color: rgba(245, 243, 255, 0.9);
  }

  .implementation-roadmap__result:hover {
    border-color: rgba(216, 180, 254, 0.34);
    background: linear-gradient(110deg, rgba(88, 28, 135, 0.23), rgba(10, 9, 17, 0.76));
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3), 0 0 28px rgba(139, 92, 246, 0.12);
    transform: translateY(-2px);
  }
}

.faq-accordion {
  display: grid;
  max-width: 900px;
  gap: 12px;
  margin-inline: auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 0%, rgba(139, 92, 246, 0.055), transparent 34%),
    rgba(8, 8, 14, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 66px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: rgba(241, 245, 249, 0.9);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.faq-question__icon {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(192, 132, 252, 0.22);
  border-radius: 8px;
  background: rgba(88, 28, 135, 0.12);
  transition:
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-question__icon::before,
.faq-question__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 999px;
  content: "";
  background: #d8b4fe;
  transform: translate(-50%, -50%);
}

.faq-question__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
}

.faq-answer > div {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 64px 20px 20px;
  color: rgba(203, 213, 225, 0.74);
  line-height: 1.65;
}

.faq-item.is-open {
  border-color: rgba(192, 132, 252, 0.34);
  background:
    radial-gradient(circle at 12% 0%, rgba(168, 85, 247, 0.12), transparent 42%),
    rgba(12, 10, 20, 0.7);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26), 0 0 28px rgba(124, 58, 237, 0.1);
}

.faq-item.is-open .faq-question {
  color: #faf5ff;
}

.faq-item.is-open .faq-question__icon {
  border-color: rgba(216, 180, 254, 0.46);
  background: rgba(139, 92, 246, 0.2);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.16);
  transform: rotate(45deg);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .faq-item:hover {
    border-color: rgba(192, 132, 252, 0.3);
    background:
      radial-gradient(circle at 12% 0%, rgba(168, 85, 247, 0.1), transparent 40%),
      rgba(11, 10, 18, 0.66);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24), 0 0 22px rgba(124, 58, 237, 0.08);
    transform: translateY(-2px);
  }

  .faq-item:hover .faq-question__icon {
    border-color: rgba(216, 180, 254, 0.4);
    transform: scale(1.05);
  }

  .faq-item.is-open:hover .faq-question__icon {
    transform: rotate(45deg) scale(1.05);
  }
}

@media (max-width: 768px) {
  .implementation-roadmap__marker {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .implementation-roadmap__marker svg {
    width: 19px;
    height: 19px;
  }

  .implementation-roadmap__step {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .implementation-roadmap__step:not(:last-child)::after {
    top: 42px;
    left: 20px;
  }

  .implementation-roadmap__content {
    padding: 15px;
  }

  .implementation-roadmap__result {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .implementation-roadmap__status {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 430px) {
  .faq-accordion {
    gap: 10px;
  }

  .faq-question {
    min-height: 62px;
    gap: 14px;
    padding: 16px;
    font-size: 0.94rem;
  }

  .faq-question__icon {
    width: 28px;
    height: 28px;
  }

  .faq-answer p {
    padding: 0 52px 18px 16px;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.js-enabled .implementation-roadmap-section .section-heading,
  body.js-enabled .implementation-roadmap-section .implementation-roadmap__result,
  .implementation-roadmap__marker,
  .implementation-roadmap__marker svg,
  .faq-item,
  .faq-question__icon,
  .faq-answer {
    filter: none;
    transition: none !important;
  }

  body.js-enabled .implementation-roadmap-section .section-heading,
  body.js-enabled .implementation-roadmap-section .implementation-roadmap__result {
    opacity: 1;
    transform: none;
  }
}

.implementation-roadmap__marker small {
  right: -5px;
  min-width: 18px;
  padding-inline: 3px;
  text-align: center;
}

.implementation-roadmap__result {
  grid-template-columns: auto minmax(0, 1fr);
  max-width: 760px;
  gap: 16px 18px;
  padding: 20px 22px;
  border-color: rgba(192, 132, 252, 0.24);
  background:
    radial-gradient(circle at 8% 15%, rgba(168, 85, 247, 0.16), transparent 30%),
    linear-gradient(110deg, rgba(76, 29, 149, 0.18), rgba(8, 8, 14, 0.78) 48%, rgba(49, 20, 82, 0.12));
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.implementation-roadmap__result-copy {
  min-width: 0;
}

.implementation-roadmap__result-label + p {
  max-width: 620px;
  color: rgba(248, 250, 252, 0.9);
  font-size: 0.96rem;
  line-height: 1.58;
}

.implementation-roadmap__result-flow {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.implementation-roadmap__result-status {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(192, 132, 252, 0.18);
  border-radius: 999px;
  background: rgba(88, 28, 135, 0.12);
  color: rgba(237, 233, 254, 0.76);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.implementation-roadmap__result-status > span {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c084fc;
}

.implementation-roadmap__result-status--success {
  border-color: rgba(34, 197, 94, 0.24);
  background: rgba(22, 101, 52, 0.13);
  color: rgba(220, 252, 231, 0.86);
}

.implementation-roadmap__result-status--success > span {
  background: #22c55e;
}

@media (max-width: 768px) {
  .implementation-roadmap__result {
    gap: 14px;
    padding: 18px;
  }

  .implementation-roadmap__result-flow {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .implementation-roadmap__result {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 16px;
  }

  .implementation-roadmap__result-icon {
    width: 38px;
    height: 38px;
  }

  .implementation-roadmap__result-flow {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .implementation-roadmap__result-status {
    width: 100%;
    justify-content: flex-start;
  }
}

.hero-cosmic .hero-title {
  max-width: 1280px;
  line-height: 1.02;
}

@media (max-width: 1100px) {
  .hero-cosmic .hero-title {
    max-width: 980px;
    font-size: clamp(4rem, 8.5vw, 6.6rem);
    line-height: 1.02;
  }
}

@media (max-width: 768px) {
  .hero-cosmic .hero-title {
    max-width: 92%;
    font-size: clamp(3.4rem, 15vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    padding-bottom: 0.16em;
  }

  .hero-cosmic .hero-lead {
    max-width: 92%;
    font-size: 1rem;
  }
}

body.home-page #hero.hero-cosmic {
  display: grid;
  min-height: calc(100svh - 74px);
  padding-top: clamp(24px, 3.5vh, 40px);
  padding-bottom: clamp(20px, 3.2vh, 36px);
  align-items: center;
  overflow: visible;
}

body.home-page .cosmic-stars-layer {
  opacity: 0.68;
}

/* Home has hero plasma + section backgrounds — skip global aurora blur. */
body.home-page .cosmic-aurora-layer {
  display: block;
  opacity: 0.13;
  filter: none;
}

body.home-page::before {
  display: none;
}

body.home-page::after {
  display: none;
}

body.cosmic-bg-paused #hero.hero-cosmic::before,
body.cosmic-bg-paused body.home-page #hero.hero-cosmic::after {
  animation: none !important;
  will-change: auto !important;
}

body.cosmic-bg-paused .cosmic-aurora-layer {
  animation-play-state: paused !important;
}

body.cosmic-bg-paused .cosmic-stars-layer {
  opacity: 0.5;
}

body.cosmic-bg-paused .cosmic-stars-layer,
body.cosmic-bg-paused::after {
  animation-play-state: paused !important;
}

body.cosmic-bg-paused .bg-star {
  animation-play-state: paused !important;
  will-change: auto !important;
}

.co-robi-stars.is-paused .bg-star {
  animation-play-state: paused !important;
  will-change: auto !important;
}

body.home-page .cosmic-stars-layer .bg-star--large,
body.home-page .cosmic-stars-layer .bg-star.is-bright {
  opacity: 0.75;
}

body.home-page #hero.hero-cosmic .hero-grid {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-badge {
  position: relative;
  z-index: 6;
  padding-inline: 13px;
  pointer-events: none;
}

.hero-badge::after {
  display: none;
}

@media (max-width: 768px) {
  body.home-page #hero.hero-cosmic {
    min-height: calc(100svh - 64px);
    padding-top: clamp(26px, 5vh, 42px);
    padding-bottom: clamp(22px, 4vh, 34px);
  }
}

@media (min-width: 1024px) {
  body.home-page #hero.hero-cosmic {
    min-height: calc(100svh - var(--nav-height));
    padding-top: clamp(18px, 2.6vh, 28px);
    padding-bottom: clamp(16px, 2.4vh, 26px);
  }
}

@media (max-width: 430px) {
  body.home-page #hero.hero-cosmic {
    min-height: calc(100svh - 64px);
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .hero-badge::after {
    transition: none !important;
  }
}

body.home-page #hero.hero-cosmic .hero-badge {
  margin-bottom: 24px;
  padding: 11px 25px;
  border-color: rgba(216, 180, 254, 0.44);
  box-shadow:
    0 0 0 1px rgba(192, 132, 252, 0.08) inset,
    0 0 44px rgba(139, 75, 220, 0.28);
  font-size: 1rem;
}

body.home-page #hero.hero-cosmic .container,
body.home-page #hero.hero-cosmic .hero-grid,
body.home-page #hero.hero-cosmic .hero-copy,
body.home-page #hero.hero-cosmic .hero-copy-centered {
  overflow: visible;
  max-height: none;
}

body.home-page #hero.hero-cosmic .hero-copy-centered {
  max-width: 1320px;
  padding-bottom: 0.12em;
}

body.home-page #hero.hero-cosmic .hero-grid {
  overflow: visible;
}

body.home-page #hero.hero-cosmic .hero-title {
  display: block;
  max-width: 1280px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4.6rem, 7.4vw, 7.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #d9b3ff;
  overflow: visible;
  padding-top: 0.04em;
  padding-bottom: 0.16em;
  text-wrap: balance;
  text-shadow:
    0 0 18px rgba(216, 180, 255, 0.2),
    0 0 52px rgba(143, 76, 255, 0.16);
}

body.home-page #hero.hero-cosmic .hero-title .hero-title-line,
body.home-page #hero.hero-cosmic .hero-title span {
  display: block;
  overflow: visible;
  color: inherit;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
}

body.home-page #hero.hero-cosmic .hero-title-line:first-child {
  margin-bottom: -0.06em;
}

body.home-page #hero.hero-cosmic .hero-title-line:last-child {
  margin-top: -0.02em;
}

@media (min-width: 769px) {
  body.home-page #hero.hero-cosmic .hero-title-line:nth-child(2) {
    white-space: nowrap;
  }
}

body.home-page #hero.hero-cosmic .hero-lead {
  max-width: 780px;
  margin-top: 24px;
  color: rgba(244, 236, 255, 0.82);
  font-size: clamp(0.95rem, 1.18vw, 1.08rem);
  line-height: 1.5;
}

body.home-page #hero.hero-cosmic .hero-pills,
body.home-page #hero.hero-cosmic .proof-list {
  margin-top: 20px;
}

body.home-page #hero.hero-cosmic .proof-list li {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 0.8rem;
}

/* Fullscreen hero + seamless fog blend — authoritative overrides.
   Uses #hero + body.home-page specificity to win over every legacy
   `.hero-cosmic { ... }` rule above without depending on source order. */
body.home-page #hero.hero-cosmic {
  background:
    radial-gradient(ellipse 90% 60% at 50% 36%, rgba(139, 75, 220, 0.34), transparent 62%),
    radial-gradient(ellipse 70% 46% at 50% 58%, rgba(183, 140, 255, 0.16), transparent 66%),
    linear-gradient(180deg, #000 0%, #000 60%, rgba(0, 0, 0, 0.5) 84%, transparent 100%);
  animation: none;
}

body.home-page .home-lp-examples {
  overflow: visible;
}

body.home-page .hero-cosmic + .section::before {
  position: absolute;
  inset: -260px 0 auto;
  z-index: 0;
  height: 380px;
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse 82% 100% at 50% 62%, rgba(109, 40, 217, 0.15), rgba(88, 28, 135, 0.06) 52%, transparent 78%);
  filter: blur(6px);
  mix-blend-mode: screen;
  display: block;
}

@media (max-width: 768px) {
  body.home-page .hero-cosmic + .section::before {
    inset: -140px 0 auto;
    height: 220px;
    opacity: 0.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page #hero.hero-cosmic {
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  body.home-page #hero.hero-cosmic .hero-title {
    font-size: clamp(4rem, 8.5vw, 6.6rem);
    max-width: 980px;
    line-height: 1.02;
  }
}

@media (max-width: 768px) {
  body.home-page #hero.hero-cosmic .hero-title {
    font-size: clamp(3.4rem, 15vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    max-width: 92%;
    padding-bottom: 0.16em;
  }

  body.home-page #hero.hero-cosmic .hero-lead {
    max-width: 92%;
    font-size: 1rem;
  }
}

@media (max-width: 430px) {
  body.home-page #hero.hero-cosmic .hero-title {
    font-size: clamp(3rem, 14vw, 4.6rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
  }

  body.home-page #hero.hero-cosmic .hero-title-line:nth-child(2) {
    white-space: normal;
  }
}

.co-robi-section {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: none;
  --co-robi-diamond-max: min(42vw, 380px);
  --co-robi-diamond-opacity: 0.2;
  --co-robi-diamond-canvas-opacity: 0.42;
}

.co-robi-layout {
  position: relative;
  border: none;
  background: transparent;
  box-shadow: none;
}

.co-robi-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse 52% 38% at 18% 22%, rgba(88, 28, 135, 0.1), transparent 72%),
    radial-gradient(ellipse 48% 42% at 78% 28%, rgba(139, 75, 220, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 36% at 50% 78%, rgba(99, 102, 241, 0.06), transparent 74%);
  opacity: 0.95;
}

.co-robi-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.58;
  overflow: hidden;
}

.co-robi-stars .bg-star {
  opacity: 1;
}

.co-robi-ambient {
  position: absolute;
  inset: 8% 4% 12%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 34% 28% at 72% 18%, rgba(168, 85, 247, 0.14), transparent 72%),
    radial-gradient(ellipse 28% 24% at 28% 62%, rgba(139, 92, 246, 0.08), transparent 70%),
    radial-gradient(ellipse 40% 22% at 50% 88%, rgba(99, 102, 241, 0.06), transparent 74%);
  opacity: 0.85;
}

.co-robi-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(80px, 1fr) minmax(280px, 680px) minmax(80px, 1fr);
  grid-template-areas: "diamond-left intro diamond-right";
  gap: clamp(8px, 2vw, 24px);
  align-items: center;
  justify-items: center;
  overflow: hidden;
}

.co-robi-visual--left {
  grid-area: diamond-left;
  justify-self: start;
  transform: translateX(-18%);
}

.co-robi-intro {
  grid-area: intro;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
  padding-block: clamp(8px, 1.5vw, 20px);
  text-align: center;
}

.co-robi-visual--right {
  grid-area: diamond-right;
  justify-self: end;
  transform: translateX(18%);
}

.co-robi-intro .eyebrow {
  margin: 0 auto 16px;
}

.co-robi-intro h2 {
  margin: 0 auto;
  max-width: 18ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.co-robi-lead {
  margin: 18px auto 0;
  max-width: 52ch;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.55vw, 1.08rem);
  line-height: 1.65;
}

.co-robi-visual {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--co-robi-diamond-max, min(42vw, 380px));
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  opacity: var(--co-robi-diamond-opacity, 0.2);
  filter: blur(0.35px);
  pointer-events: none;
}

.co-robi-diamond-glow,
.co-robi-diamond-glow--outer {
  display: none;
}

.co-robi-diamond-stage {
  position: relative;
  z-index: 0;
  display: block;
  width: min(100%, var(--co-robi-diamond-max, 380px));
  height: clamp(220px, 26vw, 320px);
  max-width: 100%;
  transform-style: preserve-3d;
}

.co-robi-visual--right .co-robi-diamond-stage {
  transform: scaleX(-1);
}

.co-robi-diamond-canvas {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 420ms ease;
}

.co-robi-diamond-canvas.is-ready {
  opacity: var(--co-robi-diamond-canvas-opacity, 0.42);
}

.co-robi-bubbles,
.co-robi-system,
.co-robi-network {
  position: relative;
  z-index: 2;
  margin-top: clamp(32px, 5vw, 56px);
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.co-robi-network {
  width: min(100%, 960px);
  margin-inline: auto;
  --co-robi-pulse-duration: 6.6s;
  --co-robi-signal-strength: 0.85;
  --co-robi-signal-length: 0.16;
  --co-robi-logo-pulse-scale: 1.035;
  --co-robi-glow-strength: 0.22;
  --co-robi-hub-size: clamp(56px, 6.5vw, 68px);
}

.co-robi-network::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(68%, 480px);
  height: min(68%, 480px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(168, 85, 247, calc(var(--co-robi-glow-strength) * 0.35)), transparent 68%);
  pointer-events: none;
}

.co-robi-network__center {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.co-robi-network__lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.co-robi-network__track {
  stroke-width: 1.15;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  opacity: 0;
  transition: opacity 560ms ease;
}

.co-robi-network__signal {
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  opacity: 0;
  filter: drop-shadow(0 0 5px rgba(216, 180, 254, calc(var(--co-robi-signal-strength) * 0.5)));
  stroke-dasharray: var(--co-robi-signal-length) calc(1 - var(--co-robi-signal-length));
  stroke-dashoffset: 1;
}

.co-robi-section.is-visible .co-robi-network__track {
  opacity: 1;
}

.co-robi-section.is-visible .co-robi-network__signal {
  animation: co-robi-signal-outward var(--co-robi-pulse-duration) linear infinite;
}

.co-robi-network__field,
.co-robi-bubbles__field,
.co-robi-system__field {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(96px, 140px) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "card-tl . card-tr"
    ". card-hub ."
    "card-bl . card-br";
  gap: clamp(18px, 3vw, 32px);
  width: 100%;
  min-height: clamp(380px, 42vw, 480px);
  margin-inline: auto;
  align-items: center;
}

.co-robi-section .bubble-node,
.co-robi-section .co-robi-node {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.co-robi-section .bubble-node--pos-tl,
.co-robi-section .co-robi-node--pos-tl {
  grid-area: card-tl;
  justify-self: end;
  max-width: min(100%, 290px);
}

.co-robi-section .bubble-node--pos-tr,
.co-robi-section .co-robi-node--pos-tr {
  grid-area: card-tr;
  justify-self: start;
  max-width: min(100%, 290px);
}

.co-robi-section .bubble-node--hub,
.co-robi-section .co-robi-node--hub,
.co-robi-network__hub {
  justify-self: center;
  align-self: center;
  width: auto;
  max-width: none;
  pointer-events: auto;
}

@media (min-width: 961px) {
  .co-robi-network__field,
  .co-robi-bubbles__field,
  .co-robi-system__field {
    position: static;
    grid-template-rows: 1fr auto 1fr;
  }

  .co-robi-network__field::before {
    content: "";
    grid-area: card-hub;
    width: calc(var(--co-robi-hub-size) + 36px);
    height: calc(var(--co-robi-hub-size) + 36px);
    justify-self: center;
    align-self: center;
    pointer-events: none;
  }
}

.co-robi-hub {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.co-robi-hub__core {
  position: relative;
  display: grid;
  place-items: center;
  width: calc(var(--co-robi-hub-size) + 36px);
  height: calc(var(--co-robi-hub-size) + 36px);
  margin: 0;
}

.co-robi-hub__glow {
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, calc(var(--co-robi-glow-strength) * 1.1)), transparent 68%);
  opacity: 0.4;
  transform-origin: center center;
}

.co-robi-section.is-visible .co-robi-hub__glow {
  animation: co-robi-hub-pulse var(--co-robi-pulse-duration) ease-out infinite;
}

.co-robi-hub__ring {
  display: none;
}

.co-robi-hub__mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: var(--co-robi-hub-size);
  height: var(--co-robi-hub-size);
  padding: 10px;
  border-radius: 18px;
  transform-origin: center center;
  box-shadow:
    0 0 0 1px rgba(192, 132, 252, 0.26) inset,
    0 0 22px rgba(168, 85, 247, calc(var(--co-robi-glow-strength) * 0.95));
}

.co-robi-hub__mark .brand-icon {
  display: block;
  margin: 0;
}

.co-robi-section.is-visible .co-robi-hub__mark {
  animation: co-robi-logo-heartbeat var(--co-robi-pulse-duration) ease-out infinite;
}

.co-robi-section .bubble-node--pos-bl,
.co-robi-section .co-robi-node--pos-bl {
  grid-area: card-bl;
  justify-self: end;
  max-width: min(100%, 290px);
}

.co-robi-section .bubble-node--pos-br,
.co-robi-section .co-robi-node--pos-br {
  grid-area: card-br;
  justify-self: start;
  max-width: min(100%, 290px);
}

.co-robi-section .bubble-node-inner,
.co-robi-section .co-robi-node__inner {
  position: relative;
  overflow: hidden;
  min-width: 0;
  height: 100%;
  padding: clamp(14px, 1.8vw, 18px);
  border: 1px solid rgba(183, 140, 255, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(155deg, rgba(14, 11, 22, 0.62), rgba(8, 8, 14, 0.42));
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(139, 75, 220, 0.04) inset,
    0 10px 28px rgba(0, 0, 0, 0.18);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.co-robi-section .co-robi-node--leaf .co-robi-node__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.co-robi-section:not(.is-visible) .co-robi-node__inner,
.co-robi-section:not(.is-visible) .co-robi-hub__mark,
.co-robi-section:not(.is-visible) .co-robi-hub__glow {
  animation: none !important;
}

.co-robi-node__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.co-robi-node__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 3px 7px;
  border: 1px solid rgba(183, 140, 255, 0.22);
  border-radius: 8px;
  color: rgba(196, 181, 253, 0.88);
  background: rgba(168, 85, 247, 0.08);
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.co-robi-node__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(183, 140, 255, 0.28);
  border-radius: 10px;
  color: rgba(233, 213, 255, 0.92);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.16), rgba(88, 28, 135, 0.08));
  box-shadow: 0 0 16px rgba(139, 75, 220, 0.08);
}

.co-robi-node__icon svg {
  width: 17px;
  height: 17px;
}

.co-robi-node__copy {
  min-width: 0;
}

.co-robi-section .bubble-node h3,
.co-robi-section .co-robi-node__copy h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(0.94rem, 1.15vw, 1.04rem);
  line-height: 1.28;
}

.co-robi-section .bubble-node p,
.co-robi-section .co-robi-node__copy p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 1vw, 0.9rem);
  line-height: 1.52;
}

@media (hover: hover) and (pointer: fine) {
  .co-robi-section .co-robi-node--leaf .co-robi-node__inner:hover {
    transform: translateY(-4px);
    border-color: rgba(216, 180, 254, 0.42);
    box-shadow:
      0 0 0 1px rgba(168, 85, 247, 0.14) inset,
      0 14px 36px rgba(0, 0, 0, 0.32),
      0 0 28px rgba(139, 75, 220, 0.14);
  }

  .co-robi-section .co-robi-node--leaf .co-robi-node__inner:hover .co-robi-node__icon {
    border-color: rgba(216, 180, 254, 0.44);
    box-shadow: 0 0 22px rgba(168, 85, 247, 0.18);
  }
}

@media (max-width: 960px) {
  .co-robi-head {
    display: block;
    position: relative;
    padding-inline: 0;
    overflow: visible;
  }

  .co-robi-intro {
    position: relative;
    z-index: 2;
    max-width: none;
    padding-block: 0;
    padding-inline: 0;
  }

  .co-robi-intro h2 {
    max-width: none;
  }

  .co-robi-lead {
    max-width: none;
  }

  .co-robi-visual {
    display: none;
  }

  .co-robi-bubbles,
  .co-robi-system,
  .co-robi-network {
    margin-top: clamp(24px, 5vw, 36px);
  }

  .co-robi-network__lines {
    display: none;
  }

  .co-robi-network__center {
    position: static;
    inset: auto;
    display: flex;
    justify-content: center;
    order: -1;
    z-index: 2;
  }

  .co-robi-network__field::before {
    display: none;
  }

  .co-robi-network__field,
  .co-robi-bubbles__field,
  .co-robi-system__field {
    grid-template-columns: 1fr;
    grid-template-areas:
      "card-tl"
      "card-tr"
      "card-bl"
      "card-br";
    gap: 12px;
    min-height: 0;
  }

  .co-robi-section .bubble-node--pos-tl,
  .co-robi-section .co-robi-node--pos-tl,
  .co-robi-section .bubble-node--pos-tr,
  .co-robi-section .co-robi-node--pos-tr,
  .co-robi-section .bubble-node--pos-bl,
  .co-robi-section .co-robi-node--pos-bl,
  .co-robi-section .bubble-node--pos-br,
  .co-robi-section .co-robi-node--pos-br {
    justify-self: stretch;
    max-width: none;
  }

  .co-robi-section .bubble-node--hub,
  .co-robi-section .co-robi-node--hub,
  .co-robi-network__hub {
    max-width: none;
  }

  .co-robi-hub__core {
    width: calc(var(--co-robi-hub-size) + 28px);
    height: calc(var(--co-robi-hub-size) + 28px);
  }

  .co-robi-hub__mark {
    width: var(--co-robi-hub-size);
    height: var(--co-robi-hub-size);
  }

  .co-robi-section .co-robi-node--leaf .co-robi-node__inner {
    align-items: stretch;
  }
}

@media (max-width: 960px) {
  .co-robi-network {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 960px) and (min-width: 560px) {
  .co-robi-network__field,
  .co-robi-bubbles__field,
  .co-robi-system__field {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "card-tl card-tr"
      "card-bl card-br";
    gap: 12px;
    min-height: 0;
  }

  .co-robi-section .bubble-node--hub,
  .co-robi-section .co-robi-node--hub,
  .co-robi-network__hub {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .co-robi-diamond-stage,
  .co-robi-diamond-canvas,
  .co-robi-diamond-glow,
  .co-robi-section .co-robi-node__inner,
  .co-robi-section .bubble-node-inner,
  .co-robi-section .co-robi-hub__mark,
  .co-robi-section .co-robi-hub__glow,
  .co-robi-section .co-robi-hub__ring,
  .co-robi-section .co-robi-network__signal {
    animation: none !important;
  }

  .co-robi-section .co-robi-hub__ring {
    opacity: 0 !important;
  }

  .co-robi-section.is-visible .co-robi-network__track {
    opacity: 0.45;
  }
}

.audience-section {
  position: relative;
}

.audience-section > .container {
  position: relative;
}

.audience-section .section-heading.centered,
.audience-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(32px, 4.5vw, 48px);
  text-align: center;
}

.audience-section .section-heading.centered h2,
.audience-section__header h2 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.audience-section__header .eyebrow,
.audience-section .section-heading.centered .eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: max-content;
  margin: 0 auto 14px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .audience-section__header .eyebrow:hover,
  .audience-section .section-heading.centered .eyebrow:hover {
    transform: none;
  }
}

.audience-section__lead {
  display: block;
  align-self: center;
  width: min(100%, 620px);
  max-width: 620px;
  margin: 16px auto 0;
  padding: 0;
  text-align: center;
  color: var(--text-soft);
  font-size: clamp(1rem, 2.2vw, 1.08rem);
  line-height: 1.65;
  text-wrap: balance;
}

.audience-section .section-heading.centered p.audience-section__lead {
  margin-inline: auto;
  text-align: center;
}

.audience-section .audience-accordion {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(10px, 1.1vw, 14px);
  width: 100%;
  height: 270px;
  min-height: 270px;
}

#dla-kogo.audience-section .audience-card {
  position: relative;
  overflow: hidden;
  flex: 1 1 150px;
  flex-grow: 1;
  flex-basis: 150px;
  align-self: stretch;
  height: 270px;
  min-height: 270px;
  min-width: 150px;
  padding: 0;
  border: 1px solid rgba(183, 140, 255, 0.2);
  border-radius: 22px;
  opacity: 0.84;
  cursor: pointer;
  transform: translateY(0);
  background:
    radial-gradient(circle at 50% 10%, rgba(168, 85, 247, 0.11), transparent 54%),
    linear-gradient(155deg, rgba(16, 14, 26, 0.88), rgba(7, 8, 15, 0.82)),
    rgba(8, 10, 18, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 22px rgba(139, 75, 220, 0.07),
    0 8px 28px rgba(0, 0, 0, 0.24);
  transition:
    flex-grow 260ms cubic-bezier(0.22, 0.75, 0.25, 1),
    flex-basis 260ms cubic-bezier(0.22, 0.75, 0.25, 1),
    opacity 200ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
  will-change: flex-grow, flex-basis;
}

#dla-kogo.audience-section .audience-card::before {
  content: none;
  display: none;
}

#dla-kogo.audience-section .audience-card:not(.is-active) {
  flex-grow: 1;
  flex-basis: 150px;
}

#dla-kogo.audience-section .audience-card.is-active {
  flex-grow: 2.8;
  flex-basis: 390px;
  opacity: 1;
  border-color: rgba(183, 140, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 14px 40px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(139, 75, 220, 0.14);
  transform: translateY(0);
}

#dla-kogo.audience-section .audience-card:focus-visible {
  outline: 2px solid rgba(183, 140, 255, 0.72);
  outline-offset: 3px;
}

#dla-kogo.audience-section .audience-card.is-tapped {
  transform: translateY(0);
}

.audience-section .audience-card__collapsed {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 22px;
  text-align: center;
  overflow: hidden;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: opacity 140ms ease;
}

.audience-section .audience-card__expanded {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 340px;
  max-width: 340px;
  margin-inline: auto;
  padding: 28px 26px;
  text-align: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: none;
  transition: opacity 160ms ease;
  transition-delay: 0ms;
}

#dla-kogo.audience-section .audience-card.is-active .audience-card__collapsed {
  opacity: 0;
  pointer-events: none;
}

#dla-kogo.audience-section .audience-card.is-active .audience-card__expanded {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 80ms;
}

#dla-kogo.audience-section .audience-card:not(.is-active) .audience-card__expanded {
  transition-delay: 0ms;
}

#dla-kogo.audience-section .audience-card__collapsed .audience-card__title,
#dla-kogo.audience-section .audience-card__expanded .audience-card__title,
#dla-kogo.audience-section .audience-card__expanded .audience-card__description,
#dla-kogo.audience-section .audience-card__expanded .audience-card__tags,
#dla-kogo.audience-section .audience-card__expanded .audience-card__tags li {
  transform: none;
  filter: none;
  transition: none;
}

.audience-section .audience-card__icon {
  display: grid;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  place-items: center;
  border: 1px solid rgba(183, 140, 255, 0.26);
  border-radius: 14px;
  color: var(--blue-soft);
  background:
    radial-gradient(circle at 30% 20%, rgba(168, 85, 247, 0.24), transparent 58%),
    rgba(139, 75, 220, 0.14);
  box-shadow: 0 0 18px rgba(139, 75, 220, 0.14);
}

#dla-kogo.audience-section .audience-card.is-active .audience-card__expanded .audience-card__icon {
  border-color: rgba(183, 140, 255, 0.42);
  box-shadow: 0 0 22px rgba(139, 75, 220, 0.22);
}

.audience-section .audience-card__icon svg {
  display: block;
}

.audience-section .audience-card__title {
  margin: 0;
  font-size: clamp(0.9rem, 1.05vw, 1.02rem);
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
}

.audience-section .audience-card__collapsed .audience-card__title {
  white-space: nowrap;
}

.audience-section .audience-card__description {
  width: 100%;
  max-width: none;
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.62;
  text-align: center;
}

.audience-section .audience-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: none;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.audience-section .audience-card__tags li {
  padding: 5px 11px;
  border: 1px solid rgba(183, 140, 255, 0.18);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(139, 75, 220, 0.1);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

@media (hover: hover) and (pointer: fine) {
  #dla-kogo.audience-section .audience-card,
  #dla-kogo.audience-section .audience-card:hover,
  #dla-kogo.audience-section .audience-card.is-active,
  #dla-kogo.audience-section .audience-card.is-active:hover {
    transform: translateY(0);
  }

  #dla-kogo.audience-section .audience-card:not(.is-active):hover {
    border-color: rgba(183, 140, 255, 0.28);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 0 26px rgba(139, 75, 220, 0.1),
      0 8px 28px rgba(0, 0, 0, 0.26);
  }

  #dla-kogo.audience-section .audience-card.is-active,
  #dla-kogo.audience-section .audience-card.is-active:hover {
    border-color: rgba(183, 140, 255, 0.5);
  }
}

@media (max-width: 900px) {
  .audience-section .audience-accordion {
    flex-direction: column;
    gap: 12px;
    height: auto;
    min-height: 0;
  }

  #dla-kogo.audience-section .audience-card,
  #dla-kogo.audience-section .audience-card.is-active {
    flex: none;
    flex-grow: 0;
    flex-basis: auto;
    width: 100%;
    height: auto;
    min-height: 112px;
    min-width: 0;
    opacity: 1;
    will-change: auto;
  }

  #dla-kogo.audience-section .audience-card.is-active {
    min-height: 260px;
  }

  #dla-kogo.audience-section .audience-card:not(.is-active) {
    opacity: 0.88;
    border-color: rgba(183, 140, 255, 0.14);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
  }

  .audience-section .audience-card__collapsed,
  .audience-section .audience-card__expanded {
    padding: 18px 20px;
  }

  .audience-section .audience-card__expanded {
    width: 100%;
    max-width: 100%;
  }

  .audience-section .audience-card__title {
    font-size: 1.02rem;
  }
}

@media (max-width: 640px) {
  .audience-section .audience-accordion {
    gap: 10px;
  }

  .audience-section .audience-card__tags {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #dla-kogo.audience-section .audience-card,
  .audience-section .audience-card__collapsed,
  .audience-section .audience-card__expanded {
    transition-duration: 0.01ms !important;
    will-change: auto;
  }
}

@keyframes hero-glow-shift {
  from {
    opacity: 0.52;
    transform: translate3d(-18px, -8px, 0) scale(0.96);
  }
  to {
    opacity: 0.82;
    transform: translate3d(18px, 16px, 0) scale(1.04);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes mockup-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotateX(1deg) rotateY(-1deg);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.24);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

@keyframes hero-stars-drift {
  from {
    background-position: 0 0, 42px 68px;
  }
  to {
    background-position: 118px 236px, -134px 244px;
  }
}

@keyframes hero-start-in {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(24px) scale(0.985);
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-glow-load {
  from {
    opacity: 0;
    filter: blur(28px);
  }
  to {
    opacity: 0.78;
    filter: blur(20px);
  }
}

@keyframes hero-stars-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.34;
  }
}

@keyframes hero-background-breathe {
  from {
    background-position: 50% 42%, 50% 44%, 50% 76%, 0 0;
  }
  to {
    background-position: 48% 40%, 54% 48%, 50% 72%, 0 0;
  }
}

@keyframes icon-soft-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(183, 140, 255, 0);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(183, 140, 255, 0.08);
  }
}

@keyframes hero-crescent-breathe {
  from {
    transform: translate(-50%, -50%) rotate(-6deg) scale(0.97);
    opacity: 0.58;
  }
  to {
    transform: translate(-50%, -51%) rotate(6deg) scale(1.04);
    opacity: 0.74;
  }
}

@keyframes hero-arc-drift {
  from {
    transform: translate(-52%, -64%) rotate(-15deg) scale(0.98);
    opacity: 0.32;
  }
  to {
    transform: translate(-48%, -58%) rotate(-7deg) scale(1.03);
    opacity: 0.44;
  }
}

@keyframes heroVerticalAuraDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0.25%, -0.18%, 0) scale(1.01);
  }

  100% {
    transform: translate3d(-0.15%, 0.12%, 0) scale(1.008);
  }
}

@keyframes hero-purple-pulse {
  from {
    transform: translate(-50%, -50%) scale(0.92) rotate(-8deg);
  }
  to {
    transform: translate(-50%, -50%) scale(1.08) rotate(8deg);
  }
}

@keyframes hero-particles-float {
  from {
    transform: translate3d(-12px, -8px, 0);
  }
  to {
    transform: translate3d(16px, 12px, 0);
  }
}

@keyframes hero-smoke-fallback-drift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes human-ai-hand-in {
  from {
    opacity: 0;
    transform: translate3d(-28px, 26px, 0);
  }
  to {
    opacity: 0.72;
    transform: translate3d(-18px, 18px, 0);
  }
}

@keyframes human-ai-orb-pulse {
  0%,
  100% {
    opacity: 0.86;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes human-ai-pixel-flow {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.75);
  }
  22% {
    opacity: 0.95;
  }
  72% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--dx), var(--dy), 0) scale(1);
  }
}

@keyframes human-ai-hand-float {
  0%,
  100% {
    opacity: 0.72;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.78;
    transform: translate3d(-2px, -1px, 0);
  }
}

@keyframes human-ai-node-pulse {
  0%,
  100% {
    opacity: 0.86;
    transform: translate(50%, -50%) rotate(45deg) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(50%, -50%) rotate(45deg) scale(1.08);
  }
}

@keyframes flow-ai-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 28px rgba(168, 85, 247, 0.34), 0 0 72px rgba(124, 58, 237, 0.16);
  }
  50% {
    transform: scale(1.045);
    box-shadow: 0 0 34px rgba(168, 85, 247, 0.44), 0 0 86px rgba(124, 58, 237, 0.22);
  }
}

@keyframes flow-dot-right {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.7);
  }
  22%,
  70% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translate3d(70px, 0, 0) scale(1);
  }
}

@keyframes flow-dot-left {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.7);
  }
  22%,
  70% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translate3d(-70px, 0, 0) scale(1);
  }
}

@keyframes flow-dot-right-mobile {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.7);
  }
  22%,
  70% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate3d(52vw, 0, 0) scale(1);
  }
}

@keyframes human-ai-diamond-glow-pulse {
  0%,
  100% {
    opacity: 0.68;
    transform: translate(-50%, -50%) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes human-ai-glow-breathe {
  0%,
  100% {
    opacity: 0.44;
    transform: translate(-50%, -50%) scale(0.98);
  }
  50% {
    opacity: 0.68;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes human-ai-node-soft-pulse {
  0%,
  100% {
    opacity: 0.88;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 18px rgba(168, 85, 247, 0.56), 0 0 42px rgba(139, 92, 246, 0.22);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 24px rgba(192, 132, 252, 0.68), 0 0 54px rgba(139, 92, 246, 0.3);
  }
}

@keyframes human-ai-image-pixel-flow {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.72);
  }
  18%,
  68% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--dx), var(--dy), 0) scale(1);
  }
}

@keyframes human-ai-node-lite-pulse {
  0%,
  100% {
    opacity: 0.86;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes human-ai-glow-lite {
  0%,
  100% {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.52;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes hero-cosmic-flame {
  0% {
    opacity: 0.62;
    transform: translate3d(-3%, 1.5%, 0) rotate(-12deg) scale(1.02, 0.98);
  }
  48% {
    opacity: 0.8;
    transform: translate3d(0.5%, -0.5%, 0) rotate(-9deg) scale(1.07, 1.03);
  }
  100% {
    opacity: 0.7;
    transform: translate3d(3%, 1%, 0) rotate(-6deg) scale(1.03, 1.08);
  }
}

@keyframes hero-cosmic-flame-mobile {
  from {
    transform: translate3d(-1.5%, 1%, 0) rotate(-11deg) scale(1.02);
  }
  to {
    transform: translate3d(1.5%, -0.5%, 0) rotate(-8deg) scale(1.06);
  }
}

@keyframes heroAmbientGlowBreath {
  0% {
    opacity: 0.58;
    transform: translate3d(-0.4%, 0.3%, 0) scale(0.99, 0.98);
  }

  50% {
    opacity: 0.72;
    transform: translate3d(0.3%, -0.2%, 0) scale(1.015, 1.01);
  }

  100% {
    opacity: 0.64;
    transform: translate3d(0, 0.4%, 0) scale(1.005, 1.02);
  }
}

@keyframes co-robi-diamond-glow-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: translate(-50%, -50%) scale(0.97);
  }
  50% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(1.02);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

@keyframes centerCardPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(168, 85, 247, 0.24),
      0 0 28px rgba(168, 85, 247, 0.14),
      0 10px 28px rgba(139, 75, 220, 0.14),
      0 16px 40px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(168, 85, 247, 0.48),
      0 0 42px rgba(168, 85, 247, 0.28),
      0 10px 28px rgba(139, 75, 220, 0.18),
      0 16px 40px rgba(0, 0, 0, 0.3);
  }
}

@keyframes cardShimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes co-robi-ascii-float {
  0%,
  100% {
    transform: perspective(900px) rotateX(0deg) rotateZ(0deg) translateY(0) scale(1);
    filter: drop-shadow(0 0 22px rgba(168, 85, 247, 0.18));
  }
  50% {
    transform: perspective(900px) rotateX(4deg) rotateZ(6deg) translateY(-10px) scale(1.015);
    filter: drop-shadow(0 0 34px rgba(168, 85, 247, 0.28));
  }
}

@keyframes co-robi-logo-heartbeat {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 1px rgba(192, 132, 252, 0.24) inset,
      0 0 20px rgba(168, 85, 247, calc(var(--co-robi-glow-strength) * 0.9));
  }
  2% {
    transform: scale(var(--co-robi-logo-pulse-scale));
    box-shadow:
      0 0 0 1px rgba(216, 180, 254, 0.32) inset,
      0 0 30px rgba(168, 85, 247, calc(var(--co-robi-glow-strength) * 1.35));
  }
  6% {
    transform: scale(1);
    box-shadow:
      0 0 0 1px rgba(192, 132, 252, 0.24) inset,
      0 0 20px rgba(168, 85, 247, calc(var(--co-robi-glow-strength) * 0.9));
  }
}

@keyframes co-robi-hub-pulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.98);
  }
  2% {
    opacity: 0.62;
    transform: scale(1.06);
  }
  6% {
    opacity: 0.4;
    transform: scale(0.99);
  }
}

@keyframes co-robi-signal-outward {
  0%,
  7% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
  9% {
    stroke-dashoffset: 1;
    opacity: var(--co-robi-signal-strength);
  }
  62% {
    stroke-dashoffset: 0;
    opacity: var(--co-robi-signal-strength);
  }
  66%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

/* Homepage landing page examples preview */
.home-lp-examples {
  position: relative;
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 68px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.home-lp-examples__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-lp-examples__inner {
  position: relative;
  z-index: 1;
}

.home-lp-examples .section-heading {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.home-lp-examples .section-heading p:last-child {
  max-width: 58ch;
  margin-inline: auto;
  color: var(--muted);
  line-height: 1.6;
}

.home-lp-examples__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  margin-bottom: clamp(24px, 3.5vw, 36px);
}

/* Homepage portfolio: 3 równe karty */
.home-lp-examples__grid--portfolio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
  margin-bottom: clamp(24px, 3.5vw, 36px);
}

.home-lp-examples__grid--portfolio .home-lp-portfolio-card {
  height: 100%;
  min-height: 0;
}

.home-lp-examples__grid--portfolio .lp-realization-preview,
.home-lp-examples__grid--portfolio .lp-slot-preview {
  flex: 0 0 auto;
}

.home-lp-examples__grid--portfolio .lp-realization-preview__screen {
  aspect-ratio: auto;
  min-height: 280px;
  height: 290px;
  max-height: 300px;
}

.home-lp-examples__grid--portfolio .lp-realization-preview__headline {
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
}

.home-lp-examples__grid--portfolio .lp-realization-preview__overlay {
  padding: 10px 12px 12px;
}

.home-lp-examples__grid--portfolio .lp-realization-preview__nav span {
  font-size: 0.55rem;
  padding: 2px 7px;
}

.home-lp-examples__grid--portfolio .lp-realization-preview__cta {
  font-size: 0.58rem;
  padding: 5px 12px;
}

.home-lp-examples__grid--portfolio .lp-slot-preview {
  min-height: 280px;
  height: 290px;
  max-height: 300px;
  aspect-ratio: auto;
  margin: 0;
}

.home-lp-examples__grid--portfolio .home-lp-preview-card__header {
  margin-top: auto;
}

/* Homepage: Aurelia — złoty klimat (style bazowe w landing-pages.css) */
.home-lp-portfolio-card--aurelia {
  --aurelia-gold: #d7ba82;
  --aurelia-gold-deep: #b8863b;
  --aurelia-cream: #f3efe7;
  --aurelia-dark: #0c0a08;
  --aurelia-panel: #14110e;
  --aurelia-border: rgba(215, 186, 130, 0.35);
  border-color: var(--aurelia-border);
}

/* Homepage: Sushi — czerwony klimat (style bazowe w landing-pages.css) */
.home-lp-portfolio-card--sushi {
  --sushi-red: #e31b2f;
  --sushi-red-soft: rgba(227, 27, 47, 0.55);
  --sushi-dark: #050304;
  --sushi-panel: #0b0708;
  --sushi-border: rgba(227, 27, 47, 0.28);
  border-color: var(--sushi-border);
}

.home-lp-portfolio-card--sushi .portfolio-preview--sushi .lp-realization-preview__cta {
  border-radius: 4px;
}

.home-lp-portfolio-card__status {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 10px;
  border: 1px solid rgba(183, 140, 255, 0.28);
  border-radius: 999px;
  color: rgba(248, 250, 252, 0.88);
  background: rgba(13, 13, 18, 0.55);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-lp-portfolio-card__status--soon {
  border-color: rgba(148, 163, 184, 0.28);
  color: rgba(203, 213, 225, 0.82);
  background: rgba(15, 23, 42, 0.45);
}

.home-lp-portfolio-card__status--yours {
  border-color: rgba(192, 132, 252, 0.4);
  color: rgba(233, 213, 255, 0.92);
  background: rgba(76, 29, 149, 0.28);
}

.home-lp-portfolio-card--slot {
  border-style: dashed;
  border-color: rgba(183, 140, 255, 0.3);
}

.lp-mockup__hero--sushi {
  background:
    radial-gradient(circle at 80% 20%, rgba(248, 113, 113, 0.22), transparent 50%),
    linear-gradient(135deg, rgba(127, 29, 29, 0.5), rgba(15, 23, 42, 0.6));
}

.lp-mockup__btn--sushi {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.lp-mockup__hero--portfolio-b {
  background:
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.16), transparent 50%),
    linear-gradient(135deg, rgba(30, 58, 95, 0.42), rgba(15, 23, 42, 0.55));
}

.lp-mockup__btn--portfolio-b {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.lp-mockup--portfolio-slot .lp-mockup__browser {
  border-style: dashed;
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(10, 10, 18, 0.72);
}

.lp-mockup__hero--portfolio-slot {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(148, 163, 184, 0.12), transparent 55%),
    linear-gradient(135deg, rgba(30, 41, 59, 0.45), rgba(15, 23, 42, 0.55));
}

.lp-mockup__question {
  display: block;
  margin: 0 auto 6px;
  color: rgba(216, 180, 254, 0.72);
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 24px rgba(168, 85, 247, 0.35);
}

.lp-mockup__btn--portfolio-slot {
  color: rgba(226, 232, 240, 0.88);
  background: rgba(148, 163, 184, 0.22);
  border: 1px dashed rgba(148, 163, 184, 0.35);
}

.home-lp-preview-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(183, 140, 255, 0.22);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 12% 0%, rgba(139, 75, 220, 0.1), transparent 42%),
    var(--card-bg-dark-gradient),
    var(--card-bg-dark);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.28),
    0 0 40px rgba(139, 75, 220, 0.06);
}

.home-lp-preview-card__header h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.2;
}

.home-lp-preview-card__header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.home-lp-preview-card__mockup {
  margin: 0;
}

.home-lp-preview-card__mockup .lp-mockup__screen {
  padding: 12px;
}

.home-lp-preview-card__mockup .lp-mockup__hero {
  padding: 14px 12px;
  margin-bottom: 10px;
}

.home-lp-preview-card__mockup .lp-mockup__headline {
  font-size: 0.82rem;
}

.home-lp-preview-card__benefits {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-lp-preview-card__benefits li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.home-lp-preview-card__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c084fc, #8b5cf6);
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.45);
}

.home-lp-examples__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: clamp(8px, 1.5vw, 16px);
}

.home-lp-portfolio-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 340px);
  min-height: 56px;
  padding: 14px 32px;
  border: 1px solid rgba(192, 132, 252, 0.48);
  border-radius: 16px;
  background:
    radial-gradient(circle at 20% 0%, rgba(168, 85, 247, 0.22), transparent 55%),
    rgba(3, 7, 18, 0.72);
  color: #f8fafc;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.28),
    0 0 40px rgba(139, 92, 246, 0.16);
  transition:
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.home-lp-portfolio-cta:hover,
.home-lp-portfolio-cta:focus-visible {
  border-color: rgba(216, 180, 254, 0.72);
  background:
    radial-gradient(circle at 30% 0%, rgba(168, 85, 247, 0.32), transparent 58%),
    rgba(15, 23, 42, 0.88);
  box-shadow:
    0 0 0 1px rgba(216, 180, 254, 0.12),
    0 22px 56px rgba(0, 0, 0, 0.34),
    0 0 56px rgba(139, 92, 246, 0.28);
  transform: translateY(-2px);
  outline: none;
}

.home-lp-portfolio-secondary {
  min-width: min(100%, 240px);
}

.home-lp-portfolio-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.home-lp-portfolio-secondary-link:hover,
.home-lp-portfolio-secondary-link:focus-visible {
  color: rgba(248, 250, 252, 0.95);
  outline: none;
}

.home-lp-examples__actions .btn {
  text-align: center;
}

@media (max-width: 1100px) {
  .home-lp-examples__grid--portfolio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-lp-examples__grid--portfolio .home-lp-portfolio-card--slot {
    grid-column: 1 / -1;
    max-width: min(100%, 520px);
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .home-lp-examples__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .home-lp-examples__grid--portfolio {
    grid-template-columns: 1fr;
    max-width: min(100%, 520px);
  }

  .home-lp-examples__grid--portfolio .lp-realization-preview__screen {
    min-height: 230px;
    height: 240px;
    max-height: 250px;
  }

  .home-lp-examples__grid--portfolio .lp-slot-preview {
    min-height: 230px;
    height: 240px;
    max-height: 250px;
  }

  .home-lp-examples__grid--portfolio .home-lp-portfolio-card--slot {
    grid-column: auto;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .home-lp-preview-card {
    padding: 16px;
  }

  .home-lp-examples__actions {
    align-items: stretch;
  }

  .home-lp-portfolio-cta,
  .home-lp-portfolio-secondary {
    width: 100%;
    min-width: 0;
  }

  .home-lp-portfolio-secondary-link {
    width: 100%;
    text-align: center;
  }

  .home-lp-examples__grid--portfolio .lp-realization-preview__screen,
  .home-lp-examples__grid--portfolio .lp-slot-preview {
    min-height: 200px;
    height: 210px;
    max-height: 220px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .home-lp-preview-card {
    transition:
      transform 280ms ease,
      border-color 280ms ease,
      box-shadow 280ms ease;
  }

  .home-lp-preview-card:hover {
    border-color: rgba(183, 140, 255, 0.38);
    box-shadow:
      0 22px 70px rgba(0, 0, 0, 0.32),
      0 0 48px rgba(139, 75, 220, 0.1);
    transform: translateY(-3px);
  }

  .home-lp-portfolio-card--aurelia:hover {
    border-color: rgba(215, 186, 130, 0.5);
    box-shadow:
      0 22px 70px rgba(0, 0, 0, 0.32),
      0 0 48px rgba(215, 186, 130, 0.14);
  }

  .home-lp-portfolio-card--sushi:hover {
    border-color: rgba(227, 27, 47, 0.45);
    box-shadow:
      0 22px 70px rgba(0, 0, 0, 0.32),
      0 0 48px rgba(227, 27, 47, 0.14);
  }
}

/* ─────────────────────────────────────────────
   LP FEATURES SECTION
   Tło sekcji: globalne (body / main::before) — bez osobnego patternu
   Regulacja animacji kart: animation-duration / animation-delay per element poniżej
   Disabled motion: blok @media (prefers-reduced-motion) na końcu
   ──────────────────────────────────────────── */

.lp-features-section {
  padding: clamp(72px, 8vw, 88px) 0 clamp(80px, 9vw, 100px);
  background: transparent;
  background-color: transparent;
  position: relative;
  overflow: visible;
}

.lp-features-section .container {
  position: relative;
  z-index: 1;
}

.lp-features-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.lp-features-lead {
  color: rgba(203, 213, 225, 0.72);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.7;
  margin-top: 16px;
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}

.lp-feat-card--wide {
  grid-column: 2 / 4;
}

.lp-feat-card {
  background: linear-gradient(150deg, rgba(22, 17, 42, 0.88) 0%, rgba(10, 8, 22, 0.92) 100%);
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 18px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.lp-feat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .lp-feat-card:hover {
    border-color: rgba(167, 139, 250, 0.42);
    box-shadow:
      0 0 0 1px rgba(167, 139, 250, 0.08),
      0 24px 64px rgba(0, 0, 0, 0.4),
      0 0 48px rgba(109, 40, 217, 0.12);
    transform: translateY(-3px);
  }

  .lp-feat-card:hover .lp-feat-visual {
    opacity: 1;
    border-color: rgba(139, 92, 246, 0.22);
  }
}

.lp-feat-visual {
  background: rgba(8, 6, 18, 0.75);
  border: 1px solid rgba(139, 92, 246, 0.13);
  border-radius: 12px;
  padding: 18px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 240ms ease, border-color 240ms ease;
}

.lp-feat-copy h3 {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 600;
  color: #f1f5f9;
  margin: 0 0 6px;
  line-height: 1.3;
}

.lp-feat-copy p {
  font-size: 0.9rem;
  color: rgba(148, 163, 184, 0.85);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════ */

/* Oferta — tag shimmer */
@keyframes lp-tag-shine {
  0%, 100%  { background: rgba(139, 92, 246, 0.09); border-color: rgba(139, 92, 246, 0.22); color: rgba(167, 139, 250, 0.9); }
  40%, 60%  { background: rgba(139, 92, 246, 0.22); border-color: rgba(167, 139, 250, 0.48); color: #ddd6fe; }
}

/* Formularz — input focus glow */
@keyframes lp-input-glow {
  0%, 100%  { border-color: rgba(139, 92, 246, 0.2); box-shadow: none; }
  35%, 65%  { border-color: rgba(167, 139, 250, 0.52); box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.13); }
}

/* Formularz — button soft shine */
@keyframes lp-btn-shine {
  0%, 100%  { box-shadow: none; }
  40%, 60%  { box-shadow: 0 0 14px rgba(139, 92, 246, 0.45), inset 0 0 8px rgba(167, 139, 250, 0.1); }
}

/* Chat — bubble opacity cycle */
@keyframes lp-bubble-active {
  0%, 28%, 100% { opacity: 0.48; }
  7%, 21%        { opacity: 1; }
}

/* Chat — typing dots bounce */
@keyframes lp-typing-dot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40%           { transform: translateY(-4px); opacity: 1; }
}

/* Leady — row highlight */
@keyframes lp-row-highlight {
  0%, 100%  { background: rgba(255, 255, 255, 0.015); }
  35%, 65%  { background: rgba(139, 92, 246, 0.09); }
}

/* Leady — status pulse */
@keyframes lp-status-pulse {
  0%, 100%  { opacity: 1; }
  50%        { opacity: 0.52; }
}

/* Flow — step highlight (only box-shadow, base bg preserved) */
@keyframes lp-flow-active {
  0%, 18%, 100% { box-shadow: none; border-color: rgba(139, 92, 246, 0.18); }
  5%, 13%        { box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.3), 0 0 14px rgba(109, 40, 217, 0.22); border-color: rgba(167, 139, 250, 0.56); }
}

/* Flow — accent/lead step pulse */
@keyframes lp-flow-lead {
  0%, 18%, 100% { box-shadow: none; }
  5%, 13%        { box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.42), 0 0 18px rgba(109, 40, 217, 0.32); }
}

/* ═══════════════════════════════════
   MINI VISUAL: OFERTA
   ═══════════════════════════════════ */
.lp-feat-offer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.lp-feat-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 6px;
  padding: 2px 8px;
  align-self: flex-start;
}

.lp-feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-feat-list li {
  font-size: 0.78rem;
  color: rgba(203, 213, 225, 0.8);
  padding-left: 14px;
  position: relative;
}

.lp-feat-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(139, 92, 246, 0.7);
}

.lp-feat-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.lp-feat-tag {
  font-size: 0.68rem;
  color: rgba(167, 139, 250, 0.9);
  background: rgba(139, 92, 246, 0.09);
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 4px;
  padding: 2px 7px;
  animation: lp-tag-shine 5s ease-in-out infinite;
}

.lp-feat-tag:nth-child(2) { animation-delay: 2.5s; }

/* ═══════════════════════════════════
   MINI VISUAL: FORMULARZ
   ═══════════════════════════════════ */
.lp-feat-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-feat-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.6);
  animation: lp-input-glow 5s ease-in-out infinite;
}

.lp-feat-input:nth-child(2) { animation-delay: 2s; }

.lp-feat-btn {
  background: linear-gradient(90deg, #7c3aed, #6d28d9);
  border: none;
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f5f3ff;
  cursor: default;
  text-align: center;
  animation: lp-btn-shine 5s ease-in-out infinite 4s;
}

/* ═══════════════════════════════════
   MINI VISUAL: CHAT
   ═══════════════════════════════════ */
.lp-feat-chat {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lp-feat-bubble {
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 10px;
  max-width: 85%;
  line-height: 1.4;
  animation: lp-bubble-active 6s ease-in-out infinite;
}

.lp-feat-bubble:nth-child(2) { animation-delay: 2s; }
.lp-feat-bubble:nth-child(3) { animation-delay: 4s; }

.lp-feat-bubble--user {
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #ddd6fe;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.lp-feat-bubble--bot {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(203, 213, 225, 0.85);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

/* Typing indicator */
.lp-feat-typing {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  border-bottom-left-radius: 3px;
  align-self: flex-start;
  width: fit-content;
}

.lp-feat-typing-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.7);
  animation: lp-typing-dot 1.4s ease-in-out infinite;
}

.lp-feat-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.lp-feat-typing-dot:nth-child(3) { animation-delay: 0.4s; }

/* ═══════════════════════════════════
   MINI VISUAL: TABELA
   ═══════════════════════════════════ */
.lp-feat-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.lp-feat-table-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr 0.85fr;
  padding: 6px 9px;
  gap: 4px;
  font-size: 0.7rem;
  align-items: center;
}

.lp-feat-table-row + .lp-feat-table-row {
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.lp-feat-table-head {
  background: rgba(139, 92, 246, 0.1);
  color: rgba(167, 139, 250, 0.9);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

.lp-feat-table-row:not(.lp-feat-table-head) {
  color: rgba(203, 213, 225, 0.75);
  background: rgba(255, 255, 255, 0.015);
}

.lp-feat-table-row:nth-child(2) { animation: lp-row-highlight 5s ease-in-out infinite 0s; }
.lp-feat-table-row:nth-child(3) { animation: lp-row-highlight 5s ease-in-out infinite 2.5s; }

.lp-feat-status {
  font-size: 0.62rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
}

.lp-feat-status--new {
  background: rgba(139, 92, 246, 0.18);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.28);
  animation: lp-status-pulse 2.8s ease-in-out infinite;
}

.lp-feat-status--done {
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.22);
}

/* ═══════════════════════════════════
   MINI VISUAL: FLOW
   ═══════════════════════════════════ */
.lp-feat-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 4px 0;
}

.lp-feat-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 8px;
  padding: 9px 13px;
  min-width: 64px;
  color: rgba(203, 213, 225, 0.8);
  font-size: 0.7rem;
  font-weight: 500;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}

/* Flow highlight — sequential glow passes through each step */
.lp-feat-flow div:nth-of-type(1) { animation: lp-flow-active 5s ease-in-out infinite 0s; }
.lp-feat-flow div:nth-of-type(2) { animation: lp-flow-active 5s ease-in-out infinite 1s; }
.lp-feat-flow div:nth-of-type(3) { animation: lp-flow-active 5s ease-in-out infinite 2s; }
.lp-feat-flow div:nth-of-type(4) { animation: lp-flow-active 5s ease-in-out infinite 3s; }

.lp-feat-flow-step--accent {
  background: rgba(139, 92, 246, 0.14);
  border-color: rgba(139, 92, 246, 0.38);
  color: #ddd6fe;
  animation: lp-flow-lead 5s ease-in-out infinite 4s !important;
}

.lp-feat-flow-icon {
  color: rgba(167, 139, 250, 0.8);
  line-height: 0;
}

.lp-feat-flow-arrow {
  color: rgba(139, 92, 246, 0.55);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.lp-feat-flow-sep {
  color: rgba(139, 92, 246, 0.45);
  font-size: 0.9rem;
  font-weight: 300;
  flex-shrink: 0;
}

/* Szeroka karta: układ poziomy na desktopie */
.lp-feat-card--wide {
  flex-direction: row;
  align-items: center;
  gap: 36px;
}

.lp-feat-card--wide .lp-feat-visual {
  flex: 0 0 auto;
  min-height: auto;
  width: 100%;
  max-width: 430px;
  padding: 18px 20px;
}

.lp-feat-card--wide .lp-feat-copy {
  flex: 1;
}

/* TABLET */
@media (max-width: 1024px) and (min-width: 601px) {
  .lp-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-feat-card--wide {
    grid-column: 1 / 3;
    flex-direction: column;
    gap: 20px;
  }

  .lp-feat-card--wide .lp-feat-visual {
    max-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .lp-features-section {
    padding: 64px 0 80px;
  }

  .lp-features-header {
    margin-bottom: 36px;
  }

  .lp-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lp-feat-card--wide {
    grid-column: 1;
    flex-direction: column;
    gap: 16px;
  }

  .lp-feat-card--wide .lp-feat-visual {
    max-width: 100%;
  }

  .lp-feat-visual {
    min-height: auto;
    padding: 12px;
  }

  .lp-feat-flow {
    gap: 5px;
  }

  .lp-feat-flow-step {
    padding: 6px 8px;
    min-width: 50px;
    font-size: 0.65rem;
  }

  .lp-feat-table-row {
    grid-template-columns: 1.2fr 0.9fr 1.1fr 0.8fr;
    font-size: 0.63rem;
    padding: 4px 6px;
  }

  .lp-feat-table-head {
    font-size: 0.58rem;
  }
}

/* ═══════════════════════════════════
   prefers-reduced-motion
   ═══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .lp-feat-tag,
  .lp-feat-input,
  .lp-feat-btn,
  .lp-feat-bubble,
  .lp-feat-typing-dot,
  .lp-feat-table-row,
  .lp-feat-status--new,
  .lp-feat-flow-step {
    animation: none !important;
    transition: none !important;
  }

  .lp-feat-flow div:nth-of-type(1),
  .lp-feat-flow div:nth-of-type(2),
  .lp-feat-flow div:nth-of-type(3),
  .lp-feat-flow div:nth-of-type(4),
  .lp-feat-flow-step--accent {
    animation: none !important;
  }

  .lp-feat-card {
    transition: none;
  }
}

/* Hero fog fade-out — seamless continuation into global page background */
body.home-page {
  background-color: #070411;
  background-image:
    linear-gradient(
      to bottom,
      #070411 0%,
      #10071d 18%,
      #160824 42%,
      #1a0926 68%,
      #1e0a24 100%
    );
}

body.home-page #hero.hero-cosmic {
  position: relative;
  overflow: visible;
  background: transparent;
  isolation: auto;
  box-shadow: none;
  border: none;
}

body.home-page .hero-cosmic + .section,
body.home-page .hero-cosmic + .section::before {
  background: none !important;
}

body.home-page .hero-cosmic + .section::before {
  display: none !important;
  content: none !important;
}

body.home-page #hero.hero-cosmic .hero-plasma__vignette {
  inset: -2% -6% -28% -6%;
  background:
    radial-gradient(ellipse 48% 64% at 50% 44%, rgba(4, 3, 9, 0.52) 0%, rgba(4, 3, 9, 0.14) 46%, transparent 78%);
  /* Smooth continuous fade — no plateau→ramp kink → no horizontal seam. */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 30%, rgba(0, 0, 0, 0.9) 44%, rgba(0, 0, 0, 0.74) 56%, rgba(0, 0, 0, 0.52) 67%, rgba(0, 0, 0, 0.28) 78%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 30%, rgba(0, 0, 0, 0.9) 44%, rgba(0, 0, 0, 0.74) 56%, rgba(0, 0, 0, 0.52) 67%, rgba(0, 0, 0, 0.28) 78%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0) 100%);
}

body.home-page main {
  position: relative;
  z-index: 1;
  background: transparent;
  min-height: 100vh;
}

/* Global scroll-length fog — purple top → soft pink/magenta below */
body.home-page main::before {
  content: "";
  position: absolute;
  inset: 0;
  min-height: 100%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(142, 72, 255, 0.2), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(156, 72, 255, 0.14), transparent 24%),
    radial-gradient(circle at 18% 48%, rgba(139, 75, 220, 0.1), transparent 26%),
    radial-gradient(circle at 82% 68%, rgba(190, 50, 140, 0.07), transparent 28%),
    radial-gradient(circle at 28% 88%, rgba(180, 45, 130, 0.06), transparent 30%),
    radial-gradient(circle at 70% 96%, rgba(140, 30, 90, 0.05), transparent 32%);
  filter: none;
  opacity: 0.62;
}

body.home-page .section,
body.home-page .section-panel,
body.home-page .home-lp-examples,
body.home-page .lp-features-section,
body.home-page .implementation-roadmap-section,
body.home-page .audience-section,
body.home-page .faq-section {
  background: transparent;
  background-color: transparent;
}

@media (max-width: 768px) {
  /* Keep the deliberately oversized hero fog and CTA glows from enlarging
     the mobile scrollable area while preserving their vertical bleed. */
  body.home-page main {
    overflow-x: clip;
    overflow-y: visible;
  }

  body.home-page #hero.hero-cosmic {
    overflow-x: clip;
    overflow-y: visible;
  }

  body.home-page #hero.hero-cosmic .hero-grid {
    width: min(100% - 20px, var(--max-width));
    margin-inline: auto;
  }

  #hero.hero-cosmic::before {
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 54%, rgba(0, 0, 0, 0.5) 76%, rgba(0, 0, 0, 0.15) 90%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 54%, rgba(0, 0, 0, 0.5) 76%, rgba(0, 0, 0, 0.15) 90%, rgba(0, 0, 0, 0) 100%);
  }

  body.home-page #hero.hero-cosmic::after {
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.28) 78%, transparent 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.28) 78%, transparent 100%);
  }

  body.home-page #hero.hero-cosmic .hero-plasma {
    inset: -2% -14% -44% -14%;
  }

  body.home-page main::before {
    opacity: 0.54;
  }

  body.home-page .cosmic-aurora-layer {
    opacity: 0.1;
  }
}

/* Mobile hero hierarchy: headline first, supporting proof kept compact. */
@media (max-width: 768px) {
  body.home-page #hero.hero-cosmic .hero-copy-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  body.home-page #hero.hero-cosmic .hero-badge {
    width: fit-content;
    margin-bottom: clamp(14px, 2.2vh, 18px);
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow:
      0 0 0 1px rgba(192, 132, 252, 0.06) inset,
      0 0 24px rgba(139, 75, 220, 0.16);
    font-size: 0.68rem;
    line-height: 1;
    letter-spacing: 0.09em;
  }

  body.home-page #hero.hero-cosmic .hero-title {
    max-width: min(100%, 720px);
    padding-top: 0.02em;
    padding-bottom: 0.08em;
    font-size: clamp(3.3rem, 13vw, 4.85rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }

  body.home-page #hero.hero-cosmic .hero-lead {
    max-width: 35ch;
    margin-top: clamp(14px, 2.2vh, 18px);
    font-size: clamp(0.88rem, 2.2vw, 0.98rem);
    line-height: 1.55;
  }

  body.home-page #hero.hero-cosmic .hero-pills,
  body.home-page #hero.hero-cosmic .proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: min(100%, 520px);
    margin-top: clamp(14px, 2.2vh, 18px);
  }

  body.home-page #hero.hero-cosmic .proof-list li {
    min-height: 34px;
    padding: 6px 8px;
    border-radius: 12px;
    color: rgba(244, 236, 255, 0.74);
    background: rgba(10, 10, 14, 0.6);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.25;
  }

  body.home-page #hero.hero-cosmic .proof-list li::before {
    width: 5px;
    height: 5px;
    margin-right: 6px;
  }
}

@media (min-width: 600px) and (max-width: 768px) {
  body.home-page #hero.hero-cosmic .hero-pills,
  body.home-page #hero.hero-cosmic .proof-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 720px);
  }
}
