/*
===========================================
© 2017 - present LMS Building & Constructions
All rights reserved.
This application and its contents are 
protected by copyright law.
Unauthorised copying or reproduction 
is strictly prohibited.
===========================================
*/

/* ──────────────────────────────────────────────────────────────────────────
 * LMS Deck Builder — STYLES
 * Written by hand. No framework, no build tools.
 * Edit colours, fonts, spacing directly in the :root variables below.
 * ────────────────────────────────────────────────────────────────────────── */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

:root {
  /* Brand colours */
  --lms-blue:    #E4BC76;   /* Accent blue */
  --steel:       #002f45;   /* Deep Steel Blue — primary */
  --ink:         #002f45;   /* Main text */
  --ink-soft:    #374151;   /* Secondary text */
  --ink-softer:  #6B7280;   /* Quiet text */
  --surface:     #FAFAF9;   /* Off-white section background */
  --line:        #E8EBEF;   /* Hairline border colour */
  --success:     #059669;   /* Green for confirmations */

  /* Layout */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  /* Shadows (Stripe-style) */
  --shadow-card:    0 1px 2px rgba(17,24,39,.04), 0 4px 12px rgba(17,24,39,.05);
  --shadow-card-lg: 0 2px 4px rgba(17,24,39,.04), 0 12px 32px rgba(17,24,39,.08);
  --shadow-float:   0 1px 2px rgba(17,24,39,.06), 0 24px 48px -12px rgba(17,24,39,.18);
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.5;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11";
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ── Layout containers ──────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }
.centered { text-align: center; }

/* ── Typography helpers ─────────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-softer); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.15;
  color: var(--ink);
}
.section-subtitle { font-size: 17px; color: var(--ink-softer); margin-top: 12px; max-width: 560px; line-height: 1.5; }
.section-intro { margin-bottom: 52px; max-width: 620px; }
.section-intro.centered { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; font-weight: 500; font-size: 15px;
  transition: all 0.2s ease; white-space: nowrap;
}
.btn-dark-pill {
  height: 38px; padding: 0 18px; border-radius: var(--radius-pill);
  background: var(--ink); color: #fff;
}
.btn-dark-pill:hover { background: #000; }
.btn-primary-pill {
  height: 56px; padding: 0 28px; border-radius: var(--radius-pill);
  background: var(--ink); color: #fff; font-size: 16px;
  box-shadow: var(--shadow-card);
}
.btn-primary-pill:hover { background: #000; box-shadow: var(--shadow-card-lg); }
.btn-white-pill {
  height: 56px; padding: 0 32px; border-radius: var(--radius-pill);
  background: #fff; color: var(--ink); font-weight: 600; font-size: 16px;
  box-shadow: var(--shadow-card-lg);
}
.btn-white-pill:hover { background: rgba(255,255,255,0.9); }
.btn-steel-pill {
  height: 56px; padding: 0 28px; border-radius: var(--radius-pill);
  background: var(--steel); color: #fff; font-weight: 600; font-size: 16px;
  box-shadow: var(--shadow-card-lg); width: 100%;
}
.btn-steel-pill:hover { box-shadow: var(--shadow-float); }
.btn-steel-pill:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-ghost {
  height: 48px; padding: 0 20px; border-radius: var(--radius-pill);
  background: #fff; color: var(--ink-softer); border: 1px solid var(--line);
  font-weight: 500; font-size: 14px;
}
.btn-ghost:hover { background: var(--surface); color: var(--ink); }
.btn-next {
  flex: 1; height: 48px; border-radius: var(--radius-pill);
  background: var(--steel); color: #fff; font-weight: 600; font-size: 14px;
  box-shadow: var(--shadow-card);
}
.btn-next:hover { box-shadow: var(--shadow-card-lg); }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-row { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { height: 36px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-phone { font-size: 14px; color: var(--ink-softer); transition: color 0.2s; }
.nav-phone:hover { color: var(--ink); }
@media (max-width: 560px) { .nav-phone { display: none; } }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { padding: 80px 0 96px; }
@media (min-width: 640px) { .hero { padding: 112px 0 128px; } }
@media (min-width: 1024px) { .hero { padding: 144px 0 160px; } }

.hero-headline {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1.02;
  color: var(--ink); max-width: 18ch;
}
.hero-subhead {
  margin-top: 24px; font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6; color: var(--ink-softer); max-width: 56ch;
}
.hero-cta-row {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
}
@media (min-width: 640px) { .hero-cta-row { flex-direction: row; align-items: center; } }
.hero-cta-sub { font-size: 14px; color: var(--ink-softer); }

.hero-stat-line {
  margin-top: 64px; font-size: 14px; color: var(--ink-softer);
  display: flex; flex-wrap: wrap; gap: 8px 24px;
}
.hero-stat-line span {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-stat-line span::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(55,65,81,0.4);
}

/* ── Builder section ────────────────────────────────────────────────────── */
.builder-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
}
@media (min-width: 640px) { .builder-section { padding: 112px 0; } }

.builder-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 1100px) {
  .builder-grid { grid-template-columns: 1fr 440px; }
}

/* Viewer card */
.builder-left { display: flex; flex-direction: column; gap: 16px; order: 2; }
@media (min-width: 1100px) { .builder-left { order: 1; } }

.viewer-card {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.viewer-canvas {
  position: relative; width: 100%; height: 460px; background: #0F172A;
}
.viewer-canvas canvas { width: 100% !important; height: 100% !important; display: block; }
.viewer-loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; color: rgba(255,255,255,0.6); font-size: 14px;
}
.spinner {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.15);
  border-top-color: var(--lms-blue); border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.viewer-chip {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 500;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.viewer-footer {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 20px; background: #fff; border-top: 1px solid var(--line);
  font-size: 14px;
}
.viewer-footer .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lms-blue); display: inline-block;
}
.viewer-footer .sep {
  width: 1px; height: 12px; background: var(--line); display: inline-block;
}
.viewer-footer #viewer-material, .viewer-footer #viewer-extras {
  color: var(--ink-softer);
}

/* "What you get for $149" card */
.value-card {
  background: var(--steel); color: #fff;
  border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow-card-lg);
  display: flex; gap: 28px; flex-wrap: wrap;
}
.value-card-left { flex: 1; min-width: 220px; }
.value-card-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lms-blue); margin-bottom: 8px; }
.value-card-amount { font-size: 48px; font-weight: 600; letter-spacing: -0.025em; font-variant-numeric: tabular-nums; line-height: 1; }
.value-card-desc { margin-top: 10px; color: rgba(255,255,255,0.6); font-size: 14px; max-width: 320px; line-height: 1.5; }
.value-card-right {
  display: flex; flex-direction: column; gap: 10px;
  flex: 1; min-width: 220px; max-width: 300px;
}
.value-bullet { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.88); }
.value-bullet svg { flex-shrink: 0; margin-top: 2px; }

/* ── Stepper ────────────────────────────────────────────────────────────── */
.builder-right { display: flex; flex-direction: column; gap: 20px; order: 1; }
@media (min-width: 1100px) { .builder-right { order: 2; } }

.stepper { display: flex; flex-direction: column; gap: 8px; }
.stepper-labels { display: flex; align-items: center; justify-content: space-between; }
.step-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: -0.02em;
  background: none; border: 0; color: rgba(55,65,81,0.4); transition: color 0.2s;
}
.step-label[data-state="done"] { color: var(--ink-softer); cursor: pointer; }
.step-label[data-state="done"]:hover { color: var(--ink); }
.step-label[data-state="current"] { color: var(--ink); }
.step-circle {
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #9CA3AF;
  border: 1px solid #D1D5DB; transition: all 0.2s;
}
.step-label[data-state="done"] .step-circle,
.step-label[data-state="current"] .step-circle {
  background: var(--steel); color: #fff; border-color: var(--steel);
}
.stepper-bar { height: 4px; background: var(--line); border-radius: var(--radius-pill); overflow: hidden; }
.stepper-bar-fill {
  height: 100%; background: var(--steel); width: 0%;
  border-radius: var(--radius-pill);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 640px) { .step-label span:last-child { display: none; } }

/* ── Wizard panel ───────────────────────────────────────────────────────── */
.wizard-panel { position: relative; min-height: 400px; }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow-card);
}
.card-header { margin-bottom: 20px; }
.card-title { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.card-subtitle { font-size: 14px; color: var(--ink-softer); margin-top: 4px; line-height: 1.5; }
.card-actions {
  display: flex; gap: 8px; padding-top: 24px; margin-top: 20px;
  border-top: 1px solid var(--line);
}

/* Shape picker */
.shape-row, .wall-row { display: grid; gap: 8px; }
.shape-row { grid-template-columns: repeat(3, 1fr); }
.wall-row { grid-template-columns: repeat(2, 1fr); }
.field-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-softer);
  display: block; margin-bottom: 10px;
}
.opt-tile {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 12px; border-radius: var(--radius-md);
  border: 1px solid var(--line); background: #fff;
  transition: all 0.15s;
}
.opt-tile.active {
  border-color: var(--steel); background: #F8FAFC;
  box-shadow: 0 0 0 1px var(--steel);
}
.opt-tile svg { color: #9CA3AF; transition: color 0.15s; }
.opt-tile.active svg { color: var(--steel); }
.opt-tile-label { font-size: 12px; font-weight: 600; color: var(--ink); }

.wall-tile {
  display: flex; flex-direction: column; gap: 2px; align-items: flex-start;
  padding: 12px; border-radius: var(--radius-md);
  border: 1px solid var(--line); background: #fff; text-align: left;
  transition: all 0.15s;
}
.wall-tile.active {
  border-color: var(--steel); background: #F8FAFC;
  box-shadow: 0 0 0 1px var(--steel);
}
.wall-tile-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.wall-tile-desc { font-size: 11px; color: var(--ink-softer); }

/* Corner picker (L-shape) */
.corner-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.corner-tile {
  font-size: 12px; font-weight: 500;
  padding: 8px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: #fff; color: var(--ink-softer);
  transition: all 0.15s;
}
.corner-tile.active {
  background: var(--steel); color: #fff; border-color: var(--steel);
}

/* Slider */
.slider-group { margin-bottom: 8px; }
.slider-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 8px;
}
.slider-value { font-size: 22px; font-weight: 600; color: var(--steel); font-variant-numeric: tabular-nums; }
.slider-value .unit { font-size: 14px; color: var(--ink-softer); font-weight: 400; margin-left: 2px; }
.slider-range {
  width: 100%; height: 6px; border-radius: var(--radius-pill);
  background: var(--line); appearance: none; outline: none;
  accent-color: var(--steel); cursor: pointer;
}
.slider-range::-webkit-slider-thumb {
  appearance: none; width: 20px; height: 20px;
  background: var(--steel); border: 3px solid #fff;
  border-radius: 50%; box-shadow: var(--shadow-card);
}
.slider-range::-moz-range-thumb {
  width: 18px; height: 18px; background: var(--steel);
  border: 3px solid #fff; border-radius: 50%;
}
.slider-ends {
  display: flex; justify-content: space-between;
  font-size: 10px; color: rgba(55,65,81,0.6); margin-top: 4px;
}

/* Cutout group */
.cutout-group {
  border: 1px solid var(--line); background: var(--surface);
  border-radius: var(--radius-md); padding: 16px;
  display: flex; flex-direction: column; gap: 16px;
}

/* Area readout */
.readout-box {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.readout-label { font-size: 14px; color: var(--ink-softer); }
.readout-value { font-size: 20px; font-weight: 600; color: var(--steel); font-variant-numeric: tabular-nums; }

/* Material / extras list */
.item-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; border-radius: var(--radius-md);
  border: 1px solid var(--line); background: #fff;
  transition: all 0.15s; text-align: left; width: 100%;
}
.item-row.active {
  border-color: var(--steel); background: #F8FAFC;
  box-shadow: 0 0 0 1px var(--steel);
}
.item-swatch { width: 44px; height: 44px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.05); flex-shrink: 0; }
.item-body { flex: 1; min-width: 0; }
.item-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.item-desc { font-size: 12px; color: var(--ink-softer); margin-top: 2px; line-height: 1.4; }
.item-check {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--steel); flex-shrink: 0;
}

/* Quantity controls */
.qty-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.qty-btn {
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 14px; font-weight: 500; border: 1px solid var(--line);
  background: #fff; color: var(--ink-softer); transition: all 0.15s;
}
.qty-btn:hover:not(:disabled) { background: var(--surface); }
.qty-btn.plus { background: var(--steel); color: #fff; border-color: var(--steel); }
.qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.qty-value { width: 32px; text-align: center; font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums; }

.each-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 16px; transition: all 0.15s;
  border: 1px solid #D1D5DB; background: #fff; color: #9CA3AF;
}
.each-btn.active { background: var(--steel); color: #fff; border-color: var(--steel); }

/* Form fields */
.field { margin-bottom: 12px; }
.field-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.field-optional { font-size: 10px; color: rgba(55,65,81,0.6); letter-spacing: 0.1em; text-transform: uppercase; }
.field-input {
  width: 100%; height: 48px; padding: 0 16px;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  background: #fff; font-size: 14px; color: var(--ink);
  font-family: inherit; transition: all 0.2s;
}
.field-input:focus {
  outline: none; border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(0,47,68,0.08);
}
.field-input::placeholder { color: rgba(55,65,81,0.4); }

.summary-box {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 16px;
  display: flex; flex-direction: column; gap: 8px; font-size: 14px;
}
.summary-row { display: flex; align-items: center; justify-content: space-between; }
.summary-row .label { color: var(--ink-softer); }
.summary-row .value { color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; }

.final-footer-note { font-size: 12px; color: var(--ink-softer); text-align: center; line-height: 1.5; }

/* ── Info sections ──────────────────────────────────────────────────────── */
.info-section { padding: 80px 0; }
@media (min-width: 640px) { .info-section { padding: 128px 0; } }
.info-section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.card-grid { display: grid; gap: 24px; }
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}

.step-num { font-size: 14px; font-weight: 600; color: var(--lms-blue); font-variant-numeric: tabular-nums; margin-bottom: 16px; }
.info-card-title { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 10px; }
.info-card-body { font-size: 14px; color: var(--ink-softer); line-height: 1.6; }

.content-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow-card);
}

.testimonial { display: flex; flex-direction: column; height: 100%; }
.testimonial-quote {
  font-size: 15px; color: var(--ink); line-height: 1.6; flex: 1;
}
.testimonial-meta { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.testimonial-location { font-size: 12px; color: var(--ink-softer); margin-top: 2px; }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:first-child { border-top: 0; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 20px 0; width: 100%;
  background: none; border: 0; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--ink);
}
.faq-toggle { font-size: 20px; color: var(--ink-softer); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 40px 24px 0; color: var(--ink-softer); line-height: 1.6; }

/* ── Final CTA ──────────────────────────────────────────────────────────── */
.final-cta { padding: 96px 0; background: var(--steel); }
@media (min-width: 640px) { .final-cta { padding: 144px 0; } }
.final-cta-headline {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600; letter-spacing: -0.025em; color: #fff;
}
.final-cta-subhead {
  margin: 20px auto 0; max-width: 40ch;
  font-size: 18px; color: rgba(255,255,255,0.7);
}
.final-cta .btn-white-pill { margin-top: 40px; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: #fff; padding: 48px 0; border-top: 1px solid var(--line); }
.footer-row {
  display: flex; flex-direction: column; gap: 24px;
  align-items: flex-start; justify-content: space-between;
}
@media (min-width: 640px) { .footer-row { flex-direction: row; align-items: center; } }
.footer-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-logo { height: 28px; }
.footer-divider { width: 1px; height: 24px; background: var(--line); }
.footer-tagline { font-size: 14px; color: var(--ink-softer); }
.footer-right { display: flex; gap: 24px; font-size: 14px; color: var(--ink-softer); }
.footer-link:hover { color: var(--ink); }

/* ── Modal ──────────────────────────────────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(11,18,32,0.7); backdrop-filter: blur(4px); }
.modal-card {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--radius-lg);
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  padding: 32px; box-shadow: var(--shadow-float);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface); border: 0; font-size: 20px; color: var(--ink-softer);
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--line); color: var(--ink); }
.modal-title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-top: 8px; color: var(--ink); }
.modal-subtitle { color: var(--ink-softer); margin-top: 8px; font-size: 14px; line-height: 1.6; }
.modal-summary {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 16px; margin: 20px 0;
  font-size: 14px;
}
.modal-summary .summary-row { padding: 4px 0; }

.ghl-form-container {
  margin-top: 12px; border: 1px solid var(--line);
  border-radius: var(--radius-md); overflow: hidden;
  min-height: 80px;
}
.ghl-form-container iframe { width: 100%; border: 0; display: block; }
.ghl-placeholder {
  padding: 40px 24px; text-align: center; background: var(--surface);
  color: var(--ink-softer); font-size: 14px;
}
.ghl-placeholder p { margin-bottom: 8px; }
.ghl-placeholder .small { font-size: 12px; line-height: 1.6; }
.ghl-placeholder code {
  background: #fff; padding: 2px 6px; border-radius: 4px;
  font-family: "SF Mono", Menlo, monospace; font-size: 12px; color: var(--ink);
}

/* ── Tabular numbers utility ────────────────────────────────────────────── */
.tabular { font-variant-numeric: tabular-nums; }

/* LMS Copyright Notice */
.copyright-text {
  text-align: center;
  margin: 5px 0;
  padding: 0 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
}