/* =========================================================
   Base
   ========================================================= */
:root {
  --ink: #0A0117;
  --ink2: #120426;
  --ink-card: #0F0420;
  --violet: #8B5CF6;
  --violet2: #A78BFA;
  --violet3: #C4B5FD;
  --blue: #3B82F6;
  --blue2: #60A5FA;
  --cyan: #22D3EE;
  --cyan2: #67E8F9;
  --ghost: #F5F3FF;

  /* Premium type/space tokens */
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-xl: 26px;
  --radius-2xl: 32px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --line-faint: rgba(167,139,250,0.06);
  --line-soft: rgba(167,139,250,0.10);
  --line-mid: rgba(167,139,250,0.18);
  --line-strong: rgba(167,139,250,0.32);

  --text-faint: rgba(245,243,255,0.42);
  --text-soft: rgba(245,243,255,0.58);
  --text-mid: rgba(245,243,255,0.72);
  --text-strong: rgba(245,243,255,0.92);

  /* Elevation system (premium, layered) */
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 18px 50px -28px rgba(139,92,246,0.35);
  --shadow-card-hover: 0 1px 0 rgba(255,255,255,0.05) inset, 0 28px 70px -28px rgba(139,92,246,0.55);
  --shadow-glow-sm: 0 0 30px -8px rgba(139,92,246,0.35);
  --shadow-glow-md: 0 0 60px -12px rgba(139,92,246,0.45);

  /* Surface gradients */
  --surf-card: linear-gradient(180deg, rgba(167,139,250,0.055) 0%, rgba(255,255,255,0.012) 100%);
  --surf-card-hover: linear-gradient(180deg, rgba(139,92,246,0.095) 0%, rgba(59,130,246,0.028) 100%);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html {
  scroll-behavior: auto;
  background: var(--ink);
  overflow-x: clip;
}
body { overflow-x: clip; }
body {
  background: radial-gradient(ellipse 90% 65% at 50% -8%, #1B0A3A 0%, #0A0117 58%);
  cursor: none;
  font-feature-settings: 'cv05', 'cv11', 'ss01', 'ss03';
  letter-spacing: -0.008em;
  text-rendering: optimizeLegibility;
}
@media (max-width: 900px) { body { cursor: auto; } #cursor, #cursorRing { display: none !important; } }

::selection { background: rgba(139, 92, 246, 0.45); color: #fff; text-shadow: none; }

/* Global focus ring for keyboard nav */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid rgba(167,139,250,0.7);
  outline-offset: 3px;
  border-radius: 6px;
}
button:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 2px solid rgba(167,139,250,0.7);
  outline-offset: 3px;
}

/* =========================================================
   Aurora Background (mesh gradients) – subtle
   ========================================================= */
.aurora-bg { overflow: hidden; }
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.34;
  will-change: transform;
}
.aurora-1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, #7C3AED 0%, transparent 65%);
  top: -240px; left: -220px;
  animation: aurora1 28s ease-in-out infinite alternate;
}
.aurora-2 {
  width: 820px; height: 820px;
  background: radial-gradient(circle, #2563EB 0%, transparent 65%);
  top: 28%; right: -280px;
  opacity: 0.30;
  animation: aurora2 32s ease-in-out infinite alternate;
}
.aurora-3 {
  width: 660px; height: 660px;
  background: radial-gradient(circle, #06B6D4 0%, transparent 65%);
  bottom: -140px; left: 30%;
  opacity: 0.18;
  animation: aurora3 36s ease-in-out infinite alternate;
}
@keyframes aurora1 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(150px, 200px) scale(1.15); }
}
@keyframes aurora2 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-100px, 150px) scale(1.1); }
}
@keyframes aurora3 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-200px, -100px) scale(1.2); }
}

.grain {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

/* =========================================================
   Cursor (refined, soft)
   ========================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 4px; height: 4px;
  background: #F5F3FF;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.2s, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1px solid rgba(167,139,250,0.38);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s, background 0.3s;
}
.cursor.hover { width: 0; height: 0; }
.cursor-ring.hover {
  width: 56px; height: 56px;
  border-color: rgba(167,139,250,0.7);
  background: rgba(139,92,246,0.08);
  backdrop-filter: blur(3px);
}

/* =========================================================
   Progress Bar
   ========================================================= */
.progress-bar {
  position: fixed; top: 0; left: 0;
  height: 1.5px; width: 0;
  background: linear-gradient(90deg, var(--violet), var(--blue), var(--cyan));
  z-index: 60;
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(139,92,246,0.5);
}

/* =========================================================
   Gradient Text + Logo
   ========================================================= */
.gradient-text {
  background: linear-gradient(115deg, #C4B5FD 0%, #93C5FD 50%, #67E8F9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(167,139,250,0.22));
}

.logo-mark {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(167,139,250,0.5));
  transition: transform 0.45s var(--ease-spring), filter 0.4s var(--ease-out);
}
a:hover .logo-mark {
  transform: scale(1.06) rotate(-3deg);
  filter: drop-shadow(0 0 22px rgba(167,139,250,0.7));
}

/* =========================================================
   Section helpers
   ========================================================= */
.section-label {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: 'Geist Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violet2);
  margin-bottom: 1.6rem;
  padding: 0.42rem 0.95rem 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(167,139,250,0.045);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(8px);
  transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.section-label:hover {
  border-color: var(--line-mid);
  background: rgba(167,139,250,0.07);
}
.section-label .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 10px rgba(139,92,246,0.9);
  position: relative;
  flex-shrink: 0;
}
.section-label .dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(139,92,246,0.28);
  animation: dotPing 2.8s ease-out infinite;
}
@keyframes dotPing {
  0% { transform: scale(0.7); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

.section-h2 {
  font-size: clamp(2.1rem, 5.1vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: #FAF8FF;
  text-wrap: balance;
}

/* =========================================================
   CTAs
   ========================================================= */
.cta-btn {
  background: linear-gradient(135deg, rgba(139,92,246,0.14), rgba(59,130,246,0.14));
  border: 1px solid rgba(167,139,250,0.3);
  color: var(--ghost);
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  letter-spacing: -0.005em;
  backdrop-filter: blur(10px);
}
.cta-btn:hover {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  border-color: transparent;
  box-shadow: 0 12px 28px -6px rgba(139,92,246,0.55);
  transform: translateY(-1px);
}

.cta-primary {
  background: linear-gradient(135deg, var(--violet) 0%, var(--blue) 100%);
  color: white;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 0 0 1px rgba(167,139,250,0.4),
    0 14px 36px -12px rgba(139,92,246,0.6),
    0 0 60px -10px rgba(59,130,246,0.28);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative;
  isolation: isolate;
  letter-spacing: -0.005em;
  overflow: hidden;
}
.cta-primary::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #A78BFA 0%, #5896F8 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  z-index: -1;
}
.cta-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 55%);
  pointer-events: none;
  opacity: 0.65;
  mix-blend-mode: overlay;
}
.cta-primary:hover::before { opacity: 1; }
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.28) inset,
    0 0 0 1px rgba(167,139,250,0.6),
    0 26px 60px -14px rgba(139,92,246,0.72),
    0 0 90px -8px rgba(59,130,246,0.38);
}
.cta-primary:active { transform: translateY(-1px) scale(0.99); transition-duration: 0.18s; }
.cta-primary-lg {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.24) inset,
    0 0 0 1px rgba(167,139,250,0.45),
    0 30px 70px -16px rgba(139,92,246,0.7),
    0 0 100px -8px rgba(59,130,246,0.38);
}
.cta-primary-lg:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.32) inset,
    0 0 0 1px rgba(167,139,250,0.65),
    0 40px 90px -16px rgba(139,92,246,0.85),
    0 0 120px -8px rgba(59,130,246,0.5);
}

/* =========================================================
   Hero
   ========================================================= */
.hero-line { overflow: hidden; padding-bottom: 0.05em; }
.hero-title {
  font-feature-settings: 'ss01', 'cv11';
  text-wrap: balance;
  font-weight: 480;
}
.hero-badge {
  transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.hero-badge:hover {
  border-color: rgba(167,139,250,0.34);
  background: rgba(18,4,38,0.85);
  transform: translateY(-1px);
}
.hero-badge .text-xs {
  font-size: 0.7rem;
}
.hero-sub { text-wrap: pretty; }

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   Problem cards
   ========================================================= */
.problem-card {
  position: relative;
  padding: 2.1rem 1.95rem;
  border-radius: var(--radius-xl);
  background: var(--surf-card);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
  transition: transform 0.55s var(--ease-out), border-color 0.4s var(--ease-out), background 0.5s var(--ease-out), box-shadow 0.55s var(--ease-out);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.5), transparent);
  opacity: 0.55;
  transition: opacity 0.5s;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--surf-card-hover);
  box-shadow: var(--shadow-card-hover);
}
.problem-card:hover::before { opacity: 1; }
.problem-card:hover .problem-icon {
  background: linear-gradient(135deg, rgba(139,92,246,0.4), rgba(59,130,246,0.22));
  border-color: rgba(167,139,250,0.6);
  color: #FFFFFF;
  transform: scale(1.05) rotate(-2deg);
}
.problem-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(139,92,246,0.16), rgba(59,130,246,0.08));
  border: 1px solid rgba(167,139,250,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet2);
  margin-bottom: 1.5rem;
  transition: transform 0.45s var(--ease-spring), background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
.problem-num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  color: var(--violet2);
  opacity: 0.55;
  margin-bottom: 0.5rem;
}
.problem-title {
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: -0.024em;
  margin-bottom: 0.7rem;
  line-height: 1.2;
  color: #FAF8FF;
}
.problem-text { color: var(--text-soft); line-height: 1.6; font-size: 0.94rem; text-wrap: pretty; }

.problem-quote {
  display: flex; align-items: center; gap: 1.8rem;
  padding: 2.2rem 2.6rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(139,92,246,0.09) 0%, rgba(59,130,246,0.035) 100%);
  border: 1px solid rgba(167,139,250,0.2);
  backdrop-filter: blur(20px);
  font-size: clamp(1.1rem, 1.95vw, 1.55rem);
  font-weight: 480;
  letter-spacing: -0.022em;
  line-height: 1.42;
  color: var(--text-strong);
  text-wrap: pretty;
  box-shadow: var(--shadow-card);
}
.problem-quote svg {
  filter: drop-shadow(0 0 16px rgba(139,92,246,0.5));
}
@media (max-width: 768px) { .problem-quote { flex-direction: column; align-items: flex-start; padding: 1.5rem; gap: 1rem; } }

/* =========================================================
   Approach
   ========================================================= */
.approach-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(167,139,250,0.08);
  align-items: start;
  transition: padding-left 0.3s, background 0.3s;
}
.approach-row:hover {
  padding-left: 1rem;
}
.approach-row:hover .approach-num { color: var(--violet2); }
.approach-row:first-child { border-top: 1px solid rgba(167,139,250,0.08); }
.approach-num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: rgba(167,139,250,0.5);
  padding-top: 4px;
  transition: color 0.3s;
}
.approach-title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.approach-text { color: rgba(245,243,255,0.6); font-size: 1.05rem; line-height: 1.55; }

/* =========================================================
   Pakete
   ========================================================= */
.pkg-card {
  position: relative;
  padding: 2.4rem 1.9rem 2.1rem;
  border-radius: var(--radius-xl);
  background: var(--surf-card);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
  transition: transform 0.55s var(--ease-out), border-color 0.4s var(--ease-out), background 0.5s var(--ease-out), box-shadow 0.55s var(--ease-out);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
}
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.4), transparent);
  opacity: 0.55;
  transition: opacity 0.5s;
}
.pkg-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167,139,250,0.3);
  background: var(--surf-card-hover);
  box-shadow: var(--shadow-card-hover);
}
.pkg-card:hover::before { opacity: 1; }
.pkg-featured {
  background: linear-gradient(180deg, rgba(139,92,246,0.18) 0%, rgba(59,130,246,0.065) 100%);
  border-color: rgba(167,139,250,0.42);
  box-shadow:
    0 0 0 1px rgba(167,139,250,0.18) inset,
    0 30px 80px -28px rgba(139,92,246,0.55),
    0 0 140px -22px rgba(59,130,246,0.22);
  transform: translateY(-4px);
}
.pkg-featured::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.7), transparent);
  height: 1.5px;
}
.pkg-featured:hover {
  transform: translateY(-10px);
  border-color: rgba(167,139,250,0.6);
  box-shadow:
    0 0 0 1px rgba(167,139,250,0.28) inset,
    0 44px 100px -26px rgba(139,92,246,0.7),
    0 0 160px -16px rgba(59,130,246,0.3);
}
.pkg-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: white;
  font-family: 'Geist Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 10px 26px -8px rgba(139,92,246,0.7),
    0 0 0 1px rgba(167,139,250,0.45);
  white-space: nowrap;
}
.pkg-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent 60%);
  pointer-events: none;
  opacity: 0.7;
  mix-blend-mode: overlay;
}
.pkg-num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  color: var(--violet2);
  opacity: 0.5;
  margin-bottom: 1.2rem;
}
.pkg-name {
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.028em;
  margin-bottom: 0.4rem;
  color: #FAF8FF;
}
.pkg-tag {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 1.7rem;
  min-height: 2.4em;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.pkg-price {
  display: flex; align-items: baseline; gap: 0.55rem;
  margin-bottom: 0.35rem;
}
.pkg-price .from {
  font-size: 0.78rem;
  color: var(--text-faint);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.06em;
}
.pkg-price .num {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.038em;
  background: linear-gradient(135deg, #FFFFFF 0%, #C4B5FD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.pkg-featured .pkg-price .num {
  background: linear-gradient(135deg, #FFFFFF 0%, #A78BFA 50%, #67E8F9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.pkg-time {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  color: rgba(167,139,250,0.62);
  letter-spacing: 0.14em;
  margin-bottom: 1.7rem;
}
.pkg-list {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 0.9rem;
  font-size: 0.93rem;
  color: rgba(245,243,255,0.8);
  border-top: 1px solid var(--line-soft);
  letter-spacing: -0.005em;
}
.pkg-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  line-height: 1.45;
}
.pkg-list li svg {
  width: 16px; height: 16px;
  color: var(--violet2);
  flex-shrink: 0;
  margin-top: 3px;
  stroke-width: 2.5px;
}
.pkg-featured .pkg-list li svg {
  color: var(--cyan);
  filter: drop-shadow(0 0 6px rgba(34,211,238,0.5));
}

/* =========================================================
   Cases (clean magazine grid)
   ========================================================= */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .cases-grid { grid-template-columns: 1fr; } }

.case-card {
  position: relative;
  padding: 2.4rem 2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(167,139,250,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(167,139,250,0.1);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  min-height: 320px;
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.4), transparent);
  opacity: 0.5;
  transition: opacity 0.5s;
}
.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167,139,250,0.3);
  background: linear-gradient(180deg, rgba(139,92,246,0.08) 0%, rgba(59,130,246,0.025) 100%);
}
.case-card:hover::before { opacity: 1; }

.case-meta {
  display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.case-tag {
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.22);
  font-family: 'Geist Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet2);
}
.case-tag-line {
  font-family: 'Geist Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,243,255,0.35);
}

.case-title {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.case-text {
  color: rgba(245,243,255,0.6);
  line-height: 1.55;
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.5rem;
}

.case-outcome {
  display: flex; align-items: baseline; gap: 0.7rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(167,139,250,0.1);
}
.case-outcome-num {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #F5F3FF 0%, var(--violet2) 60%, var(--blue2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.case-outcome-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  color: rgba(245,243,255,0.45);
  letter-spacing: 0.08em;
}

/* =========================================================
   Process (4-card grid)
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

.process-step-card {
  position: relative;
  padding: 2.5rem 2.1rem 2.1rem;
  border-radius: var(--radius-xl);
  background: var(--surf-card);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.55s var(--ease-out), border-color 0.4s var(--ease-out), background 0.5s var(--ease-out), box-shadow 0.55s var(--ease-out);
  display: flex; flex-direction: column;
  min-height: 340px;
  box-shadow: var(--shadow-card);
}
.process-step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.5), transparent);
  opacity: 0.6;
  transition: opacity 0.5s;
}
.process-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: var(--surf-card-hover);
  box-shadow: var(--shadow-card-hover);
}
.process-step-card:hover::before { opacity: 1; }
.process-step-card:hover .process-glow { opacity: 1; }
.process-step-card:hover .process-icon {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: white;
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(139,92,246,0.55);
}

.process-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(59,130,246,0.08));
  border: 1px solid rgba(167,139,250,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet2);
  margin-bottom: 1.6rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  z-index: 2;
}
.process-num {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  font-family: 'Geist Mono', monospace;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(180deg, rgba(167,139,250,0.16) 0%, rgba(167,139,250,0.02) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  z-index: 1;
  transition: all 0.5s var(--ease-out);
}
.process-step-card:hover .process-num {
  background: linear-gradient(180deg, rgba(167,139,250,0.42) 0%, rgba(96,165,250,0.1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translateY(-2px);
}
.process-title {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.024em;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 2;
  line-height: 1.2;
  color: #FAF8FF;
}
.process-text {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.94rem;
  flex: 1;
  position: relative;
  z-index: 2;
  text-wrap: pretty;
}
.process-time {
  display: inline-flex; align-items: center;
  margin-top: 1.4rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgba(167,139,250,0.09);
  border: 1px solid rgba(167,139,250,0.2);
  font-family: 'Geist Mono', monospace;
  font-size: 0.68rem;
  color: var(--violet2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
  position: relative;
  z-index: 2;
  transition: all 0.4s var(--ease-out);
}
.process-step-card:hover .process-time {
  background: rgba(34,211,238,0.1);
  border-color: rgba(34,211,238,0.3);
  color: var(--cyan);
}
.process-glow {
  position: absolute;
  inset: -1px;
  background: radial-gradient(ellipse at top, rgba(139,92,246,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 0;
}

/* =========================================================
   Timeline (legacy, unused)
   ========================================================= */
.timeline {
  position: relative;
  padding-left: 70px;
}
@media (max-width: 768px) { .timeline { padding-left: 50px; } }

.timeline-line {
  position: absolute;
  top: 60px; left: 24px;
  width: 2px;
  height: calc(100% - 120px);
  background: rgba(167,139,250,0.08);
  border-radius: 2px;
  overflow: visible;
}
@media (max-width: 768px) { .timeline-line { left: 16px; } }

.timeline-progress {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 0;
  background: linear-gradient(180deg, var(--violet), var(--blue), var(--cyan));
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(139,92,246,0.6), 0 0 30px rgba(59,130,246,0.4);
  transition: height 0.05s linear;
}

.timeline-step {
  position: relative;
  padding: 1.4rem 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.timeline-step.in {
  opacity: 1;
  transform: translateY(0);
}

.timeline-dot {
  position: absolute;
  top: 50%; left: -55px;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 768px) { .timeline-dot { left: -42px; } }

.timeline-dot-core {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(167,139,250,0.2);
  border: 1.5px solid rgba(167,139,250,0.4);
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
  z-index: 2;
}
.timeline-dot-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
  opacity: 0;
}

.timeline-step.active .timeline-dot-core {
  width: 16px; height: 16px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  border-color: transparent;
  box-shadow:
    0 0 18px rgba(139,92,246,0.9),
    0 0 40px rgba(59,130,246,0.5);
}
.timeline-step.active .timeline-dot-ring {
  opacity: 1;
  border-color: rgba(167,139,250,0.4);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.25); opacity: 0.15; }
}

.timeline-card {
  position: relative;
  padding: 1.75rem 2rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(167,139,250,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(167,139,250,0.1);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
}
.timeline-step.active .timeline-card {
  border-color: rgba(167,139,250,0.35);
  background: linear-gradient(180deg, rgba(139,92,246,0.1) 0%, rgba(59,130,246,0.04) 100%);
  box-shadow: 0 20px 60px -20px rgba(139,92,246,0.4), 0 0 0 1px rgba(167,139,250,0.1);
  transform: translateY(-2px);
}

.timeline-bignum {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  font-size: 9rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(167,139,250,0.18);
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
  z-index: 1;
}
.timeline-step.active .timeline-bignum {
  -webkit-text-stroke: 1.5px transparent;
  background: linear-gradient(135deg, rgba(167,139,250,0.5) 0%, rgba(96,165,250,0.3) 60%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translateY(-50%) translateX(-8px);
}
@media (max-width: 768px) {
  .timeline-bignum { font-size: 5.5rem; right: 12px; }
}

.timeline-card > * { position: relative; z-index: 2; }

.timeline-meta {
  display: flex; gap: 0.7rem; align-items: center; flex-wrap: wrap;
  margin-bottom: 0.8rem;
}
.timeline-num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--violet2);
  text-transform: uppercase;
}
.timeline-time {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.2);
  font-family: 'Geist Mono', monospace;
  font-size: 0.65rem;
  color: var(--violet2);
}
.timeline-step.active .timeline-time {
  background: rgba(34,211,238,0.1);
  border-color: rgba(34,211,238,0.3);
  color: var(--cyan);
}
.timeline-title {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 2;
}
.timeline-text {
  font-size: 1.02rem;
  color: rgba(245,243,255,0.65);
  line-height: 1.55;
  max-width: 56ch;
  position: relative;
  z-index: 2;
}

/* =========================================================
   About / Image
   ========================================================= */
.about-image-wrap { position: relative; }
.about-image-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.24), transparent 65%);
  filter: blur(60px);
  z-index: 0;
}
.about-image-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(167,139,250,0.2);
  z-index: 1;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 36px 90px -28px rgba(139,92,246,0.5);
}
.about-image-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease-out);
}
.about-image-card:hover img { transform: scale(1.04); }
@media (max-width: 1024px) { .about-image-card img { height: 540px; } }
@media (max-width: 768px) { .about-image-card img { height: 460px; } }
.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,1,23,0.96) 0%, rgba(10,1,23,0.22) 52%, transparent 100%);
  display: flex; align-items: flex-end;
  padding: 2.4rem;
}
.about-image-meta { display: flex; flex-direction: column; }
.about-image-name { font-size: 1.45rem; font-weight: 500; letter-spacing: -0.024em; color: #FAF8FF; }
.about-image-role {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--violet2);
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.about-pill {
  padding: 1.05rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(167,139,250,0.045);
  border: 1px solid var(--line-soft);
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.about-pill:hover {
  background: rgba(167,139,250,0.085);
  border-color: var(--line-mid);
  transform: translateY(-2px);
}
.about-pill-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.6rem;
  color: var(--violet2);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.about-pill-value {
  font-weight: 500;
  letter-spacing: -0.015em;
  font-size: 0.95rem;
  color: #FAF8FF;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  border-radius: var(--radius-lg);
  background: rgba(167,139,250,0.035);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.faq:hover {
  border-color: var(--line-mid);
  background: rgba(167,139,250,0.055);
}
.faq[open] {
  background: linear-gradient(180deg, rgba(139,92,246,0.09), rgba(59,130,246,0.028));
  border-color: rgba(167,139,250,0.32);
  box-shadow: 0 22px 50px -28px rgba(139,92,246,0.55);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  transition: color 0.3s;
}
.faq summary:hover { color: #FFFFFF; }
.faq summary > span:first-child {
  flex: 1;
  text-wrap: balance;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(167,139,250,0.08);
  border: 1px solid rgba(167,139,250,0.22);
  color: var(--violet2);
  transition: transform 0.45s var(--ease-spring), background 0.4s, border-color 0.4s, box-shadow 0.4s;
  flex-shrink: 0;
}
.faq:hover .faq-icon {
  background: rgba(167,139,250,0.14);
  border-color: rgba(167,139,250,0.35);
}
.faq[open] .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--violet), var(--blue));
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 18px -4px rgba(139,92,246,0.6);
}
.faq-icon svg { width: 15px; height: 15px; }
.faq-body {
  padding: 0 1.7rem 1.55rem 1.7rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-size: 0.96rem;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

/* =========================================================
   CTA Glow
   ========================================================= */
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px; height: 1100px;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.22) 0%, transparent 60%);
  filter: blur(60px);
}
.cta-h2 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin-bottom: 1.6rem;
  text-wrap: balance;
  text-shadow: 0 4px 40px rgba(10,1,23,0.6);
}

/* =========================================================
   Reveal Defaults (fallback if GSAP not loaded)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s, transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Cursor on interactive */
a, button, summary, .pkg-card, .case-card, .problem-card, .faq, .approach-row, .process-step-card, .cap-card, .demo-play-btn, .usecase-pill { cursor: none; }
@media (max-width: 900px) { a, button, summary, .pkg-card, .case-card, .problem-card, .faq, .approach-row, .process-step-card, .cap-card, .demo-play-btn, .usecase-pill { cursor: pointer; } }

/* =========================================================
   Nav links — underline animation
   ========================================================= */
.nav-link {
  position: relative;
  letter-spacing: -0.005em;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--violet2), var(--cyan));
  transition: width 0.4s var(--ease-out);
}
.nav-link:hover::after { width: 100%; }

/* =========================================================
   Floating WhatsApp polish
   ========================================================= */
#floatingTg {
  transition: transform 0.45s var(--ease-spring), box-shadow 0.4s var(--ease-out);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 12px 32px -8px rgba(139,92,246,0.5),
    0 0 60px -10px rgba(59,130,246,0.3);
}
#floatingTg:hover {
  transform: scale(1.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.28) inset,
    0 18px 40px -8px rgba(139,92,246,0.7),
    0 0 80px -6px rgba(59,130,246,0.45);
}
#floatingTg::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(167,139,250,0.4);
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
}
#floatingTg:hover::before { opacity: 1; transform: scale(1.06); }

/* =========================================================
   Nav surface refinement
   ========================================================= */
nav {
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), padding 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
nav.nav-scrolled {
  background: rgba(10,1,23,0.82);
  border-bottom-color: rgba(167,139,250,0.2);
  box-shadow: 0 1px 0 rgba(255,255,255,0.02) inset, 0 12px 28px -12px rgba(0,0,0,0.4);
}
nav.nav-scrolled .logo-mark {
  width: 52px;
  height: 52px;
}
nav .logo-mark { transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), transform 0.45s var(--ease-spring), filter 0.4s var(--ease-out); }

/* =========================================================
   Hero Phone Mockup
   ========================================================= */
.phone-mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  perspective: 1600px;
}
.phone-mockup-glow {
  position: absolute;
  inset: -80px;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.32), transparent 65%);
  filter: blur(70px);
  z-index: 0;
}
.phone-mockup {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #1C0B38 0%, #0A0117 100%);
  border: 1px solid rgba(167,139,250,0.25);
  border-radius: 46px;
  padding: 13px;
  box-shadow:
    0 50px 100px -30px rgba(139,92,246,0.6),
    0 0 0 1px rgba(167,139,250,0.1),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.5);
  transform: rotateY(-5deg) rotateX(1.5deg);
  transition: transform 0.9s var(--ease-out);
  animation: phoneFloat 10s ease-in-out infinite;
}
.phone-mockup:hover { transform: rotateY(-2deg) rotateX(0deg) translateY(-4px); }
@keyframes phoneFloat {
  0%, 100% { transform: rotateY(-5deg) rotateX(1.5deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(1.5deg) translateY(-8px); }
}
.phone-notch {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  background: linear-gradient(180deg, #0A0117 0%, #120426 100%);
  border-radius: 32px;
  padding: 56px 18px 22px;
  min-height: 540px;
  overflow: hidden;
}
.phone-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: radial-gradient(ellipse at top, rgba(139,92,246,0.25), transparent 70%);
  pointer-events: none;
}
.phone-status {
  position: absolute;
  top: 18px; left: 22px; right: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  color: var(--ghost);
  z-index: 4;
}
.phone-status-right { display: flex; gap: 4px; align-items: center; opacity: 0.85; }
.phone-chat-head {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.4rem 0.4rem 1rem;
  border-bottom: 1px solid rgba(167,139,250,0.1);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.phone-avatar {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 4px 14px rgba(139,92,246,0.5);
}
.phone-avatar-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  border: 1.5px solid rgba(167,139,250,0.45);
  animation: avatarPulse 2.4s ease-in-out infinite;
}
@keyframes avatarPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.15); opacity: 0.1; }
}
.phone-name { font-size: 0.92rem; font-weight: 500; letter-spacing: -0.01em; }
.phone-presence {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.64rem;
  color: rgba(34,211,238,0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.phone-presence .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}
.phone-msgs {
  display: flex; flex-direction: column;
  gap: 0.7rem;
  position: relative; z-index: 2;
}
.phone-msg {
  display: flex;
  max-width: 92%;
  opacity: 0;
  transform: translateY(8px);
  animation: msgIn 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}
.phone-msg:nth-child(1) { animation-delay: 0.4s; }
.phone-msg:nth-child(2) { animation-delay: 1.1s; }
.phone-msg:nth-child(3) { animation-delay: 2.0s; }
.phone-msg:nth-child(4) { animation-delay: 2.8s; }
@keyframes msgIn {
  to { opacity: 1; transform: translateY(0); }
}
.phone-msg-bot { align-self: flex-start; }
.phone-msg-me { align-self: flex-end; }
.phone-msg-bubble {
  padding: 0.6rem 0.85rem;
  border-radius: 16px;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.phone-msg-bot .phone-msg-bubble {
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.15);
  color: rgba(245,243,255,0.92);
  border-bottom-left-radius: 6px;
}
.phone-msg-me .phone-msg-bubble {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: white;
  border-bottom-right-radius: 6px;
  box-shadow: 0 6px 18px rgba(139,92,246,0.35);
}
.phone-msg-typing {
  display: flex; gap: 4px;
  padding: 0.7rem 0.9rem;
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.15);
  border-radius: 16px;
  border-bottom-left-radius: 6px;
}
.phone-msg-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet2);
  animation: typing 1.4s ease-in-out infinite;
}
.phone-msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.phone-msg-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@media (max-width: 1024px) {
  .phone-mockup-wrap { max-width: 320px; margin: 2rem auto 0; }
  .phone-mockup {
    animation: none;
    transform: none;
  }
}
@media (max-width: 640px) {
  .phone-mockup-wrap { max-width: 280px; }
  .phone-screen { min-height: 460px; padding: 52px 14px 18px; }
  .phone-notch { width: 90px; height: 22px; top: 18px; }
  .phone-status { top: 14px; left: 18px; right: 18px; font-size: 0.66rem; }
  .phone-msg-bubble { font-size: 0.72rem; padding: 0.55rem 0.78rem; }
}

/* =========================================================
   Industries Grid
   ========================================================= */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1100px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .industries-grid { grid-template-columns: 1fr; } }
.industry-card {
  padding: 1.95rem 1.7rem;
  border-radius: var(--radius-lg);
  background: var(--surf-card);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
  transition: transform 0.55s var(--ease-out), border-color 0.4s var(--ease-out), background 0.5s var(--ease-out), box-shadow 0.55s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.4), transparent);
  opacity: 0.5;
  transition: opacity 0.5s;
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--surf-card-hover);
  box-shadow: var(--shadow-card-hover);
}
.industry-card:hover::before { opacity: 1; }
.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 22px -4px rgba(139,92,246,0.6);
  transform: scale(1.05) rotate(-2deg);
}
.industry-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(139,92,246,0.16), rgba(59,130,246,0.08));
  border: 1px solid rgba(167,139,250,0.26);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet2);
  margin-bottom: 1.25rem;
  transition: transform 0.45s var(--ease-spring), background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.industry-title {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
  line-height: 1.25;
  color: #FAF8FF;
}
.industry-text {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.58;
  text-wrap: pretty;
}

/* =========================================================
   Quote Block (Michael Statement)
   ========================================================= */
.quote-block {
  position: relative;
  margin-top: 5rem;
  padding: 3.4rem 3.2rem 2.8rem;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, rgba(139,92,246,0.09), rgba(59,130,246,0.04));
  border: 1px solid rgba(167,139,250,0.2);
  backdrop-filter: blur(20px);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 36px 90px -38px rgba(139,92,246,0.45);
}
.quote-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(167,139,250,0.07) 0%, transparent 32%);
  pointer-events: none;
}
@media (max-width: 700px) { .quote-block { padding: 2.4rem 1.6rem 2.1rem; margin-top: 3.5rem; } }
.quote-mark {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 0.55;
  background: linear-gradient(135deg, var(--violet2) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  height: 2.4rem;
  opacity: 0.9;
  filter: drop-shadow(0 0 24px rgba(167,139,250,0.4));
}
.quote-text {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.024em;
  color: rgba(250,248,255,0.96);
  margin: 0 auto 2rem;
  max-width: 740px;
  font-style: italic;
  text-wrap: balance;
}
.quote-author {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.quote-author-name {
  font-weight: 500;
  letter-spacing: -0.018em;
  font-size: 1.02rem;
}
.quote-author-role {
  font-family: 'Geist Mono', monospace;
  font-size: 0.68rem;
  color: var(--violet2);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* =========================================================
   Footer
   ========================================================= */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3.2rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; } }
.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 360px;
  letter-spacing: -0.005em;
}
.footer-col {
  display: flex; flex-direction: column;
  gap: 0.8rem;
}
.footer-col-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--violet2);
  margin-bottom: 0.55rem;
}
.footer-link {
  font-size: 0.9rem;
  color: rgba(245,243,255,0.6);
  transition: color 0.35s var(--ease-out);
  letter-spacing: -0.005em;
  width: fit-content;
  position: relative;
}
.footer-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--violet2), var(--cyan));
  transition: width 0.45s var(--ease-out);
}
.footer-link:hover { color: var(--ghost); }
.footer-link:hover::after { width: 100%; }
.footer-link-static { cursor: default; opacity: 0.7; }
.footer-link-static::after { display: none; }
.footer-bottom {
  display: flex; flex-direction: row; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line-soft);
}

/* =========================================================
   Mobile polish for new sections
   ========================================================= */
@media (max-width: 768px) {
  .demo-player-card > .demo-player-head,
  .demo-player-card > .demo-player-controls,
  .demo-player-card > .demo-transcript { margin-left: 1.4rem; margin-right: 1.4rem; }
  .demo-player-card > .demo-player-head { margin-top: 1.2rem; }
  .demo-player-card > .demo-transcript { margin-bottom: 1.4rem; }
  .demo-player-controls { gap: 0.85rem; }
  .demo-player-avatar { width: 44px; height: 44px; border-radius: 14px; }
  .demo-player-title { font-size: 1.1rem; }
  .demo-play-btn { width: 48px; height: 48px; }
  .lifestyle-frame-caption {
    font-size: 0.62rem;
    bottom: 0.7rem;
    left: 0.9rem;
    padding: 0.35rem 0.7rem;
  }
  .hero-trust { gap: 0.6rem; font-size: 0.66rem; }
  .hero-trust-dot { display: none; }
  .next-step { padding: 1.5rem 1.4rem 1.4rem; }
  .next-step-time { top: 1.3rem; right: 1.4rem; }
}

/* =========================================================
   Demo Player (Morning Briefing)
   ========================================================= */
.demo-player {
  position: relative;
  width: 100%;
}
.demo-player-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse at center, rgba(34,211,238,0.22), transparent 60%);
  filter: blur(50px);
  z-index: 0;
}
.demo-player-card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-2xl);
  background: linear-gradient(180deg, rgba(167,139,250,0.08) 0%, rgba(59,130,246,0.04) 100%);
  border: 1px solid rgba(167,139,250,0.2);
  backdrop-filter: blur(24px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 36px 90px -28px rgba(139,92,246,0.5);
  overflow: hidden;
}
.demo-player-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-bottom: 1px solid rgba(167,139,250,0.15);
}
.demo-player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.demo-player-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,1,23,0.7) 100%);
  pointer-events: none;
}
.demo-player-card > .demo-player-head,
.demo-player-card > .demo-player-controls,
.demo-player-card > .demo-transcript { margin-left: 2.2rem; margin-right: 2.2rem; }
.demo-player-card > .demo-player-head { margin-top: 1.6rem; }
.demo-player-card > .demo-transcript { margin-bottom: 2rem; }
.demo-player-head {
  display: flex; align-items: center; gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(167,139,250,0.1);
  margin-bottom: 1.5rem;
}
.demo-player-avatar {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 6px 20px rgba(139,92,246,0.5);
  flex-shrink: 0;
}
.demo-player-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 2px solid rgba(167,139,250,0.4);
  animation: avatarPulse 2.4s ease-in-out infinite;
}
.demo-player-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.022em;
}
.demo-player-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 0.68rem;
  color: var(--violet2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}
.demo-player-controls {
  display: flex; align-items: center; gap: 1.25rem;
  margin-bottom: 1.6rem;
}
.demo-play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  border: none;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(139,92,246,0.5), 0 0 0 0 rgba(139,92,246,0.4);
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: playPulse 2.5s ease-in-out infinite;
}
.demo-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(139,92,246,0.7);
}
@keyframes playPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(139,92,246,0.5), 0 0 0 0 rgba(139,92,246,0.4); }
  50% { box-shadow: 0 8px 24px rgba(139,92,246,0.5), 0 0 0 18px rgba(139,92,246,0); }
}
.demo-wave {
  flex: 1;
  display: flex; align-items: center; gap: 3px;
  height: 52px;
}
.demo-wave span {
  flex: 1;
  background: linear-gradient(180deg, var(--violet2), var(--cyan));
  border-radius: 3px;
  opacity: 0.35;
  transform-origin: center;
  height: 28%;
  transition: opacity 0.4s var(--ease-out);
  box-shadow: 0 0 8px rgba(139,92,246,0.4);
}
.demo-wave.playing span {
  opacity: 0.95;
  animation: waveBounce 1.1s ease-in-out infinite;
}
.demo-wave.playing span:nth-child(2n) { animation-delay: 0.1s; }
.demo-wave.playing span:nth-child(3n) { animation-delay: 0.2s; }
.demo-wave.playing span:nth-child(4n) { animation-delay: 0.3s; }
.demo-wave.playing span:nth-child(5n) { animation-delay: 0.4s; }
.demo-wave.playing span:nth-child(7n) { animation-delay: 0.55s; }
.demo-wave.playing span:nth-child(11n) { animation-delay: 0.7s; }
@keyframes waveBounce {
  0%, 100% { height: 20%; }
  30% { height: 85%; }
  60% { height: 45%; }
}
.demo-time {
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  color: var(--violet2);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  min-width: 40px;
  text-align: right;
}
.demo-transcript {
  padding: 1.3rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(10,1,23,0.5);
  border: 1px solid var(--line-soft);
}
.demo-transcript-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet2);
  margin-bottom: 0.7rem;
}
.demo-transcript p {
  font-size: 0.94rem;
  color: rgba(245,243,255,0.82);
  line-height: 1.6;
  font-style: italic;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

/* =========================================================
   Capabilities Grid
   ========================================================= */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1100px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .cap-grid { grid-template-columns: 1fr; } }

.cap-card {
  padding: 1.95rem 1.7rem;
  border-radius: var(--radius-lg);
  background: var(--surf-card);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
  transition: transform 0.55s var(--ease-out), border-color 0.4s var(--ease-out), background 0.5s var(--ease-out), box-shadow 0.55s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.4), transparent);
  opacity: 0.4;
  transition: opacity 0.5s;
}
.cap-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--surf-card-hover);
  box-shadow: var(--shadow-card-hover);
}
.cap-card:hover::before { opacity: 1; }
.cap-card:hover .cap-icon {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  border-color: transparent;
  color: white;
  box-shadow: 0 10px 22px -4px rgba(139,92,246,0.6);
  transform: scale(1.05) rotate(-2deg);
}
.cap-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(139,92,246,0.16), rgba(59,130,246,0.08));
  border: 1px solid rgba(167,139,250,0.26);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet2);
  margin-bottom: 1.3rem;
  transition: transform 0.45s var(--ease-spring), background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.cap-title {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
  line-height: 1.25;
  color: #FAF8FF;
}
.cap-text {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.58;
  text-wrap: pretty;
}

/* =========================================================
   Use Case Story (Chat Thread)
   ========================================================= */
.usecase-thread {
  display: flex; flex-direction: column;
  gap: 1.1rem;
  margin: 3rem auto 0;
  max-width: 720px;
}
.usecase-msg { display: flex; max-width: 92%; }
.usecase-msg-me { align-self: flex-end; }
.usecase-msg-bot { align-self: flex-start; max-width: 95%; }
.usecase-msg-mini { max-width: 50%; }
.usecase-bubble {
  position: relative;
  padding: 1.05rem 1.25rem;
  border-radius: 22px;
  font-size: 0.95rem;
  line-height: 1.5;
  backdrop-filter: blur(20px);
  letter-spacing: -0.005em;
}
.usecase-msg-me .usecase-bubble {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: white;
  border-bottom-right-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 12px 30px -8px rgba(139,92,246,0.45);
}
.usecase-msg-bot .usecase-bubble {
  background: rgba(167,139,250,0.085);
  border: 1px solid rgba(167,139,250,0.2);
  border-bottom-left-radius: 8px;
  color: rgba(245,243,255,0.92);
  box-shadow: var(--shadow-card);
}
.usecase-msg-mini .usecase-bubble {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
}
.usecase-time {
  font-family: 'Geist Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  margin-top: 0.6rem;
  opacity: 0.55;
}
.usecase-action {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(167,139,250,0.12);
  border: 1px solid rgba(167,139,250,0.25);
  font-family: 'Geist Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet2);
  margin-bottom: 0.8rem;
}
.usecase-quote {
  padding: 0.85rem 1rem;
  background: rgba(10,1,23,0.45);
  border-left: 2px solid var(--violet2);
  border-radius: 8px;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(245,243,255,0.85);
  margin-bottom: 0.9rem;
}
.usecase-actions {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
.usecase-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: white;
  border: none;
  font-family: 'Geist', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 0.2s;
}
.usecase-pill:hover { transform: translateY(-1px); }
.usecase-pill-ghost {
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.25);
  color: var(--violet2);
}
.usecase-status {
  display: flex; flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}
.usecase-step {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  border-radius: 10px;
  background: rgba(34,211,238,0.06);
  border: 1px solid rgba(34,211,238,0.18);
  font-size: 0.82rem;
  color: rgba(245,243,255,0.85);
}
.usecase-step.done svg { color: var(--cyan); }
.usecase-followup {
  font-size: 0.92rem;
  color: rgba(245,243,255,0.78);
  margin-bottom: 0.4rem;
}
.usecase-foot {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.1rem;
  color: rgba(245,243,255,0.55);
  font-style: italic;
}

/* =========================================================
   Process Visuals (CSS-only)
   ========================================================= */
.process-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .process-grid-3 { grid-template-columns: 1fr; } }

.process-step-card .process-visual {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(10,1,23,0.6) 0%, rgba(18,4,38,0.4) 100%);
  border: 1px solid rgba(167,139,250,0.1);
  margin-bottom: 1.6rem;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.process-visual-img { padding: 0; }
.process-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.process-step-card:hover .process-visual-img img { transform: scale(1.06); }
.process-visual-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,1,23,0.55) 100%);
  pointer-events: none;
}
.psv-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.25), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

/* Step 1: Server Stack */
.process-visual-stack { gap: 8px; }
.psv-bar {
  width: 10px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--violet2), var(--cyan));
  box-shadow: 0 0 12px rgba(139,92,246,0.6);
  animation: psvBar 2.4s ease-in-out infinite;
}
.psv-bar-1 { height: 40%; animation-delay: 0s; }
.psv-bar-2 { height: 70%; animation-delay: 0.2s; }
.psv-bar-3 { height: 90%; animation-delay: 0.4s; }
.psv-bar-4 { height: 55%; animation-delay: 0.6s; }
@keyframes psvBar {
  0%, 100% { transform: scaleY(0.85); opacity: 0.7; }
  50%      { transform: scaleY(1.1); opacity: 1; }
}

/* Step 2: Brain core with rings */
.process-visual-brain { perspective: 600px; }
.psv-brain-core {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #E0D0FF 0%, var(--violet) 45%, var(--blue) 100%);
  box-shadow:
    0 0 30px rgba(139,92,246,0.8),
    0 0 60px rgba(59,130,246,0.4),
    inset 0 0 12px rgba(255,255,255,0.3);
  z-index: 2;
  animation: brainPulse 3s ease-in-out infinite;
}
@keyframes brainPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}
.psv-brain-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(167,139,250,0.4);
  z-index: 1;
}
.psv-brain-ring-1 {
  width: 80px; height: 80px;
  animation: brainRing 6s linear infinite;
}
.psv-brain-ring-2 {
  width: 110px; height: 110px;
  border-color: rgba(34,211,238,0.25);
  animation: brainRing 9s linear infinite reverse;
}
@keyframes brainRing {
  from { transform: rotate(0) scale(1); }
  to   { transform: rotate(360deg) scale(1.05); }
}

/* Step 3: Tools constellation */
.process-visual-tools { }
.psv-node {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 0 10px rgba(139,92,246,0.7);
  z-index: 2;
}
.psv-node-center {
  width: 18px; height: 18px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 35%, #fff 0%, var(--violet2) 50%, var(--blue) 100%);
  box-shadow: 0 0 18px rgba(139,92,246,0.9), 0 0 36px rgba(59,130,246,0.4);
  animation: brainPulse 3s ease-in-out infinite;
}
.psv-node-1, .psv-node-2, .psv-node-3, .psv-node-4, .psv-node-5 {
  width: 8px; height: 8px;
  background: var(--violet2);
}
.psv-node-1 { top: 22%; left: 18%; animation: nodePulse 2.4s ease-in-out infinite; }
.psv-node-2 { top: 18%; left: 78%; animation: nodePulse 2.4s ease-in-out infinite 0.4s; }
.psv-node-3 { top: 50%; left: 12%; animation: nodePulse 2.4s ease-in-out infinite 0.8s; }
.psv-node-4 { top: 75%; left: 25%; animation: nodePulse 2.4s ease-in-out infinite 1.2s; }
.psv-node-5 { top: 70%; left: 82%; animation: nodePulse 2.4s ease-in-out infinite 1.6s; }
@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.4); opacity: 1; }
}
.psv-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(167,139,250,0.6), rgba(34,211,238,0.2));
  transform-origin: left center;
  z-index: 1;
  top: 50%; left: 50%;
}
.psv-line-1 { width: 38%; transform: translate(-100%, -50%) rotate(-145deg); }
.psv-line-2 { width: 38%; transform: translate(-100%, -50%) rotate(-35deg); }
.psv-line-3 { width: 42%; transform: translate(-100%, -50%) rotate(-180deg); }
.psv-line-4 { width: 36%; transform: translate(-100%, -50%) rotate(120deg); }
.psv-line-5 { width: 38%; transform: translate(-100%, -50%) rotate(35deg); }

.process-foot {
  display: flex; align-items: center; gap: 1.1rem;
  margin-top: 3rem;
  padding: 1.3rem 1.8rem;
  border-radius: var(--radius-lg);
  background: rgba(167,139,250,0.055);
  border: 1px solid var(--line-soft);
  color: rgba(245,243,255,0.85);
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.process-foot svg {
  filter: drop-shadow(0 0 12px rgba(139,92,246,0.5));
  flex-shrink: 0;
}
.process-foot p { margin: 0; }

/* =========================================================
   Lifestyle Photo Frames (editorial)
   ========================================================= */
.lifestyle-frame {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(167,139,250,0.2);
  isolation: isolate;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 28px 70px -24px rgba(139,92,246,0.55);
}
.lifestyle-frame-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.3), transparent 65%);
  filter: blur(60px);
  z-index: -1;
}
.lifestyle-img { transition: transform 1.4s var(--ease-out); }
.lifestyle-frame:hover .lifestyle-img { transform: scale(1.03); }
.lifestyle-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.lifestyle-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,1,23,0.7) 100%);
  pointer-events: none;
  z-index: 1;
}
.lifestyle-frame-caption {
  position: absolute;
  bottom: 1.2rem;
  left: 1.3rem;
  font-family: 'Geist Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,243,255,0.9);
  z-index: 2;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(10,1,23,0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(167,139,250,0.24);
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.5);
}
.lifestyle-frame-tight {
  margin-top: 2rem;
}
.lifestyle-frame-tight .lifestyle-img {
  aspect-ratio: 4 / 3;
}

/* =========================================================
   CTA with Background Photo
   ========================================================= */
.cta-with-photo { position: relative; }
.cta-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.85);
}
.cta-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(10,1,23,0.4) 0%, rgba(10,1,23,0.88) 70%, rgba(10,1,23,0.98) 100%),
    linear-gradient(180deg, rgba(139,92,246,0.18) 0%, rgba(10,1,23,0.5) 100%);
}
.cta-with-photo .cta-glow {
  filter: blur(60px);
  opacity: 0.7;
}

/* Use case thread inline variant (in two column layout) */
.usecase-thread-inline { margin-top: 0; max-width: 100%; }
.usecase-thread-inline .usecase-msg { max-width: 100%; }
.usecase-thread-inline + .usecase-foot { text-align: left; margin-top: 2rem; }

/* =========================================================
   Hero Trust Triplet
   ========================================================= */
.hero-trust {
  display: flex; flex-wrap: wrap;
  align-items: center;
  gap: 1.05rem;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,243,255,0.5);
}
.hero-trust-item {
  display: inline-flex; align-items: center; gap: 0.55rem;
  transition: color 0.35s var(--ease-out);
}
.hero-trust-item:hover { color: rgba(245,243,255,0.92); }
.hero-trust-item:hover svg { color: var(--cyan); }
.hero-trust-item svg {
  color: var(--violet2);
  width: 14px; height: 14px;
  stroke-width: 2.2px;
  transition: color 0.35s var(--ease-out);
}
.hero-trust-dot {
  color: rgba(167,139,250,0.3);
  font-size: 0.6rem;
}

/* =========================================================
   Stats Bar
   ========================================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 2.4rem 2.6rem;
  border-radius: var(--radius-xl);
  background: var(--surf-card);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.stats-grid::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.55), transparent);
}
.stats-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at top, rgba(139,92,246,0.08), transparent 60%);
  pointer-events: none;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.8rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    padding: 1.6rem 1.4rem;
  }
}
.stat-item {
  text-align: left;
  padding: 0 1.5rem;
  position: relative;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 0;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-mid), transparent);
}
@media (max-width: 900px) {
  .stat-item {
    padding: 1rem 1.2rem;
  }
  .stat-item:nth-child(odd) { padding-left: 0; }
  .stat-item:nth-child(even) { padding-right: 0; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { padding-top: 1.5rem; }
  .stat-item:nth-child(odd) + .stat-item::before { display: none; }
  .stat-item:nth-child(3)::before, .stat-item:nth-child(4)::before {
    content: '';
    top: 0; left: 0; right: 0; bottom: auto;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--line-mid), transparent);
  }
}
@media (max-width: 480px) {
  .stat-item, .stat-item:first-child, .stat-item:last-child {
    padding: 1rem 0;
  }
  .stat-item + .stat-item::before {
    top: 0; left: 0; right: 0; bottom: auto;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-mid), transparent);
  }
}
.stat-item { position: relative; z-index: 1; }
.stat-num {
  font-size: clamp(1.75rem, 2.9vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--violet2) 60%, var(--blue2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.7rem;
}
.stat-label {
  font-size: 0.84rem;
  color: var(--text-soft);
  letter-spacing: -0.005em;
  line-height: 1.4;
}

/* =========================================================
   Comparison Table
   ========================================================= */
.compare-table {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background: var(--surf-card);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.compare-head, .compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: stretch;
}
.compare-head {
  border-bottom: 1px solid var(--line-mid);
  background: rgba(10,1,23,0.5);
}
.compare-head-cell {
  padding: 1.3rem 1.6rem;
  font-family: 'Geist Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex; align-items: center;
}
.compare-head-spacer {}
.compare-head-std { color: rgba(245,243,255,0.45); }
.compare-head-mine {
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(34,211,238,0.1));
  border-left: 1px solid var(--line-mid);
  font-weight: 600;
  text-shadow: 0 0 18px rgba(34,211,238,0.4);
}
.compare-row {
  border-bottom: 1px solid rgba(167,139,250,0.07);
  transition: background 0.4s var(--ease-out);
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(167,139,250,0.03); }
.compare-cell {
  padding: 1.2rem 1.6rem;
  font-size: 0.94rem;
  display: flex; align-items: center; gap: 0.7rem;
  letter-spacing: -0.005em;
}
.compare-label {
  color: var(--ghost);
  font-weight: 500;
  letter-spacing: -0.012em;
}
.compare-no { color: rgba(245,243,255,0.4); }
.compare-no svg {
  color: rgba(239, 68, 68, 0.7);
  stroke-width: 2.4px;
  flex-shrink: 0;
}
.compare-yes {
  color: rgba(250,248,255,0.95);
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(34,211,238,0.05));
  border-left: 1px solid rgba(167,139,250,0.12);
  font-weight: 500;
}
.compare-yes svg {
  color: var(--cyan);
  stroke-width: 2.6px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(34,211,238,0.5));
}
.compare-row:hover .compare-yes {
  background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(34,211,238,0.07));
}
@media (max-width: 768px) {
  .compare-table { background: transparent; border: none; box-shadow: none; backdrop-filter: none; }
  .compare-head { display: none; }
  .compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "label label" "no yes";
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    margin-bottom: 12px;
    background: var(--surf-card);
    overflow: hidden;
  }
  .compare-row:last-child { margin-bottom: 0; }
  .compare-label {
    grid-area: label;
    background: rgba(10,1,23,0.55);
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--line-soft);
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .compare-no, .compare-yes {
    padding: 0.85rem 1rem 0.95rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.86rem;
    line-height: 1.35;
  }
  .compare-no { grid-area: no; }
  .compare-yes {
    grid-area: yes;
    border-left: 1px solid var(--line-soft);
    border-top: none;
  }
  .compare-no::before,
  .compare-yes::before {
    font-family: 'Geist Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
  }
  .compare-no::before { content: 'Standard-KI'; color: rgba(245,243,255,0.4); }
  .compare-yes::before { content: 'Dein Agent'; color: var(--cyan); text-shadow: 0 0 12px rgba(34,211,238,0.35); }
  .compare-no svg, .compare-yes svg { align-self: flex-start; margin-top: 1px; }
}

/* =========================================================
   Security Cards
   ========================================================= */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 700px) { .security-grid { grid-template-columns: 1fr; } }
.security-card {
  padding: 1.85rem 1.65rem;
  border-radius: var(--radius-lg);
  background: var(--surf-card);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease-out), background 0.45s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.security-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: var(--surf-card-hover);
  box-shadow: var(--shadow-card-hover);
}
.security-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(59,130,246,0.08));
  border: 1px solid rgba(167,139,250,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet2);
  margin-bottom: 1.2rem;
  transition: transform 0.45s var(--ease-spring), background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.security-card:hover .security-icon {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  border-color: transparent;
  color: white;
  box-shadow: 0 10px 22px -4px rgba(139,92,246,0.6);
  transform: scale(1.05) rotate(-2deg);
}
.security-title {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.018em;
  margin-bottom: 0.55rem;
  line-height: 1.25;
  color: #FAF8FF;
}
.security-text {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.58;
  text-wrap: pretty;
}

/* =========================================================
   Next Steps (Pre-CTA)
   ========================================================= */
.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
}
@media (max-width: 800px) { .next-steps { grid-template-columns: 1fr; } }
.next-step {
  position: relative;
  padding: 2.1rem 1.95rem 1.85rem;
  border-radius: var(--radius-xl);
  background: var(--surf-card);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease-out), background 0.45s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.next-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.45), transparent);
  opacity: 0.55;
  transition: opacity 0.5s;
}
.next-step:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--surf-card-hover);
  box-shadow: var(--shadow-card-hover);
}
.next-step:hover::before { opacity: 1; }
.next-step-num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--violet2);
  margin-bottom: 1rem;
}
.next-step-time {
  position: absolute;
  top: 1.95rem;
  right: 1.95rem;
  font-family: 'Geist Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.36rem 0.8rem;
  border-radius: 999px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.24);
  color: var(--cyan);
}
.next-step-title {
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: -0.024em;
  margin-bottom: 0.6rem;
  line-height: 1.2;
  color: #FAF8FF;
}
.next-step-text {
  font-size: 0.94rem;
  color: var(--text-soft);
  line-height: 1.58;
  text-wrap: pretty;
}

/* =========================================================
   Mobile polish (additional)
   ========================================================= */
@media (max-width: 1024px) {
  .lifestyle-frame-tight { margin-top: 2.5rem; }
}

@media (max-width: 768px) {
  .section-h2 { letter-spacing: -0.034em; line-height: 1.0; }
  .pkg-card { padding: 2rem 1.6rem 1.8rem; }
  .pkg-featured { transform: none; }
  .pkg-featured:hover { transform: translateY(-4px); }
  .problem-card { padding: 1.85rem 1.55rem; }
  .problem-card .problem-text { font-size: 0.92rem; }
  .process-step-card { padding: 2.2rem 1.75rem 1.8rem; min-height: auto; }
  .process-num { font-size: 3.4rem; top: 1.1rem; right: 1.35rem; }
  .stats-grid { padding: 1.7rem 1.5rem; }
  .stat-num { letter-spacing: -0.032em; }
  .cap-card, .industry-card { padding: 1.7rem 1.45rem; }
  .security-card { padding: 1.6rem 1.45rem; }
  .next-step { padding: 1.85rem 1.6rem 1.55rem; }
  .faq summary { padding: 1.25rem 1.4rem; font-size: 1rem; }
  .faq-body { padding: 0 1.4rem 1.25rem 1.4rem; font-size: 0.92rem; }
  .compare-cell, .compare-head-cell { padding: 1rem 1.25rem; font-size: 0.88rem; }
  .quote-text { font-size: 1.18rem; }
  .quote-mark { font-size: 4.6rem; height: 1.9rem; }
  .problem-quote { padding: 1.7rem 1.5rem; gap: 1.1rem; }
  .process-foot { padding: 1.1rem 4.5rem 1.1rem 1.4rem; gap: 0.9rem; font-size: 0.92rem; }
  .usecase-foot { font-size: 1rem; }
}

@media (max-width: 640px) {
  .hero-trust { gap: 0.7rem; font-size: 0.62rem; letter-spacing: 0.18em; margin-top: 1.8rem; padding-top: 1.6rem; }
  .hero-trust-dot { display: none; }
  .pkg-price .num { font-size: 2.15rem; }
  .demo-player-card > .demo-player-head,
  .demo-player-card > .demo-player-controls,
  .demo-player-card > .demo-transcript { margin-left: 1.4rem; margin-right: 1.4rem; }
  .demo-player-controls { gap: 0.85rem; }
  .demo-player-title { font-size: 1.1rem; }
  .demo-play-btn { width: 48px; height: 48px; }
  .quote-block { padding: 2.2rem 1.6rem 1.9rem; }
}

@media (max-width: 480px) {
  .section-h2 { font-size: clamp(1.9rem, 8vw, 2.45rem); }
  .cta-h2 { font-size: clamp(2.05rem, 9vw, 2.85rem); letter-spacing: -0.04em; }
  .section-label { font-size: 0.62rem; letter-spacing: 0.2em; }
}

/* =========================================================
   Section spacing helper (Tailwind compat)
   ========================================================= */
@media (max-width: 768px) {
  section.py-28 { padding-top: 5rem; padding-bottom: 5rem; }
  section.md\:py-36 { padding-top: 5rem; padding-bottom: 5rem; }
  section.py-20 { padding-top: 4rem; padding-bottom: 4rem; }
}
@media (max-width: 480px) {
  section.py-28 { padding-top: 4rem; padding-bottom: 4rem; }
  section.py-20 { padding-top: 3rem; padding-bottom: 3rem; }
}

/* =========================================================
   Reduced motion support
   ========================================================= */
@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;
  }
  .phone-mockup { animation: none; transform: none; }
  .aurora-blob { animation: none; }
  .marquee-track { animation-duration: 200s; }
}

/* =========================================================
   Marquee polish — bigger text + premium styling
   ========================================================= */
.marquee-track {
  font-feature-settings: 'ss01';
  letter-spacing: -0.028em;
  font-weight: 480;
}
.marquee-track > span:not(.text-violet) {
  transition: color 0.4s;
}
.marquee-track .text-violet {
  font-size: 0.45em;
  opacity: 0.5;
  color: var(--violet2);
}


/* =========================================================
   Scroll cue
   ========================================================= */
.scroll-cue {
  opacity: 0.75;
  transition: opacity 0.4s var(--ease-out);
}
.scroll-cue:hover { opacity: 1; }
.scroll-cue-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(167,139,250,0.7) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--cyan));
  animation: scrollCueDrop 2.4s ease-in-out infinite;
}
@keyframes scrollCueDrop {
  0%   { top: -50%; opacity: 0; }
  30%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Hide scroll cue at very small heights */
@media (max-height: 720px) {
  .scroll-cue { display: none; }
}

/* =========================================================
   Hero link arrow nudge on hover
   ========================================================= */
.hero-link svg { transition: transform 0.35s var(--ease-spring); }
.hero-link:hover svg { transform: translateY(3px); }

/* =========================================================
   Demo player meta + audio-icon refinement
   ========================================================= */
.demo-player-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.demo-player-card:hover .demo-player-avatar {
  box-shadow: 0 8px 26px rgba(139,92,246,0.65);
}
.demo-player-avatar {
  transition: box-shadow 0.4s var(--ease-out);
}

/* =========================================================
   Card focus-visible polish
   ========================================================= */
.faq:focus-within {
  border-color: var(--line-mid);
}
summary:focus-visible {
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}

/* =========================================================
   Floating WhatsApp — better mobile sizing
   ========================================================= */
@media (max-width: 640px) {
  #floatingTg { width: 52px; height: 52px; bottom: 1rem; right: 1rem; }
  #floatingTg i { width: 22px; height: 22px; }
}

/* =========================================================
   Industries grid gap tightening
   ========================================================= */
.industries-grid { gap: 1.1rem; }
.cap-grid { gap: 1.1rem; }
.security-grid { gap: 1.15rem; }
.process-grid { gap: 1.2rem; }
.process-grid-3 { gap: 1.2rem; }
.next-steps { gap: 1.15rem; }

/* =========================================================
   Demo player cover img — lazy-load refinement
   ========================================================= */
.demo-player-cover img {
  transition: transform 1.2s var(--ease-out);
}
.demo-player-card:hover .demo-player-cover img {
  transform: scale(1.03);
}

/* =========================================================
   Pakete cards: improved consistent inner height
   ========================================================= */
.pkg-list { flex: 1; }

/* =========================================================
   Final headline polish — subtle weight calibration
   ========================================================= */
.hero-title .gradient-text {
  font-weight: 500;
}
.section-h2 .gradient-text {
  font-weight: 500;
}
