/* ===================================================
   Laser DXF Landing Page Styles
   =================================================== */

:root {
  --ldxf-bg: #0a0a0b;
  --ldxf-bg2: #111113;
  --ldxf-bg3: #18181b;
  --ldxf-border: rgba(255,255,255,0.08);
  --ldxf-border2: rgba(255,255,255,0.14);
  --ldxf-text: #f0ede8;
  --ldxf-muted: #7a7774;
  --ldxf-muted2: #a09d99;
  --ldxf-accent: #3b9eff;
  --ldxf-accent2: #1a7de0;
  --ldxf-red: #e85a4f;
  --ldxf-green: #4caf7d;
  --ldxf-blue: #5b9cf6;
  --ldxf-mono: 'JetBrains Mono', monospace;
  --ldxf-sans: 'Onest', sans-serif;
}

/* Page wrapper — override global body for this landing */
.ldxf-page {
  font-family: var(--ldxf-sans);
  background: var(--ldxf-bg);
  color: var(--ldxf-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Override header for dark theme */
.ldxf-page .header {
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ldxf-border);
}

/* HERO */
.ldxf-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 2rem 80px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.ldxf-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ldxf-mono);
  font-size: 12px;
  color: var(--ldxf-accent);
  border: 1px solid rgba(59,158,255,0.3);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 2rem;
  width: fit-content;
}
.ldxf-hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--ldxf-accent);
  border-radius: 50%;
  animation: ldxf-blink 1.8s ease-in-out infinite;
}
@keyframes ldxf-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.ldxf-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--ldxf-text);
}
.ldxf-hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px var(--ldxf-accent);
}
.ldxf-hero-sub {
  font-size: 1.15rem;
  color: var(--ldxf-muted2);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.ldxf-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.ldxf-btn-primary {
  background: var(--ldxf-accent);
  color: #fff;
  font-family: var(--ldxf-sans);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .1s;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
}
.ldxf-btn-primary:hover { background: var(--ldxf-accent2); transform: translateY(-1px); }

.ldxf-btn-secondary {
  background: transparent;
  color: var(--ldxf-text);
  font-family: var(--ldxf-sans);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid var(--ldxf-border2);
  text-decoration: none;
  transition: border-color .2s, background .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.ldxf-btn-secondary:hover { border-color: var(--ldxf-muted2); background: var(--ldxf-bg3); }

.ldxf-hero-stats {
  display: flex; gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ldxf-border);
}
.ldxf-hero-stat-num {
  font-family: var(--ldxf-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ldxf-accent);
}
.ldxf-hero-stat-label { font-size: 13px; color: var(--ldxf-muted); margin-top: 2px; }

/* SECTIONS */
.ldxf-page section { padding: 100px 2rem; }
.ldxf-container { max-width: 1000px; margin: 0 auto; }
.ldxf-section-label {
  font-family: var(--ldxf-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ldxf-accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.ldxf-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--ldxf-text);
}
.ldxf-section-sub {
  font-size: 1.05rem;
  color: var(--ldxf-muted2);
  max-width: 560px;
  line-height: 1.7;
}

/* PAIN SECTION */
.ldxf-pain { background: var(--ldxf-bg2); }
.ldxf-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ldxf-border);
  border: 1px solid var(--ldxf-border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 3rem;
}
.ldxf-pain-card {
  background: var(--ldxf-bg2);
  padding: 2rem;
}
.ldxf-pain-card-label {
  font-family: var(--ldxf-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 8px;
}
.ldxf-pain-card-label.before { color: var(--ldxf-red); }
.ldxf-pain-card-label.after { color: var(--ldxf-green); }
.ldxf-pain-card-label::before {
  content: '';
  display: block; width: 20px; height: 1px;
  background: currentColor;
}
.ldxf-pain-list { list-style: none; display: flex; flex-direction: column; gap: 12px; padding: 0; margin: 0; }
.ldxf-pain-list li {
  font-size: 14px;
  color: var(--ldxf-muted2);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.ldxf-pain-list li .ico { font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.ldxf-pain-list.bad li .ico { color: var(--ldxf-red); }
.ldxf-pain-list.good li .ico { color: var(--ldxf-green); }

/* HOW IT WORKS */
.ldxf-steps {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 3rem;
  position: relative;
}
.ldxf-steps::before {
  content: '';
  position: absolute;
  left: 23px; top: 24px; bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--ldxf-accent), transparent);
}
.ldxf-step {
  display: flex; gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--ldxf-border);
}
.ldxf-step:last-child { border-bottom: none; }
.ldxf-step-num {
  width: 48px; height: 48px;
  border: 1px solid var(--ldxf-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ldxf-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--ldxf-accent);
  flex-shrink: 0;
  background: var(--ldxf-bg);
  position: relative; z-index: 1;
}
.ldxf-step-content { flex: 1; padding-top: 10px; }
.ldxf-step-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--ldxf-text); }
.ldxf-step-content p { font-size: 14px; color: var(--ldxf-muted2); line-height: 1.6; }

/* CODE BLOCK */
.ldxf-code-section { background: var(--ldxf-bg2); }
.ldxf-code-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.ldxf-code-block {
  background: var(--ldxf-bg);
  border: 1px solid var(--ldxf-border);
  border-radius: 10px;
  overflow: hidden;
}
.ldxf-code-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ldxf-border);
  background: var(--ldxf-bg3);
}
.ldxf-code-header-left { display: flex; align-items: center; gap: 10px; }
.ldxf-code-dots { display: flex; gap: 5px; }
.ldxf-code-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.ldxf-code-dots span:nth-child(1) { background: #e85a4f33; border: 1px solid #e85a4f66; }
.ldxf-code-dots span:nth-child(2) { background: rgba(59,158,255,0.2); border: 1px solid rgba(59,158,255,0.4); }
.ldxf-code-dots span:nth-child(3) { background: #4caf7d33; border: 1px solid #4caf7d66; }
.ldxf-code-filename {
  font-family: var(--ldxf-mono);
  font-size: 12px;
  color: var(--ldxf-muted);
}
.ldxf-code-method {
  font-family: var(--ldxf-mono);
  font-size: 11px;
  background: rgba(91,156,246,0.15);
  color: var(--ldxf-blue);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.ldxf-page pre {
  font-family: var(--ldxf-mono);
  font-size: 12.5px;
  line-height: 1.7;
  padding: 1.2rem 1.5rem;
  overflow-x: auto;
  color: var(--ldxf-muted2);
  margin: 0;
}
.tok-key { color: #5b9cf6; }
.tok-str { color: #3b9eff; }
.tok-num { color: #4caf7d; }
.tok-cmt { color: #444; }
.tok-method { color: #e89a5a; }
.tok-bool { color: #e85a4f; }

/* PRICING */
.ldxf-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.ldxf-price-card {
  border: 1px solid var(--ldxf-border);
  border-radius: 12px;
  padding: 2rem;
  background: var(--ldxf-bg2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ldxf-price-card.featured {
  border-color: rgba(59,158,255,0.4);
  background: linear-gradient(135deg, #0d1a2e 0%, var(--ldxf-bg2) 100%);
}
.ldxf-price-badge {
  font-family: var(--ldxf-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ldxf-accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-weight: 700;
}
.ldxf-price-name { font-size: 14px; color: var(--ldxf-muted2); margin-bottom: 0.8rem; }
.ldxf-price-amount {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ldxf-text);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ldxf-price-amount span { font-size: 1rem; font-weight: 400; color: var(--ldxf-muted); margin-left: 4px; }
.ldxf-price-desc { font-size: 13px; color: var(--ldxf-muted); margin-bottom: 1.5rem; }
.ldxf-price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 2rem; padding: 0; }
.ldxf-price-features li {
  font-size: 13.5px;
  color: var(--ldxf-muted2);
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.4;
}
.ldxf-price-features li::before {
  content: '✓';
  color: var(--ldxf-green);
  font-weight: 700;
  flex-shrink: 0;
}

.ldxf-btn-full {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: block;
  border: none;
  cursor: pointer;
  font-family: var(--ldxf-sans);
}
.ldxf-btn-full.primary { background: var(--ldxf-accent); color: #fff; }
.ldxf-btn-full.primary:hover { background: var(--ldxf-accent2); }
.ldxf-btn-full.ghost { border: 1px solid var(--ldxf-border2); color: var(--ldxf-text); background: transparent; }
.ldxf-btn-full.ghost:hover { border-color: var(--ldxf-muted2); background: var(--ldxf-bg3); }

/* FORMATS */
.ldxf-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ldxf-format-card {
  border: 1px solid var(--ldxf-border);
  border-radius: 10px;
  padding: 1.8rem;
  background: var(--ldxf-bg2);
  transition: border-color .2s;
}
.ldxf-format-card:hover { border-color: var(--ldxf-border2); }
.ldxf-format-icon {
  font-size: 28px;
  margin-bottom: 1rem;
  display: block;
}
.ldxf-format-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--ldxf-text); }
.ldxf-format-card p { font-size: 13px; color: var(--ldxf-muted2); line-height: 1.6; }

/* TARGET */
.ldxf-target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.ldxf-target-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--ldxf-border);
  border-radius: 10px;
  background: var(--ldxf-bg2);
}
.ldxf-target-num {
  font-family: var(--ldxf-mono);
  font-size: 11px;
  color: var(--ldxf-muted);
  padding-top: 3px;
  flex-shrink: 0;
}
.ldxf-target-item h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--ldxf-text); }
.ldxf-target-item p { font-size: 13px; color: var(--ldxf-muted2); line-height: 1.5; }

/* SAMPLE FILES */
.ldxf-samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.ldxf-sample-card {
  background: var(--ldxf-bg);
  border: 1px solid var(--ldxf-border);
  border-radius: 12px;
  overflow: hidden;
}
.ldxf-sample-card-inner { padding: 20px 20px 16px; }
.ldxf-sample-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ldxf-sample-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(59,158,255,0.12);
  border: 1px solid rgba(59,158,255,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ldxf-sample-name { font-size: 13px; font-weight: 700; color: var(--ldxf-text); }
.ldxf-sample-file { font-size: 11px; color: var(--ldxf-muted); font-family: var(--ldxf-mono); margin-top: 1px; }
.ldxf-sample-props { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.ldxf-sample-prop { display: flex; justify-content: space-between; font-size: 12px; }
.ldxf-sample-prop-label { color: var(--ldxf-muted2); }
.ldxf-sample-prop-value { color: var(--ldxf-text); font-family: var(--ldxf-mono); }
.ldxf-sample-preview {
  background: var(--ldxf-bg2);
  border: 1px solid var(--ldxf-border);
  border-radius: 8px;
  padding: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  min-height: 90px;
}
.ldxf-sample-download {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 9px;
  background: var(--ldxf-bg3);
  border: 1px solid var(--ldxf-border2);
  border-radius: 7px;
  color: var(--ldxf-text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
  margin: 0 20px 20px;
  box-sizing: border-box;
}
.ldxf-sample-download:hover { border-color: var(--ldxf-accent); color: var(--ldxf-accent); }

/* CABINET PREVIEW */
.ldxf-cabinet-wrap {
  margin-top: 3rem;
  border: 1px solid var(--ldxf-border2);
  border-radius: 14px;
  overflow: hidden;
}
.ldxf-cabinet-chrome {
  background: var(--ldxf-bg3);
  padding: 12px 16px;
  border-bottom: 1px solid var(--ldxf-border);
  display: flex; align-items: center; gap: 10px;
}
.ldxf-cabinet-dots { display: flex; gap: 5px; }
.ldxf-cabinet-dots span {
  width: 10px; height: 10px; border-radius: 50%; display: block;
}
.ldxf-cabinet-dots span:nth-child(1) { background: #e85a4f33; border: 1px solid #e85a4f55; }
.ldxf-cabinet-dots span:nth-child(2) { background: #3b9eff33; border: 1px solid #3b9eff55; }
.ldxf-cabinet-dots span:nth-child(3) { background: #4caf7d33; border: 1px solid #4caf7d55; }
.ldxf-cabinet-url {
  flex: 1;
  background: var(--ldxf-bg2);
  border-radius: 5px;
  padding: 5px 12px;
  font-family: var(--ldxf-mono);
  font-size: 11px;
  color: var(--ldxf-muted);
  max-width: 280px;
}
.ldxf-cabinet-layout { display: flex; background: var(--ldxf-bg2); min-height: 360px; }
.ldxf-cabinet-sidebar {
  width: 180px; flex-shrink: 0;
  border-right: 1px solid var(--ldxf-border);
  padding: 16px 0;
}
.ldxf-cabinet-sidebar-brand {
  padding: 0 14px 14px;
  border-bottom: 1px solid var(--ldxf-border);
  margin-bottom: 8px;
}
.ldxf-cabinet-sidebar-brand-name {
  font-family: var(--ldxf-mono); font-size: 12px; font-weight: 700; color: var(--ldxf-text);
}
.ldxf-cabinet-sidebar-brand-sub { font-size: 11px; color: var(--ldxf-muted); margin-top: 2px; }
.ldxf-cabinet-sidebar-section { padding: 6px 14px 3px; font-size: 10px; letter-spacing: .1em; color: var(--ldxf-muted); text-transform: uppercase; }
.ldxf-cabinet-sidebar-item { padding: 7px 14px; font-size: 12.5px; color: var(--ldxf-muted2); }
.ldxf-cabinet-sidebar-item.active {
  color: var(--ldxf-accent);
  background: rgba(59,158,255,0.1);
  border-left: 2px solid var(--ldxf-accent);
  font-weight: 500;
}
.ldxf-cabinet-main { flex: 1; padding: 20px; min-width: 0; }
.ldxf-cabinet-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
}
.ldxf-cabinet-title { font-size: 14px; font-weight: 700; color: var(--ldxf-text); }
.ldxf-cabinet-save {
  background: var(--ldxf-accent); color: #fff;
  font-size: 11px; font-family: var(--ldxf-mono);
  padding: 5px 14px; border-radius: 6px; cursor: default;
}
.ldxf-cabinet-chips { display: flex; gap: 6px; margin-bottom: 12px; }
.ldxf-cabinet-chip {
  padding: 3px 10px; font-size: 11px;
  border: 1px solid var(--ldxf-border);
  border-radius: 20px;
  color: var(--ldxf-muted2);
}
.ldxf-cabinet-chip.active { border-color: var(--ldxf-accent); color: var(--ldxf-accent); }
.ldxf-cabinet-table-wrap { border: 1px solid var(--ldxf-border); border-radius: 8px; overflow: hidden; }
.ldxf-cabinet-table {
  width: 100%; border-collapse: collapse; font-size: 11px; table-layout: fixed;
}
.ldxf-cabinet-table thead tr { background: var(--ldxf-bg3); }
.ldxf-cabinet-table th {
  padding: 7px 10px; text-align: left; color: var(--ldxf-muted);
  font-weight: 500; border-bottom: 1px solid var(--ldxf-border);
}
.ldxf-cabinet-table th.right { text-align: right; }
.ldxf-cabinet-table th.w48 { width: 48px; }
.ldxf-cabinet-table td { padding: 6px 10px; }
.ldxf-cabinet-table tr { border-bottom: 1px solid var(--ldxf-border); }
.ldxf-cabinet-table tr:last-child { border-bottom: none; }
.ldxf-cabinet-table .mono { font-family: var(--ldxf-mono); color: var(--ldxf-text); }
.ldxf-cabinet-table .right { text-align: right; }
.ldxf-cabinet-table .highlight {
  background: rgba(59,158,255,0.12);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: var(--ldxf-mono);
  color: var(--ldxf-blue);
}
.ldxf-cabinet-table .mono-muted { font-family: var(--ldxf-mono); color: var(--ldxf-muted2); }
.ldxf-cabinet-hint { margin-top: 10px; font-size: 11px; color: var(--ldxf-muted); }

.ldxf-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 1.5rem;
}
.ldxf-benefit-card {
  padding: 1.2rem;
  border: 1px solid var(--ldxf-border);
  border-radius: 10px;
  background: var(--ldxf-bg2);
}
.ldxf-benefit-num { font-family: var(--ldxf-mono); font-size: 11px; color: var(--ldxf-accent); margin-bottom: 8px; }
.ldxf-benefit-title { font-size: 13px; font-weight: 700; color: var(--ldxf-text); margin-bottom: 4px; }
.ldxf-benefit-desc { font-size: 12px; color: var(--ldxf-muted2); line-height: 1.5; }

/* LIVE EXAMPLE */
.ldxf-live-section { background: var(--ldxf-bg); }
.ldxf-live-wrap {
  margin-top: 2.5rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.ldxf-live-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--ldxf-border2);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ldxf-live-card:hover {
  border-color: var(--ldxf-accent);
  box-shadow: 0 0 0 1px var(--ldxf-accent), 0 8px 32px rgba(59,158,255,0.12);
}

/* Browser chrome bar */
.ldxf-live-chrome {
  background: var(--ldxf-bg3);
  padding: 11px 16px;
  border-bottom: 1px solid var(--ldxf-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ldxf-live-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.ldxf-live-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}
.ldxf-live-dots span:nth-child(1) { background: #e85a4f33; border: 1px solid #e85a4f55; }
.ldxf-live-dots span:nth-child(2) { background: #3b9eff33; border: 1px solid #3b9eff55; }
.ldxf-live-dots span:nth-child(3) { background: #4caf7d33; border: 1px solid #4caf7d55; }
.ldxf-live-url {
  flex: 1;
  background: var(--ldxf-bg2);
  border-radius: 5px;
  padding: 5px 12px;
  font-family: var(--ldxf-mono);
  font-size: 11px;
  color: var(--ldxf-muted);
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
}
.ldxf-live-goto {
  font-family: var(--ldxf-mono);
  font-size: 10px;
  color: var(--ldxf-accent);
  opacity: 0.7;
  white-space: nowrap;
}

/* Card body */
.ldxf-live-body {
  background: var(--ldxf-bg2);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* Logo badge */
.ldxf-live-logo { flex-shrink: 0; text-align: center; }
.ldxf-live-logo-box {
  width: 72px; height: 72px;
  border-radius: 12px;
  background: var(--ldxf-bg3);
  border: 1px solid var(--ldxf-border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
}
.ldxf-live-logo-name {
  font-family: var(--ldxf-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--ldxf-accent);
  line-height: 1;
}
.ldxf-live-logo-city {
  font-family: var(--ldxf-mono);
  font-size: 8px;
  color: var(--ldxf-muted);
  letter-spacing: 0.05em;
}
.ldxf-live-status {
  margin-top: 8px;
  font-size: 10px;
  color: var(--ldxf-green);
  font-family: var(--ldxf-mono);
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.ldxf-live-status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ldxf-green);
  display: inline-block;
}

/* Description */
.ldxf-live-desc { flex: 1; min-width: 220px; }
.ldxf-live-company {
  font-size: 15px;
  font-weight: 700;
  color: var(--ldxf-text);
  margin-bottom: 5px;
}
.ldxf-live-text {
  font-size: 13px;
  color: var(--ldxf-muted2);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.ldxf-live-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ldxf-accent);
  color: #fff;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--ldxf-sans);
}

/* Stats column */
.ldxf-live-stats {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid var(--ldxf-border);
  padding-left: 2rem;
}
.ldxf-live-stat { text-align: center; }
.ldxf-live-stat-num {
  font-family: var(--ldxf-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ldxf-accent);
}
.ldxf-live-stat-num.green { color: var(--ldxf-green); }
.ldxf-live-stat-num.white { color: var(--ldxf-text); }
.ldxf-live-stat-label {
  font-size: 10px;
  color: var(--ldxf-muted);
  margin-top: 2px;
}

/* Footnote */
.ldxf-live-footnote {
  text-align: center;
  margin-top: 1rem;
  font-size: 11px;
  color: var(--ldxf-muted);
  font-family: var(--ldxf-mono);
}

/* LIVE EXAMPLE responsive */
@media (max-width: 768px) {
  .ldxf-live-body {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .ldxf-live-stats {
    border-left: none;
    border-top: 1px solid var(--ldxf-border);
    padding-left: 0;
    padding-top: 1rem;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }
}

/* REGISTRATION FORM */
.ldxf-reg-section { background: var(--ldxf-bg2); padding: 100px 2rem; }
.ldxf-reg-inner { max-width: 560px; margin: 0 auto; }
.ldxf-reg-form-box {
  background: var(--ldxf-bg);
  border: 1px solid var(--ldxf-border2);
  border-radius: 14px;
  padding: 2rem;
}
.ldxf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.ldxf-form-group { margin-bottom: 1rem; }
.ldxf-form-label {
  display: block; font-size: 12px; color: var(--ldxf-muted2);
  margin-bottom: 6px; font-family: var(--ldxf-mono);
}
.ldxf-form-input {
  width: 100%; background: var(--ldxf-bg2);
  border: 1px solid var(--ldxf-border2);
  border-radius: 8px; padding: 10px 14px;
  color: var(--ldxf-text); font-size: 14px;
  outline: none; font-family: var(--ldxf-sans);
  transition: border-color .2s;
  box-sizing: border-box;
}
.ldxf-form-input:focus { border-color: var(--ldxf-accent); }

.ldxf-dxf-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ldxf-dxf-opt {
  padding: 10px 14px;
  border: 1px solid var(--ldxf-border2);
  border-radius: 8px;
  font-size: 13px;
  color: var(--ldxf-muted2);
  cursor: pointer;
  transition: all .15s;
}
.ldxf-dxf-opt:hover { border-color: var(--ldxf-accent); color: var(--ldxf-text); }
.ldxf-dxf-opt.selected {
  border-color: var(--ldxf-accent);
  color: var(--ldxf-accent);
  background: rgba(59,158,255,0.08);
}

.ldxf-reg-error {
  display: none;
  font-size: 12px;
  color: var(--ldxf-red);
  margin-bottom: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(232,90,79,0.3);
  border-radius: 6px;
  background: rgba(232,90,79,0.07);
}

.ldxf-reg-submit {
  width: 100%; background: var(--ldxf-accent);
  color: #fff; border: none; border-radius: 8px;
  padding: 13px; font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: var(--ldxf-sans);
  transition: opacity .2s;
}
.ldxf-reg-submit:hover { opacity: .85; }

.ldxf-reg-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.ldxf-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(76,175,125,0.15);
  border: 1px solid rgba(76,175,125,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-size: 28px;
}
.ldxf-success-title { font-size: 1.5rem; font-weight: 800; color: var(--ldxf-text); margin-bottom: .8rem; }
.ldxf-success-text {
  font-size: 14px; color: var(--ldxf-muted2);
  line-height: 1.7; max-width: 360px;
  margin: 0 auto 1.5rem;
}
.ldxf-success-next {
  background: var(--ldxf-bg3);
  border: 1px solid var(--ldxf-border);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: inline-block;
  text-align: left;
}
.ldxf-success-next-label {
  font-size: 11px; color: var(--ldxf-muted);
  margin-bottom: 6px; font-family: var(--ldxf-mono);
}
.ldxf-success-next-text { font-size: 13px; color: var(--ldxf-muted2); line-height: 1.8; }

/* DIVIDER */
.ldxf-divider { width: 100%; height: 1px; background: var(--ldxf-border); margin: 0; }

/* Override footer for dark theme */
.ldxf-page .footer {
  background: var(--ldxf-bg);
  border-top: 1px solid var(--ldxf-border);
  color: var(--ldxf-muted2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ldxf-hero { padding: 100px 1.25rem 60px; }
  .ldxf-page section { padding: 70px 1.25rem; }
  .ldxf-pain-grid, .ldxf-code-grid, .ldxf-pricing-grid { grid-template-columns: 1fr; }
  .ldxf-formats-grid, .ldxf-samples-grid, .ldxf-benefits-grid { grid-template-columns: 1fr; }
  .ldxf-target-grid { grid-template-columns: 1fr; }
  .ldxf-hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .ldxf-form-row { grid-template-columns: 1fr; }
  .ldxf-cabinet-layout { flex-direction: column; }
  .ldxf-cabinet-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--ldxf-border); }
}

/* ── Sample preview image ── */
.ldxf-sample-preview {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.ldxf-sample-preview:hover {
  border-color: var(--ldxf-accent);
  box-shadow: 0 0 0 2px rgba(59,158,255,0.18);
}
.ldxf-sample-preview::after {
  content: '🔍';
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.ldxf-sample-preview:hover::after {
  opacity: 1;
}
.ldxf-sample-img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

/* ── Drawing modal ── */
.ldxf-draw-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  visibility: hidden;
  opacity: 0;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, opacity 0.35s ease, visibility 0s 0.35s;
}
.ldxf-draw-modal.active {
  visibility: visible;
  opacity: 1;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(8px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, opacity 0.35s ease, visibility 0s 0s;
}
.ldxf-draw-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: scale(0.88) translateY(24px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
}
.ldxf-draw-modal.active .ldxf-draw-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.ldxf-draw-modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(30,30,40,0.92);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
  line-height: 1;
}
.ldxf-draw-modal-close:hover {
  background: rgba(255,60,60,0.75);
  border-color: rgba(255,60,60,0.5);
  transform: rotate(90deg);
}
.ldxf-draw-modal-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-family: var(--ldxf-font);
  text-align: center;
  letter-spacing: 0.02em;
}
.ldxf-draw-modal-img {
  max-width: 85vw;
  max-height: 75vh;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
  background: #1a2332;
}

@media (max-width: 600px) {
  .ldxf-draw-modal-img {
    max-width: 96vw;
    max-height: 70vh;
  }
  .ldxf-draw-modal-close {
    top: -8px;
    right: -4px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}