/* Invoice Guard HQ — E-invoice studio (film-aligned UI)
   Tokens from brand app-assets/design-system.css; scoped so the rest of the site is unchanged. */

.ig-studio {
  /* Aligned to app.css tokens so studio feels like one product, not a separate app */
  --ig-navy-950: #0f172a;
  --ig-navy-900: #0f172a;
  --ig-navy-800: #16325c;
  --ig-blue-500: #2563eb;
  --ig-blue-dark: #1d4ed8;
  --ig-cyan-400: #3b82f6;
  --ig-mint-500: #047857;
  --ig-mint-100: #ecfdf5;
  --ig-amber-500: #b45309;
  --ig-red-400: #b91c1c;
  --ig-ink: #0f172a;
  --ig-muted: #64748b;
  --ig-border: #e2e8f0;
  --ig-page: #f6f8fb;
  --ig-white: #ffffff;
  --ig-radius-field: 10px;
  --ig-radius-card: 12px;
  --ig-radius-panel: 16px;
  --ig-shadow-card: 0 1px 2px rgba(15, 23, 42, .04), 0 4px 16px rgba(15, 23, 42, .07);
  --ig-font: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ig-ink);
  background:
    linear-gradient(180deg, #fbfdff 0, var(--ig-page) 360px, #f8fafc 100%);
  font-family: var(--ig-font);
}

.ig-studio .nav .nav-active {
  background: var(--primary-soft, #eff6ff);
  color: var(--primary-dark, #1d4ed8);
  font-weight: 800;
}

.ig-studio a { color: var(--ig-blue-500); }
.ig-studio a:hover { color: #1f5fe0; }

/* Workstation width: wide content, modest side gutters only */
.ig-shell {
  --ig-work-width: 1440px;
  --ig-side-gutter: clamp(16px, 2vw, 28px);
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  width: min(var(--ig-work-width), calc(100% - (var(--ig-side-gutter) * 2)));
  max-width: var(--ig-work-width);
  margin: 14px auto 28px;
  min-height: 0;
}

/* Wizard: blue bar on top, form tight underneath */
.ig-shell:not(.ig-shell-solo) {
  border: 1px solid var(--ig-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--ig-shadow-card);
  background: #fff;
  margin-top: 10px;
}

.ig-sidebar {
  padding: 12px 14px 10px;
  color: var(--ig-white);
  background: var(--ig-navy-800);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.ig-sidebar-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ig-sidebar-kicker {
  margin: 0;
  width: 100%;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
}

.ig-sidebar-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  overflow-wrap: anywhere;
  flex: 1 1 auto;
  min-width: 0;
}

.ig-sidebar-sub {
  margin: 0;
  width: 100%;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.3;
}

.ig-sidebar-progress {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.35);
  border: 1px solid rgba(147, 197, 253, 0.35);
  color: #e0f2fe;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.ig-steps-wrap {
  min-width: 0;
  width: 100%;
  margin: 0;
}

.ig-steps-heading {
  margin: 0 0 8px;
  padding: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.ig-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  position: relative;
  width: 100%;
}

.ig-steps > li {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
}

.ig-steps > li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 13px;
  left: calc(50% + 16px);
  width: calc(100% - 32px);
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  z-index: 0;
}

.ig-steps > li.is-rail-done::before {
  background: rgba(52, 211, 153, 0.65);
}

.ig-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
  color: rgba(255, 255, 255, 0.48);
  background: none;
  border: 0;
  padding: 0 2px;
  text-align: center;
  font-family: inherit;
  cursor: default;
}

.ig-step.is-clickable { cursor: pointer; }
.ig-step.is-clickable:hover { color: rgba(255, 255, 255, 0.9); }
.ig-step.is-clickable:hover .ig-step-desc { color: rgba(255, 255, 255, 0.62); }

.ig-step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.ig-step-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 0;
  width: 100%;
  padding-top: 0;
}

.ig-step-name {
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 1.2;
  color: inherit;
}

/* Keep bar compact — full desc lives in the form title */
.ig-step-desc {
  display: none;
}

.ig-step.is-active {
  color: #fff;
}
.ig-step.is-active .ig-step-num {
  background: var(--ig-blue-500);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
}
.ig-step.is-active .ig-step-desc {
  color: rgba(223, 241, 255, 0.86);
}

.ig-step.is-done {
  color: rgba(255, 255, 255, 0.92);
}
.ig-step.is-done .ig-step-num {
  background: var(--ig-mint-500);
  color: #fff;
}
.ig-step.is-done .ig-step-desc {
  color: rgba(167, 243, 208, 0.78);
}

.ig-sidebar-foot {
  margin-top: 0;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(4, 17, 39, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
}

.ig-sidebar-foot-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.ig-sidebar-foot-value {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
}

.ig-sidebar-foot-hint {
  width: 100%;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.3;
}

.ig-content {
  padding: 24px 28px 32px;
  background: #fff;
  min-width: 0;
}

.ig-shell-solo .ig-content {
  padding: 12px 4px 24px;
  background: transparent;
}

/* Landing — compact, raised, same work width */
.ig-landing {
  display: grid;
  grid-template-columns: 1.35fr minmax(180px, 240px);
  gap: 28px;
  align-items: center;
  max-width: none;
  margin: 0;
  min-height: 0;
  padding: 8px 0 12px;
}

.ig-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ig-blue-500);
}

.ig-landing h1 {
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ig-ink);
}

.ig-lead {
  margin: 0 0 14px;
  color: var(--ig-muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 42rem;
}

.ig-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.ig-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ig-mint-100);
  color: #08705a;
  font-size: 0.92rem;
  font-weight: 700;
}

.ig-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ig-mint-500);
}

.ig-hero-card {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(37, 99, 235, .12) 0%, transparent 55%),
    linear-gradient(165deg, #0b1f3d 0%, #16325c 48%, #1e3a5f 100%);
  border: 1px solid rgba(147, 197, 253, .35);
  border-radius: 16px;
  padding: 22px 16px 18px;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .06) inset,
    0 12px 28px rgba(15, 23, 42, .22),
    0 4px 12px rgba(37, 99, 235, .18);
  color: #fff;
}

.ig-hero-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(96, 165, 250, .25);
}

.ig-hero-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(147, 197, 253, .35);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

.ig-hero-icon img {
  width: 34px;
  height: 36px;
  filter: drop-shadow(0 0 8px rgba(96, 165, 250, .55));
}

/* Hero CTA only — stronger without shifting layout */
.ig-hero-card .ig-btn-mint {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #042f2e;
  background: linear-gradient(180deg, #5eead4 0%, #2dd4bf 42%, #14b8a6 100%);
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow:
    0 0 0 3px rgba(45, 212, 191, .28),
    0 10px 22px rgba(13, 148, 136, .45),
    inset 0 1px 0 rgba(255, 255, 255, .55);
  animation: ig-hero-cta-pulse 2.4s ease-in-out infinite;
}

.ig-hero-card .ig-btn-mint:hover {
  color: #022c22;
  background: linear-gradient(180deg, #99f6e4 0%, #5eead4 45%, #2dd4bf 100%);
  border-color: rgba(255, 255, 255, .65);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 4px rgba(45, 212, 191, .35),
    0 14px 28px rgba(13, 148, 136, .5),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  animation: none;
}

.ig-hero-card .ig-btn-mint:focus-visible {
  outline: 3px solid #fde68a;
  outline-offset: 3px;
}

@keyframes ig-hero-cta-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 3px rgba(45, 212, 191, .28),
      0 10px 22px rgba(13, 148, 136, .45),
      inset 0 1px 0 rgba(255, 255, 255, .55);
  }
  50% {
    box-shadow:
      0 0 0 6px rgba(45, 212, 191, .18),
      0 12px 26px rgba(13, 148, 136, .55),
      inset 0 1px 0 rgba(255, 255, 255, .55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ig-hero-card .ig-btn-mint { animation: none; }
}

/* Buttons */
.ig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 14px;
  font: 800 0.95rem/1 var(--ig-font);
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.ig-btn:hover { transform: translateY(-1px); }

.ig-btn-primary {
  color: #fff;
  background: var(--ig-blue-500);
  border: 1px solid var(--ig-blue-500);
  box-shadow: 0 1px 3px rgba(37, 99, 235, .24), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.ig-btn-primary:hover {
  color: #fff;
  background: var(--ig-blue-dark);
  border-color: var(--ig-blue-dark);
}

.ig-btn-mint {
  color: #fff;
  background: var(--ig-mint-500);
  border: 1px solid var(--ig-mint-500);
  box-shadow: 0 1px 3px rgba(4, 120, 87, .22);
  min-width: 160px;
}

.ig-btn-mint:hover { color: #fff; background: #065f46; border-color: #065f46; }

.ig-btn-ghost {
  background: #fff;
  color: var(--ig-blue-500);
  border: 1.5px solid var(--ig-border);
  box-shadow: none;
}

.ig-btn-ghost:hover { color: var(--ig-blue-dark); background: #eff6ff; }

.ig-btn-lg {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  text-transform: none;
}

.ig-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.ig-section-title {
  margin: 0 0 6px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ig-ink);
}

.ig-section-sub {
  margin: 0 0 18px;
  color: var(--ig-muted);
  font-size: 0.95rem;
}

/* Forms */
.ig-form-panel { max-width: none; }

.ig-label {
  display: block;
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ig-muted);
}

.ig-field,
.ig-studio select.ig-field,
.ig-studio input.ig-field {
  width: 100%;
  min-height: 52px;
  box-sizing: border-box;
  padding: 12px 16px;
  margin: 0 0 16px;
  border: 1.5px solid #cfdbea;
  border-radius: var(--ig-radius-field);
  color: var(--ig-ink);
  background: var(--ig-white);
  font: 600 0.98rem/1.3 var(--ig-font);
  box-shadow: none;
}

.ig-field:focus {
  border-color: var(--ig-blue-500);
  outline: 3px solid rgba(54, 124, 255, 0.14);
}

.ig-grid-2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr;
  gap: 0 14px;
}

.ig-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 14px;
}

.ig-grid-2 > div,
.ig-grid-3 > div,
.ig-line-row > div { min-width: 0; }

.ig-hint {
  margin: -6px 0 18px;
  color: var(--ig-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.ig-soft-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--ig-mint-100);
  color: #08705a;
  font-weight: 600;
  font-size: 0.95rem;
}

.ig-soft-note::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--ig-mint-500);
  flex-shrink: 0;
}

/* Line items */
.ig-lines {
  border: 1px solid var(--ig-border);
  border-radius: var(--ig-radius-card);
  background: #fff;
  box-shadow: var(--ig-shadow-card);
  padding: 8px 18px 4px;
  margin-bottom: 18px;
}

.ig-line-head,
.ig-line-row {
  display: grid;
  grid-template-columns: 2.2fr 0.7fr 1fr 0.7fr;
  gap: 10px;
  align-items: end;
}

.ig-line-head {
  padding: 10px 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ig-muted);
}

.ig-line-row .ig-field { margin-bottom: 12px; }

.ig-line-total {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 14px;
  padding: 10px 4px 16px;
  border-top: 1px solid var(--ig-border);
  margin-top: 4px;
}

.ig-line-total span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ig-muted);
}

.ig-line-total strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--ig-blue-500);
  font-size: 1.35rem;
  font-weight: 900;
  text-align: right;
}

/* Generate summary */
.ig-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 28px 26px;
  border: 1px solid var(--ig-border);
  border-radius: var(--ig-radius-card);
  background: #fff;
  box-shadow: var(--ig-shadow-card);
  margin-bottom: 28px;
}

.ig-summary dt {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ig-muted);
}

.ig-summary dd {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ig-ink);
  overflow-wrap: anywhere;
}

.ig-summary dd.ig-total-value {
  color: var(--ig-blue-500);
  font-weight: 900;
  text-align: right;
}

.ig-summary > div:last-child {
  text-align: right;
}

.ig-generate-wrap {
  display: flex;
  justify-content: center;
  padding: 12px 0 8px;
}

/* Success */
.ig-success-card {
  max-width: none;
  margin: 12px 0;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--ig-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--ig-shadow-card);
}

.ig-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--ig-mint-100);
  color: var(--ig-mint-500);
  font-size: 2rem;
  font-weight: 900;
}

.ig-success-card h2 {
  margin: 0 0 16px;
  font-size: 1.75rem;
}

.ig-badge-ok {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ig-mint-100);
  color: #08705a;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ig-badge-ok::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ig-mint-500);
}

.ig-success-meta {
  color: var(--ig-muted);
  margin: 0 0 22px;
  font-weight: 600;
}

.ig-fail-card {
  max-width: none;
  margin: 12px 0;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid #fecaca;
  background: #fff7f7;
}

/* Checker */
.ig-checker {
  max-width: none;
  margin: 0;
}

.ig-checker-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 12px;
}

.ig-drop {
  border: 2px dashed #8eb6ff;
  border-radius: 22px;
  background: #fff;
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.ig-drop strong {
  color: var(--ig-blue-500);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.ig-drop input[type="file"] {
  margin-top: 12px;
  max-width: 100%;
}

.ig-valid-card {
  border-radius: 22px;
  background: var(--ig-mint-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  box-shadow: var(--ig-shadow-card);
  min-height: 220px;
}

.ig-valid-card .ig-success-icon { margin-bottom: 10px; }
.ig-valid-card h3 {
  margin: 0;
  color: #08705a;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.ig-valid-card p { margin: 6px 0 0; color: #3a8f7a; font-weight: 600; }

.ig-invalid-card {
  border-radius: 22px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  min-height: 220px;
}

.ig-invalid-card h3 { margin: 0; color: #b91c1c; }

/* Side cards on landing */
.ig-side-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: none;
  margin: 0 0 12px;
}

.ig-card {
  border: 1px solid var(--ig-border);
  border-radius: var(--ig-radius-card);
  background: #fff;
  box-shadow: var(--ig-shadow-card);
  padding: 22px 24px;
}

.ig-card h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.ig-deadlines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ig-deadlines li {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f4f8ff;
  border: 1px solid var(--ig-border);
  line-height: 1.45;
}

.ig-deadlines strong { color: var(--ig-ink); }

.ig-deadlines a.source {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.88rem;
  font-weight: 700;
}

.ig-faq p { margin: 0 0 12px; line-height: 1.5; color: var(--ig-ink); }
.ig-faq p:last-child { margin-bottom: 0; }

/* Alerts */
.ig-banner {
  max-width: none;
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #fecaca;
  background: #fff7f7;
  color: #7f1d1d;
}

.ig-banner.success {
  border-color: #a7f3d0;
  background: var(--ig-mint-100);
  color: #065f46;
}

.ig-banner ul { margin: 8px 0 0; padding-left: 18px; }

/* Views */
.ig-view[hidden] { display: none !important; }

.ig-step-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Footer full-bleed like the rest of the app (not constrained by shell width) */
.ig-studio .site-footer {
  margin-top: auto;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--ig-border);
  box-sizing: border-box;
}

@media (max-width: 960px) {
  .ig-shell {
    --ig-side-gutter: 14px;
    width: min(var(--ig-work-width), calc(100% - (var(--ig-side-gutter) * 2)));
    margin: 8px auto 16px;
  }
  .ig-sidebar {
    padding: 12px 12px 10px;
    gap: 8px;
  }
  .ig-steps > li::before { display: none; }
  .ig-step-name { font-size: 0.7rem; }
  .ig-sidebar-foot-hint { display: none; }
  .ig-content { padding: 14px 14px 18px; }
  .ig-shell-solo .ig-content { padding: 6px 0 14px; }
  .ig-landing {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 12px;
  }
  .ig-hero-card { max-width: 220px; }
  .ig-grid-2,
  .ig-grid-3,
  .ig-line-head,
  .ig-line-row,
  .ig-summary,
  .ig-checker-grid { grid-template-columns: 1fr; }
  .ig-summary > div:last-child,
  .ig-summary dd.ig-total-value { text-align: left; }
  .ig-line-head { display: none; }
}
