/* IIShenka Landing v3 — Magical Dark Theme */

:root {
  --bg-deep: #0D001A;
  --bg-black: #050008;
  --text: #f4f4f8;
  --text-muted: #b8b4c6;
  --accent-orange: #f97316;
  --accent-red: #ef4444;
  --accent-amber: #f59e0b;
  --accent-gold: #facc15;
  --accent-coral: #fb7185;
  --card-bg: rgba(40, 12, 4, 0.6);
  --card-border: rgba(249, 115, 22, 0.25);
  --fire-gradient: linear-gradient(135deg, var(--accent-red), var(--accent-orange), var(--accent-gold));
  --fire-glow: rgba(249, 115, 22, 0.45);
  --header-h: 4rem;
  --radius: 16px;
  --font-head: "Montserrat", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --section-pad-x: clamp(0.55rem, 3.8vw, 1.75rem);
  --safe-max: calc(100vw - 2 * var(--section-pad-x));
  --ptr-x-pct: 50%;
  --ptr-y-pct: 38%;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
  padding-top: var(--header-h);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 50% at 50% -5%, rgba(239, 68, 68, 0.08), transparent 50%),
    radial-gradient(ellipse 45% 35% at 95% 70%, rgba(249, 115, 22, 0.08), transparent 50%),
    radial-gradient(ellipse 40% 30% at 5% 60%, rgba(250, 204, 21, 0.06), transparent 45%);
  animation: veil-sweep 18s ease-in-out infinite alternate;
}

@keyframes veil-sweep {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.92;
}

.nebula-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(250, 204, 21, 0.08) 0%, transparent 50%);
  animation: nebula-drift 25s ease-in-out infinite;
}

/* Soft spotlight following the pointer (driven by JS --ptr-*-pct) */
.pointer-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 520px 400px at var(--ptr-x-pct) var(--ptr-y-pct), rgba(249, 115, 22, 0.16), transparent 52%),
    radial-gradient(ellipse 420px 300px at calc(var(--ptr-x-pct) + 8%) calc(var(--ptr-y-pct) - 10%), rgba(239, 68, 68, 0.1), transparent 50%),
    radial-gradient(ellipse 300px 240px at calc(var(--ptr-x-pct) - 15%) calc(var(--ptr-y-pct) + 15%), rgba(250, 204, 21, 0.07), transparent 48%);
  opacity: 0.92;
  mix-blend-mode: screen;
}

@media (prefers-reduced-motion: reduce) {
  .pointer-glow { opacity: 0; visibility: hidden; }
}

@keyframes nebula-drift {
  0%, 100% { opacity: 0.6; filter: hue-rotate(0deg); }
  50% { opacity: 1; filter: hue-rotate(15deg); }
}

.magic-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  animation: orb-drift 20s ease-in-out infinite;
}
.orb-a {
  width: min(450px, 55vw); height: min(450px, 55vw);
  background: radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.8), transparent 70%);
  top: -10%; left: -5%;
}
.orb-b {
  width: min(400px, 50vw); height: min(400px, 50vw);
  background: radial-gradient(circle at 70% 40%, rgba(239, 68, 68, 0.6), transparent 70%);
  bottom: 5%; right: -8%;
  animation-delay: -7s;
}
.orb-c {
  width: min(320px, 40vw); height: min(320px, 40vw);
  background: radial-gradient(circle at 50% 50%, rgba(250, 204, 21, 0.5), transparent 70%);
  top: 40%; left: 35%;
  animation-delay: -14s;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3%, -2%) scale(1.05); }
  66% { transform: translate(-2%, 3%) scale(0.98); }
}

/* Header: слева CTA | справа меню */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem clamp(1rem, 4vw, 2rem);
  min-height: var(--header-h);
  background: rgba(5, 0, 12, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  isolation: isolate;
}

.header-lead-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem 0.55rem;
  flex-shrink: 0;
}

.header-nav-slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-shrink: 0;
  min-width: 0;
}

/* Шапка: ключевые CTA в том же ритме, что и «Связаться» (.nav-cta) */
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 0.3s ease, border-color 0.28s ease, filter 0.28s ease, transform 0.18s ease;
}
.header-cta:active {
  transform: scale(0.98);
}
.header-cta--secondary {
  border: 1px solid var(--accent-orange);
  color: var(--text);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}
.header-cta--secondary:hover {
  border-color: rgba(249, 115, 22, 0.8);
  filter: brightness(1.08) saturate(1.05);
  transform: translateY(-2px);
  box-shadow:
    0 0 30px rgba(249, 115, 22, 0.5),
    0 0 60px rgba(239, 68, 68, 0.35),
    0 0 90px rgba(220, 38, 38, 0.2);
  color: var(--text);
}

.header-cta--secondary.header-cta--ember {
  border-color: rgba(251, 191, 36, 0.55);
  color: rgba(254, 240, 200, 0.98);
  background: rgba(40, 12, 0, 0.35);
}

.header-cta--secondary.header-cta--ember:hover {
  filter: brightness(1.08) saturate(1.05);
  border-color: rgba(252, 165, 165, 0.9);
  transform: translateY(-2px);
  color: rgba(255, 247, 235, 0.98);
  box-shadow:
    0 0 30px rgba(249, 115, 22, 0.5),
    0 0 60px rgba(239, 68, 68, 0.35),
    0 0 90px rgba(220, 38, 38, 0.2);
}

@media (max-width: 1040px) {
  .header-cta {
    padding: 0.42rem 0.82rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }
}

.logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo.neon {
  animation: logo-glow 8s ease-in-out infinite;
  transition: filter 0.35s ease, transform 0.35s ease;
}
@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.5)); }
  50% { filter: drop-shadow(0 0 18px rgba(239, 68, 68, 0.4)); }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.22s ease, text-shadow 0.35s ease, filter 0.3s ease;
}
.nav a:hover {
  color: var(--text);
  text-shadow: 0 0 16px rgba(249, 115, 22, 0.5), 0 0 28px rgba(239, 68, 68, 0.25);
  filter: brightness(1.06);
}
.nav-cta {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--accent-orange);
  color: var(--text) !important;
  font-weight: 600;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
  transition: box-shadow 0.35s ease, border-color 0.3s ease, filter 0.3s ease;
}
.nav-cta:hover {
  box-shadow: 0 0 24px rgba(249, 115, 22, 0.55), 0 0 48px rgba(239, 68, 68, 0.22);
  border-color: rgba(249, 115, 22, 0.65);
  filter: brightness(1.08);
}
.glow-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(249, 115, 22, 0.3); }
  50% { box-shadow: 0 0 25px rgba(249, 115, 22, 0.6), 0 0 40px rgba(239, 68, 68, 0.3); }
}
.lang-toggle {
  padding: 0.32rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.5);
  background: rgba(249, 115, 22, 0.12);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, filter 0.3s ease;
}
.lang-toggle:hover {
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.45), 0 0 32px rgba(239, 68, 68, 0.2);
  border-color: rgba(249, 115, 22, 0.85);
  filter: brightness(1.1);
}
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 0.35rem; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); }

/* Основной поток контента — по вертикальной оси вьюпорта */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Section base */
.section {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--safe-max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) var(--section-pad-x);
  position: relative;
  z-index: 1;
}

/* Gradient text */
.gradient-text {
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
/* Hero — контент на всю ширину вьюпорта */
.hero.section.hero--flush {
  align-self: stretch;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
  box-sizing: border-box;
}

.hero-text {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero-title-group {
  margin-bottom: clamp(0.25rem, 1.2vw, 0.85rem);
  text-align: center;
}

.hero-title,
.hero-title-line {
  margin-left: auto;
  margin-right: auto;
}

.hero-patent {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(0.85rem, 2vw, 1.1rem);
  margin-top: 0;
  max-width: 42rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(184, 180, 198, 0.9);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-style: normal;
  text-align: center;
}

.hero-fact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9.75rem), 1fr));
  gap: clamp(0.45rem, 1.6vw, 0.85rem);
  margin: 0 0 0.4rem;
  margin-inline: 0;
  padding-inline: 0;
  padding-block: 0;
  border-bottom: none;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
}

.hero-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  min-height: 4.75rem;
  padding: 0.68rem 0.5rem;
  text-align: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-sizing: border-box;
  min-width: 0;
}

.hero-fact__kbd {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(0.76rem, 1.35vw, 0.88rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-fact__text {
  font-size: clamp(0.64rem, 1.85vw, 0.735rem);
  line-height: 1.42;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 480px) {
  .hero-fact {
    min-height: 0;
    align-items: flex-start;
    text-align: left;
    padding: 0.58rem 0.55rem;
  }
  .hero-fact__kbd {
    font-size: clamp(0.72rem, 3.2vw, 0.86rem);
  }
}

.zone-rule {
  display: block;
  width: 100%;
  height: 0;
  margin: clamp(0.25rem, 1vw, 0.55rem) 0 clamp(0.45rem, 1.4vw, 0.75rem);
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: none;
  box-shadow: 0 1px 0 rgba(249, 115, 22, 0.06);
}

.cases-showcase--in-hero {
  width: 100%;
  min-width: 0;
  margin-top: 0;
  padding-top: clamp(0.45rem, 1.5vw, 0.75rem);
  border-top: none;
}

.zone-rule--hero-cases {
  margin-top: clamp(0.05rem, 0.5vw, 0.25rem);
  margin-bottom: clamp(0.2rem, 1vw, 0.45rem);
  width: 100%;
  margin-inline: 0;
  box-sizing: border-box;
}

.cases-showcase--in-hero .section-head {
  margin-bottom: 1rem;
}

.cases-showcase--in-hero .section-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.45rem, 3.3vw, 2.05rem);
  line-height: 1.22;
  margin: 0 0 0.45rem;
  text-align: center;
}

.cases-showcase--in-hero .subtitle.subtitle--cases-one-line-desktop {
  text-align: center;
  margin: 0 auto;
  max-width: min(120ch, 100%);
}

@media (min-width: 900px) {
  .cases-showcase--in-hero .subtitle.subtitle--cases-one-line-desktop {
    white-space: nowrap;
    max-width: none;
    overflow-wrap: normal;
    display: inline-block;
  }
}

.cases-showcase--in-hero .section-head.section-head--cases {
  text-align: center;
}

.hero-demo-card {
  margin-top: 0.5rem;
  padding: clamp(1.05rem, 2.5vw, 1.35rem) clamp(1.2rem, 3vw, 1.75rem);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(14, 10, 26, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  width: 100%;
  box-sizing: border-box;
}

.hero-demo-card.hero-demo-card--under-tags {
  margin-top: clamp(0.45rem, 1.4vw, 0.85rem);
}
.hero-demo-card__line {
  margin: 0;
  font-size: clamp(0.93rem, 1.7vw, 1.02rem);
  line-height: 1.62;
  color: var(--text-muted);
}
.demo-stand-link {
  display: inline-block;
  margin-left: 0.4rem;
  font-weight: 600;
  font-size: 0.98em;
  color: var(--accent-orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(249, 115, 22, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.demo-stand-link:hover {
  border-bottom-color: rgba(249, 115, 22, 0.85);
  filter: brightness(1.12);
}

.demo-stand-link--footnote {
  margin-left: 0;
  white-space: normal;
  font-size: inherit;
  vertical-align: baseline;
}

.demo-stand-invite-note {
  margin: -0.25rem auto 1.35rem;
  max-width: 58rem;
}

#demo-stand {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.demo-stand-invite-note__text {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.52;
  color: rgba(184, 180, 198, 0.64);
  text-align: center;
  font-weight: 400;
}

@media (min-width: 720px) {
  .demo-stand-invite-note__text {
    text-align: left;
  }
}

/* Decorative horizontal separators */
.block-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(40rem, 100%);
  margin: clamp(1.35rem, 3.5vw, 2rem) auto;
}
.block-divider--full {
  width: 100%;
  max-width: 100%;
}
.block-divider--spaced {
  margin-top: clamp(1.75rem, 4vw, 2.35rem);
  margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
}
.block-divider::before,
.block-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), rgba(239, 68, 68, 0.38));
}
.block-divider::after {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.38), rgba(249, 115, 22, 0.5), transparent);
}
.block-divider__gem {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--fire-gradient);
  box-shadow:
    0 0 12px rgba(249, 115, 22, 0.65),
    0 0 22px rgba(239, 68, 68, 0.35);
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 3.35vw, 2.95rem);
  line-height: 1.16;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
  max-width: 100%;
}
.hero-title-line {
  display: block;
  width: 100%;
}
.hero-title-line + .hero-title-line {
  margin-top: 0.12em;
}
.hero-title-line.gradient-text::before {
  content: none;
}
.hero-title-line.gradient-text {
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-orange);
  font-weight: 600;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--text-muted);
  margin: 0 0 1rem;
  max-width: 100%;
  line-height: 1.7;
}

.muted { color: var(--text-muted); font-size: 0.92rem; }

/* Typing effect */
.typing-target {
  border-right: 2px solid var(--accent-orange);
  animation: blink-caret 0.8s step-end infinite;
  white-space: normal;
}
@keyframes blink-caret {
  0%, 100% { border-color: var(--accent-orange); }
  50% { border-color: transparent; }
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* Buttons */
/* Header lead actions — only Запросить демо remains */
.header-lead-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.header-cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s, box-shadow 0.18s;
}
.header-cta--primary {
  background: var(--fire-gradient);
  color: #fff;
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.4);
}
.header-cta--primary:hover {
  filter: brightness(1.08) saturate(1.05);
  box-shadow:
    0 0 30px rgba(249, 115, 22, 0.5),
    0 0 60px rgba(239, 68, 68, 0.35),
    0 0 90px rgba(220, 38, 38, 0.2);
  transform: translateY(-2px);
}

.btn {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s, filter 0.28s ease;
}
.btn:hover {
  filter: brightness(1.08) saturate(1.05);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(249, 115, 22, 0.2),
    0 0 80px rgba(239, 68, 68, 0.1);
  transform: translateY(-2px);
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--fire-gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(249, 115, 22, 0.45), 0 0 20px rgba(239, 68, 68, 0.1);
  animation: btn-glow 4s ease-in-out infinite;
}
@keyframes btn-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(249, 115, 22, 0.45), 0 0 20px rgba(239, 68, 68, 0.15); }
  50% { box-shadow: 0 8px 40px rgba(249, 115, 22, 0.7), 0 0 60px rgba(239, 68, 68, 0.25); }
}
.btn-primary:hover { filter: brightness(1.1); }

.btn-primary.glow-big {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  animation: btn-glow-big 3s ease-in-out infinite;
}
@keyframes btn-glow-big {
  0%, 100% { box-shadow: 0 4px 30px rgba(249, 115, 22, 0.5), 0 0 40px rgba(239, 68, 68, 0.2); }
  50% { box-shadow: 0 10px 60px rgba(249, 115, 22, 0.8), 0 0 80px rgba(239, 68, 68, 0.4), 0 0 100px rgba(250, 204, 21, 0.2); }
}
.pulse-constant {
  animation: pulse-constant 2s ease-in-out infinite;
}
@keyframes pulse-constant {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(249, 115, 22, 0.5); }
  50% { transform: scale(1.02); box-shadow: 0 0 40px rgba(249, 115, 22, 0.8); }
}

.btn-outline { background: transparent; color: var(--text); border: 2px solid rgba(249, 115, 22, 0.55); }
.btn-outline:hover {
  border-color: var(--accent-red);
  box-shadow: 0 0 28px rgba(249, 115, 22, 0.4), 0 0 48px rgba(239, 68, 68, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.btn.full { width: 100%; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  width: 100%;
  margin: 0;
}
.trust-line {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Cases Showcase */
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.subtitle { margin: 0; color: var(--text-muted); font-size: 1.05rem; }

.showcase-carousel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.5rem;
  padding-bottom: 0.65rem;
  outline: none;
}
.showcase-carousel:focus-visible {
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.45);
  border-radius: 10px;
}
@supports (scrollbar-color: auto) {
  .showcase-carousel {
    scrollbar-color: var(--accent-orange) rgba(0, 0, 0, 0.2);
    scrollbar-width: thin;
  }
}
.showcase-carousel::-webkit-scrollbar {
  height: 10px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
}
.showcase-carousel::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.35);
  min-width: 40px;
}
.showcase-carousel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
}
.showcase-carousel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}
.showcase-strip--scroll {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.1rem;
  width: max-content;
  padding: 0.35rem 0.25rem 0.75rem;
}
.showcase-strip--scroll .showcase-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(300px, 86vw);
  max-width: 300px;
}
.showcase-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.showcase-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.4),
    0 0 48px rgba(249, 115, 22, 0.2),
    0 0 80px rgba(239, 68, 68, 0.1);
}
.showcase-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(165deg, rgba(12, 4, 26, 0.95), rgba(20, 12, 38, 0.88));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  outline: none;
}
.showcase-img-wrap:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(249, 115, 22, 0.65);
}
.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.showcase-card:hover .showcase-img-wrap img {
  transform: scale(1.05);
}
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 0, 18, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.showcase-card:hover .showcase-overlay { opacity: 1; }
.showcase-zoom {
  padding: 0.4rem 0.8rem;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  color: #fff;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}
.showcase-card h3 {
  margin: 0.85rem 1rem 0.35rem;
  font-size: 1.05rem;
}
.showcase-card p {
  margin: 0 1rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Morph on hover */
.morph-on-hover {
  transition: border-radius 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.morph-on-hover:hover {
  border-radius: 24px;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Glow on hover */
.glow-on-hover {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.glow-on-hover:hover {
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.4), 0 0 60px rgba(239, 68, 68, 0.2);
  transform: translateY(-2px);
}

/* Problem/Solution */
.two-cols {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(239, 68, 68, 0.2), rgba(250, 204, 21, 0.3), rgba(249, 115, 22, 0.15));
  background-size: 400% 400%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: fire-border 4s ease-in-out infinite;
}
@keyframes fire-border {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.card:hover::before { opacity: 1; }
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35); }
.col-title { margin-bottom: 1rem; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.06em; }
.col-title.bad { color: #f97392; }
.col-title.good { color: var(--accent-orange); }
.icon-list { list-style: none; }
.icon-list li { display: flex; gap: 0.9rem; margin-bottom: 1.25rem; }
.icon-list li:last-child { margin-bottom: 0; }
.ico-svg {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent-orange);
}
.ico-svg svg { width: 22px; height: 22px; }
.icon-list strong { display: block; margin-bottom: 0.2rem; color: var(--text); }
.icon-list p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

/* Features */
.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.feature-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.35rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(249, 115, 22, 0.1) 50%, transparent 60%);
  background-size: 200% 100%;
  transform: translateX(40%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.feature-card:hover::before { opacity: 1; animation: feature-gleam 0.95s ease forwards; }
@keyframes feature-gleam { from { transform: translateX(55%); } to { transform: translateX(-35%); } }
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 36px rgba(249, 115, 22, 0.25),
    0 0 56px rgba(239, 68, 68, 0.12);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(239, 68, 68, 0.15));
  color: var(--accent-gold);
  margin-bottom: 0.85rem;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { margin-bottom: 0.35rem; }
.feature-card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

/* How it works */
.timeline { list-style: none; display: grid; gap: 1rem; }
@media (min-width: 900px) {
  .timeline { grid-template-columns: repeat(4, 1fr); position: relative; }
  .timeline::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-red), var(--accent-gold));
    opacity: 0.45;
    border-radius: 2px;
    animation: timeline-glow 3s ease-in-out infinite alternate;
  }
}
@keyframes timeline-glow { 0% { opacity: 0.4; } 100% { opacity: 0.9; } }

.timeline-step { position: relative; padding: 0.5rem; text-align: center; }
.step-num {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  background: var(--fire-gradient);
  color: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}
.pulse-on-show {
  animation: pulse-on-show 0.6s var(--ease-smooth, ease) both;
}
@keyframes pulse-on-show {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.step-body h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.step-body p { color: var(--text-muted); font-size: 0.94rem; margin: 0; }

/* Timeline animations */
.timeline--live.timeline--awake .timeline-step:nth-child(1) .step-num { animation: pop 0.6s ease 0.1s both; }
.timeline--live.timeline--awake .timeline-step:nth-child(2) .step-num { animation: pop 0.6s ease 0.2s both; }
.timeline--live.timeline--awake .timeline-step:nth-child(3) .step-num { animation: pop 0.6s ease 0.3s both; }
.timeline--live.timeline--awake .timeline-step:nth-child(4) .step-num { animation: pop 0.6s ease 0.4s both; }
@keyframes pop { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }

/* Trust */
.trust-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.trust-block h3 { color: var(--accent-orange); }
.trust-block p { margin: 0; color: var(--text-muted); }
.trust-block.card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}
.trust-block.card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(249, 115, 22, 0.2),
    0 0 72px rgba(239, 68, 68, 0.1);
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  align-items: stretch;
}
.pricing-grid--modes {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}
@media (min-width: 1100px) {
  .pricing-grid--modes {
    grid-template-columns: repeat(4, 1fr);
  }
}
.section-head .pricing-intro {
  margin: 0.85rem auto 0;
  max-width: 46rem;
  line-height: 1.62;
  font-size: 0.96rem;
  text-align: center;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.4),
    0 0 48px rgba(249, 115, 22, 0.2),
    0 0 80px rgba(239, 68, 68, 0.1);
}
.price-card.popular {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.12);
}
.badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.2);
  color: var(--accent-gold);
}
.price-card h3 { margin: 0.5rem 0 0; }
.price-tag {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.75rem;
  margin: 0.75rem 0 0;
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-tag.plain {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--text);
}
.price-tag span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 0.25rem;
}
.price-features {
  list-style: none;
  margin: 0 0 auto;
  padding: 0.5rem 0 1.25rem;
  flex-grow: 1;
  color: var(--text-muted);
  font-size: 0.93rem;
  text-align: left;
}
.price-features li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.35rem;
  line-height: 1.45;
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fire-gradient);
  opacity: 0.85;
}

/* Final CTA */
.final-cta { padding-bottom: 2rem; }
.final-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  padding: 2.25rem clamp(1.25rem, 4vw, 2.25rem);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.4s ease, border-color 0.35s ease, transform 0.35s ease;
}
.final-inner:hover {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(249, 115, 22, 0.2),
    0 0 80px rgba(239, 68, 68, 0.1);
  transform: translateY(-2px);
}
.final-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.final-lead { margin-bottom: 1.5rem; }
.final-contact-label {
  margin: 1.75rem 0 0.85rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.final-contact-actions {
  margin-bottom: 0;
}
.final-actions {
  justify-content: center;
  margin-bottom: 1.25rem;
}
.contact-note { font-size: 0.82rem; color: var(--text-muted); margin: 0.75rem 0 0; }

/* Contact */
.contact-strip { padding-bottom: 3rem; }
.contact-inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: 2.25rem clamp(1.25rem, 4vw, 2.25rem);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}
.contact-lead { margin-bottom: 1.25rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Footer */
.site-footer {
  padding: 2.5rem 1rem 2rem;
  border-top: 1px solid rgba(249, 115, 22, 0.15);
  background: rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
}
.footer-inner {
  width: 100%;
  max-width: min(var(--safe-max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}
.footer-inner--two {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  max-width: min(64rem, 100%);
}
.footer-col .muted { color: var(--text-muted); margin: 0.35rem 0 0; font-size: 0.9rem; }
.footer-col p { margin: 0 0 0.5rem; font-weight: 600; }
.footer-col a { display: block; color: var(--accent-cyan); text-decoration: none; margin-bottom: 0.35rem; font-size: 0.93rem; }
.footer-col a:hover { text-decoration: underline; }

/* Scroll animations */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.animate-on-scroll.is-visible { opacity: 1; transform: none; }

/* Lightbox */
.shot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem min(4vw, 1.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s;
}
.shot-lightbox.is-open, .shot-lightbox.is-closing { visibility: visible; }
.shot-lightbox.is-open { opacity: 1; pointer-events: auto; }
.shot-lightbox.is-closing { opacity: 0; pointer-events: none; }
.shot-lightbox-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: zoom-out;
  background: radial-gradient(circle at 50% 35%, rgba(18, 8, 32, 0.55), rgba(2, 0, 12, 0.82));
  backdrop-filter: blur(8px);
}
.shot-lightbox-panel {
  position: relative;
  z-index: 1;
  max-width: min(94vw, 1120px);
  max-height: min(90vh, 880px);
  width: auto;
  margin: auto;
  transform: translateY(12px) scale(0.95);
  opacity: 0;
  transition: transform 0.38s ease, opacity 0.34s ease;
}
.shot-lightbox.is-open .shot-lightbox-panel { transform: translateY(0) scale(1); opacity: 1; }
.shot-lightbox.is-closing .shot-lightbox-panel { transform: translateY(10px) scale(0.96); opacity: 0; }
.shot-lightbox-img {
  display: block;
  max-width: min(92vw, 1080px);
  max-height: min(84vh, 800px);
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.shot-lightbox-close {
  position: absolute;
  top: -0.25rem; right: -0.25rem;
  z-index: 2;
  width: 2.35rem; height: 2.35rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 8, 24, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.shot-lightbox-close:hover { transform: scale(1.06); border-color: rgba(249, 115, 22, 0.45); }

/* Mobile nav */
@media (max-width: 880px) {
  .burger { display: flex; }
  .nav {
    position: absolute;
    top: calc(100% + 0.5rem); right: 1rem; left: 1rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: rgba(8, 0, 18, 0.95); border: 1px solid rgba(249, 115, 22, 0.25); border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    pointer-events: none; z-index: 50;
  }
  body.nav-open .nav { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .animate-on-scroll { opacity: 1; transform: none; transition: none; }
  .bg-canvas { opacity: 0.12; }
}
