/* ══════════════════════════════════════════
   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;
}

@font-face {
  font-family: 'Pretendard';
  src: url('fonts/pretendard/PretendardVariable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ══ Global ══ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Pretendard', system-ui, sans-serif;
  background: #020617;
  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(13, 27, 62, 0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(6, 20, 50, 0.5) 0%, transparent 50%),
    #020617;
}

.text-glow {
  text-shadow:
    0 0 30px rgba(96, 165, 250, 0.25),
    0 0 80px rgba(0, 82, 204, 0.1);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ══ 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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ══ 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(2, 6, 23, 0.8);
  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: #60a5fa;
  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: #60a5fa; }
.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(2, 6, 23, 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, #0052cc 0%, #003d9b 100%);
  border: none;
  cursor: pointer;
  color: #fff;
  transition: box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(0, 82, 204, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(0, 82, 204, 0.5);
  transform: translateY(-2px);
}
.btn-primary: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 ══ */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
}

/* Subtle grid pattern */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
  pointer-events: none;
}

.hero-label {
  font-size: 11px;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.6em;
  margin: 0 0 28px;
}

.hero-title {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  line-height: 0.85;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #fff 40%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: #64748b;
  letter-spacing: -0.01em;
  line-height: 1.6;
  margin: 0 0 56px;
  max-width: 480px;
}

.hero-image-wrap {
  position: relative;
  margin-bottom: 56px;
  width: 100%;
  max-width: 640px;
}

.hero-image-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(0, 82, 204, 0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

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

.hero-image-container {
  position: relative;
  background: #0a0f1e;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.hero-image-border-glow {
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.3) 0%, transparent 40%, transparent 60%, rgba(96, 165, 250, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.countdown-grid {
  display: flex;
  gap: clamp(28px, 6vw, 56px);
  margin-bottom: 16px;
  position: relative;
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #334155;
  font-weight: 700;
  margin-top: 10px;
}

.countdown-separator {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: rgba(255, 255, 255, 0.08);
  font-weight: 300;
  align-self: flex-start;
  padding-top: 8px;
}

.launch-date-label {
  font-size: 10px;
  font-weight: 600;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin: 0 0 40px;
}

.btn-primary-hero {
  font-size: 16px;
  padding: 18px 56px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.hero-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.18);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

/* ══ Shared Section Label ══ */
.section-label {
  font-size: 11px;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin: 0 0 20px;
}

/* ══ Problem Section ══ */
.problem-section {
  padding: 120px 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.problem-inner {
  width: 100%;
}

.problem-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 0 0 56px;
  color: #fff;
}

.problem-voices {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.problem-voice {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: #94a3b8;
  line-height: 1.6;
  font-style: italic;
}

.problem-voice-label {
  display: block;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 6px;
}

/* ══ Demo Section ══ */
.demo-section {
  padding: 120px 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.demo-inner {
  width: 100%;
}

.demo-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 64px;
  color: #fff;
}

.demo-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.demo-step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 44px 28px 36px;
  text-align: center;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.25s;
}

.demo-step-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 24px 64px -16px rgba(0, 60, 180, 0.12);
  transform: translateY(-6px);
}

.demo-step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0052cc 0%, #003d9b 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 82, 204, 0.4);
}

.demo-step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.demo-step-icon {
  font-size: 26px;
  color: #3b82f6;
}

.demo-step-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: #fff;
}

.demo-step-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.demo-cta-wrap {
  display: flex;
  justify-content: center;
}

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

/* ══ Product Section ══ */
.product-section {
  padding: 120px 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.product-inner {
  width: 100%;
}

.product-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 64px;
  color: #fff;
}

/* Industry grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 72px;
}

.industry-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.25s;
}

.industry-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 20px 56px -16px rgba(0, 60, 180, 0.12);
  transform: translateY(-4px);
}

.industry-icon {
  font-size: 28px;
  color: #3b82f6;
  margin-bottom: 16px;
  display: block;
}

.industry-title {
  font-size: 14px;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 6px;
}

.industry-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* Product lineup */
.product-lineup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.product-lineup-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.25s;
}

.product-lineup-card:hover {
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.product-lineup-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 16/10;
}

.product-lineup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-lineup-card:hover .product-lineup-image img {
  transform: scale(1.04);
}

.product-lineup-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

.product-lineup-desc {
  font-size: 14px;
  color: #475569;
  margin: 0;
}

/* Product extras */
.product-extras {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
}

.product-extra-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

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

/* ══ CTA Section ══ */
.cta-section {
  padding: 0 24px 120px;
  max-width: 800px;
  margin: 0 auto;
}

.glass-panel-inner {
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Gradient border effect */
.glass-panel-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, transparent 40%, transparent 60%, rgba(59, 130, 246, 0.12) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-label {
  font-size: 11px;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin: 0 0 20px;
}

.cta-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: #fff;
}

.cta-body {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin: 0 0 40px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary-cta {
  font-size: 16px;
  padding: 18px 56px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 16px;
}

/* ══ Footer ══ */
.site-footer {
  background: #020617;
  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: #60a5fa;
}

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

.footer-link {
  font-size: 11px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #94a3b8;
}

.footer-copy {
  font-size: 11px;
  color: #0f172a;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-contact {
  font-size: 11px;
  color: #1e293b;
  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; }

.modal-pad-top {
  padding: 24px 24px 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}

.modal-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  line-height: 1;
  padding: 6px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.modal-close-btn:hover {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.modal-step-indicator {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.modal-back-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-back-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 0.15s;
}
.modal-back-btn:hover { color: rgba(255, 255, 255, 0.8); }

.modal-footer {
  padding: 0 24px 24px;
}

.modal-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.product-image-wrap {
  padding: 14px 14px 0;
}

.product-image-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.product-info {
  padding: 12px 14px 14px;
}

.product-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.product-price {
  font-size: 13px;
  color: #a5b4fc;
  font-weight: 600;
}

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.qty-label {
  font-size: 14px;
  font-weight: 500;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qty-display {
  font-size: 18px;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

/* ══ Form ══ */
.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px;
  color: #e2e8f0 !important;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Pretendard', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.2); }
.form-input:focus {
  border-color: rgba(99, 102, 241, 0.5) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}
.form-input:read-only {
  background: rgba(255, 255, 255, 0.02) !important;
  color: rgba(255, 255, 255, 0.45) !important;
  cursor: default;
}
.form-input.error { border-color: #ef4444 !important; }

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.form-label {
  font-size: 12px;
  opacity: 0.55;
  display: block;
  margin-bottom: 5px;
}

.form-required {
  color: #ef4444;
}

.postcode-row {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.postcode-input {
  max-width: 130px;
}

.postcode-search-btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}

.postcode-search-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.form-error {
  display: none;
  color: #ef4444;
  font-size: 12px;
  margin-bottom: 12px;
}

.step3-error-msg {
  display: none;
  color: #ef4444;
  font-size: 12px;
  margin-top: 8px;
}

.email-wrap {
  margin-bottom: 24px;
}

/* Step bar */
.step-bar {
  height: 3px;
  border-radius: 2px;
  flex: 1;
  transition: background 0.3s;
}
.step-bar.active   { background: #6366f1; }
.step-bar.inactive { background: rgba(255, 255, 255, 0.08); }

/* Product card */
.product-card {
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.product-card.selected {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.06);
}
.selected-badge {
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  background: #6366f1;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
}
.product-card.selected .selected-badge { display: block; }

/* Qty button */
.qty-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  user-select: none;
}
.qty-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

/* CTA button */
.btn-cta {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.4), 0 4px 16px rgba(79, 70, 229, 0.3);
  transition: box-shadow 0.25s, transform 0.15s;
}
.btn-cta:hover {
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.6), 0 6px 24px rgba(79, 70, 229, 0.45);
  transform: translateY(-1px);
}
.btn-cta:active { transform: translateY(0); }
.btn-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-cta-modal {
  padding: 14px;
  font-size: 15px;
}

.btn-cta-subscribe {
  padding: 14px;
  font-size: 15px;
  margin-bottom: 10px;
}

.btn-cta-done {
  padding: 12px 32px;
  font-size: 14px;
}

/* Summary boxes */
.summary-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.summary-box-title {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.6;
  letter-spacing: 0.5px;
}

.summary-product-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.summary-product-title {
  margin-bottom: 14px;
}

.summary-product-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-product-info {
  flex: 1;
}

.summary-product-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.summary-product-qty {
  font-size: 12px;
  opacity: 0.5;
}

.summary-shipping-title {
  margin-bottom: 12px;
}

.summary-shipping-rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
}

.summary-row {
  display: flex;
  gap: 10px;
}

.summary-key {
  opacity: 0.45;
  width: 60px;
  flex-shrink: 0;
}

.summary-value {
  font-weight: 500;
}

.summary-value-addr {
  font-weight: 500;
  line-height: 1.5;
}

.summary-value-memo {
  font-weight: 500;
  opacity: 0.7;
}

/* Step done */
.step-done-inner {
  padding: 48px 24px;
  text-align: center;
}

.step-done-icon {
  margin-bottom: 16px;
}

.step-done-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.step-done-desc {
  font-size: 14px;
  opacity: 0.55;
  margin: 0 0 24px;
  line-height: 1.6;
}

.modal-note {
  text-align: center;
  font-size: 11px;
  opacity: 0.3;
  margin: 0;
}

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

/* ══ 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
═══════════════════════════════════════════ */
.pl-problem-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2.5rem auto;
  max-width: 480px;
}

.pl-problem-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.6;
}

.pl-problem-x {
  color: #ef4444;
  font-size: 20px;
  flex-shrink: 0;
}

.pl-problem-closing {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════
   POST-LAUNCH: ALL-IN-ONE
═══════════════════════════════════════════ */
.allinone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem auto;
  max-width: 800px;
}

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

.allinone-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s;
}

.allinone-card:hover {
  border-color: rgba(0,82,204,0.3);
}

.allinone-icon {
  font-size: 40px;
  color: #0052cc;
  margin-bottom: 1rem;
  display: block;
}

.allinone-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.allinone-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.allinone-closing {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   POST-LAUNCH: PRODUCT LINEUP PRICE
═══════════════════════════════════════════ */
.product-lineup-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0.5rem 0 1rem;
}

.btn-primary-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════
   POST-LAUNCH: PRICING
═══════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3rem auto;
  max-width: 700px;
}

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

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: rgba(0,82,204,0.3);
}

.pricing-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.pricing-features li {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-note {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════
   POST-LAUNCH: COST TABLE
═══════════════════════════════════════════ */
.cost-table-wrap {
  max-width: 500px;
  margin: 2.5rem auto;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
}

.cost-table th {
  text-align: left;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cost-table td {
  padding: 0.85rem 1rem;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cost-table tfoot td {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  padding-top: 1rem;
}

.cost-free {
  color: #4ade80 !important;
}

.cost-note {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.cost-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.cost-badge {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
}

/* ═══════════════════════════════════════════
   POST-LAUNCH: FAQ ACCORDION
═══════════════════════════════════════════ */
.faq-list {
  max-width: 640px;
  margin: 2.5rem auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-question:hover {
  color: rgba(255,255,255,0.8);
}

.faq-chevron {
  font-size: 24px;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.faq-answer p {
  padding: 0 0 1.25rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-link {
  color: #3b82f6;
  text-decoration: underline;
}

.faq-link:hover {
  color: #60a5fa;
}

/* ══════════════════════════════════════════════════════════════
   POST-LAUNCH V2 — Senvas V1 Product Page
   Design: Playfair Display + Noto Sans KR + JetBrains Mono
   Accent: #4a7cff (Senvas blue)
   Scope: .post-launch sections only
══════════════════════════════════════════════════════════════ */

.post-launch {
  --pl-bg-primary: #0a0a0f;
  --pl-bg-secondary: #12121a;
  --pl-bg-card: #1a1a26;
  --pl-bg-card-hover: #22222f;
  --pl-bg-deep: #06080c;
  --pl-accent: #4a7cff;
  --pl-accent-2: #00d4aa;
  --pl-accent-dim: rgba(74, 124, 255, 0.12);
  --pl-accent-glow: rgba(74, 124, 255, 0.28);
  --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', -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;
}
.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(74, 124, 255, 0.35);
  background: rgba(74, 124, 255, 0.06);
}
.pl-hero-cta { margin-top: 0.5rem; }
.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 {
  background: #5c8aff;
  box-shadow: 0 8px 24px rgba(74, 124, 255, 0.3);
}
.pl-btn-outline {
  background: transparent;
  color: var(--pl-accent);
  border-color: var(--pl-accent);
}
.pl-btn-outline:hover {
  background: rgba(74, 124, 255, 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(74, 124, 255, 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(74, 124, 255, 0.1), rgba(0, 212, 170, 0.05));
  border: 1px solid rgba(74, 124, 255, 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(74, 124, 255, 0.12);
  border: 1px solid rgba(74, 124, 255, 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 {
  padding: 0;
  overflow: hidden;
  flex: 1;
  position: relative;
}
.anim-brief-doc {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 28px 32px 200px;
  font-family: var(--pl-sans);
  font-size: 12px;
  line-height: 1.7;
  color: var(--pl-text-muted);
  transition: transform 0.1s linear;
}
.anim-brief-doc h3 {
  font-family: var(--pl-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--pl-text);
  margin-bottom: 20px;
}
.anim-brief-doc h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--pl-accent);
  margin: 20px 0 10px;
}
.anim-brief-doc table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 12px;
}
.anim-brief-doc table th,
.anim-brief-doc table td {
  border: 1px solid var(--pl-line);
  padding: 6px 12px;
  text-align: left;
}
.anim-brief-doc table th {
  background: var(--pl-bg-secondary);
  color: var(--pl-text);
  font-weight: 500;
}
.anim-brief-doc pre {
  background: var(--pl-bg-primary);
  border: 1px solid var(--pl-line);
  padding: 12px 16px;
  font-family: var(--pl-mono);
  font-size: 11px;
  line-height: 1.5;
  color: var(--pl-text-faint);
  overflow-x: auto;
  margin: 12px 0;
}
.anim-brief-doc ul {
  list-style: none;
  padding-left: 0;
}
.anim-brief-doc ul li {
  padding: 3px 0 3px 16px;
  position: relative;
}
.anim-brief-doc ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pl-accent);
}
.anim-brief-approve {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--pl-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 28px;
  border: 1px solid var(--pl-accent);
  background: transparent;
  color: var(--pl-accent);
  cursor: default;
  border-radius: 4px;
  transition: transform 0.15s, box-shadow 0.3s;
  z-index: 2;
}
.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(74, 124, 255, 0.3); }
}
.anim-brief-approve.pressed {
  transform: translateX(-50%) scale(0.95);
}
.anim-brief-done {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--pl-mono);
  font-size: 12px;
  color: var(--pl-accent);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 2;
}
.anim-brief-done.show { opacity: 1; }

/* 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(74, 124, 255, 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 h5 {
  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 {
  padding: 32px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.anim-impl-title {
  font-family: var(--pl-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pl-text-muted);
  margin-bottom: 20px;
}
.anim-impl-files {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.anim-file-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 7px 0;
  font-family: var(--pl-mono);
  font-size: 12px;
  color: var(--pl-text-faint);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s, color 0.3s;
}
.anim-file-row.show { opacity: 1; transform: translateY(0); }
.anim-file-row.done { color: var(--pl-text-muted); }
.anim-file-row.active-file { color: var(--pl-accent); }
.anim-file-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.anim-file-icon.empty {
  border: 1px solid var(--pl-line-2);
  border-radius: 3px;
}
.anim-file-icon.spin::after {
  content: '';
  width: 12px;
  height: 12px;
  border: 2px solid var(--pl-accent);
  border-top-color: transparent;
  border-radius: 50%;
  animation: pl-file-spin 0.8s linear infinite;
}
@keyframes pl-file-spin { to { transform: rotate(360deg); } }
.anim-file-icon.check::after {
  content: '✓';
  font-size: 13px;
  color: var(--pl-accent);
}
.anim-impl-progress {
  margin-top: 16px;
  height: 3px;
  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-complete {
  margin-top: 16px;
  text-align: center;
  font-family: var(--pl-mono);
  font-size: 13px;
  color: var(--pl-accent);
  opacity: 0;
  transition: opacity 0.5s;
}
.anim-impl-complete.show { opacity: 1; }

/* 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(74, 124, 255, 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(74, 124, 255, 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-display);
  font-size: 2.2rem;
  font-weight: 900;
  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(3, 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 {
  width: 48px;
  height: 48px;
  color: var(--pl-accent);
  margin-bottom: 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(74, 124, 255, 0.25);
  border-radius: 100px;
  font-family: var(--pl-mono);
  font-size: 0.7rem;
  color: var(--pl-accent);
  letter-spacing: 1px;
}

/* ─────────── 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(74, 124, 255, 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(74, 124, 255, 0.08), rgba(0, 212, 170, 0.04));
  border: 1px solid rgba(74, 124, 255, 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-impl { padding: 24px; }
  .anim-brief-doc { padding: 20px 24px 180px; }
}
