:root {
  --navy-deep: #050a12;
  --navy: #0a1628;
  --navy-panel: #0d1f36;
  --gold: #d4af37;
  --gold-light: #f9e27d;
  --gold-dark: #8c6c25;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-box: rgba(255, 255, 255, 0.14);
  --cyan-glow: rgba(100, 190, 255, 0.08);
  --glass: rgba(10, 22, 42, 0.55);
  --glass-border: rgba(212, 175, 55, 0.2);
  --font-display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  margin: 0;
  min-height: 100%;
  position: relative;
  background:
    radial-gradient(ellipse 100% 70% at 50% -12%, rgba(212, 175, 55, 0.13), transparent 52%),
    radial-gradient(ellipse 55% 45% at 95% 15%, var(--cyan-glow), transparent),
    linear-gradient(180deg, #03060d 0%, #0a1628 42%, #050a14 100%);
}

body.theme-future::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.12) 75%, transparent 100%);
}

body.theme-future > header,
body.theme-future > main,
body.theme-future > footer {
  position: relative;
  z-index: 1;
}

h1, h2, h3, .brand-wordmark, .section-title {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.hudini-section-title,
.hero-shackle-headline {
  font-family: var(--font-display);
}

.hudini-hero__accent {
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  font-weight: 600;
}

.site-header {
  background: linear-gradient(180deg, rgba(4, 10, 22, 0.94), rgba(6, 14, 28, 0.88));
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.45),
    inset 0 -1px 0 rgba(212, 175, 55, 0.18);
}

.navbar-dark .nav-link {
  color: var(--muted) !important;
  font-weight: 600;
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link:focus {
  color: var(--gold-light) !important;
}

.border-gold-subtle {
  border-color: var(--border-gold) !important;
}

.brand-wordmark {
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-logo {
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 24px rgba(212, 175, 55, 0.15);
  flex-shrink: 0;
}

.brand-logo--nav {
  width: 56px;
  height: 56px;
}

.brand-logo--footer {
  width: 52px;
  height: 52px;
}

@media (min-width: 992px) {
  .brand-logo--nav {
    width: 64px;
    height: 64px;
  }

  .brand-logo--footer {
    width: 58px;
    height: 58px;
  }
}

/* Bootstrap 5.1 does not read --bs-btn-* variables; set color/bg/border explicitly. */
.btn-gold {
  color: var(--navy-deep);
  background-color: var(--gold);
  border-color: var(--gold);
  font-weight: 700;
  border-radius: 0.5rem;
  padding-inline: 1.35rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 4px 24px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  color: var(--navy-deep);
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 6px 32px rgba(212, 175, 55, 0.45);
}

.btn-check:focus + .btn-gold,
.btn-gold:focus {
  color: var(--navy-deep);
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.45);
}

.btn-gold:active,
.btn-gold.active,
.show > .btn-gold.dropdown-toggle {
  color: var(--white);
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline-gold {
  color: var(--gold-light);
  background-color: rgba(8, 18, 36, 0.4);
  border-color: var(--gold);
  font-weight: 700;
  border-radius: 0.5rem;
  padding-inline: 1.35rem;
  backdrop-filter: blur(8px);
}

.btn-outline-gold:hover {
  color: var(--white);
  background-color: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-light);
}

.btn-check:focus + .btn-outline-gold,
.btn-outline-gold:focus {
  color: var(--gold-light);
  background-color: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-light);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.35);
}

.btn-outline-gold:active,
.btn-outline-gold.active,
.show > .btn-outline-gold.dropdown-toggle {
  color: var(--white);
  background-color: rgba(212, 175, 55, 0.22);
  border-color: var(--gold-light);
}

.text-gold {
  color: var(--gold) !important;
}

.text-muted-custom {
  color: var(--muted) !important;
}

.section-bleed {
  position: relative;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(118deg, rgba(6, 16, 36, 0.97) 0%, rgba(3, 8, 20, 0.99) 48%, rgba(10, 28, 52, 0.94) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 70% 20%, rgba(212, 175, 55, 0.07), transparent 60%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 80%;
  background: radial-gradient(closest-side, rgba(212, 175, 55, 0.2), transparent 70%);
  pointer-events: none;
}

.hero-glow--pulse {
  animation: heroGlowPulse 8s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.05);
  }
}

/* Keep text and CTAs readable immediately — animate motion only (no opacity:0). */
.hero-stagger {
  opacity: 1;
  transform: translateY(18px);
  animation: heroLineIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-stagger-1 { animation-delay: 0.06s; }
.hero-stagger-2 { animation-delay: 0.14s; }
.hero-stagger-3 { animation-delay: 0.22s; }
.hero-stagger-4 { animation-delay: 0.3s; }
.hero-stagger-5 { animation-delay: 0.38s; }

@keyframes heroLineIn {
  to {
    transform: translateY(0);
  }
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: linear-gradient(145deg, rgba(19, 34, 56, 0.95), rgba(10, 26, 47, 0.9));
  border: 1px solid var(--border-gold);
  border-radius: 1.25rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

.shadow-gold {
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

.timeline li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.timeline li:last-child {
  margin-bottom: 0;
}

.timeline .dot {
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

.section {
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(6, 14, 28, 0.72), rgba(4, 10, 22, 0.88));
  border-block: 1px solid rgba(212, 175, 55, 0.14);
  backdrop-filter: blur(10px);
}

.tile {
  background: var(--glass);
  backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform-origin: center center;
}

/* Outer wrapper: transform is independent of inner tileEnter animation → smooth zoom */
.box-zoom {
  display: block;
  transform-origin: center center;
  transition:
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.box-zoom:hover {
  transform: scale(1.045);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.42);
  filter: brightness(1.04);
  z-index: 3;
  position: relative;
}

.box-zoom:active {
  transform: scale(1.02);
  transition-duration: 0.12s;
}

.box-zoom--tile {
  border-radius: 0.75rem;
}

.box-zoom--benefit {
  border-radius: 1rem;
}

.box-zoom--spotlight {
  border-radius: 1.25rem;
}

.box-zoom--panel {
  border-radius: 1.25rem;
}

.box-zoom--phone {
  border-radius: 2.5rem;
  padding: 4px;
}

.box-zoom--hero-screens {
  border-radius: 1.35rem;
  padding: 3px;
}

.hero-screens-wrap {
  width: fit-content;
  max-width: 100%;
}

.hero-screens-unified {
  border-radius: 1.2rem;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.48),
    rgba(255, 255, 255, 0.18),
    rgba(212, 175, 55, 0.3)
  );
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 55, 0.12);
}

.hero-screens-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.45rem;
  border-radius: 1.05rem;
  background: linear-gradient(165deg, rgba(24, 38, 54, 0.98), rgba(8, 14, 24, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-screens-pane {
  border-radius: 0.65rem;
  overflow: hidden;
  background: #0a0f16;
  min-height: 0;
}

.hero-screens-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  vertical-align: middle;
}

@media (min-width: 992px) {
  .hero-screens-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-screens-wrap {
    max-width: min(100%, 520px);
  }

  .hero-screens-pane {
    aspect-ratio: 9 / 17;
  }
}

@media (max-width: 991.98px) {
  .hero-screens-inner {
    grid-template-columns: 1fr 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-screens-pane {
    aspect-ratio: 9 / 16;
  }
}

.hero-screens-float {
  animation: phoneFloat 7s ease-in-out infinite;
}

.tile-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(10, 26, 47, 0.4));
  border: 1px solid var(--border-box);
}

.tile-icon-sm {
  width: 2.75rem;
  height: 2.75rem;
}

.glyph {
  width: 1.5rem;
  height: 1.5rem;
}

.benefit {
  background: rgba(8, 18, 36, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.panel {
  background: linear-gradient(165deg, rgba(12, 26, 48, 0.9), rgba(6, 14, 28, 0.95));
  border: 1px solid var(--glass-border);
  border-radius: 0.85rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(10, 26, 47, 0.2));
}

.cta {
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.12), rgba(10, 26, 47, 0.9));
  border-block: 1px solid var(--border-gold);
}

.page-hero {
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.9), rgba(10, 26, 47, 0.4));
  border-bottom: 1px solid var(--border-gold);
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.site-footer {
  background: linear-gradient(180deg, #02060c 0%, #050c18 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.08);
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  display: inline-block;
  padding: 0.2rem 0;
}

.footer-link:hover {
  color: var(--gold-light);
}

.bg-navy-input {
  background-color: rgba(10, 26, 47, 0.85) !important;
}

.bg-navy-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2);
}

.shackle-hero .hero-shackle-headline {
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.platform-title {
  line-height: 1.35;
}

.phone-mock {
  max-width: 280px;
  aspect-ratio: 9 / 18;
  border-radius: 2.25rem;
  padding: 0.65rem;
  background: linear-gradient(160deg, #1a2f4a, #0a1a2f);
  border: 2px solid var(--border-box);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
}

.phone-mock-notch {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 0.5rem;
  background: #070f1a;
  border-radius: 0 0 0.75rem 0.75rem;
  z-index: 2;
}

.phone-mock-inner {
  height: 100%;
  border-radius: 1.75rem;
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.15), transparent 45%),
    linear-gradient(180deg, #0d1b2a, #070f1a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
  overflow: hidden;
}

.phone-mock-logo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 2px solid var(--border-box);
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.phone-float {
  animation: phoneFloat 7s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.btn-animate {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-animate:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.btn-pulse-glow {
  animation: ctaGlow 3.5s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.35);
  }
  50% {
    box-shadow: 0 0 24px 4px rgba(249, 226, 125, 0.2);
  }
}

.page-section[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-section[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tile-animate,
.benefit-animate,
.spotlight-animate {
  opacity: 0;
  transform: translateY(22px);
}

.page-section.is-visible .tile-animate,
.page-section.is-visible .benefit-animate,
.page-section.is-visible .spotlight-animate {
  animation: tileEnter 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--stagger, 1) * 0.065s);
}

@keyframes tileEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.phone-mock-wrap {
  width: fit-content;
  max-width: 100%;
}

.trusted-section {
  overflow: hidden;
}

.marquee-shell {
  position: relative;
  width: 100%;
}

.marquee-fade {
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  align-items: center;
  animation: marqueeScroll 55s linear infinite;
}

.marquee--slow .marquee-track {
  animation-duration: 75s;
}

.marquee-track--reverse {
  animation-name: marqueeScroll;
  animation-direction: reverse;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  flex-shrink: 0;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold-light);
  white-space: nowrap;
  padding: 0.65rem 1.35rem;
  border: 1px solid var(--glass-border);
  border-radius: 0.35rem;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(6, 14, 30, 0.65));
  backdrop-filter: blur(8px);
  transform-origin: center center;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}

.marquee-item:hover {
  transform: scale(1.06);
  border-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 1;
  position: relative;
}

.marquee-item--soft {
  opacity: 0.85;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(19, 34, 56, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .box-zoom {
    transition: none;
  }

  .hero-glow--pulse,
  .phone-float,
  .hero-screens-float,
  .btn-pulse-glow,
  .marquee-track {
    animation: none !important;
  }

  .hero-stagger {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .page-section[data-reveal] {
    opacity: 1;
    transform: none;
  }

  .tile-animate,
  .benefit-animate,
  .spotlight-animate {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .box-zoom:hover,
  .marquee-item:hover {
    transform: none;
    box-shadow: none;
    filter: none;
  }

  .marquee-track {
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    gap: 0.75rem;
  }

  .marquee {
    overflow: visible;
  }

  .plugs-visual-card--offset {
    transform: none;
    align-self: stretch;
    max-width: none;
  }
}

.section-muted {
  background: linear-gradient(180deg, rgba(4, 12, 24, 0.75), rgba(6, 14, 28, 0.85));
  border-block: 1px solid rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(8px);
}

.split-title {
  font-weight: 600;
}

.spotlight-card {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 0.85rem;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.badge-gold {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-deep);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.quote-block {
  border-left: 4px solid var(--gold);
  background: rgba(19, 34, 56, 0.5);
  color: var(--muted);
  font-style: italic;
  border-radius: 0 0.75rem 0.75rem 0;
}

.dashboard-preview {
  min-height: 220px;
}

.plugs-section .plugs-subtitle {
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.plugs-cta.link-gold-animated {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 2px solid rgba(212, 175, 55, 0.45);
  padding-bottom: 0.15rem;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.plugs-cta.link-gold-animated:hover {
  color: #fff;
  border-bottom-color: var(--gold-light);
  transform: translateY(-2px);
}

.plugs-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 0.65rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 22, 38, 0.55);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.plugs-logo-cell:hover {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(19, 34, 56, 0.65);
}

.plugs-logo-img {
  max-height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.plugs-split__visuals {
  position: relative;
}

.plugs-visual-stack {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .plugs-visual-stack {
    margin-left: auto;
    margin-right: 0;
    max-width: 420px;
  }
}

.plugs-visual-card {
  position: relative;
}

.plugs-visual-card--offset {
  margin-top: -0.25rem;
}

@media (min-width: 992px) {
  .plugs-visual-card--offset {
    align-self: flex-end;
    margin-top: 0;
    transform: translate(4%, 0);
    max-width: 94%;
  }
}

.plugs-visual-kicker {
  letter-spacing: 0.14em;
}

.plugs-visual-frame {
  border-radius: 1.35rem;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.5),
    rgba(255, 255, 255, 0.2),
    rgba(212, 175, 55, 0.32)
  );
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(212, 175, 55, 0.12);
}

.plugs-visual-bezel {
  border-radius: 1.2rem;
  padding: 0.5rem;
  background: linear-gradient(165deg, rgba(32, 48, 66, 0.98), rgba(10, 18, 30, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.plugs-visual-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.8rem;
  background: #0a0f16;
  vertical-align: middle;
}

.plugs-visual-caption {
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 24rem;
}

.box-zoom--plugs {
  border-radius: 1.35rem;
  padding-bottom: 0.2rem;
}

.screens-showcase {
  background: linear-gradient(180deg, rgba(7, 15, 26, 0.85), rgba(13, 27, 42, 0.55));
  border-block: 1px solid rgba(212, 175, 55, 0.12);
}

.screens-bullets {
  max-width: 40rem;
}

.screens-bullets li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
  text-align: left;
}

.screens-bullets li:last-child {
  margin-bottom: 0;
}

.screens-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.screens-figure {
  text-align: center;
}

.screens-heading {
  letter-spacing: 0.14em;
}

.screens-device {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .screens-device {
    max-width: 330px;
  }
}

@media (min-width: 1200px) {
  .screens-device {
    max-width: 360px;
  }
}

.screens-device-bezel {
  border-radius: 2rem;
  padding: 0.55rem;
  background: linear-gradient(165deg, rgba(42, 61, 79, 0.95), rgba(10, 21, 34, 0.98));
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.screens-device-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.45rem;
  background: #0a0f16;
  vertical-align: middle;
}

.screens-caption {
  line-height: 1.55;
  font-size: 0.95rem;
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

.box-zoom--screen {
  border-radius: 1.25rem;
  padding-bottom: 0.25rem;
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}

/* --- Hudini-inspired marketing layout (Confirma branded) --- */
.hudini-hero__eyebrow {
  letter-spacing: 0.22em;
  color: var(--gold-light);
}

a.hudini-hero__learn.link-gold-animated {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 2px solid rgba(212, 175, 55, 0.45);
  padding-bottom: 0.1rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

a.hudini-hero__learn.link-gold-animated:hover {
  color: #fff;
  border-bottom-color: var(--gold-light);
}

.hudini-band {
  background: rgba(6, 12, 22, 0.92);
  border-block: 1px solid rgba(212, 175, 55, 0.1);
}

.hudini-band--light {
  background: linear-gradient(180deg, rgba(16, 28, 44, 0.95), rgba(8, 16, 28, 0.98));
}

.hudini-section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.hudini-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 46rem;
}

.hudini-challenge-card {
  border-radius: 0.65rem;
  border: 1px solid var(--glass-border);
  background: rgba(6, 14, 30, 0.65);
  backdrop-filter: blur(12px);
  padding: 1.5rem 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hudini-challenge-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(10, 22, 42, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 28px rgba(212, 175, 55, 0.08);
}

.hudini-challenge-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.hudini-split {
  background: rgba(5, 10, 18, 0.35);
  border-block: 1px solid rgba(212, 175, 55, 0.08);
}

.hudini-kicker {
  letter-spacing: 0.16em;
}

.hudini-prose {
  font-size: 1.05rem;
  line-height: 1.7;
}

.hudini-split-visual {
  max-width: 320px;
}

.hudini-split-img {
  width: 100%;
  max-height: 600px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 1.75rem;
  /* border: 1px solid var(--glass-border); */
  /* box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.06); */
  /* background: #0a0f16; */
}

.box-zoom--hudini {
  border-radius: 1.35rem;
  padding: 4px;
}

.hudini-impact-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 1.05rem;
  text-align: left;
}

.hudini-impact-list li:last-child {
  margin-bottom: 0;
}

.hudini-impact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.hudini-features-band {
  background: linear-gradient(180deg, rgba(8, 16, 28, 0.4), rgba(13, 27, 42, 0.25));
}

.hudini-tile {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hudini-compliance {
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.06), rgba(10, 26, 47, 0.85));
  border-block: 1px solid rgba(212, 175, 55, 0.15);
}

.hudini-final-cta {
  background: linear-gradient(125deg, rgba(4, 12, 28, 0.97) 0%, rgba(8, 20, 44, 0.95) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.1);
}
