/* ══════════════════════════════════════════
   SENVAS – Refined Industrial Design
   Fonts: Sui Generis (display) + Pretendard (body)
══════════════════════════════════════════ */

/* ══ Custom Fonts ══ */
@font-face {
  font-family: 'Sui Generis';
  src: url('fonts/sui_generis/Sui Generis Rg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Pretendard via jsdelivr CDN — see HTML head <link>.
 * Local PretendardVariable.ttf was 6.5MB (full glyph set, all weights);
 * the dynamic-subset CSS only fetches the unicode ranges actually used
 * on the page (~100-200KB total). family is "Pretendard Variable". */

/* ══ Global ══ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  background: #050c0a;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.font-display { font-family: 'Sui Generis', sans-serif; }

.industrial-gradient {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(16, 50, 40, 0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(8, 30, 25, 0.5) 0%, transparent 50%),
    #050c0a;
}





/* ══ Scroll Reveal Animations ══ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ══ Header / Nav ══ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  background: rgba(5, 12, 10, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 32px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.25s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #00d4aa;
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.nav-link.active { color: #00d4aa; }
.nav-link.active::after { width: 100%; }

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 767px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 12, 10, 0.96);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 8px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 32px;
}

.mobile-nav-link {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: #fff; }

.btn-primary-mobile {
  padding: 14px 40px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  margin-top: 16px;
}

/* ══ Primary Button ══ */
.btn-primary {
  background: linear-gradient(135deg, #00d4aa 0%, #00a085 100%);
  border: none;
  cursor: pointer;
  color: #fff;
  transition: box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(0, 212, 170, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(0, 212, 170, 0.5);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

/* ══ Outline Button (DEMO) ══ */
.btn-outline {
  background: transparent;
  border: 1px solid #00d4aa;
  cursor: pointer;
  color: #00d4aa;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-outline:hover {
  background: rgba(0, 212, 170, 0.08);
  box-shadow: 0 4px 24px rgba(0, 212, 170, 0.2);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }

.btn-primary-nav {
  padding: 10px 24px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

/* ══ Hero Section ══ */


/* Subtle grid pattern */












@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}























/* ══ Shared Section Label ══ */


/* ══ Problem Section ══ */












/* ══ Demo Section ══ */


























/* ══ Product Section ══ */






/* Industry grid */












/* Product lineup */
















/* Product extras */




.product-extra-item .material-symbols-outlined {
  font-size: 20px;
  color: #00d4aa;
}

/* ══ CTA Section ══ */




/* Gradient border effect */












/* ══ Footer ══ */
.site-footer {
  background: #050c0a;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 40px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.footer-logo-accent {
  color: #00d4aa;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-link {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;        /* slate-400 — WCAG AA contrast on #050c0a */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #00d4aa;
}

.footer-copy {
  font-size: 11px;
  color: #64748b;        /* slate-500 — intentionally dimmer for copyright, still ≥4.5:1 */
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-contact {
  font-size: 11px;
  color: #94a3b8;        /* slate-400 — same as footer-link for consistency */
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

/* ══ Modal ══ */
#modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

#modal {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
#modal-overlay.open #modal {
  transform: translateY(0) scale(1);
}

#modal::-webkit-scrollbar { width: 6px; }
#modal::-webkit-scrollbar-track { background: transparent; }
#modal::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 3px; }







































/* ══ Form ══ */


























/* Step bar */

.step-bar.active { background: #00d4aa; }


/* Product card */


.product-card.selected {
  border-color: #00d4aa;
  background: rgba(0, 212, 170, 0.06);
}

.product-card.selected .selected-badge { display: block; }

/* Qty button */



/* CTA button */











/* Summary boxes */






























/* Step done */










/* ══ Material Symbols defaults ══ */
.material-symbols-outlined {
  font-size: 24px;
  color: #00d4aa;
}

/* ══ Responsive ══ */
@media (max-width: 767px) {
  #modal {
    border-radius: 0;
    max-height: 100vh;
    height: 100%;
    max-width: 100%;
    border: none;
  }
  #modal-overlay {
    padding: 0;
    align-items: flex-start;
  }

  /* Demo: single column */
  .demo-steps-grid {
    grid-template-columns: 1fr !important;
  }

  /* Industry grid: 2 columns */
  .industry-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Product lineup: single column */
  .product-lineup {
    grid-template-columns: 1fr !important;
  }

  /* Footer: center align */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* CTA section padding */
  .glass-panel-inner {
    padding: 48px 28px;
  }
}

@media (max-width: 480px) {
  .industry-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-title {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }
}

/* ═══════════════════════════════════════════
   POST-LAUNCH: PROBLEM
═══════════════════════════════════════════ */








/* ═══════════════════════════════════════════
   POST-LAUNCH: ALL-IN-ONE
═══════════════════════════════════════════ */


@media (max-width: 768px) {
  .allinone-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}













/* ═══════════════════════════════════════════
   POST-LAUNCH: PRODUCT LINEUP PRICE
═══════════════════════════════════════════ */




/* ═══════════════════════════════════════════
   POST-LAUNCH: PRICING
═══════════════════════════════════════════ */


@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}















/* ═══════════════════════════════════════════
   POST-LAUNCH: COST TABLE
═══════════════════════════════════════════ */


















/* ═══════════════════════════════════════════
   POST-LAUNCH: FAQ ACCORDION
═══════════════════════════════════════════ */










.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}



.faq-item.open .faq-answer {
  max-height: 300px;
}







/* ══════════════════════════════════════════════════════════════
   POST-LAUNCH V2 — Senvas V1 Product Page
   Design: Playfair Display + Noto Sans KR + JetBrains Mono
   Accent: #00d4aa (Senvas green, brochure-aligned)
   Scope: .post-launch sections only
══════════════════════════════════════════════════════════════ */

.post-launch {
  --pl-bg-primary: #050c0a;
  --pl-bg-secondary: #0a1612;
  --pl-bg-card: #102018;
  --pl-bg-card-hover: #172a24;
  --pl-bg-deep: #030706;
  --pl-accent: #00d4aa;
  --pl-accent-2: #00d4aa;
  --pl-accent-dim: rgba(0, 212, 170, 0.12);
  --pl-accent-glow: rgba(0, 212, 170, 0.18);
  --pl-text: #e8e8ef;
  --pl-text-secondary: #9a9ab0;
  --pl-text-muted: #55556a;
  --pl-text-faint: #3a3a48;
  --pl-border: rgba(255, 255, 255, 0.06);
  --pl-border-strong: rgba(255, 255, 255, 0.12);
  --pl-line: #252a36;
  --pl-line-2: #2d3340;
  --pl-display: 'Playfair Display', 'Noto Sans KR', Georgia, serif;
  --pl-sans: 'Noto Sans KR', 'Pretendard Variable', 'Pretendard', -apple-system, sans-serif;
  --pl-mono: 'JetBrains Mono', 'Consolas', monospace;
}

/* Force typography inside post-launch (but preserve icon fonts) */
.post-launch, .post-launch *:not(.material-symbols-outlined) {
  font-family: var(--pl-sans);
}
.post-launch em {
  font-style: normal;
  color: var(--pl-accent);
}
.post-launch a { text-decoration: none; }

/* ─────────── HERO ─────────── */
.pl-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
  position: relative;
}
.pl-hero-breadcrumb {
  font-family: var(--pl-mono);
  font-size: 0.72rem;
  color: var(--pl-text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 2.5rem;
}
.pl-hero-breadcrumb .sep { margin: 0 0.75rem; color: var(--pl-text-faint); }
.pl-hero-breadcrumb .current { color: var(--pl-accent); }

.pl-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}
.pl-hero-grid::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  right: -100px; top: 20%;
  background: radial-gradient(circle, var(--pl-accent-glow) 0%, transparent 65%);
  animation: pl-pulse 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes pl-pulse {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50%     { opacity: 0.6; transform: scale(1.08); }
}
.pl-hero-text { position: relative; z-index: 1; }
.pl-eyebrow {
  font-family: var(--pl-mono);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pl-accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pl-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--pl-accent);
}
.pl-hero-title {
  font-family: var(--pl-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--pl-text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.pl-hero-desc {
  color: var(--pl-text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.pl-hero-desc strong { color: var(--pl-text); font-weight: 500; }
.pl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.pl-chip {
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--pl-border-strong);
  border-radius: 100px;
  font-family: var(--pl-mono);
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--pl-text-secondary);
  background: rgba(255, 255, 255, 0.02);
}
.pl-chip.accent {
  color: var(--pl-accent);
  border-color: rgba(0, 212, 170, 0.35);
  background: rgba(0, 212, 170, 0.06);
}
.pl-hero-cta {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: stretch;
}

/* Engraved Windows download button — industrial panel look */
.pl-btn-win {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.15rem 0.65rem 0.95rem;
  font-family: var(--pl-sans);
  text-decoration: none;
  color: #d4d8e4;
  background: linear-gradient(180deg, #141d19 0%, #0d1512 100%);
  border: 1px solid #060a08;
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(0, 212, 170, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.65),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 1px 0 rgba(255, 255, 255, 0.04),
    0 2px 6px rgba(0, 0, 0, 0.45);
  transition: color 0.15s, background 0.15s, box-shadow 0.15s, transform 0.08s;
  cursor: pointer;
}
.pl-btn-win:hover {
  color: #ffffff;
  background: linear-gradient(180deg, #18231e 0%, #101814 100%);
  box-shadow:
    inset 0 1px 0 rgba(0, 212, 170, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(0, 212, 170, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.06),
    0 3px 10px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(0, 212, 170, 0.12);
}
.pl-btn-win:active {
  transform: translateY(1px);
  background: linear-gradient(180deg, #0d1512 0%, #141d19 100%);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.75),
    inset 0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 0 rgba(0, 0, 0, 0);
}
.pl-btn-win-logo {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: var(--pl-accent);
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.75))
    drop-shadow(0 -1px 0 rgba(0, 212, 170, 0.2));
}
.pl-btn-win:hover .pl-btn-win-logo {
  fill: #00e8c0;
}
.pl-btn-win-body {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.pl-btn-win-label {
  font-family: var(--pl-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pl-btn-win-sub {
  font-family: var(--pl-mono);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pl-text-muted);
  margin-top: 2px;
}
.pl-btn-win:hover .pl-btn-win-sub { color: var(--pl-accent); }
@media (max-width: 600px) {
  .pl-hero-cta { gap: 0.65rem; }
  .pl-btn-win { padding: 0.6rem 1rem 0.6rem 0.85rem; }
  .pl-btn-win-label { font-size: 0.85rem; }
  .pl-btn-win-sub { font-size: 0.58rem; letter-spacing: 0.2em; }
}
.pl-hero-viz {
  position: relative;
  z-index: 1;
}
.pl-hero-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1a26, #12121a);
  border: 1px solid var(--pl-border-strong);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}
.pl-hero-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pl-hero-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--pl-border-strong);
  border-radius: 100px;
  font-family: var(--pl-mono);
  font-size: 0.7rem;
  color: var(--pl-accent);
  letter-spacing: 2px;
  z-index: 2;
}

/* ─────────── SECTION COMMON ─────────── */
.pl-section {
  padding: 5rem 0;
  border-top: 1px solid var(--pl-border);
}
.pl-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.pl-section-narrow .pl-section-inner {
  max-width: 1080px;
}
.pl-section-label {
  font-family: var(--pl-mono);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pl-accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pl-section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--pl-accent);
}
.pl-section-title {
  font-family: var(--pl-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--pl-text);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.pl-section-lead {
  color: var(--pl-text-secondary);
  font-weight: 300;
  max-width: 760px;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.pl-section-sub {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--pl-border);
}

/* ─────────── BUTTONS ─────────── */
.pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  font-family: var(--pl-mono);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}
.pl-btn-primary {
  background: var(--pl-accent);
  color: #fff;
  border-color: var(--pl-accent);
}
.pl-btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(0, 212, 170, 0.3);
}
.pl-btn-outline {
  background: transparent;
  color: var(--pl-accent);
  border-color: var(--pl-accent);
}
.pl-btn-outline:hover {
  background: rgba(0, 212, 170, 0.08);
}
.pl-btn-full { width: 100%; margin-top: 1rem; }
.pl-btn-lg { padding: 1.1rem 2.25rem; font-size: 0.9rem; }

/* ─────────── WHY: Vs diagram ─────────── */
.pl-vs-wrap { margin: 2rem 0 2rem; }
.pl-vs-row-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--pl-mono);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.pl-vs-row-label .pl-vs-bar { flex: 1; height: 1px; background: var(--pl-border); }
.pl-vs-bad { color: var(--pl-text-muted); }
.pl-vs-good { color: var(--pl-accent); }
.pl-vs-good .pl-vs-bar { background: rgba(0, 212, 170, 0.25); }

.pl-problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.pl-problem {
  background: var(--pl-bg-card);
  border: 1px solid var(--pl-border);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  opacity: 0.75;
}
.pl-problem::after {
  content: '✕';
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  color: var(--pl-text-faint);
  font-size: 0.8rem;
  font-family: var(--pl-mono);
}
.pl-problem svg {
  width: 36px;
  height: 36px;
  color: var(--pl-text-muted);
  stroke-width: 1.3;
  margin: 0 auto 0.75rem;
  display: block;
}
.pl-problem h5 {
  font-size: 0.95rem;
  color: var(--pl-text);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.pl-problem p {
  font-size: 0.75rem;
  color: var(--pl-text-muted);
  font-weight: 300;
  line-height: 1.5;
}

.pl-vs-arrow {
  text-align: center;
  margin: 1.5rem 0;
}
.pl-vs-arrow-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--pl-text-faint), var(--pl-accent));
  margin: 0.5rem auto;
}
.pl-vs-arrow-pulse {
  color: var(--pl-accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-family: var(--pl-mono);
}

.pl-solution {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 212, 170, 0.05));
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pl-solution::before {
  content: '◉';
  position: absolute;
  top: 0.9rem;
  left: 1.1rem;
  color: var(--pl-accent);
  font-family: var(--pl-mono);
  font-size: 0.8rem;
}
.pl-solution-brand {
  font-family: var(--pl-mono);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--pl-accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.pl-solution-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 1.25rem 0;
  flex-wrap: wrap;
}
.pl-solution-piece {
  padding: 0.85rem 1.5rem;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.35);
  border-radius: 12px;
  font-family: var(--pl-mono);
  font-size: 0.82rem;
  color: var(--pl-text);
  font-weight: 600;
  letter-spacing: 1px;
}
.pl-solution-plus {
  padding: 0 0.85rem;
  color: var(--pl-accent);
  font-size: 1.4rem;
  font-weight: 700;
}
.pl-solution-line {
  font-family: var(--pl-display);
  font-size: 1.2rem;
  color: var(--pl-text);
  font-weight: 700;
  line-height: 1.5;
}

/* ─────────── Innovation Cards ─────────── */
.pl-innov {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.pl-innov-card {
  background: var(--pl-bg-card);
  border: 1px solid var(--pl-border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.pl-innov-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 3px; width: 40%;
  background: var(--pl-accent);
}
.pl-innov-num {
  font-family: var(--pl-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--pl-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -1px;
}
.pl-innov-unit {
  font-family: var(--pl-mono);
  font-size: 0.7rem;
  color: var(--pl-text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.pl-innov-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pl-text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

/* ─────────── DEMO: Interactive Animation ─────────── */
.anim-container {
  margin-top: 3rem;
  border: 1px solid var(--pl-line);
  background: var(--pl-bg-secondary);
  border-radius: 16px;
  overflow: hidden;
}
.anim-header {
  padding: 20px 24px 0;
  border-bottom: 1px solid var(--pl-line);
}
.anim-header-label {
  font-family: var(--pl-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pl-accent);
  margin-bottom: 16px;
}
.anim-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.anim-tab {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 20px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  color: var(--pl-text-faint);
  white-space: nowrap;
}
.anim-tab:hover { color: var(--pl-text-muted); }
.anim-tab.active {
  color: var(--pl-accent);
  border-bottom-color: var(--pl-accent);
}
.anim-tab .tab-num {
  font-family: var(--pl-display);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
}
.anim-tab .tab-name {
  font-family: var(--pl-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.anim-viewport {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--pl-bg-deep);
  border-left: 2px solid var(--pl-accent);
}
.anim-panel {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
}
.anim-panel.active { display: flex; }

.anim-footer {
  padding: 12px 24px;
  border-top: 1px solid var(--pl-line);
  display: flex;
  justify-content: flex-end;
}
.anim-replay-btn {
  background: none;
  border: 1px solid var(--pl-line);
  color: var(--pl-text-muted);
  font-family: var(--pl-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.anim-replay-btn:hover {
  color: var(--pl-accent);
  border-color: var(--pl-accent);
}

/* Anim 1: Chat */
.anim-chat {
  padding: 24px;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.anim-chat-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-msg {
  max-width: 80%;
  padding: 10px 14px;
  font-family: var(--pl-sans);
  font-size: 13px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-msg.show { opacity: 1; transform: translateY(0); }
.anim-msg.user {
  align-self: flex-end;
  background: var(--pl-bg-card-hover);
  border: 1px solid var(--pl-line-2);
  border-radius: 8px;
  color: var(--pl-text);
}
.anim-msg.ai {
  align-self: flex-start;
  background: transparent;
  border-left: 2px solid var(--pl-accent);
  color: var(--pl-text-muted);
  padding-left: 14px;
  position: relative;
}
.anim-msg.ai::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--pl-accent);
  border-radius: 50%;
}

/* Anim 2: Brief */












.anim-brief-approve.glow {
  box-shadow: 0 0 20px var(--pl-accent-glow), 0 0 40px var(--pl-accent-glow);
  animation: pl-approve-glow 1.2s ease-in-out infinite alternate;
}
@keyframes pl-approve-glow {
  from { box-shadow: 0 0 12px var(--pl-accent-glow); }
  to   { box-shadow: 0 0 28px rgba(0, 212, 170, 0.3); }
}
.anim-brief-approve.pressed {
  transform: translateX(-50%) scale(0.95);
}

.anim-brief-done.show { opacity: 1; }

/* Anim 2b: Plan (3-phase design) — mirrors SenvasHMI DesignView.xaml */
.anim-plan {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px 24px;
}
.anim-plan-inner {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
}
.anim-plan-title {
  font-family: var(--pl-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--pl-text);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.anim-plan-phases {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.anim-plan-phase {
  opacity: 0.5;
  transition: opacity 0.3s;
}
.anim-plan-phase.active, .anim-plan-phase.done { opacity: 1; }
.anim-plan-phase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 22px;
}
.anim-plan-phase-head-l {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.anim-plan-phase-head-r {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.anim-plan-phase-icon {
  font-size: 13px;
  line-height: 1;
  width: 14px;
  display: inline-flex;
  justify-content: center;
}
.anim-plan-phase-label {
  font-family: var(--pl-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--pl-text-secondary);
  white-space: nowrap;
}
.anim-plan-phase.done .anim-plan-phase-label { color: var(--pl-text); }
.anim-plan-phase-badge {
  font-family: var(--pl-mono);
  font-size: 10px;
  color: var(--pl-accent);
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: none;
}
.anim-plan-phase-badge.show { display: inline-block; }
.anim-plan-phase-doc {
  font-family: var(--pl-sans);
  font-size: 10.5px;
  padding: 3px 10px;
  border: 1px solid var(--pl-line-2);
  background: transparent;
  color: var(--pl-text-faint);
  border-radius: 3px;
  cursor: default;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.anim-plan-phase-doc:disabled { opacity: 0.45; }
.anim-plan-phase-doc:not(:disabled) {
  color: var(--pl-text-secondary);
  border-color: var(--pl-border);
}
.anim-plan-phase-subs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 22px;
  margin-top: 4px;
}
.anim-plan-substep {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--pl-sans);
  font-size: 11.5px;
  color: var(--pl-text-faint);
  line-height: 1.55;
}
.anim-plan-substep.active { color: var(--pl-text-secondary); }
.anim-plan-substep.done { color: var(--pl-text-muted); }
.anim-plan-substep-icon {
  font-size: 10px;
  width: 12px;
  display: inline-flex;
  justify-content: center;
}
.anim-plan-elapsed {
  font-family: var(--pl-mono);
  font-size: 10.5px;
  color: var(--pl-text-muted);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.05em;
}
.anim-plan-approve {
  align-self: center;
  margin-top: 12px;
  font-family: var(--pl-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 9px 28px;
  border: 1px solid var(--pl-accent);
  background: var(--pl-accent);
  color: #04100c;
  border-radius: 4px;
  cursor: default;
  transition: transform 0.15s, box-shadow 0.3s, opacity 0.3s, background 0.3s, color 0.3s;
}
.anim-plan-approve:disabled {
  background: transparent;
  color: var(--pl-text-faint);
  border-color: var(--pl-line-2);
  opacity: 0.6;
}
.anim-plan-approve.glow {
  box-shadow: 0 0 20px var(--pl-accent-glow), 0 0 40px var(--pl-accent-glow);
  animation: pl-approve-glow 1.2s ease-in-out infinite alternate;
}
.anim-plan-approve.pressed {
  transform: scale(0.95);
}

/* Anim 3: UI Edit */
.anim-uiedit {
  position: relative;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.anim-uiedit-status {
  padding: 16px 24px;
  font-family: var(--pl-mono);
  font-size: 11px;
  color: var(--pl-accent);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.anim-uiedit-dot {
  width: 6px;
  height: 6px;
  background: var(--pl-accent);
  border-radius: 50%;
  animation: pl-dot-blink 1s ease-in-out infinite;
}
@keyframes pl-dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.anim-uiedit-dot.done { animation: none; opacity: 1; }
.anim-uiedit-canvas {
  flex: 1;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.anim-uiedit-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: var(--pl-bg-secondary);
  border: 1px solid var(--pl-line);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.anim-uiedit-titlebar.show { opacity: 1; transform: translateY(0); }
.anim-uiedit-titlebar .bar-title {
  font-family: var(--pl-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--pl-text);
}
.anim-uiedit-titlebar .bar-tabs {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.anim-uiedit-titlebar .bar-tabs span {
  font-family: var(--pl-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  background: var(--pl-bg-card-hover);
  border: 1px solid var(--pl-line);
  color: var(--pl-text-faint);
  border-radius: 3px;
}
.anim-uiedit-titlebar .bar-tabs span.tab-active {
  color: var(--pl-accent);
  border-color: rgba(0, 212, 170, 0.3);
}
.anim-uiedit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  flex: 1;
}
.anim-uiedit-grid-main {
  display: flex;
  gap: 8px;
  flex: 1;
  min-height: 0;
}
.anim-uiedit-grid-wrap { flex: 3; }
.anim-uiedit-side { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.anim-gauge {
  background: var(--pl-bg-secondary);
  border: 1px solid var(--pl-line);
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-gauge.show { opacity: 1; transform: scale(1); }
.anim-gauge-label {
  font-family: var(--pl-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pl-text-faint);
}
.anim-gauge-dial { width: 48px; height: 28px; }
.anim-gauge-dial svg { width: 100%; height: 100%; }
.anim-gauge-val {
  font-family: var(--pl-mono);
  font-size: 13px;
  color: var(--pl-text);
  font-weight: 500;
}
.anim-gauge-meta {
  font-family: var(--pl-mono);
  font-size: 8px;
  color: var(--pl-text-faint);
}
.anim-side-card {
  background: var(--pl-bg-secondary);
  border: 1px solid var(--pl-line);
  border-radius: 4px;
  padding: 10px 12px;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.5s, transform 0.5s;
}
.anim-side-card.show { opacity: 1; transform: translateX(0); }
.anim-side-card .anim-card-title {
  display: block;
  font-family: var(--pl-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pl-accent);
  margin-bottom: 6px;
  font-weight: 500;
}
.anim-side-card p {
  font-family: var(--pl-mono);
  font-size: 10px;
  color: var(--pl-text-faint);
  line-height: 1.5;
}
.anim-side-card .status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 4px;
}
.anim-uiedit-footer {
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
.anim-uiedit-gobtn {
  font-family: var(--pl-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 32px;
  border: 1px solid var(--pl-accent);
  background: transparent;
  color: var(--pl-accent);
  cursor: default;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.4s, transform 0.15s, box-shadow 0.3s;
}
.anim-uiedit-gobtn.show { opacity: 1; }
.anim-uiedit-gobtn.glow {
  box-shadow: 0 0 20px var(--pl-accent-glow), 0 0 40px var(--pl-accent-glow);
  animation: pl-approve-glow 1.2s ease-in-out infinite alternate;
}
.anim-uiedit-gobtn.pressed {
  transform: scale(0.95);
  background: var(--pl-accent);
  color: #fff;
}

/* Anim 4: Implement */
.anim-impl {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px 24px;
}
.anim-impl-inner {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
}
.anim-impl-title {
  font-family: var(--pl-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--pl-text);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.anim-impl-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.anim-impl-step {
  opacity: 0.5;
  transition: opacity 0.3s;
}
.anim-impl-step.active, .anim-impl-step.done { opacity: 1; }
.anim-impl-step-head {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
}
.anim-impl-step-icon {
  font-size: 13px;
  line-height: 1;
  width: 14px;
  display: inline-flex;
  justify-content: center;
}
.anim-impl-step-label {
  font-family: var(--pl-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--pl-text-secondary);
}
.anim-impl-step.done .anim-impl-step-label { color: var(--pl-text); }
.anim-impl-step-subs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 22px;
  margin-top: 3px;
}
.anim-impl-substep {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--pl-sans);
  font-size: 11.5px;
  color: var(--pl-text-faint);
  line-height: 1.55;
}
.anim-impl-substep.active { color: var(--pl-text-secondary); }
.anim-impl-substep.done { color: var(--pl-text-muted); }
.anim-impl-substep-icon {
  font-size: 10px;
  width: 12px;
  display: inline-flex;
  justify-content: center;
}
.anim-impl-progress {
  margin-top: 16px;
  height: 4px;
  background: var(--pl-bg-card-hover);
  border-radius: 2px;
  overflow: hidden;
}
.anim-impl-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--pl-accent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-impl-progress-text {
  font-family: var(--pl-mono);
  font-size: 10.5px;
  color: var(--pl-text-secondary);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.05em;
}
.anim-impl-elapsed {
  font-family: var(--pl-mono);
  font-size: 10.5px;
  color: var(--pl-text-muted);
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* Anim 5: Code */
.anim-code {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.anim-code-editor {
  flex: 3;
  padding: 16px 20px;
  overflow: hidden;
  font-family: var(--pl-mono);
  font-size: 11px;
  line-height: 1.7;
  color: var(--pl-text-faint);
  position: relative;
}
.anim-code-line {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
  white-space: pre;
}
.anim-code-line.show { opacity: 1; transform: translateY(0); }
.anim-code-linenum {
  color: var(--pl-text-faint);
  opacity: 0.4;
  user-select: none;
  min-width: 20px;
  text-align: right;
}
.anim-code-text { color: var(--pl-text-muted); }
.anim-code-text .kw { color: #c792ea; }
.anim-code-text .str { color: #c3e88d; }
.anim-code-text .cls { color: #82aaff; }
.anim-code-text .cm { color: var(--pl-text-faint); opacity: 0.6; }
.anim-code-text .num { color: #f78c6c; }
.anim-code-text .fn { color: #ffcb6b; }
.anim-code-tree {
  flex: 1;
  border-left: 1px solid var(--pl-line);
  padding: 16px 14px;
  overflow: hidden;
}
.anim-code-tree-title {
  font-family: var(--pl-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pl-text-faint);
  margin-bottom: 10px;
}
.anim-tree-item {
  font-family: var(--pl-mono);
  font-size: 10px;
  padding: 2px 0 2px 12px;
  color: var(--pl-text-faint);
  position: relative;
  opacity: 0;
  transition: opacity 0.3s;
}
.anim-tree-item.show { opacity: 1; }
.anim-tree-item.active-file { color: var(--pl-accent); }
.anim-tree-item.folder {
  color: var(--pl-text-muted);
  padding-left: 0;
  font-weight: 500;
  margin-top: 6px;
}
.anim-tree-item.folder::before { content: '▸ '; color: var(--pl-text-faint); }
.anim-code-actions {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: flex;
  gap: 8px;
}
.anim-code-btn {
  font-family: var(--pl-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border: 1px solid var(--pl-line);
  background: transparent;
  color: var(--pl-text-faint);
  cursor: default;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.4s, transform 0.15s, background 0.2s, color 0.2s, border-color 0.2s;
}
.anim-code-btn.show { opacity: 1; }
.anim-code-btn.accent {
  border-color: var(--pl-accent);
  color: var(--pl-accent);
}
.anim-code-btn.pressed {
  background: var(--pl-accent);
  color: #fff;
  transform: scale(0.95);
}

/* Anim 6: Deploy */
.anim-deploy {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 40px;
  gap: 20px;
}
.anim-deploy-title {
  font-family: var(--pl-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pl-text-faint);
  opacity: 0;
  transition: opacity 0.4s;
}
.anim-deploy-title.show { opacity: 1; }
.anim-deploy-device {
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--pl-line);
  background: var(--pl-bg-secondary);
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.3s;
}
.anim-deploy-device.show { opacity: 1; transform: translateY(0); }
.anim-deploy-device.selected { border-color: var(--pl-accent); }
.anim-deploy-device-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}
.anim-deploy-device-info { flex: 1; }
.anim-deploy-device-name {
  font-family: var(--pl-mono);
  font-size: 13px;
  color: var(--pl-text);
}
.anim-deploy-device-ip {
  font-family: var(--pl-mono);
  font-size: 11px;
  color: var(--pl-text-faint);
}
.anim-deploy-device-count {
  font-family: var(--pl-mono);
  font-size: 10px;
  color: var(--pl-text-faint);
  opacity: 0;
  transition: opacity 0.3s;
  margin-top: -8px;
  width: 100%;
  max-width: 420px;
  text-align: right;
}
.anim-deploy-device-count.show { opacity: 1; }
.anim-deploy-progress {
  width: 100%;
  max-width: 420px;
  opacity: 0;
  transition: opacity 0.4s;
}
.anim-deploy-progress.show { opacity: 1; }
.anim-deploy-progress-label {
  font-family: var(--pl-mono);
  font-size: 10px;
  color: var(--pl-text-faint);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}
.anim-deploy-progress-bar {
  height: 3px;
  background: var(--pl-bg-card-hover);
  border-radius: 2px;
  overflow: hidden;
}
.anim-deploy-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--pl-accent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-deploy-btns {
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s;
}
.anim-deploy-btns.show { opacity: 1; }
.anim-deploy-btn {
  font-family: var(--pl-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border: 1px solid var(--pl-line);
  background: transparent;
  color: var(--pl-text-faint);
  cursor: default;
  border-radius: 4px;
  transition: transform 0.15s, background 0.2s, color 0.2s, border-color 0.2s;
}
.anim-deploy-btn.accent {
  border-color: var(--pl-accent);
  color: var(--pl-accent);
}
.anim-deploy-btn.pressed {
  background: var(--pl-accent);
  color: #fff;
  transform: scale(0.95);
}
.anim-deploy-done {
  font-family: var(--pl-mono);
  font-size: 14px;
  color: var(--pl-accent);
  opacity: 0;
  transition: opacity 0.5s;
}
.anim-deploy-done.show { opacity: 1; }

/* ─────────── Workflow Compact Grid ─────────── */
.pl-wf-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
.pl-wf-card {
  position: relative;
}
.pl-wf-num {
  position: absolute;
  top: 8px;
  left: 12px;
  z-index: 2;
  font-family: var(--pl-display);
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  color: var(--pl-text);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.pl-wf-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--pl-bg-card), var(--pl-bg-secondary));
  border: 1px solid var(--pl-line);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.pl-wf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pl-wf-label {
  font-family: var(--pl-display);
  font-size: 17px;
  color: var(--pl-text);
  margin-top: 14px;
  font-weight: 700;
}
.pl-wf-sub {
  font-size: 12px;
  color: var(--pl-text-muted);
  margin-top: 6px;
  line-height: 1.5;
}

.pl-wf-note {
  margin-top: 4rem;
  font-family: var(--pl-display);
  font-size: 1.15rem;
  color: var(--pl-text-muted);
  text-align: center;
  font-style: italic;
  font-weight: 400;
}

/* ─────────── AI/Manual Modes ─────────── */
.pl-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.pl-mode {
  background: var(--pl-bg-card);
  border: 1px solid var(--pl-border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.pl-mode::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pl-text-faint);
  opacity: 0.5;
}
.pl-mode.pl-mode-ai::before {
  background: var(--pl-accent);
  opacity: 1;
}
.pl-mode.pl-mode-ai { border-color: rgba(0, 212, 170, 0.25); }
.pl-mode-tag {
  font-family: var(--pl-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--pl-text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.pl-mode.pl-mode-ai .pl-mode-tag { color: var(--pl-accent); }
.pl-mode h3 {
  font-family: var(--pl-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pl-text);
  margin-bottom: 0.5rem;
}
.pl-mode-meta {
  font-family: var(--pl-mono);
  font-size: 0.75rem;
  color: var(--pl-text-muted);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--pl-border);
}
.pl-mode ul { list-style: none; padding: 0; margin: 0; }
.pl-mode ul li {
  font-size: 0.88rem;
  color: var(--pl-text-secondary);
  padding: 0.4rem 0;
  display: flex;
  gap: 0.75rem;
}
.pl-mode ul li::before {
  content: '→';
  color: var(--pl-accent);
  font-family: var(--pl-mono);
}

/* ─────────── Gallery ─────────── */
.pl-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.pl-gallery-tile {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--pl-bg-card), var(--pl-bg-secondary));
  border: 1px solid var(--pl-border);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.pl-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pl-gallery-tag {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(10, 10, 15, 0.8);
  color: var(--pl-text);
  font-family: var(--pl-mono);
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 1px;
}

/* ─────────── Models (Lineup) ─────────── */
.pl-models {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pl-model-card {
  background: var(--pl-bg-card);
  border: 1px solid var(--pl-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.pl-model-active { border-color: rgba(0, 212, 170, 0.3); }
.pl-model-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pl-accent);
  opacity: 0.5;
}
.pl-model-active::before { opacity: 1; }
.pl-model-tag {
  font-family: var(--pl-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--pl-accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.pl-model-card h3 {
  font-family: var(--pl-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--pl-text);
  margin-bottom: 0.5rem;
}
.pl-model-size {
  color: var(--pl-text-secondary);
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.pl-model-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.pl-model-spec {
  background: var(--pl-bg-primary);
  border: 1px solid var(--pl-border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}
.pl-model-spec .k {
  font-family: var(--pl-mono);
  font-size: 0.65rem;
  color: var(--pl-text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.pl-model-spec .v {
  font-size: 0.9rem;
  color: var(--pl-text);
  font-weight: 500;
}
.pl-model-dim {
  font-family: var(--pl-mono);
  font-size: 0.78rem;
  color: var(--pl-text-muted);
  padding: 1rem 0;
  border-top: 1px solid var(--pl-border);
}
.pl-model-price {
  font-family: var(--pl-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--pl-accent);
  margin: 0.5rem 0;
  letter-spacing: -0.5px;
}

/* ─────────── Stats strip ─────────── */
.pl-stat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--pl-bg-secondary);
  border: 1px solid var(--pl-border);
  border-radius: 20px;
  padding: 2rem 0;
  margin-top: 2.5rem;
}
.pl-stat-strip > div {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid var(--pl-border);
}
.pl-stat-strip > div:last-child { border-right: none; }
.pl-stat-strip .v {
  font-family: var(--pl-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pl-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pl-stat-strip .k {
  font-family: var(--pl-mono);
  font-size: 0.7rem;
  color: var(--pl-text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ─────────── Ports ─────────── */
.pl-ports-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}
.pl-ports-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--pl-bg-card), var(--pl-bg-secondary));
  border-radius: 20px;
  border: 1px solid var(--pl-border-strong);
  overflow: hidden;
}
.pl-ports-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pl-ports-list {
  display: grid;
  gap: 0.6rem;
}
.pl-port-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: var(--pl-bg-card);
  border: 1px solid var(--pl-border);
  border-radius: 12px;
  align-items: center;
}
.pl-port-tag {
  font-family: var(--pl-mono);
  font-size: 0.7rem;
  color: var(--pl-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.pl-port-name { font-size: 0.88rem; color: var(--pl-text); }
.pl-port-qty {
  font-family: var(--pl-mono);
  font-size: 0.75rem;
  color: var(--pl-text-secondary);
  padding: 0.25rem 0.65rem;
  background: var(--pl-bg-primary);
  border-radius: 100px;
  border: 1px solid var(--pl-border);
}

/* ─────────── Install ─────────── */
.pl-install-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.pl-install-card {
  background: var(--pl-bg-card);
  border: 1px solid var(--pl-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.pl-install-card svg {
  display: block;
  width: 48px;
  height: 48px;
  color: var(--pl-accent);
  margin: 0 auto 1rem;
}
.pl-install-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pl-text);
  margin-bottom: 0.35rem;
}
.pl-install-card p {
  font-size: 0.82rem;
  color: var(--pl-text-muted);
  font-weight: 300;
}

/* ─────────── Uses ─────────── */
.pl-uses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.pl-use-card {
  background: var(--pl-bg-card);
  border: 1px solid var(--pl-border);
  border-radius: 14px;
  padding: 1.5rem;
}
.pl-use-num {
  font-family: var(--pl-mono);
  font-size: 0.7rem;
  color: var(--pl-accent);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.pl-use-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--pl-text);
  margin-bottom: 0.5rem;
}
.pl-use-card p {
  font-size: 0.82rem;
  color: var(--pl-text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ─────────── Pricing ─────────── */
.pl-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pl-pricing-card {
  background: var(--pl-bg-card);
  border: 1px solid var(--pl-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.pl-pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pl-accent);
  opacity: 0.6;
}
.pl-pricing-name {
  font-family: var(--pl-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pl-text);
  margin-bottom: 0.25rem;
}
.pl-pricing-size {
  font-family: var(--pl-mono);
  font-size: 0.75rem;
  color: var(--pl-text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
.pl-pricing-price {
  font-family: var(--pl-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--pl-accent);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}
.pl-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  border-top: 1px solid var(--pl-border);
  padding-top: 1.25rem;
}
.pl-pricing-features li {
  font-size: 0.85rem;
  color: var(--pl-text-secondary);
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
}
.pl-pricing-features li::before {
  content: '✓';
  color: var(--pl-accent);
  font-weight: 700;
  position: absolute;
  left: 0;
}
.pl-pricing-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}
.pl-badge {
  padding: 0.5rem 1rem;
  background: var(--pl-accent-dim);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 100px;
  font-family: var(--pl-mono);
  font-size: 0.7rem;
  color: var(--pl-accent);
  letter-spacing: 1px;
}

/* ─────────── Download (Senvas Designer) ─────────── */
.pl-download-card {
  background: var(--pl-bg-card);
  border: 1px solid var(--pl-border);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.pl-download-btn {
  padding: 0.7rem 1.3rem;
  font-size: 0.78rem;
  letter-spacing: 1.3px;
}
.pl-download-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pl-accent);
  opacity: 0.6;
}
.pl-download-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.pl-download-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 10px;
  background: var(--pl-accent-dim);
  border: 1px solid rgba(0, 212, 170, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pl-accent);
}
.pl-download-icon svg {
  width: 20px;
  height: 20px;
}
.pl-download-meta {
  flex: 1 1 220px;
  min-width: 0;
}
.pl-download-title {
  font-family: var(--pl-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pl-text);
  line-height: 1.2;
}
.pl-download-ver {
  font-family: var(--pl-mono);
  font-size: 0.78rem;
  color: var(--pl-text-muted);
  letter-spacing: 1.2px;
  margin-top: 0.35rem;
}
.pl-download-notes {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--pl-border);
}
.pl-download-notes-title {
  font-family: var(--pl-mono);
  font-size: 0.7rem;
  color: var(--pl-accent);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.pl-download-notes-body {
  font-family: var(--pl-mono);
  font-size: 0.82rem;
  color: var(--pl-text-secondary);
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}
.pl-download-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--pl-border);
  flex-wrap: wrap;
}
.pl-download-link {
  font-family: var(--pl-mono);
  font-size: 0.78rem;
  color: var(--pl-accent);
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.pl-download-link:hover { opacity: 0.75; }
.pl-download-req {
  font-family: var(--pl-mono);
  font-size: 0.72rem;
  color: var(--pl-text-muted);
  letter-spacing: 1.2px;
}
@media (max-width: 640px) {
  .pl-download-head { gap: 0.9rem; }
  .pl-download-head .pl-btn { width: 100%; }
}

/* ─────────── Specsheet ─────────── */
.pl-specsheet {
  background: var(--pl-bg-secondary);
  border: 1px solid var(--pl-border);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2.5rem;
}
.pl-spec-group { margin-bottom: 2rem; }
.pl-spec-group:last-child { margin-bottom: 0; }
.pl-spec-group h4 {
  font-family: var(--pl-mono);
  font-size: 0.75rem;
  color: var(--pl-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--pl-border);
  font-weight: 600;
}
.pl-spec-table {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  font-size: 0.85rem;
}
.pl-spec-table-dual {
  grid-template-columns: 180px 1fr 1fr;
}
.pl-spec-head {
  font-family: var(--pl-mono);
  font-size: 0.7rem;
  color: var(--pl-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--pl-border);
  font-weight: 600;
}
.pl-spec-k {
  color: var(--pl-text-muted);
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--pl-border);
}
.pl-spec-v {
  color: var(--pl-text);
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--pl-border);
  font-family: var(--pl-mono);
  font-size: 0.82rem;
}

/* ─────────── FAQ ─────────── */
.pl-faq-list {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.6rem;
}
.pl-faq-item {
  background: var(--pl-bg-card);
  border: 1px solid var(--pl-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.pl-faq-item.open { border-color: rgba(0, 212, 170, 0.3); }
.pl-faq-q {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--pl-text);
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--pl-sans);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.pl-faq-chevron {
  color: var(--pl-accent);
  transition: transform 0.3s;
  font-size: 24px !important;
  flex-shrink: 0;
}
.pl-faq-item.open .pl-faq-chevron { transform: rotate(180deg); }
.pl-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.pl-faq-item.open .pl-faq-a {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}
.pl-faq-a p {
  color: var(--pl-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}
.pl-faq-link {
  color: var(--pl-accent);
  text-decoration: underline;
}

/* ─────────── CTA ─────────── */
.pl-cta {
  padding: 6rem 2rem 4rem;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--pl-border);
}
.pl-cta-inner {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(0, 212, 170, 0.04));
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 24px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.pl-cta-inner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--pl-accent-glow) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.5;
}
.pl-cta-inner > * { position: relative; z-index: 1; }
.pl-cta-label {
  font-family: var(--pl-mono);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pl-accent);
  margin-bottom: 1.25rem;
}
.pl-cta-heading {
  font-family: var(--pl-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--pl-text);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.pl-cta-body {
  color: var(--pl-text-secondary);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.pl-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.pl-cta-contact {
  font-family: var(--pl-mono);
  font-size: 0.8rem;
  color: var(--pl-text-muted);
  letter-spacing: 1px;
}
.pl-cta-contact .sep { margin: 0 0.75rem; color: var(--pl-text-faint); }

/* ─────────── Reveal animation (reuse existing) ─────────── */
.post-launch .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.post-launch .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.post-launch .reveal-delay-1 { transition-delay: 0.1s; }
.post-launch .reveal-delay-2 { transition-delay: 0.2s; }
.post-launch .reveal-delay-3 { transition-delay: 0.3s; }
.post-launch .reveal-delay-4 { transition-delay: 0.4s; }

/* ─────────── Reduced motion ─────────── */
@media (prefers-reduced-motion: reduce) {
  .post-launch .reveal,
  .anim-msg,
  .anim-file-row,
  .anim-gauge,
  .anim-side-card,
  .anim-uiedit-titlebar,
  .anim-uiedit-gobtn,
  .anim-code-line,
  .anim-tree-item,
  .anim-code-btn,
  .anim-deploy-title,
  .anim-deploy-device,
  .anim-deploy-btns,
  .anim-deploy-progress,
  .anim-deploy-done,
  .anim-deploy-device-count {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .pl-hero-grid::before { animation: none !important; }
  .anim-file-icon.spin::after,
  .anim-uiedit-dot { animation: none !important; }
}

/* ─────────── Responsive ─────────── */
@media (max-width: 960px) {
  .pl-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pl-innov { grid-template-columns: 1fr 1fr; }
  .pl-problems { grid-template-columns: 1fr; }
  .pl-solution-stack { flex-direction: column; }
  .pl-solution-plus { padding: 0.25rem 0; }
  .pl-wf-grid { grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem 1rem; }
  .pl-gallery { grid-template-columns: 1fr 1fr 1fr; }
  .pl-models, .pl-modes, .pl-ports-wrap, .pl-pricing-grid { grid-template-columns: 1fr; }
  .pl-install-grid { grid-template-columns: 1fr; }
  .pl-uses { grid-template-columns: 1fr 1fr; }
  .pl-stat-strip {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem 0;
  }
  .pl-stat-strip > div {
    border-right: none;
    border-bottom: 1px solid var(--pl-border);
    padding: 1rem;
  }
  .pl-spec-table,
  .pl-spec-table-dual {
    grid-template-columns: 140px 1fr;
    font-size: 0.78rem;
  }
  .pl-spec-table-dual .pl-spec-head:nth-child(3),
  .pl-spec-table-dual .pl-spec-v:nth-child(3n) {
    display: none;
  }
  .anim-viewport { height: 420px; }
}
@media (max-width: 600px) {
  .pl-hero { padding: 6rem 1.5rem 3rem; }
  .pl-section { padding: 4rem 0; }
  .pl-section-inner { padding: 0 1.5rem; }
  .pl-wf-grid { grid-template-columns: 1fr 1fr; }
  .pl-gallery { grid-template-columns: 1fr 1fr; }
  .pl-uses { grid-template-columns: 1fr; }
  .pl-innov { grid-template-columns: 1fr; }
  .pl-cta { padding: 4rem 1.5rem 3rem; }
  .pl-cta-inner { padding: 2.5rem 1.5rem; }
  .anim-tab { padding: 10px 14px; }
  .anim-msg { max-width: 90%; font-size: 12px; }
  .anim-brief-doc { padding: 20px 24px 180px; }
  .anim-plan,
  .anim-impl { padding: 16px 14px; }
  .anim-plan-phase-label,
  .anim-impl-step-label { font-size: 12px; }
  .anim-plan-phase-doc { font-size: 10px; padding: 2px 8px; }
  .anim-plan-phase-badge { font-size: 9.5px; }
  .anim-plan-phase-subs,
  .anim-impl-step-subs { padding-left: 20px; }
  .anim-plan-substep,
  .anim-impl-substep { font-size: 11px; }
}

/* Demo trial CTA — §8 of 2026-04-22 senvas-post-launch-rebrand spec */
.pl-demo-trial-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding: 32px;
  background: rgba(0, 212, 170, 0.04);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 16px;
}
.pl-demo-trial-note {
  margin: 0;
  color: var(--pl-text-muted);
  font-size: 0.9rem;
}

/* RESULT · Built with Senvas — §4 of 2026-04-22 senvas-post-launch-rebrand spec */
.pl-result-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 720px) {
  .pl-result-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .pl-result-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
  }
  .pl-result-tall { grid-row: span 2; }
}
.pl-result-card {
  background: var(--pl-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
  padding: 16px;
}
.pl-result-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

/* ═══════════════════════════════════════════
   LANGUAGE TOGGLE (KO ⇄ EN)
═══════════════════════════════════════════ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  margin-right: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--pl-text-faint, #94a3b8);
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 0.65rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.lang-toggle .material-symbols-outlined {
  font-size: 18px;
}
.lang-toggle:hover {
  color: var(--pl-accent, #00d4aa);
}
.lang-toggle-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  width: 100%;
  padding: 0.75rem 0;
}
.lang-toggle-mobile .material-symbols-outlined {
  font-size: 22px;
}

/* ═══════════════════════════════════════════
   CATALOGUE PAGES (products + resources)
   ─ Used by /products/, /resources/ and EN variants.
   ─ Compact catalogue look; not a marketing landing.
   ─ Self-contained — does not depend on .post-launch (so it can be
     applied to <body> without inheriting the landing typography rules).
═══════════════════════════════════════════ */
.catalogue-page {
  --cat-bg:           #050c0a;
  --cat-bg-card:      #102018;
  --cat-bg-card-hover:#172a24;
  --cat-accent:       #00d4aa;
  --cat-accent-dim:   rgba(0, 212, 170, 0.12);
  --cat-text:         #e8e8ef;
  --cat-text-2:       #9a9ab0;
  --cat-text-muted:   #55556a;
  --cat-border:       rgba(255, 255, 255, 0.06);
  --cat-border-2:     rgba(255, 255, 255, 0.12);
  --cat-display:      'Playfair Display', 'Noto Sans KR', 'Pretendard Variable', 'Pretendard', Georgia, serif;
  --cat-sans:         'Pretendard Variable', 'Pretendard', 'Noto Sans KR', -apple-system, sans-serif;
  --cat-mono:         'JetBrains Mono', 'Consolas', monospace;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cat-bg);
  color: var(--cat-text);
  font-family: var(--cat-sans);
}
.catalogue-page a { text-decoration: none; }

.catalogue-main {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  width: 100%;
}
.catalogue-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cat-border);
}
.catalogue-eyebrow {
  font-family: var(--cat-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cat-accent);
  margin: 0 0 10px;
}
.catalogue-title {
  font-family: var(--cat-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--cat-text);
}
.catalogue-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cat-text-2);
  margin: 0;
  max-width: 640px;
}
.catalogue-empty {
  padding: 48px 24px;
  text-align: center;
  border: 1px dashed var(--cat-border);
  border-radius: 12px;
  color: var(--cat-text-muted);
}

/* Resource groups (resources page) */
.resource-groups {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.resource-group {
  background: var(--cat-bg-card);
  border: 1px solid var(--cat-border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 200ms ease, background 200ms ease;
}
.resource-group:hover {
  border-color: var(--cat-border-2);
  background: var(--cat-bg-card-hover);
}
.resource-group-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.resource-group-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  background: #030706;
  border: 1px solid var(--cat-border);
  border-radius: 10px;
  padding: 6px;
}
.resource-group-name {
  font-family: var(--cat-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--cat-text);
}
.resource-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.resource-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--cat-border-2);
  border-radius: 10px;
  background: transparent;
  color: var(--cat-text);
  font-family: var(--cat-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.resource-btn:hover {
  border-color: var(--cat-accent);
  color: var(--cat-accent);
  background: var(--cat-accent-dim);
}
.resource-btn .material-symbols-outlined {
  font-size: 18px;
}
/* Buy / store CTA — subtle accent fill so it reads as "different from downloads" */
.resource-btn-buy {
  border-color: var(--cat-accent);
  color: var(--cat-accent);
  background: var(--cat-accent-dim);
}
.resource-btn-buy:hover {
  background: var(--cat-accent);
  color: #050c0a;
}

/* Product grid (products page) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--cat-bg-card);
  border: 1px solid var(--cat-border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 200ms ease, background 200ms ease;
}
.product-card:hover {
  border-color: var(--cat-border-2);
  background: var(--cat-bg-card-hover);
}
.product-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #030706;
  border: 1px solid var(--cat-border);
  border-radius: 10px;
  padding: 12px;
}
.product-card-name {
  font-family: var(--cat-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--cat-text);
}
.product-card-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 13px;
  color: var(--cat-text-2);
}
.product-card-resources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

@media (max-width: 640px) {
  .catalogue-main { padding: 32px 16px 48px; }
  .catalogue-header { margin-bottom: 24px; padding-bottom: 16px; }
  .resource-group { padding: 20px; }
  .resource-group-head { gap: 14px; }
  .resource-group-thumb { width: 64px; height: 64px; padding: 4px; }
  .product-card { padding: 20px; }
}
