/* Humano — slash.com inspired landing (/slash). Dark-first palette. */

:root {
  --slash-bg: #08090b;
  --slash-bg-elevated: #111318;
  --slash-bg-card: #16181f;
  --slash-bg-card-hover: #1c1f28;
  --slash-bg-soft: #0e1014;
  --slash-ink: #f4f5f7;
  --slash-ink-soft: #c8cdd6;
  --slash-muted: #8b93a1;
  --slash-muted-2: #636b78;
  --slash-border: rgba(255, 255, 255, 0.08);
  --slash-border-strong: rgba(255, 255, 255, 0.14);
  --slash-accent: #3dd68c;
  --slash-accent-soft: rgba(61, 214, 140, 0.14);
  --slash-accent-glow: rgba(61, 214, 140, 0.45);
  --slash-violet-glow: rgba(120, 92, 255, 0.35);
  --slash-cyan-glow: rgba(56, 189, 248, 0.28);
  --slash-shine: rgba(255, 255, 255, 0.55);
  --slash-radius: 18px;
  --slash-radius-lg: 24px;
  --slash-radius-xl: 32px;
  --slash-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --slash-maxw: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.slash-page {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--slash-ink);
  background: var(--slash-bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

.slash-page a {
  color: inherit;
  text-decoration: none;
}

.slash-page a.slash-btn-dark {
  color: var(--slash-bg);
}

.slash-page a.slash-btn-accent {
  color: #04120a;
}

.slash-page a.slash-btn-ghost {
  color: var(--slash-ink-soft);
}

.slash-page a.slash-btn-outline {
  color: var(--slash-ink);
}

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

.slash-container {
  width: 100%;
  max-width: var(--slash-maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.slash-section {
  padding: 6rem 0;
}

@media (max-width: 991.98px) {
  .slash-section {
    padding: 4rem 0;
  }
}

.slash-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slash-accent);
  background: var(--slash-accent-soft);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 214, 140, 0.2);
}

.slash-h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 1rem 0 0.75rem;
  color: var(--slash-ink);
}

.slash-lead {
  font-size: 1.08rem;
  color: var(--slash-muted);
  max-width: 40rem;
}

.slash-section-head {
  text-align: center;
  margin: 0 auto 3.25rem;
  max-width: 44rem;
}

.slash-section-head .slash-lead {
  margin: 0 auto;
}

/* Buttons */
.slash-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

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

.slash-btn-dark {
  background: #fff;
  color: var(--slash-bg);
}

.slash-btn-dark:hover {
  background: #f0f1f3;
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.12);
}

.slash-btn-accent {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #3dd68c 0%, #2ec97e 55%, #4de89a 100%);
  color: #04120a;
  box-shadow: 0 0 0 1px rgba(61, 214, 140, 0.35), 0 8px 28px var(--slash-accent-glow);
}

.slash-btn-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, var(--slash-shine) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  pointer-events: none;
  opacity: 0.45;
}

.slash-btn-accent:hover {
  background: linear-gradient(135deg, #4de89a 0%, #3dd68c 50%, #5ef0a8 100%);
  box-shadow: 0 0 0 1px rgba(61, 214, 140, 0.5), 0 14px 40px var(--slash-accent-glow), 0 0 48px rgba(61, 214, 140, 0.22);
}

.slash-btn-accent:hover::after {
  transform: translateX(130%);
}

.slash-btn-ghost {
  background: transparent;
  color: var(--slash-ink-soft);
  border-color: var(--slash-border-strong);
}

.slash-btn-ghost:hover {
  color: var(--slash-ink);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.slash-btn-outline {
  background: transparent;
  color: var(--slash-ink);
  border-color: var(--slash-border-strong);
}

.slash-btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.slash-btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1.02rem;
}

/* Navbar */
.slash-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 9, 11, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--slash-border);
}

.slash-nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 72px;
}

.slash-nav-brand img {
  max-height: 2.35rem;
  width: auto;
}

.slash-nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.slash-nav-links a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slash-muted);
  border-radius: 10px;
  transition: color 0.15s ease, background 0.15s ease;
}

.slash-nav-links a:hover {
  color: var(--slash-ink);
  background: rgba(255, 255, 255, 0.05);
}

.slash-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.slash-nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--slash-border-strong);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--slash-ink);
}

.slash-nav-toggle svg {
  width: 22px;
  height: 22px;
}

.slash-nav-login-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .slash-nav-actions {
    margin-left: auto;
  }
  .slash-nav-toggle {
    display: inline-flex;
  }
  .slash-nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--slash-bg-elevated);
    border-bottom: 1px solid var(--slash-border);
    padding: 0.5rem 1.5rem 1rem;
    box-shadow: var(--slash-shadow);
    display: none;
  }
  .slash-nav-links.is-open {
    display: flex;
  }
  .slash-nav-links a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--slash-border);
  }
  .slash-nav-login-mobile {
    display: block;
    padding: 0.85rem 0 0.25rem;
    border-bottom: 0;
  }
  .slash-nav-login-mobile .slash-nav-login-link {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--slash-border-strong);
    border-bottom: 1px solid var(--slash-border-strong);
    border-radius: 12px;
  }
  .slash-nav .slash-nav-cta-desktop {
    display: none;
  }
}

/* Hero */
.slash-hero {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 5.5rem 0 0;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(61, 214, 140, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(120, 92, 255, 0.1) 0%, transparent 50%),
    var(--slash-bg);
}

.slash-hero .slash-container {
  position: relative;
  z-index: 2;
}

.slash-hero-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.slash-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}

.slash-glow-green {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(61, 214, 140, 0.55) 0%, transparent 68%);
}

.slash-glow-violet {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: 8%;
  right: -8%;
  background: radial-gradient(circle, rgba(120, 92, 255, 0.45) 0%, transparent 70%);
}

.slash-glow-cyan {
  width: min(360px, 48vw);
  height: min(360px, 48vw);
  bottom: 18%;
  left: -6%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35) 0%, transparent 72%);
}

.slash-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 20%, transparent 75%);
}

.slash-hero[data-slash-spotlight]::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: var(--slash-spot-x, 50%);
  top: var(--slash-spot-y, 30%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 214, 140, 0.14) 0%, transparent 62%);
  pointer-events: none;
  z-index: 1;
  transition: left 0.35s ease, top 0.35s ease;
}

.slash-shine-badge {
  box-shadow: 0 0 24px rgba(61, 214, 140, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: slash-badge-pulse 3.5s ease-in-out infinite;
}

@keyframes slash-badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(61, 214, 140, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  50% {
    box-shadow: 0 0 36px rgba(61, 214, 140, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
}

.slash-hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 1.35rem auto 1rem;
  padding: 0.12em 0.5em 0;
  max-width: none;
  overflow: visible;
  color: var(--slash-ink);
}

.slash-hero h1 em {
  font-style: normal;
  font-weight: inherit;
}

.slash-hero-shine {
  font-style: italic;
  font-weight: 700;
  display: inline-block;
  line-height: 1.22;
  padding: 0.1em 0.28em 0.04em 0.32em;
  margin: 0 -0.12em;
  overflow: visible;
  background: linear-gradient(120deg, #f4f5f7 0%, #3dd68c 35%, #a78bfa 65%, #f4f5f7 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: slash-title-shine 6s linear infinite;
}

@keyframes slash-title-shine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 220% center;
  }
}

.slash-hero .slash-lead {
  margin: 0 auto 2rem;
  font-size: 1.18rem;
  max-width: 42rem;
  color: var(--slash-muted);
}

.slash-hero-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 30rem;
  margin: 0 auto 0.85rem;
}

.slash-hero-form input {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--slash-border-strong);
  font-size: 1rem;
  font-family: inherit;
  background: var(--slash-bg-card);
  color: var(--slash-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.slash-hero-form input::placeholder {
  color: var(--slash-muted-2);
}

.slash-hero-form input:focus {
  outline: none;
  border-color: var(--slash-accent);
  box-shadow: 0 0 0 4px var(--slash-accent-soft);
}

.slash-hero-form.is-invalid input[data-slash-email-input] {
  border-color: #f87171;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.16);
}

.slash-hero-form.is-invalid input[data-slash-email-input]:focus {
  border-color: #f87171;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.22);
}

.slash-hero-note {
  font-size: 0.88rem;
  color: var(--slash-muted-2);
}

.slash-form-feedback {
  flex: 1 1 100%;
  display: none;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.1rem 0 0;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.34);
  color: #fecaca;
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: left;
}

.slash-form-feedback::before {
  content: "!";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(248, 113, 113, 0.22);
  color: #fecaca;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
}

.slash-form-feedback[data-slash-form-feedback-visible] {
  display: flex;
}

.slash-form-feedback.is-shaking {
  animation: slash-form-shake 0.42s ease;
}

.slash-form-feedback-modal {
  margin-top: 0.15rem;
}

.slash-lead-modal-field.is-invalid input {
  border-color: #f87171;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.16);
}

@keyframes slash-form-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-6px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

.slash-form-success {
  max-width: 30rem;
  margin: 0 auto 1.25rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--slash-border-strong);
  background: var(--slash-bg-card);
  color: var(--slash-ink);
  font-size: 0.9rem;
  text-align: center;
}

.slash-lead-reward {
  text-align: center;
}

.slash-lead-reward-modal {
  margin: 0;
  padding: 0;
}

.slash-reward-modal-dialog {
  width: min(100%, 34rem);
  padding: 1.85rem 1.65rem 1.45rem;
  border-color: rgba(61, 214, 140, 0.28);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(61, 214, 140, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, rgba(18, 24, 32, 0.98), rgba(10, 14, 20, 0.98));
}

.slash-lead-reward-badge {
  display: inline-flex;
  margin: 0 0 0.85rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 214, 140, 0.35);
  background: var(--slash-accent-soft);
  color: var(--slash-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.slash-lead-reward-kicker {
  margin: 0 0 0.45rem;
  color: var(--slash-muted);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

.slash-lead-reward-title {
  margin: 0 0 0.75rem;
  color: var(--slash-ink);
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  line-height: 1.2;
}

.slash-lead-reward-body {
  margin: 0 0 1.15rem;
  color: var(--slash-ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.slash-lead-reward-code {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1px dashed rgba(61, 214, 140, 0.45);
  background: rgba(8, 9, 11, 0.55);
}

.slash-lead-reward-code-label {
  width: 100%;
  color: var(--slash-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slash-lead-reward-code-value {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--slash-accent-soft);
  color: var(--slash-ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.slash-lead-reward-copy {
  border: 1px solid var(--slash-border-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--slash-ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.slash-lead-reward-copy:hover {
  border-color: rgba(61, 214, 140, 0.45);
  background: var(--slash-accent-soft);
  color: var(--slash-ink);
}

.slash-lead-reward-copy.is-copied {
  border-color: rgba(61, 214, 140, 0.55);
  background: rgba(61, 214, 140, 0.18);
  color: var(--slash-accent);
}

.slash-hero-shot {
  margin-top: 4rem;
  overflow: visible;
  border: none;
  background: transparent;
  box-shadow: none;
  max-width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.slash-hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3612 / 2328;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.45));
}

/* Stat band */
.slash-statband {
  position: relative;
  background: linear-gradient(90deg, var(--slash-bg-elevated), rgba(61, 214, 140, 0.06), var(--slash-bg-elevated));
  border-top: 1px solid var(--slash-border);
  border-bottom: 1px solid var(--slash-border);
  overflow: hidden;
}

.slash-statband::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(61, 214, 140, 0.18), transparent);
  animation: slash-stat-sweep 5s ease-in-out infinite;
}

@keyframes slash-stat-sweep {
  0% {
    left: -40%;
  }
  100% {
    left: 140%;
  }
}

.slash-statband .slash-container {
  position: relative;
  z-index: 1;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem 1rem;
  text-align: center;
}

.slash-statband strong {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--slash-ink);
  text-shadow: 0 0 28px rgba(61, 214, 140, 0.25);
}

.slash-statband span {
  color: var(--slash-muted);
  font-size: 1.02rem;
}

/* Trust cards */
.slash-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 767.98px) {
  .slash-trust-grid {
    grid-template-columns: 1fr;
  }
}

.slash-trust-card {
  background: var(--slash-bg-card);
  border: 1px solid var(--slash-border);
  border-radius: var(--slash-radius-lg);
  padding: 1.75rem;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.slash-trust-card:hover {
  border-color: var(--slash-border-strong);
  background: var(--slash-bg-card-hover);
}

.slash-trust-card blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--slash-ink-soft);
}

.slash-trust-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.slash-trust-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slash-accent-soft), rgba(90, 74, 255, 0.2));
  border: 1px solid var(--slash-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--slash-accent);
  flex-shrink: 0;
}

.slash-trust-meta strong {
  display: block;
  font-size: 0.95rem;
}

.slash-trust-meta span {
  font-size: 0.82rem;
  color: var(--slash-muted);
}

.slash-trust-highlight {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--slash-border);
  display: flex;
  gap: 1.5rem;
}

.slash-trust-highlight div strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.slash-trust-highlight div span {
  font-size: 0.8rem;
  color: var(--slash-muted);
}

/* Plan stories (Slash customer stories layout) */
.slash-stories {
  background: var(--slash-bg);
}

.slash-stories-stage {
  max-width: 72rem;
  margin: 3rem auto 0;
}

.slash-stories-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .slash-stories-row {
    flex-direction: row;
    gap: 1.25rem;
    min-height: 24rem;
  }
}

.slash-story-card {
  flex: 1;
  min-width: 0;
  display: flex;
  cursor: pointer;
  outline: none;
  transition: flex 0.7s ease-out, opacity 0.7s ease-out, filter 0.7s ease-out;
}

@media (min-width: 768px) {
  .slash-story-card.is-active {
    flex: 2.2;
  }

  .slash-stories-row:has(.slash-story-card:hover) .slash-story-card:not(:hover) {
    flex: 1;
    opacity: 0.65;
    filter: brightness(0.72);
  }

  .slash-stories-row:has(.slash-story-card:hover) .slash-story-card:hover {
    flex: 2.2;
    opacity: 1;
    filter: none;
  }
}

.slash-story-media {
  position: relative;
  display: flex;
  flex: 1;
  width: 100%;
  min-height: 16rem;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #0a0b0f;
}

@media (min-width: 768px) {
  .slash-story-media {
    min-height: 24rem;
    height: 100%;
  }
}

.slash-story-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slash-story-poster,
.slash-story-video,
.slash-story-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.slash-story-poster {
  object-fit: cover;
  object-position: center 42%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: scale(1.28);
  transition: transform 0.7s ease-out, object-position 0.7s ease-out;
}

.slash-story-card.is-active .slash-story-poster,
.slash-story-card:hover .slash-story-poster {
  object-position: center center;
  transform: scale(1.08);
}

.slash-story-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 45%, transparent 100%);
  pointer-events: none;
}

.slash-story-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
}

.slash-story-play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.slash-story-play svg {
  width: 3rem;
  height: 3rem;
  padding: 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, background 0.25s ease;
}

.slash-story-card.is-active .slash-story-play svg,
.slash-story-card:hover .slash-story-play svg {
  transform: scale(1.08);
  background: rgba(0, 0, 0, 0.72);
}

.slash-story-avatar {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--slash-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.slash-story-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}

.slash-story-role {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--slash-muted);
}

.slash-pill-sm {
  font-size: 0.58rem;
  padding: 0.18rem 0.45rem;
}

.slash-foundation {
  background: var(--slash-bg-soft);
}

.slash-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--slash-border);
  color: var(--slash-muted);
}

/* Capabilities */
.slash-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 991.98px) {
  .slash-cap-grid {
    grid-template-columns: 1fr;
  }
}

.slash-cap-card {
  background: var(--slash-bg-card);
  border: 1px solid var(--slash-border);
  border-radius: var(--slash-radius);
  padding: 1.6rem;
  height: 100%;
}

.slash-cap-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.slash-cap-card p {
  margin: 0;
  color: var(--slash-muted);
  font-size: 0.95rem;
}

/* Feature grid */
.slash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 991.98px) {
  .slash-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.slash-card {
  background: var(--slash-bg-card);
  border: 1px solid var(--slash-border);
  border-radius: var(--slash-radius);
  padding: 1.65rem;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  height: 100%;
}

.slash-card:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 214, 140, 0.28);
  background: var(--slash-bg-card-hover);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(61, 214, 140, 0.12),
    0 0 32px rgba(61, 214, 140, 0.08);
}

.slash-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--slash-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.slash-card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(1.15);
}

.slash-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
}

.slash-card p {
  margin: 0;
  color: var(--slash-muted);
  font-size: 0.95rem;
}

/* Tools grid */
.slash-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 767.98px) {
  .slash-tools-grid {
    grid-template-columns: 1fr;
  }
}

.slash-tool-card {
  background: var(--slash-bg-card);
  border: 1px solid var(--slash-border);
  border-radius: var(--slash-radius);
  padding: 1.5rem 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.slash-tool-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.slash-tool-card p {
  margin: 0;
  color: var(--slash-muted);
  font-size: 0.92rem;
}

/* Guides */
.slash-guides {
  background: var(--slash-bg-soft);
}

.slash-guide-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.slash-guide-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.slash-guide-badge {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--slash-accent-soft);
  color: var(--slash-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(61, 214, 140, 0.2);
}

.slash-guide-badge svg {
  width: 22px;
  height: 22px;
}

.slash-guide-badge-youtube {
  background: rgba(255, 0, 0, 0.12);
  color: #ff4d4d;
  border-color: rgba(255, 77, 77, 0.25);
}

.slash-guide-card-youtube .slash-guide-sub {
  color: #ff4d4d;
}

.slash-guide-card .slash-guide-sub {
  color: var(--slash-accent);
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
}

.slash-guide-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.slash-guide-card p {
  margin: 0;
  color: var(--slash-muted);
  font-size: 0.93rem;
  flex: 1;
}

.slash-guide-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slash-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.slash-guide-link svg {
  width: 16px;
  height: 16px;
}

/* Testimonials */
.slash-testimonials {
  background: var(--slash-bg-elevated);
  border-top: 1px solid var(--slash-border);
  border-bottom: 1px solid var(--slash-border);
}

.slash-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 991.98px) {
  .slash-quote-grid {
    grid-template-columns: 1fr;
  }
}

.slash-quote {
  background: var(--slash-bg-card);
  border: 1px solid var(--slash-border);
  border-radius: var(--slash-radius);
  padding: 1.75rem;
  margin: 0;
}

.slash-quote p {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--slash-ink-soft);
}

.slash-quote footer {
  font-size: 0.88rem;
  color: var(--slash-muted);
}

.slash-quote footer strong {
  display: block;
  color: var(--slash-ink);
  font-size: 0.95rem;
}

/* Metrics */
.slash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .slash-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}

.slash-metric strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--slash-ink);
  text-shadow: 0 0 32px rgba(61, 214, 140, 0.2);
}

.slash-metric span {
  color: var(--slash-muted);
  font-size: 0.95rem;
}

/* Security */
.slash-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 767.98px) {
  .slash-security-grid {
    grid-template-columns: 1fr;
  }
}

.slash-security-card {
  background: var(--slash-bg-card);
  border: 1px solid var(--slash-border);
  border-radius: var(--slash-radius);
  padding: 1.6rem;
}

.slash-security-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.slash-security-card p {
  margin: 0;
  color: var(--slash-muted);
  font-size: 0.93rem;
}

/* Plans showcase */
.slash-plans {
  background: var(--slash-bg-soft);
}

.slash-plan-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--slash-border);
}

.slash-plan-row:first-of-type {
  border-top: none;
}

@media (max-width: 767.98px) {
  .slash-plan-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.slash-plan-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slash-bg-card);
  border: 1px solid var(--slash-border);
  border-radius: var(--slash-radius-lg);
  padding: 2rem;
  min-height: 16rem;
}

.slash-plan-visual img {
  max-height: 15rem;
  width: auto;
  object-fit: contain;
}

.slash-plan-row.is-reversed .slash-plan-visual {
  order: -1;
}

@media (max-width: 767.98px) {
  .slash-plan-row.is-reversed .slash-plan-visual {
    order: 0;
  }
}

.slash-plan-copy h3 {
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0.5rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.slash-pill {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--slash-accent);
  color: #04120a;
}

.slash-plan-copy > p {
  color: var(--slash-muted);
  margin: 0 0 1.25rem;
}

.slash-plan-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.slash-plan-features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--slash-ink-soft);
  font-size: 0.96rem;
}

.slash-plan-features svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--slash-accent);
  margin-top: 2px;
}

/* Pricing cards */
.slash-pricing-billing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 0 auto 2.25rem;
}

.slash-pricing-billing-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slash-muted);
  transition: color 0.2s ease;
}

.slash-pricing-billing-label.is-active {
  color: var(--slash-ink);
}

.slash-pricing-billing-switch {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.slash-pricing-billing-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.slash-pricing-billing-track {
  position: relative;
  display: block;
  width: 3.25rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--slash-border);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.slash-pricing-billing-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(1.75rem - 6px);
  height: calc(1.75rem - 6px);
  border-radius: 50%;
  background: var(--slash-muted);
  transition: transform 0.22s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.slash-pricing-billing-switch input:checked + .slash-pricing-billing-track {
  background: var(--slash-accent-soft);
  border-color: rgba(61, 214, 140, 0.45);
  box-shadow: 0 0 0 1px rgba(61, 214, 140, 0.18);
}

.slash-pricing-billing-switch input:checked + .slash-pricing-billing-track .slash-pricing-billing-thumb {
  transform: translateX(1.5rem);
  background: var(--slash-accent);
  box-shadow: 0 0 16px var(--slash-accent-glow);
}

.slash-pricing-billing-switch input:focus-visible + .slash-pricing-billing-track {
  outline: 2px solid var(--slash-accent);
  outline-offset: 2px;
}

.slash-pricing-billing-badge {
  background: rgba(61, 214, 140, 0.16);
  color: var(--slash-accent);
}

.slash-pricing-billing-note {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  color: var(--slash-muted);
}

.slash-price-toggle.is-hidden {
  display: none;
}

.slash-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 1199.98px) {
  .slash-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .slash-pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
  }
}

.slash-pricing-card {
  background: var(--slash-bg-card);
  border: 1px solid var(--slash-border);
  border-radius: var(--slash-radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 991.98px) {
  .slash-pricing-card {
    padding: 1.35rem 1.15rem;
  }

  .slash-pricing-card .slash-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .slash-pricing-features li span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .slash-pricing-price {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }
}

.slash-pricing-card.is-featured {
  position: relative;
  border-color: rgba(61, 214, 140, 0.45);
  box-shadow:
    0 0 0 1px rgba(61, 214, 140, 0.2),
    0 0 48px rgba(61, 214, 140, 0.18),
    var(--slash-shadow);
  animation: slash-featured-pulse 4s ease-in-out infinite;
}

.slash-pricing-card.is-featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(61, 214, 140, 0.7), rgba(120, 92, 255, 0.4), rgba(61, 214, 140, 0.7));
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: slash-border-flow 5s linear infinite;
}

@keyframes slash-featured-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(61, 214, 140, 0.2), 0 0 40px rgba(61, 214, 140, 0.14), var(--slash-shadow);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(61, 214, 140, 0.35), 0 0 64px rgba(61, 214, 140, 0.28), var(--slash-shadow);
  }
}

@keyframes slash-border-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.slash-pricing-badge {
  align-self: flex-start;
  margin-bottom: 0.75rem;
}

.slash-pricing-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.slash-pricing-vat {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  color: var(--slash-muted);
}

.slash-pricing-soon {
  font-size: 1.35rem;
  color: var(--slash-muted);
}

.slash-pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.25rem;
}

.slash-pricing-price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--slash-muted);
}

.slash-pricing-desc {
  color: var(--slash-muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}

.slash-pricing-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  flex: 1;
  display: grid;
  gap: 0.55rem;
}

.slash-pricing-features li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--slash-ink-soft);
}

.slash-pricing-features svg {
  width: 16px;
  height: 16px;
  color: var(--slash-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

/* FAQ */
.slash-faq {
  background: var(--slash-bg-soft);
}

.slash-faq-list {
  max-width: 46rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.slash-faq-item {
  background: var(--slash-bg-card);
  border: 1px solid var(--slash-border);
  border-radius: 16px;
  overflow: hidden;
}

.slash-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--slash-ink);
  padding: 1.2rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.slash-faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--slash-muted);
}

.slash-faq-item.is-open .slash-faq-q svg {
  transform: rotate(45deg);
  color: var(--slash-accent);
}

.slash-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.slash-faq-a-inner {
  padding: 0 1.35rem 1.25rem;
  color: var(--slash-muted);
}

/* CTA */
.slash-cta-card {
  position: relative;
  background: linear-gradient(145deg, var(--slash-bg-card) 0%, rgba(61, 214, 140, 0.04) 45%, var(--slash-bg-elevated) 100%);
  border: 1px solid var(--slash-border-strong);
  border-radius: var(--slash-radius-xl);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(61, 214, 140, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.slash-cta-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 92, 255, 0.22) 0%, transparent 68%);
  pointer-events: none;
}

.slash-cta-copy {
  flex: 1 1 280px;
  min-width: 0;
}

.slash-cta-copy .slash-hero-form {
  margin: 0;
  justify-content: flex-start;
}

@media (max-width: 767.98px) {
  .slash-cta-card {
    text-align: center;
  }

  .slash-cta-copy .slash-hero-form {
    margin-left: auto;
    margin-right: auto;
  }
}

.slash-cta-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.slash-cta-card p {
  color: var(--slash-muted);
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
}

.slash-cta-shot {
  flex: 0 1 420px;
  max-width: 100%;
  margin-left: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--slash-border);
  background: var(--slash-bg);
  line-height: 0;
}

.slash-cta-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 2040 / 1483;
}

@media (max-width: 767.98px) {
  .slash-cta-shot {
    display: none;
  }
}

/* Contact */
.slash-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 46rem;
  margin: 0 auto;
}

@media (max-width: 575.98px) {
  .slash-contact-grid {
    grid-template-columns: 1fr;
  }
}

.slash-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--slash-bg-card);
  border: 1px solid var(--slash-border);
  border-radius: var(--slash-radius);
  padding: 1.5rem;
}

.slash-contact-card .slash-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0;
  color: var(--slash-accent);
}

.slash-contact-card svg {
  width: 24px;
  height: 24px;
  display: block;
}

.slash-contact-card > div span {
  display: block;
  color: var(--slash-muted);
  font-size: 0.84rem;
}

.slash-contact-card strong {
  font-size: 1.08rem;
  word-break: break-word;
}

.slash-contact-actions {
  text-align: center;
  margin-top: 2.5rem;
}

/* Disclaimer */
.slash-disclaimer {
  font-size: 0.78rem;
  color: var(--slash-muted-2);
  text-align: center;
  max-width: 52rem;
  margin: 2.5rem auto 0;
  line-height: 1.5;
}

/* Footer */
.slash-footer {
  background: var(--slash-bg);
  border-top: 1px solid var(--slash-border);
  color: var(--slash-muted);
  padding: 4rem 0 2.5rem;
}

.slash-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--slash-border);
}

.slash-footer-top > div {
  min-width: 0;
}

@media (max-width: 767.98px) {
  .slash-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }
}

.slash-footer-brand img {
  max-height: 2.2rem;
  width: auto;
  margin-bottom: 1rem;
}

.slash-footer-brand p {
  font-size: 0.93rem;
  max-width: 22rem;
  margin: 0;
  line-height: 1.55;
}

.slash-footer h4 {
  color: var(--slash-ink);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.slash-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.slash-footer ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slash-footer ul li::marker {
  content: none;
}

.slash-footer ul a {
  display: inline-block;
  color: var(--slash-muted);
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

.slash-footer ul a:hover {
  color: var(--slash-ink);
}

.slash-footer-bottom {
  padding-top: 1.75rem;
  font-size: 0.8rem;
  color: var(--slash-muted-2);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.slash-footer-copy-sep {
  margin-inline: 0.65rem;
  opacity: 0.45;
}

.slash-footer-powered {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slash-muted-2);
  text-decoration: none;
  isolation: isolate;
  line-height: 1;
}

.slash-footer-powered::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7rem;
  height: 2.4rem;
  border-radius: 999px;
  transform: translate(-12%, -50%) scale(0.35);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(255, 196, 92, 0.75) 22%, rgba(255, 120, 48, 0.35) 48%, transparent 72%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.slash-footer-powered-by {
  position: relative;
  top: 2px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  height: auto;
  overflow: hidden;
  padding: 0 2px;
  line-height: 1;
  white-space: nowrap;
}

.slash-footer-powered-by::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 35%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 220, 120, 0.85) 58%,
    transparent 72%
  );
  transform: translateX(-130%) skewX(-20deg) scaleX(0.65);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(0.5px);
}

.slash-footer-powered-by::after {
  content: "";
  position: absolute;
  top: -60%;
  left: 0;
  width: 55%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 12%,
    rgba(255, 255, 255, 1) 48%,
    rgba(255, 232, 160, 0.95) 52%,
    rgba(255, 255, 255, 0.15) 88%,
    transparent 100%
  );
  transform: translateX(-160%) skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
}

.slash-footer-powered:hover,
.slash-footer-powered:focus-visible {
  color: var(--slash-ink);
}

.slash-footer-powered:hover::before,
.slash-footer-powered:focus-visible::before {
  animation: slash-powered-burst 0.78s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slash-footer-powered:hover .slash-footer-powered-by,
.slash-footer-powered:focus-visible .slash-footer-powered-by {
  background-image: linear-gradient(
    90deg,
    var(--slash-muted-2) 0%,
    var(--slash-ink) 34%,
    rgba(255, 255, 255, 1) 50%,
    #ffd27a 54%,
    var(--slash-ink) 66%,
    var(--slash-ink) 100%
  );
  background-size: 280% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: slash-powered-text-brush 0.78s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slash-footer-powered:hover .slash-footer-powered-by::before,
.slash-footer-powered:focus-visible .slash-footer-powered-by::before {
  animation: slash-powered-flare-burst 0.78s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slash-footer-powered:hover .slash-footer-powered-by::after,
.slash-footer-powered:focus-visible .slash-footer-powered-by::after {
  animation: slash-powered-shine-sweep 0.78s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slash-footer-powered:hover img,
.slash-footer-powered:focus-visible img {
  animation: slash-powered-logo-flash 0.78s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slash-powered-burst {
  0% {
    opacity: 0;
    transform: translate(-12%, -50%) scale(0.2);
  }

  18% {
    opacity: 1;
    transform: translate(-12%, -50%) scale(1.15);
  }

  55% {
    opacity: 0.55;
    transform: translate(-12%, -50%) scale(1.45);
  }

  100% {
    opacity: 0;
    transform: translate(-12%, -50%) scale(1.8);
  }
}

@keyframes slash-powered-flare-burst {
  0% {
    transform: translateX(-130%) skewX(-20deg) scaleX(0.65);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  45% {
    transform: translateX(35%) skewX(-20deg) scaleX(1.15);
    opacity: 0.95;
  }

  100% {
    transform: translateX(220%) skewX(-20deg) scaleX(0.85);
    opacity: 0;
  }
}

@keyframes slash-powered-text-brush {
  0% {
    background-position: 100% 0;
    filter: drop-shadow(0 0 0 transparent);
    transform: scale(1);
  }

  28% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 18px rgba(255, 170, 64, 0.55));
    transform: scale(1.06);
  }

  100% {
    background-position: 0% 0;
    background-image: none;
    background-clip: border-box;
    -webkit-background-clip: border-box;
    color: var(--slash-ink);
    -webkit-text-fill-color: currentColor;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.28));
    transform: scale(1);
  }
}

@keyframes slash-powered-shine-sweep {
  0% {
    transform: translateX(-160%) skewX(-18deg);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  38% {
    opacity: 1;
  }

  100% {
    transform: translateX(320%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes slash-powered-logo-flash {
  0% {
    filter: brightness(1);
    transform: scale(1);
  }

  24% {
    filter: brightness(1.55) drop-shadow(0 0 10px rgba(255, 255, 255, 0.65));
    transform: scale(1.04);
  }

  100% {
    filter: brightness(1.12) drop-shadow(0 0 4px rgba(255, 255, 255, 0.2));
    transform: scale(1);
  }
}

.slash-footer-powered img {
  display: block;
  flex-shrink: 0;
  height: 1.15rem;
  width: auto;
  max-width: 7.5rem;
  margin: 0;
}

.slash-footer-copy {
  justify-self: center;
  text-align: center;
}

@media (max-width: 767.98px) {
  .slash-footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .slash-footer-powered,
  .slash-footer-copy,
  .slash-footer-idoneo {
    justify-self: center;
    margin-inline: auto;
  }
}

@media (min-width: 768px) {
  .slash-footer-idoneo {
    justify-self: start;
  }

  .slash-footer-powered {
    justify-self: end;
  }
}

.slash-footer-idoneo {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  line-height: 0;
  overflow: visible;
  opacity: 0.82;
  transition: opacity 0.2s ease;
  isolation: isolate;
}

.slash-footer-idoneo::before,
.slash-footer-idoneo::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
  z-index: 0;
}

.slash-footer-idoneo::before {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(61, 214, 140, 0.75) 24%, transparent 68%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.35);
}

.slash-footer-idoneo::after {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  box-shadow:
    0 0 0 0 rgba(255, 255, 255, 0.85),
    0 0 0 0 rgba(61, 214, 140, 0.65);
}

.slash-footer-idoneo:hover,
.slash-footer-idoneo:focus-visible {
  opacity: 1;
}

.slash-footer-idoneo:hover::before,
.slash-footer-idoneo:focus-visible::before {
  animation: slash-idoneo-flash-burst 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.slash-footer-idoneo:hover::after,
.slash-footer-idoneo:focus-visible::after {
  animation: slash-idoneo-flash-ring 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.slash-footer-idoneo-bolt {
  position: absolute;
  top: -20px;
  right: -8px;
  z-index: 4;
  width: 15px;
  height: 20px;
  color: #d7ffe9;
  opacity: 0;
  pointer-events: none;
  filter:
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 10px rgba(61, 214, 140, 0.95));
  transform: scale(0.35) rotate(-10deg);
}

.slash-footer-idoneo-bolt svg {
  display: block;
  width: 100%;
  height: 100%;
}

.slash-footer-idoneo:hover .slash-footer-idoneo-bolt,
.slash-footer-idoneo:focus-visible .slash-footer-idoneo-bolt {
  animation: slash-idoneo-bolt-strike 0.68s ease-out;
}

.slash-footer-idoneo img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 36px;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.slash-footer-idoneo:hover img,
.slash-footer-idoneo:focus-visible img {
  animation: slash-idoneo-logo-flicker 0.68s ease-out;
}

.slash-footer-idoneo:not(:hover):not(:focus-visible) img {
  animation: none;
  filter: none;
  transform: none;
}

.slash-footer-idoneo-word {
  position: absolute;
  bottom: calc(100% + 0.55rem);
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.1em;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(-50%);
}

.slash-footer-idoneo-letter {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--slash-ink);
  opacity: 0;
  filter: blur(10px);
  transform: translateY(10px) scale(1.55);
  text-shadow: 0 0 14px rgba(61, 214, 140, 0.75);
}

.slash-footer-idoneo:hover .slash-footer-idoneo-word,
.slash-footer-idoneo:focus-visible .slash-footer-idoneo-word {
  visibility: visible;
}

.slash-footer-idoneo:hover .slash-footer-idoneo-letter,
.slash-footer-idoneo:focus-visible .slash-footer-idoneo-letter {
  animation: slash-idoneo-letter-dissolve-in 0.52s cubic-bezier(0.22, 1, 0.36, 1);
  animation-delay: calc(0.42s + (var(--letter-index) * 0.06s));
}

.slash-footer-idoneo:not(:hover):not(:focus-visible) .slash-footer-idoneo-letter {
  animation: none;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(10px) scale(1.55);
  text-shadow: 0 0 14px rgba(61, 214, 140, 0.75);
}

.slash-footer-idoneo:focus-visible {
  outline: none;
}

@keyframes slash-idoneo-letter-dissolve-in {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(12px) scale(1.65);
    text-shadow:
      0 0 16px rgba(255, 255, 255, 0.95),
      0 0 24px rgba(61, 214, 140, 0.85);
  }

  35% {
    opacity: 0.55;
    filter: blur(5px);
    transform: translateY(4px) scale(1.15);
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.65),
      0 0 16px rgba(61, 214, 140, 0.55);
  }

  65% {
    opacity: 0.92;
    filter: blur(1px);
    transform: translateY(-1px) scale(1.03);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
    text-shadow: 0 0 10px rgba(61, 214, 140, 0.22);
  }
}

@keyframes slash-idoneo-flash-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
  }

  14% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }

  28% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(1.25);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.45);
  }
}

@keyframes slash-idoneo-flash-ring {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.85);
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.85),
      0 0 18px 2px rgba(61, 214, 140, 0.55);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.55);
    box-shadow:
      0 0 0 18px rgba(255, 255, 255, 0),
      0 0 28px 8px rgba(61, 214, 140, 0);
  }
}

@keyframes slash-idoneo-bolt-strike {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.35) rotate(-10deg);
  }

  10% {
    opacity: 1;
    transform: scale(1.2) rotate(-4deg);
  }

  16% {
    opacity: 0.15;
    transform: scale(0.95) rotate(-8deg);
  }

  22% {
    opacity: 1;
    transform: scale(1.05) rotate(-6deg);
  }

  30% {
    opacity: 0.25;
  }

  38% {
    opacity: 0.85;
    transform: scale(1) rotate(-7deg);
  }

  55% {
    opacity: 0;
  }
}

@keyframes slash-idoneo-logo-flicker {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }

  8% {
    transform: scale(1.14);
    filter: brightness(2.8) saturate(0) drop-shadow(0 0 16px rgba(255, 255, 255, 0.95));
  }

  14% {
    transform: scale(1.06);
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(61, 214, 140, 0.45));
  }

  20% {
    transform: scale(1.12);
    filter: brightness(2.2) drop-shadow(0 0 14px rgba(170, 255, 220, 0.85));
  }

  32% {
    transform: scale(1.08);
    filter: brightness(1.25) drop-shadow(0 0 12px rgba(61, 214, 140, 0.55));
  }
}

/* ── Motion (Lenis + GSAP) ── */

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

html.lenis.lenis-stopped {
  overflow: hidden;
}

html.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.slash-nav.is-scrolled {
  background: rgba(8, 9, 11, 0.94);
  border-bottom-color: var(--slash-border-strong);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.slash-btn-accent {
  will-change: transform;
}

html.slash-motion-off .slash-hero-shot,
html.slash-motion-off .slash-hero-shot img,
html.slash-motion-off .slash-btn-accent {
  will-change: auto;
}

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

  .slash-hero-shot,
  .slash-hero-shot img,
  .slash-btn-accent {
    will-change: auto;
  }

  .slash-shine-badge,
  .slash-hero-shine,
  .slash-statband::before,
  .slash-pricing-card.is-featured,
  .slash-pricing-card.is-featured::before {
    animation: none;
  }

  .slash-btn-accent::after {
    display: none;
  }

  .slash-glow {
    opacity: 0.25;
  }

  .slash-footer-idoneo::before,
  .slash-footer-idoneo::after,
  .slash-footer-idoneo-bolt,
  .slash-footer-idoneo-letter,
  .slash-footer-idoneo img {
    animation: none !important;
  }

  .slash-footer-idoneo:hover img,
  .slash-footer-idoneo:focus-visible img {
    transform: scale(1.06);
    filter: brightness(1.12) drop-shadow(0 0 8px rgba(61, 214, 140, 0.35));
  }

  .slash-footer-powered::before,
  .slash-footer-powered:hover .slash-footer-powered-by,
  .slash-footer-powered:focus-visible .slash-footer-powered-by,
  .slash-footer-powered:hover .slash-footer-powered-by::before,
  .slash-footer-powered:focus-visible .slash-footer-powered-by::before,
  .slash-footer-powered:hover .slash-footer-powered-by::after,
  .slash-footer-powered:focus-visible .slash-footer-powered-by::after,
  .slash-footer-powered:hover img,
  .slash-footer-powered:focus-visible img {
    animation: none !important;
  }

  .slash-footer-powered:hover .slash-footer-powered-by,
  .slash-footer-powered:focus-visible .slash-footer-powered-by {
    background-image: none;
    background-clip: border-box;
    -webkit-background-clip: border-box;
    color: var(--slash-ink);
    -webkit-text-fill-color: currentColor;
    filter: none;
    transform: none;
  }

  .slash-footer-idoneo:hover .slash-footer-idoneo-word,
  .slash-footer-idoneo:focus-visible .slash-footer-idoneo-word {
    visibility: visible;
  }

  .slash-footer-idoneo:hover .slash-footer-idoneo-letter,
  .slash-footer-idoneo:focus-visible .slash-footer-idoneo-letter {
    opacity: 1;
    filter: none;
    transform: none;
    text-shadow: none;
  }
}

/* Lead modal */

body.slash-lead-modal-open {
  overflow: hidden;
}

.slash-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.slash-lead-modal[hidden] {
  display: none;
}

.slash-lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 12, 0.72);
  backdrop-filter: blur(8px);
}

.slash-lead-modal-dialog {
  position: relative;
  width: min(100%, 28rem);
  padding: 1.75rem 1.6rem 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--slash-border-strong);
  background: linear-gradient(180deg, rgba(18, 24, 32, 0.98), rgba(10, 14, 20, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.slash-lead-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--slash-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.slash-lead-modal-close:hover {
  color: var(--slash-ink);
  background: rgba(255, 255, 255, 0.1);
}

.slash-lead-modal-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slash-accent);
}

.slash-lead-modal-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  line-height: 1.25;
  color: var(--slash-ink);
}

.slash-lead-modal-subtitle,
.slash-lead-modal-email {
  margin: 0 0 1rem;
  color: var(--slash-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.slash-lead-modal-email {
  color: var(--slash-ink);
  font-weight: 500;
}

.slash-lead-modal-form {
  display: grid;
  gap: 0.85rem;
}

.slash-lead-modal-field {
  display: grid;
  gap: 0.35rem;
}

.slash-lead-modal-field span {
  font-size: 0.88rem;
  color: var(--slash-muted);
}

.slash-lead-modal-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--slash-border-strong);
  background: var(--slash-bg-card);
  color: var(--slash-ink);
  font: inherit;
}

.slash-lead-modal-field input:focus {
  outline: none;
  border-color: var(--slash-accent);
  box-shadow: 0 0 0 4px var(--slash-accent-soft);
}

.slash-lead-modal-actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.slash-lead-modal-actions .slash-btn {
  width: 100%;
  justify-content: center;
}
