/* ============================================================
   Landing Page — index.html
   ============================================================ */

/* ── Section spacing override (tighter than global) ── */
.section    { padding: 72px 0; }
.section-sm { padding: 44px 0; }
@media (max-width: 768px) {
  .section    { padding: 56px 0; }
  .section-sm { padding: 32px 0; }
}

/* ── Page-wide decorative watermarks ── */
/* Subtle dot-grid background applied to the body via ::before */
body { position: relative; }
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(37,99,235,0.08) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0) 100%);
}
/* Ensure nav + content sit above the watermark */
.nav, section, footer { position: relative; z-index: 1; }

/* ── Hero ── */
.hero {
  min-height: auto;
  padding: 90px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 12% 18%, rgba(37,99,235,0.10), transparent 60%),
    radial-gradient(700px 500px at 90% 85%, rgba(16,185,129,0.10), transparent 60%);
}
@media (min-width: 1024px) {
  .hero { min-height: 620px; padding: 100px 0 90px; }
}
/* Decorative diagonal grid watermark for hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,0,0,1), rgba(0,0,0,0));
  pointer-events: none;
  z-index: 0;
}
/* Floating geometric watermark shapes — purely decorative */
.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.hero-deco.shape-1 { top: 14%; left: 46%; width: 120px; height: 120px; }
.hero-deco.shape-2 { bottom: 18%; left: 8%;  width: 90px;  height: 90px;  animation: float 5s ease-in-out infinite; }
.hero-deco.shape-3 { top: 60%; right: 4%;  width: 70px;  height: 70px;  animation: float 4s ease-in-out infinite reverse; }
.hero-deco svg { width: 100%; height: 100%; display: block; }
.hero h1 { font-size: clamp(40px, 7vw, 78px); font-weight: 900; line-height: 1.05; letter-spacing: -.03em; position: relative; }
.hero h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #10b981);
  border-radius: 2px;
}
.hero p { font-size: 18px; color: var(--text-secondary); max-width: 540px; line-height: 1.7; margin-top: 20px; }
.hero-stats { display: flex; gap: 40px; margin-top: 36px; }
.hero-stat-num { font-size: 28px; font-weight: 800; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; }
.hero-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-visual {
  position: absolute;
  right: max(40px, calc((100vw - 1280px) / 2 + 24px));
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 400px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  display: none;
  box-shadow: 0 30px 80px -20px rgba(37,99,235,0.30), 0 8px 32px rgba(0,0,0,0.08);
}
@media (max-width: 1280px) {
  .hero-visual { right: 24px; width: 440px; height: 380px; }
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(37,99,235,0.4), rgba(16,185,129,0.2), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
@media(min-width:1024px) { .hero-visual { display: block; } }
.hero-visual-bar { height: 40px; background: var(--bg-elevated); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 6px; padding: 0 14px; }
.hero-visual-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-visual-row { display: flex; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); align-items: center; transition: background .2s; }
.hero-visual-row:hover { background: var(--bg-hover); }
.hero-visual-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.hero-visual-title { font-size: 13px; font-weight: 600; }
.hero-visual-sub { font-size: 11px; color: var(--text-muted); }
.hero-visual-badge { margin-left: auto; }

/* ── How It Works ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 36px; }
.step-card { padding: 32px; text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; margin: 0 auto 20px; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── Features Grid ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 36px; }
.feature-card { padding: 28px; }
.feature-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── Pricing ── */
.pricing-toggle { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 32px; font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.plan-price { font-size: 48px; font-weight: 900; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; line-height: 1; }
.plan-price span { font-size: 16px; font-weight: 500; color: var(--text-muted); }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 36px; }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, rgba(37,99,235,.08) 0%, rgba(16,185,129,.05) 100%); border: 1px solid rgba(37,99,235,.15); border-radius: var(--radius-xl); padding: 56px 32px; text-align: center; }
@media (max-width: 768px) {
  .cta-section { padding: 40px 20px; }
}
.cta-section h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
.cta-section p { color: var(--text-secondary); font-size: 16px; max-width: 500px; margin: 16px auto 32px; line-height: 1.6; }

/* ── Footer ── */
footer { border-top: 1px solid var(--border); padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; }
.footer-heading { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 16px; }
.footer-link { display: block; font-size: 14px; color: var(--text-secondary); padding: 4px 0; transition: color .2s; }
.footer-link:hover { color: var(--text-primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }
@media(max-width:768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ── Logo Strip ── */
.logo-strip { padding: 40px 0; border-bottom: 1px solid var(--border); }
.logo-strip p { text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }
.logo-row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; align-items: center; opacity: .4; }
.logo-row span { font-size: 18px; font-weight: 700; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; white-space: nowrap; }

/* ============================================================
   Decorative section watermarks + polish
   ============================================================ */

/* Sections that opt-in get a soft gradient background + watermark */
.section.section-watermark {
  position: relative;
  overflow: hidden;
}
.section.section-watermark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(37,99,235,0.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,0,0,0.9), rgba(0,0,0,0));
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,0,0,0.9), rgba(0,0,0,0));
  z-index: 0;
}
/* Only the content containers get repositioned — decorations stay absolute */
.section.section-watermark > .container,
.section.section-watermark > .container-sm,
.section.section-watermark > .container-xs {
  position: relative;
  z-index: 1;
}

/* Floating section orbs */
.section-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.section-orb.orb-blue { background: radial-gradient(circle, rgba(59,130,246,0.24), transparent 70%); }
.section-orb.orb-cyan { background: radial-gradient(circle, rgba(16,185,129,0.22), transparent 70%); }

/* Section title eyebrow polish */
.section h2 { position: relative; }
.section h2 .eyebrow-line {
  display: block;
  width: 56px;
  height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, #2563eb, #10b981);
  border-radius: 2px;
}

/* Step cards — gradient border accent on hover */
.step-card {
  position: relative;
  overflow: hidden;
}
.step-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(16,185,129,0.06));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.step-card:hover::after { opacity: 1; }
.step-card .step-num {
  box-shadow: 0 8px 24px -8px var(--primary-glow);
}

/* Feature cards — top accent strip on hover */
.feature-card {
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #10b981);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { box-shadow: 0 12px 40px -12px var(--primary-glow), 0 2px 8px rgba(0,0,0,0.05); }

/* CTA section — extra polish + watermark */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(37,99,235,0.10) 1.2px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(0,0,0,0.7), rgba(0,0,0,0));
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(0,0,0,0.7), rgba(0,0,0,0));
  pointer-events: none;
}
.cta-section > :not(.cta-orb) { position: relative; z-index: 1; }
.cta-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.6;
}
.cta-orb.left  { left: -60px;  top: -60px;  background: radial-gradient(circle, rgba(59,130,246,0.30), transparent 70%); }
.cta-orb.right { right: -60px; bottom: -60px; background: radial-gradient(circle, rgba(16,185,129,0.30), transparent 70%); }

/* Pricing card — featured (Pro) gradient ring */
.plan-card.plan-featured {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(135deg, #2563eb, #10b981) border-box;
  box-shadow: 0 20px 50px -20px rgba(37,99,235,0.45);
}
.plan-card.plan-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(37,99,235,0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.plan-card.plan-featured > :not(.badge) { position: relative; z-index: 1; }

/* Testimonial card — quote watermark */
.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -28px;
  right: 12px;
  font-size: 160px;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

/* Stat card with gradient ring */
.stat-card {
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.04), transparent 60%);
  pointer-events: none;
}

/* Marquee strip — "trusted by" platform names */
.marquee-strip {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(37,99,235,0.02), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll-x 28s linear infinite;
  align-items: center;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
  letter-spacing: -0.01em;
  opacity: 0.7;
}
.marquee-item .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #10b981);
}

/* Floating SVG watermarks inside sections */
.section-watermark-svg {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}
.section-watermark-svg svg { width: 100%; height: 100%; display: block; }

/* Glow halo behind hero visual */
.hero-visual-halo {
  position: absolute;
  right: max(0px, calc((100vw - 1280px) / 2 - 60px));
  top: 50%;
  width: 560px;
  height: 440px;
  transform: translateY(-50%);
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.20), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  display: none;
}
@media(min-width:1024px) {
  .hero-visual { display: block; }
  .hero-visual-halo { display: block; }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT SHOWCASE — framed mockups + drag-to-Manage visual
   ══════════════════════════════════════════════════════════════ */

/* Browser-chrome frame reused for product mockups */
.browser-frame {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 30px 80px -28px rgba(37,99,235,0.28), 0 8px 28px rgba(0,0,0,0.06);
}
.browser-bar {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.browser-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.browser-url {
  margin-left: 12px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 4px 12px;
  flex: 1;
  max-width: 320px;
}
.browser-body { padding: 20px; }

.showcase-hero {
  max-width: 860px;
  margin: 44px auto 0;
}

/* Mock Jobs-Feed content */
.mock-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 14px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  margin-bottom: 18px;
}
.mock-banner-eyebrow { font-size: 11px; font-weight: 600; opacity: .85; letter-spacing: .04em; }
.mock-banner-title { font-size: 19px; font-weight: 800; margin-top: 4px; }
.mock-banner-sub { font-size: 12.5px; opacity: .82; margin-top: 3px; }
.mock-banner-stats { display: flex; gap: 26px; text-align: right; flex-shrink: 0; }
.mock-banner-num { font-size: 26px; font-weight: 800; line-height: 1; }
.mock-banner-lbl { font-size: 10.5px; opacity: .8; margin-top: 5px; text-transform: uppercase; letter-spacing: .05em; }
.mock-chips { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.mock-chip {
  font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--text-secondary); background: var(--bg-card);
}
.mock-chip.active { background: rgba(37,99,235,.08); color: var(--primary); border-color: rgba(37,99,235,.3); }
.mock-job {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 8px; border-bottom: 1px solid var(--border);
}
.mock-job:last-child { border-bottom: none; }
.mock-avatar {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
}
.mock-job-info { flex: 1; min-width: 0; }
.mock-job-title { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.mock-job-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.mock-match {
  font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; flex-shrink: 0;
}
.mock-match.high { background: rgba(22,163,74,.1);  color: #16a34a; }
.mock-match.mid  { background: rgba(217,119,6,.12); color: #b45309; }
.mock-apply {
  font-size: 12.5px; font-weight: 700; color: #fff; background: var(--primary);
  padding: 8px 16px; border-radius: 9px; flex-shrink: 0;
}

/* Feature split (copy + drag visual) */
.showcase-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: center;
  margin-top: 72px;
}
.showcase-copy-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  margin: 16px 0 14px;
  line-height: 1.2;
}
.showcase-copy-text { font-size: 15.5px; line-height: 1.7; color: var(--text-secondary); }
.showcase-list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.showcase-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text-primary); font-weight: 500; }
.showcase-tick {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(22,163,74,.12); color: #16a34a; font-size: 12px; font-weight: 800;
}

/* ── Drag-to-Manage visualization ── */
.dragviz {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 1px 1px, color-mix(in srgb, var(--primary) 9%, transparent) 1px, transparent 0) 0 0 / 20px 20px,
    var(--bg-card);
  box-shadow: 0 24px 64px -30px rgba(37,99,235,0.30), 0 6px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}
.dragviz-panel {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-base);
  padding: 14px;
  min-height: 190px;
}
.dragviz-panel-head { font-size: 12px; font-weight: 800; letter-spacing: .03em; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 12px; }
.dragviz-approw {
  display: flex; align-items: center; gap: 9px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  padding: 9px 11px; margin-bottom: 9px;
}
.dragviz-approw-ghost { opacity: .38; border-style: dashed; }
.dragviz-grip { color: var(--text-muted); font-size: 12px; letter-spacing: -2px; cursor: grab; }
.dragviz-appdot {
  width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 12px;
}
.dragviz-appname { font-size: 12.5px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.dragviz-col { border: 1px solid var(--border); border-radius: 10px; padding: 10px; margin-bottom: 9px; background: var(--bg-card); }
.dragviz-col-dim { opacity: .55; }
.dragviz-col-head { font-size: 11.5px; font-weight: 700; color: var(--text-secondary); display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.dragviz-count { background: rgba(37,99,235,.1); color: var(--primary); border-radius: 999px; padding: 1px 8px; font-size: 11px; font-weight: 700; }
.dragviz-dropzone {
  border: 2px dashed color-mix(in srgb, var(--primary) 45%, transparent);
  border-radius: 9px; padding: 14px; text-align: center;
  font-size: 12px; font-weight: 700; color: var(--primary);
  background: rgba(37,99,235,.05);
  animation: dropPulse 2.4s ease-in-out infinite;
}
@keyframes dropPulse {
  0%, 100% { background: rgba(37,99,235,.04); border-color: color-mix(in srgb, var(--primary) 35%, transparent); }
  50%      { background: rgba(37,99,235,.11); border-color: color-mix(in srgb, var(--primary) 60%, transparent); }
}

/* Card in flight between the two panels */
.dragviz-flight {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  z-index: 3;
  pointer-events: none;
}
.dragviz-arrow { position: absolute; left: 50%; top: 50%; width: 150px; height: 40px; transform: translate(-50%, -140%); opacity: .55; }
.dragviz-card {
  display: flex; align-items: center; gap: 9px;
  background: var(--bg-card);
  border: 1px solid color-mix(in srgb, var(--primary) 45%, var(--border));
  border-radius: 11px; padding: 10px 12px;
  box-shadow: 0 18px 40px -12px rgba(37,99,235,0.45), 0 6px 16px rgba(0,0,0,0.1);
  transform: rotate(-4deg);
  animation: dragFloat 3.2s ease-in-out infinite;
}
.dragviz-card-title { font-size: 12.5px; font-weight: 700; color: var(--text-primary); }
.dragviz-card-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.dragviz-cursor { position: absolute; right: -8px; bottom: -10px; width: 22px; height: 22px; filter: drop-shadow(0 2px 3px rgba(0,0,0,.3)); }
@keyframes dragFloat {
  0%, 100% { transform: rotate(-4deg) translate(-14px, 0); }
  50%      { transform: rotate(-4deg) translate(14px, -4px); }
}

@media (max-width: 860px) {
  .showcase-split { grid-template-columns: 1fr; gap: 32px; }
  .dragviz { padding: 18px; gap: 14px; }
  .dragviz-flight { width: 150px; }
  .dragviz-card { transform: rotate(-3deg) scale(.9); }
  .mock-banner { flex-direction: column; align-items: flex-start; }
  .mock-banner-stats { width: 100%; justify-content: space-between; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .dragviz-card, .dragviz-dropzone { animation: none; }
}

/* ── Showcase gallery (Applications / Settings / Mobile) ── */
.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
}
.gallery-item { margin: 0; }
.gallery-item figcaption {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 16px;
}
.gallery-frame { height: 100%; }
.gallery-body { padding: 16px; }
.gallery-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-size: 14px; }
.gallery-pill { font-size: 11px; font-weight: 700; color: var(--primary); background: rgba(37,99,235,.1); padding: 3px 10px; border-radius: 999px; }
.gallery-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.gallery-row:last-child { border-bottom: none; }
.gallery-dot { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 13px; }
.gallery-lines { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.gl-1 { font-size: 13px; font-weight: 700; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gl-2 { font-size: 11.5px; color: var(--text-muted); }
.gallery-tag { font-size: 11px; font-weight: 700; color: #059669; background: rgba(16,185,129,.12); padding: 3px 9px; border-radius: 999px; flex-shrink: 0; }
.gallery-profile { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; margin-bottom: 12px; border-bottom: 1px solid var(--border); }
.gallery-avatar { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg,#2563eb,#10b981); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.gallery-pref { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.gallery-pref:last-child { border-bottom: none; }
.gallery-pref span { color: var(--text-muted); }
.gallery-pref strong { color: var(--text-primary); font-weight: 700; }

/* Phone frame (mobile mockup) */
.phone-frame {
  position: relative;
  max-width: 210px;
  margin: 0 auto;
  aspect-ratio: 9 / 18;
  background: #0f172a;
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0 30px 70px -24px rgba(37,99,235,0.35), 0 8px 24px rgba(0,0,0,0.12);
}
.phone-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 74px; height: 16px; background: #0f172a; border-radius: 0 0 12px 12px; z-index: 2; }
.phone-screen { background: var(--bg-base); border-radius: 22px; height: 100%; overflow: hidden; padding: 26px 10px 10px; }
.phone-banner { background: linear-gradient(135deg,#1e293b,#0f172a); color: #fff; border-radius: 14px; padding: 12px; margin-bottom: 10px; }
.pb-eyebrow { font-size: 9px; opacity: .85; font-weight: 600; }
.pb-title { font-size: 13px; font-weight: 800; margin-top: 3px; }
.pb-stats { display: flex; gap: 12px; margin-top: 8px; font-size: 10px; opacity: .9; }
.pb-stats b { font-size: 13px; }
.phone-card { display: flex; align-items: center; gap: 9px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 11px; padding: 9px; margin-bottom: 8px; }

@media (max-width: 900px) {
  .showcase-gallery { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
