:root {
  --bg: #000000;
  --surface: #0a0a0a;
  --surface-2: #111111;
  --accent: #ffffff;
  --accent-soft: #d1d5db;
  --accent-muted: #ffffff;
  --text: #ffffff;
  --text-soft: #d1d5db;
  --border: #27272a;
  --radius: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.6);
  --btn-primary-bg: transparent;
  --btn-primary-color: #ffffff;
  --btn-primary-border: #ffffff;
  --footer-bg: #000000;
  --footer-color: rgba(255,255,255,0.92);
  --km-burgundy: #82010a;
  --km-blush: #d4c2be;
  --km-sky: #90a5b8;
  --km-orange: #dd432b;
  --km-charcoal: #0c0c0b;
  --km-yellow: #ffec00;
  --km-gold: #a57d4c;
  --km-gray: #707070;
}

/* Modo claro opcional */
:root[data-theme="light"] {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #fafafa;
  --accent: #0a0a0a;
  --accent-soft: #525252;
  --accent-muted: #111111;
  --text: #0a0a0a;
  --text-soft: #6b7280;
  --border: #e5e7eb;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --btn-primary-bg: #000000;
  --btn-primary-color: #ffffff;
  --btn-primary-border: #000000;
  --footer-bg: #111111;
  --footer-color: rgba(255,255,255,0.9);
}

* {
  box-sizing: border-box;
}
html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a {
  color: var(--accent-muted);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 10, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.site-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
}

.logo-mark { color: var(--accent-muted); font-size: 1.5rem; }
.logo-img { height: 28px; width: auto; display: block; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.nav-link--highlight {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.nav-link--highlight:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 767px) {
  .site-header-inner {
    padding: 0.9rem 1.25rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 1.25rem;
    left: 1.25rem;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.1rem;
    background: rgba(12, 12, 11, 0.96);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .nav-link {
    width: 100%;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
  }

  .site-nav .nav-link--highlight {
    background: linear-gradient(135deg, rgba(221, 67, 43, 0.9), rgba(130, 1, 10, 0.85));
    border-color: rgba(221, 67, 43, 0.95);
    box-shadow: 0 16px 32px rgba(130, 1, 10, 0.35);
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-link {
    position: relative;
    padding: 0.35rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav-link:hover {
    border: 0;
    background: transparent;
  }

  .nav-link:not(.nav-link--highlight)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: linear-gradient(90deg, rgba(221, 67, 43, 0.0), rgba(221, 67, 43, 0.45), rgba(221, 67, 43, 0.0));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
  }

  .nav-link:not(.nav-link--highlight):hover::after {
    transform: scaleX(1);
  }

  .nav-link--highlight {
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-link--highlight:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.16);
  }
}


.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: #141414;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.menu-toggle:hover {
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.24);
}

.menu-toggle-lines {
  display: grid;
  gap: 6px;
}

.menu-toggle-lines span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .menu-toggle {
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.28);
  color: #141414;
}

.site-header.is-menu-open .menu-toggle-lines span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle-lines span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  display: grid;
  gap: 2.5rem;
  padding: 5rem 1.5rem 4rem;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-copy p {
  color: var(--text-soft);
  margin-bottom: 1.75rem;
  max-width: 40ch;
}
.hero-sub { color: #fff; opacity: 0.92; }

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.pill-btn { border: 1px solid rgba(255, 255, 255, 0.25); color: var(--accent); background: var(--surface); font-weight: 600; padding: 0.85rem 1.6rem; border-radius: var(--radius-pill); cursor: pointer; transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease; }

.pill-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08); }

.pill-btn.is-primary { background: var(--btn-primary-bg); color: var(--btn-primary-color); border-color: var(--btn-primary-border); }

.hero-highlights {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text-soft);
}

.hero.hero--centered {
  position: relative;
  display: block;
  padding: 6.5rem 0 5.5rem;
  isolation: isolate;
  background: radial-gradient(140% 120% at 50% -20%, rgba(130, 1, 10, 0.5), transparent 55%);
}

.hero.hero--centered::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(95% 80% at 50% 0%, rgba(221, 67, 43, 0.35), transparent 65%);
  opacity: 0.85;
  z-index: -1;
}

.hero.hero--centered::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 11, 0) 0%, rgba(12, 12, 11, 0.9) 100%);
  opacity: 0.5;
  z-index: -2;
}

.hero--centered .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  gap: 1.6rem;
  justify-items: center;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero--centered h1 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 1.05;
  margin: 0;
}

.hero--centered .hero-sub {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
}

.hero--centered .hero-cta {
  justify-content: center;
}

.hero--centered .hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero--centered .hero-highlights li {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(0.78rem, 2.4vw, 0.92rem);
  line-height: 1.35;
  max-width: min(100%, 18rem);
  text-align: left;
}

.hero--centered .hero-highlights li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  margin-top: 0.25rem;
}

.hero-card {
  display: none;
  padding: 2.5rem;
}

.hero-card-inner { background: #111; color: #fff; border-radius: var(--radius); padding: 2.5rem; box-shadow: 0 30px 60px rgba(0,0,0,0.12); }

.hero-card-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.hero-card-copy {
  margin: 0;
  opacity: 0.9;
}

.flows { padding: 0 1.5rem 3.5rem; }

.flows h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.flow-grid {
  display: grid;
  gap: 1.5rem;
}

.flow-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06); }

.flow-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }

.flow-card p {
  margin-bottom: 1.25rem;
  color: var(--text-soft);
}

.flow-card ul {
  padding-left: 1.25rem;
  margin: 0;
  color: var(--text-soft);
  display: grid;
  gap: 0.4rem;
}

.onboarding { background: var(--bg); padding: 3.5rem 0 4.5rem; }

.tabs {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(248, 250, 252, 0.8);
  padding: 0.25rem;
  margin-bottom: 2.5rem;
}

.tab {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0.85rem 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--text-soft);
  transition: background 0.2s ease, color 0.2s ease;
}

.tab.is-active {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

/* CTA grid for separated onboardings */
.onboarding-list { padding: 1rem 1.5rem 4rem; }
.cta-grid { display: grid; gap: 1.25rem; }
.cta-card { display: block; text-decoration: none; color: inherit; }
.cta-body {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.cta-card:hover .cta-body { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.18); border-color: rgba(255,255,255,0.2); }
.cta-body .pill-btn.is-primary { background: #ffffff; color: #000000; border-color: #ffffff; }
.cta-body h3 { margin: 0 0 0.5rem 0; }
.cta-body p { margin: 0 0 1rem 0; color: var(--text-soft); }

.panels {
  display: grid;
}

.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.25rem; box-shadow: none; max-width: 760px; width: 100%; margin: 0 auto; }

.panel-header {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.badge { width: fit-content; background: rgba(255, 255, 255, 0.12); color: #fff; padding: 0.35rem 0.75rem; border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

.form { display: grid; gap: 2.25rem; width: 100%; }

.form-group {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.form-group legend {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label,
.field .field-label {
  font-weight: 500;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea { width: 100%; min-width: 0; border: 1px solid var(--border); border-radius: 12px; padding: 0.85rem 0.95rem; font-size: 0.95rem; background: var(--surface); color: var(--text); transition: border 0.2s ease, box-shadow 0.2s ease; }

.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: rgba(255, 255, 255, 0.9); box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1); }

.field textarea {
  resize: vertical;
}

/* Placeholders legibles en dark */
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-soft);
}

.field .hint {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin: 0;
}

.field.is-inline {
  display: grid;
  gap: 1rem;
}

.is-checkbox {
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  display: inline-grid;
  gap: 0.6rem;
}

.is-checkbox input {
  width: 1.1rem;
  height: 1.1rem;
}

.is-file input { padding: 0.65rem 0.9rem; background: var(--surface); }

.options-grid {
  display: grid;
  gap: 0.6rem;
}

.options-inline {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.option { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text); background: var(--surface-2); border: 1px solid var(--border); padding: 0.5rem 0.6rem; border-radius: 8px; }

.form-footer {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.legal {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.metrics {
  padding: 4rem 1.5rem 5rem;
}

.metrics h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.metric-grid {
  display: grid;
  gap: 1rem;
}

.metric { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; box-shadow: none; display: grid; gap: 0.35rem; }

.metric-value {
  font-weight: 600;
  font-size: 1.5rem;
}

.metric-label {
  color: var(--text-soft);
  margin: 0;
}

.metrics-note {
  margin-top: 1.5rem;
  color: var(--text-soft);
}

.site-footer { background: var(--footer-bg); color: var(--footer-color); padding: 2.5rem 1.5rem; }

.site-footer .container {
  display: grid;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.toast { position: fixed; left: 50%; bottom: 1.5rem; transform: translateX(-50%); padding: 1rem 1.5rem; background: #111; color: #fff; border-radius: var(--radius-pill); box-shadow: 0 14px 32px rgba(0,0,0,0.16); opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease; }

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, -10px);
  pointer-events: auto;
}

.success {
  padding: 4rem 0;
}

.success-body {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 2.5rem 2rem;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.success-body h2 {
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .site-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    padding: 6rem 1.5rem 5rem;
  }

  .hero-card {
    display: block;
  }

  .flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .usecases-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .measures-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  body { font-size: 18px; }

  .panel {
    padding: 2.5rem 2.5rem;
  }

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

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

  .site-footer .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

}

@media (min-width: 900px) {
  .panel {
    padding: 3rem;
  }

  .form {
    gap: 2.75rem;
  }

  .form-group {
    gap: 2rem;
  }

}

@media (min-width: 900px) {
  .spotlight-stage {
    width: min(62vw, 420px);
  }
}

.is-visible {
  display: block;
}

.hidden {
  display: none !important;
}

input.error,
select.error,
textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.field .error-message {
  color: #b91c1c;
  font-size: 0.8rem;
  margin: 0;
}


/* Spotlight section */
.spotlight {
  position: relative;
  padding: 0;
  margin: 0;
  background: #000;
}

/* Ensure the sticky wrapper has a solid black background */
#inicio > section.spotlight > .spotlight-scroll > .spotlight-sticky {
  background: #000;
}

.spotlight-scroll {
  position: relative;
  /* Reduce excessive height to remove empty bottom gap */
  height: 160vh;
  background: radial-gradient(85% 60% at 50% 10%, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0))
    rgba(4, 7, 15, 0.72);
  color: #fff;
}

.spotlight-sticky {
  position: sticky;
  top: 0;
  /* Use small viewport unit for better mobile behavior */
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(3rem, 10vh, 5rem) 1.5rem;
  overflow: hidden;
}

.spotlight-content {
  display: grid;
  justify-items: center;
  gap: clamp(2.5rem, 6vh, 3.5rem);
  width: 100%;
}

.spotlight-copy {
  display: grid;
  gap: 0.75rem;
  text-align: center;
  max-width: min(32rem, calc(100vw - 3rem));
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
}

.spotlight-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0;
  color: #fff;
}

.spotlight-copy p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
}

.spotlight-stage {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 500px;
  margin-inline: auto;
  perspective: 2000px;
  overflow: visible;
}

.spotlight-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.spotlight-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  overflow: visible;
}

.spotlight-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-carousel[data-dragging="true"] .spotlight-track {
  transition: none;
}

.spotlight-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 320px;
  margin: -160px 0 0 -90px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.spotlight-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  color: #fff;
}

.spotlight-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 1 !important;
}

.spotlight-card-caption {
  display: none !important;
}

.spotlight-card-caption h2 {
  display: none !important;
}

.spotlight-card-caption em {
  display: none !important;
}

.spotlight-card-caption p {
  display: none !important;
}

.spotlight-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.65);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  z-index: 2;
}

.spotlight-nav span {
  font-size: 1.45rem;
  line-height: 1;
}

.spotlight-nav--prev {
  left: 0.5rem;
}

.spotlight-nav--next {
  right: 0.5rem;
}

.spotlight-nav:hover:not(:disabled),
.spotlight-nav:focus-visible:not(:disabled) {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(148, 163, 184, 0.5);
  transform: translateY(-50%) scale(1.05);
}

.spotlight-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.spotlight-nav:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
}

.spotlight-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.spotlight-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.spotlight-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.spotlight-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .spotlight-stage {
    height: 450px;
    perspective: 1000px;
  }

  .spotlight-slide {
    width: 162px;
    height: 288px;
    margin: -144px 0 0 -81px;
  }
}

@media (max-width: 768px) {
  .spotlight-scroll {
    /* Tighter height on mobile to avoid large empty space */
    height: 150vh;
    background: linear-gradient(180deg, rgba(4, 7, 15, 0.9) 0%, rgba(4, 7, 15, 0.68) 100%);
  }

  .spotlight-stage {
    height: 450px;
    perspective: 1500px;
  }

  .spotlight-slide {
    width: 160px;
    height: 256px;
    margin: -128px 0 0 -80px;
  }

  /* Hide navigation on mobile - touch only */
  .spotlight-nav {
    display: none;
  }

  .spotlight-dots {
    display: none;
  }
}


/* Spotlight section */
.spotlight {
  position: relative;
  padding: 0;
  margin: 0;
  background: #000;
}

.spotlight-scroll {
  position: relative;
  /* Reduce excessive height to remove empty bottom gap */
  height: 160vh;
  background: radial-gradient(85% 60% at 50% 10%, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0))
    rgba(4, 7, 15, 0.72);
  color: #fff;
}

.spotlight-sticky {
  position: sticky;
  top: 0;
  /* Use small viewport unit for better mobile behavior */
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(3rem, 10vh, 5rem) 1.5rem;
  overflow: hidden;
}

.spotlight-content {
  display: grid;
  justify-items: center;
  gap: clamp(2.5rem, 6vh, 3.5rem);
  width: 100%;
}

.spotlight-copy {
  display: grid;
  gap: 0.75rem;
  text-align: center;
  max-width: min(32rem, calc(100vw - 3rem));
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
}

.spotlight-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0;
  color: #fff;
}

.spotlight-copy p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
}

.spotlight-stage {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 500px;
  margin-inline: auto;
  perspective: 2000px;
  overflow: visible;
}

.spotlight-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.spotlight-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  overflow: visible;
}

.spotlight-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-carousel[data-dragging="true"] .spotlight-track {
  transition: none;
}

.spotlight-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 320px;
  margin: -160px 0 0 -90px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.spotlight-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  color: #fff;
}

.spotlight-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 1 !important;
}

.spotlight-card-caption {
  display: none !important;
}

.spotlight-card-caption h2 {
  display: none !important;
}

.spotlight-card-caption em {
  display: none !important;
}

.spotlight-card-caption p {
  display: none !important;
}

.spotlight-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.65);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  z-index: 2;
}

.spotlight-nav span {
  font-size: 1.45rem;
  line-height: 1;
}

.spotlight-nav--prev {
  left: 0.5rem;
}

.spotlight-nav--next {
  right: 0.5rem;
}

.spotlight-nav:hover:not(:disabled),
.spotlight-nav:focus-visible:not(:disabled) {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(148, 163, 184, 0.5);
  transform: translateY(-50%) scale(1.05);
}

.spotlight-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.spotlight-nav:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
}

.spotlight-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.spotlight-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.spotlight-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.spotlight-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .spotlight-stage {
    height: 450px;
    perspective: 1000px;
  }

  .spotlight-slide {
    width: 162px;
    height: 288px;
    margin: -144px 0 0 -81px;
  }
}

@media (max-width: 768px) {
  .spotlight-scroll {
    /* Tighter height on mobile to avoid large empty space */
    height: 150vh;
    background: linear-gradient(180deg, rgba(4, 7, 15, 0.9) 0%, rgba(4, 7, 15, 0.68) 100%);
  }

  .spotlight-stage {
    height: 450px;
    perspective: 1500px;
  }

  .spotlight-slide {
    width: 160px;
    height: 256px;
    margin: -128px 0 0 -80px;
  }

  /* Hide navigation on mobile - touch only */
  .spotlight-nav {
    display: none;
  }

  .spotlight-dots {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
  .cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.section { padding: 3rem 1.5rem; }
.section h2 { font-size: 2rem; margin: 0 0 1.25rem 0; }
.grid-2 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr);
}
.spotlight {
  position: relative;
  padding: 0;
  margin: 0;
}

.spotlight-scroll {
  position: relative;
  /* Reduce excessive height to remove empty bottom gap */
  height: 160vh;
  background: radial-gradient(85% 60% at 50% 10%, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0))
    rgba(4, 7, 15, 0.72);
  color: #fff;
}

.spotlight-sticky {
  position: sticky;
  top: 0;
  /* Use small viewport unit for better mobile behavior */
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(3rem, 10vh, 5rem) 1.5rem;
  overflow: hidden;
}

.spotlight-content {
  display: grid;
  justify-items: center;
  gap: clamp(2.5rem, 6vh, 3.5rem);
  width: 100%;
}

.spotlight-copy {
  display: grid;
  gap: 0.75rem;
  text-align: center;
  max-width: min(32rem, calc(100vw - 3rem));
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
}

.spotlight-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0;
  color: #fff;
}

.spotlight-copy p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
}

.spotlight-stage {
  position: relative;
  width: clamp(150px, 40vw, 220px);
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  touch-action: pan-y;
}

.spotlight-scene {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
}

.spotlight-ring {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.spotlight-card {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  backface-visibility: hidden;
  will-change: transform;
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.45);
  filter: saturate(1);
  opacity: 1 !important;
  pointer-events: none;
  transition: opacity 0.35s ease, filter 0.35s ease;
}

.spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
}

.spotlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
}

.spotlight-card.is-front {
  opacity: 1 !important;
  filter: saturate(1);
}

.spotlight-card.is-left,
.spotlight-card.is-right {
  opacity: 1 !important;
  filter: saturate(1);
}

.spotlight-card.is-back {
  opacity: 1 !important;
  filter: saturate(1);
}

@media (max-width: 1024px) {
  .spotlight-stage {
    height: 450px;
    perspective: 1000px;
  }

  .spotlight-slide {
    width: 162px;
    height: 288px;
    margin: -144px 0 0 -81px;
  }
}

@media (max-width: 768px) {
  .spotlight-scroll {
    /* Tighter height on mobile to avoid large empty space */
    height: 150vh;
    background: linear-gradient(180deg, rgba(4, 7, 15, 0.9) 0%, rgba(4, 7, 15, 0.68) 100%);
  }

  .spotlight-stage {
    width: clamp(150px, 70vw, 200px);
  }

  .spotlight-scene {
    height: 100%;
    perspective: 900px;
  }

  .spotlight-card {
    width: 100%;
    height: 100%;
  }
}
.card-simple { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; display: grid; gap: 1rem; }
.bullets { margin: 0 0 0.75rem 0; padding-left: 1.25rem; color: var(--text-soft); }
.chip-strip {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  border-radius: var(--radius);
  padding: 0.35rem 0;
  mask-image: linear-gradient(to right, transparent, rgba(0,0,0,0.9) 12%, rgba(0,0,0,0.9) 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, rgba(0,0,0,0.9) 12%, rgba(0,0,0,0.9) 88%, transparent);
}

.chip-strip::before,
.chip-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  background: linear-gradient(to right, rgba(11, 11, 11, 0.95), rgba(11, 11, 11, 0));
  z-index: 1;
}

.chip-strip::before { left: 0; }
.chip-strip::after { right: 0; transform: rotate(180deg); }

.chip-track {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 100%;
  -webkit-animation-name: chip-marquee-left;
  -webkit-animation-duration: 26s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-name: chip-marquee-left;
  animation-duration: 26s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.chip-strip .chip-track:nth-child(2) {
  -webkit-animation-duration: 28s;
  -webkit-animation-delay: -8s;
  animation-duration: 28s;
  animation-delay: -8s;
}

.chip-strip .chip-track:nth-child(3) {
  -webkit-animation-duration: 24s;
  -webkit-animation-delay: -12s;
  animation-duration: 24s;
  animation-delay: -12s;
}

.chip-track.is-right {
  -webkit-animation-name: chip-marquee-right;
  animation-name: chip-marquee-right;
}

.chip-track-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.chips { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
}
@-webkit-keyframes chip-marquee-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes chip-marquee-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@-webkit-keyframes chip-marquee-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes chip-marquee-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .chip-track {
    -webkit-animation: none;
    animation: none;
  }
}

.chip--food {
  background: linear-gradient(140deg, rgba(130, 1, 10, 0.94), rgba(221, 67, 43, 0.85));
  border-color: rgba(221, 67, 43, 0.9);
}

.chip--relax {
  background: linear-gradient(135deg, rgba(212, 194, 190, 0.95), rgba(130, 1, 10, 0.55));
  border-color: rgba(212, 194, 190, 0.85);
  color: #1f1410;
}

.chip--fitness {
  background: linear-gradient(135deg, rgba(144, 165, 184, 0.92), rgba(28, 57, 80, 0.75));
  border-color: rgba(144, 165, 184, 0.9);
}

.chip--brunch {
  background: linear-gradient(140deg, rgba(221, 67, 43, 0.92), rgba(255, 181, 99, 0.75));
  border-color: rgba(221, 67, 43, 0.88);
}

.chip--beauty {
  background: linear-gradient(145deg, rgba(12, 12, 11, 0.92), rgba(75, 60, 58, 0.8));
  border-color: rgba(75, 60, 58, 0.85);
}

.chip--travel {
  background: linear-gradient(140deg, rgba(255, 236, 0, 0.92), rgba(165, 125, 76, 0.88));
  border-color: rgba(255, 236, 0, 0.95);
  color: #151003;
}

.chip--hospitality {
  background: linear-gradient(140deg, rgba(165, 125, 76, 0.94), rgba(90, 61, 33, 0.9));
  border-color: rgba(165, 125, 76, 0.9);
}

.chip--neutral {
  background: linear-gradient(135deg, rgba(112, 112, 112, 0.9), rgba(45, 45, 45, 0.85));
  border-color: rgba(112, 112, 112, 0.85);
}

.chip--tech {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(14, 66, 146, 0.85));
  border-color: rgba(59, 130, 246, 0.85);
}

.chip--gaming {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.88), rgba(59, 7, 100, 0.85));
  border-color: rgba(168, 85, 247, 0.9);
}

.chip--fashion {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.88), rgba(190, 24, 93, 0.82));
  border-color: rgba(236, 72, 153, 0.9);
}

.chip--home {
  background: linear-gradient(135deg, rgba(248, 191, 132, 0.88), rgba(217, 119, 6, 0.82));
  border-color: rgba(214, 158, 64, 0.9);
  color: #221200;
}

.chip--wellness {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.88), rgba(16, 95, 70, 0.82));
  border-color: rgba(52, 211, 153, 0.85);
}

.chip--events {
  background: linear-gradient(135deg, rgba(255, 102, 102, 0.88), rgba(220, 38, 38, 0.82));
  border-color: rgba(248, 113, 113, 0.9);
}

.chip--education {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.88), rgba(30, 64, 175, 0.8));
  border-color: rgba(96, 165, 250, 0.85);
}

.chip--auto {
  background: linear-gradient(135deg, rgba(156, 163, 175, 0.88), rgba(55, 65, 81, 0.82));
  border-color: rgba(156, 163, 175, 0.9);
}

.chip--eco {
  background: linear-gradient(135deg, rgba(134, 239, 172, 0.9), rgba(22, 163, 74, 0.85));
  border-color: rgba(74, 222, 128, 0.85);
  color: #053d1c;
}

.chip--kids {
  background: linear-gradient(135deg, rgba(249, 168, 212, 0.88), rgba(96, 165, 250, 0.85));
  border-color: rgba(96, 165, 250, 0.8);
}

.chip--pets {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.88), rgba(234, 179, 8, 0.82));
  border-color: rgba(217, 119, 6, 0.85);
  color: #2d1c00;
}

.chip--fintech {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(20, 83, 45, 0.85));
  border-color: rgba(34, 197, 94, 0.85);
}

.chip--music {
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.88), rgba(99, 102, 241, 0.85));
  border-color: rgba(129, 140, 248, 0.9);
}

.chip--art {
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.88), rgba(244, 63, 94, 0.82));
  border-color: rgba(251, 113, 133, 0.9);
}

.chip--health {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.9), rgba(59, 130, 246, 0.82));
  border-color: rgba(56, 189, 248, 0.85);
  color: #042f47;
}

.chip--services {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.16), rgba(148, 163, 184, 0.78));
  border-color: rgba(148, 163, 184, 0.8);
}

.chip--impact {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.88), rgba(129, 140, 248, 0.82));
  border-color: rgba(236, 72, 153, 0.85);
}

.faq { display: grid; gap: 0.75rem; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1rem; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--text-soft); margin: 0.5rem 0 0 0; }
.cta-final { padding-top: 0; }
.cta-final-inner { background: #0a0a0a; border: 1px solid var(--border); border-radius: 16px; padding: 2rem; text-align: center; }
.usecases-grid { display: grid; gap: 1.25rem; }
.usecase-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; display: grid; gap: 0.75rem; }
.usecase-card h3 { margin: 0; font-size: 1.1rem; }
.usecase-card p { margin: 0; color: var(--text-soft); }
.measures-grid { display: grid; gap: 1.25rem; }
.measure-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.25rem; }
.measure-card h3 { margin: 0 0 0.25rem 0; font-size: 1.05rem; }
.measure-card p { margin: 0; color: var(--text-soft); }
.tab-panels { display: grid; gap: 2rem; }
.tab-panel[hidden] { display: none; }

.wizard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem 1.75rem;
  display: grid;
  gap: 2.25rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

@media (min-width: 768px) {
  .wizard { padding: 2.5rem 3rem; }
}

.wizard-header { display: grid; gap: 0.8rem; }
.wizard-header h1,
.wizard-header h2,
.wizard-header h3 { margin: 0; }
.wizard-header h2 { font-size: 1.75rem; letter-spacing: -0.01em; }
.wizard-subtitle { margin: 0; color: var(--text-soft); max-width: 58ch; }

.wizard-progress { display: grid; gap: 0.75rem; position: relative; }
.wizard-progress-track { position: relative; height: 4px; border-radius: 999px; overflow: hidden; background: rgba(255, 255, 255, 0.08); }
.wizard-progress-fill { position: absolute; inset: 0; width: var(--progress, 0%); background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), #ffffff); transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1); filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.35)); }
.wizard-progress-fill.is-animating { animation: progress-glow 0.8s ease; }
@keyframes progress-glow {
  0% { filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0.0)); opacity: 0.7; }
  40% { filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.55)); opacity: 1; }
  100% { filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.35)); opacity: 1; }
}
@keyframes step-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 255, 255, 0.0); }
  50% { transform: scale(1.38); box-shadow: 0 0 22px rgba(255, 255, 255, 0.55); }
  100% { transform: scale(1.25); box-shadow: 0 0 18px rgba(255, 255, 255, 0.45); }
}
.wizard-progress-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: center; gap: 0.5rem; margin: 0; padding: 0; list-style: none; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.45); }
.wizard-progress-step { position: relative; display: grid; gap: 0.45rem; justify-items: center; text-align: center; }
.wizard-progress-step::before { content: ''; width: 12px; height: 12px; border-radius: 999px; border: 2px solid rgba(255, 255, 255, 0.35); background: rgba(255, 255, 255, 0.18); transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; box-shadow: 0 0 0 rgba(255, 255, 255, 0.0); }
.wizard-progress-step.is-active { color: #ffffff; }
.wizard-progress-step.is-active::before { background: #ffffff; border-color: #ffffff; transform: scale(1.25); box-shadow: 0 0 18px rgba(255, 255, 255, 0.45); animation: step-pulse 0.9s ease; }
.wizard-progress-step.is-complete { color: rgba(255, 255, 255, 0.85); }
.wizard-progress-step.is-complete::before { background: rgba(255, 255, 255, 0.85); border-color: rgba(255, 255, 255, 0.85); box-shadow: 0 0 12px rgba(255, 255, 255, 0.35); }

.wizard-step { display: grid; gap: 1.75rem; }
.wizard-step[hidden] { display: none; }

.step-head { display: grid; gap: 0.35rem; }
.step-head h3 { margin: 0; font-size: 1.35rem; }
.step-head p { margin: 0; color: var(--text-soft); max-width: 60ch; }

.form-alert {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
}

.form-grid { display: grid; gap: 1.25rem; }

@media (min-width: 768px) {
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid .form-field.full { grid-column: span 2; }
}

.form-field { display: grid; gap: 0.45rem; }
.form-label { font-weight: 600; font-size: 0.95rem; }
.form-hint { margin: 0; font-size: 0.8rem; color: var(--text-soft); }
.form-counter { margin: -0.25rem 0 0; font-size: 0.75rem; color: var(--text-soft); text-align: right; }

.form-input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.08); }

.form-field.has-error .form-input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #f87171; background: rgba(248, 113, 113, 0.1); }

.form-error { margin: 0; font-size: 0.8rem; color: #fca5a5; }
.form-error--global { background: rgba(248, 113, 113, 0.12); border: 1px solid rgba(248, 113, 113, 0.35); border-radius: 12px; padding: 0.75rem 1rem; color: #fecaca; }

.is-hidden { display: none !important; }

.form-actions { display: flex; justify-content: flex-end; gap: 0.75rem; }
.form-actions .btn { min-width: 140px; }

.btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 14px;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); border-color: rgba(255, 255, 255, 0.4); }

.btn-primary { background: #ffffff; color: #0b1120; border-color: #ffffff; }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25); }

.option-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.option-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.option-pill:hover { border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.08); }

.option-pill input {
  width: 18px;
  height: 18px;
  accent-color: #0b1120;
}

.option-pill span { pointer-events: none; }
.option-pill input:checked + span { font-weight: 600; }

.option-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
}

.option-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #0b1120;
}

.media-preview-holder {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.75rem;
  display: grid;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
}

.media-preview img { max-width: 160px; border-radius: 10px; }

.wizard-success { text-align: center; display: grid; gap: 1.25rem; }
.wizard-success-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 20px; padding: 2.5rem 2rem; display: grid; gap: 1rem; }
.wizard-success-card h3 { margin: 0; font-size: 1.5rem; }
.wizard-success-card p { margin: 0; color: var(--text-soft); }

.metrics { padding: 4rem 1.5rem 5rem; }
.metric-grid { display: grid; gap: 1.25rem; }
.metric-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 1.5rem; display: grid; gap: 0.35rem; text-align: center; }
.metric-value { font-size: 2rem; font-weight: 700; margin: 0; }
.metric-label { margin: 0; color: var(--text-soft); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }

@media (min-width: 768px) {
  .metric-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
