/* ============================================================================
   app.css — the Varing component & layout system.
   ----------------------------------------------------------------------------
   Hand-authored, server-rendered, sovereign (no build step, no external CDN).
   This file consumes ONLY design tokens from tokens.css via CSS custom
   properties; there is not a single hardcoded colour, font or spacing here. Change
   the look by editing tokens.css (or design.md) — never by editing values here.

   Sections:
     1. Reset & base elements
     2. Typography roles & utilities
     3. App shell (sidebar + topbar + banner + content)
     4. Cards & sections
     5. Buttons
     6. Forms & inputs
     7. Tables
     8. Badges, pills & status banners
     9. Empty / loading states
    10. Login & public chrome
    11. Command palette
    12. Utilities & responsiveness
   ============================================================================ */

/* ---- 1. Reset & base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--font-size-body);
  line-height: var(--line-height-normal);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--color-accent-hover);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}
a:hover { color: var(--color-accent); text-decoration: underline; }

code, pre, kbd { font-family: var(--font-mono); font-size: 0.92em; }
code {
  background: var(--color-surface-sunken);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.1em 0.4em;
}

::selection { background: var(--color-accent-subtle); color: var(--color-text); }

:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ---- 2. Typography -------------------------------------------------------- */
h1, h2, h3, h4 { margin: 0 0 var(--space-3); font-family: var(--font-serif); font-weight: var(--weight-semibold); letter-spacing: var(--tracking-tight); line-height: var(--line-height-snug); }
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
p  { margin: 0 0 var(--space-4); }

.display { font-size: var(--font-size-display); font-weight: var(--weight-bold); letter-spacing: var(--tracking-tight); line-height: var(--line-height-tight); }
.lead    { font-size: var(--font-size-lg); color: var(--color-text-muted); }
.muted   { color: var(--color-text-muted); font-size: var(--font-size-sm); }
.subtle  { color: var(--color-text-subtle); }
.overline {
  font-size: var(--font-size-overline);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--color-text-subtle);
  font-weight: var(--weight-semibold);
}

/* ---- 3. App shell --------------------------------------------------------- */
.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  min-height: 100vh;
}

.sidebar {
  background: var(--color-surface-solid);
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-4);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  font-size: var(--font-size-lg);
  padding: var(--space-1) var(--space-2) var(--space-4);
}
.sidebar-mark {
  width: 30px; height: 30px;
  border-radius: var(--radius-md);
  background: var(--color-gradient-brand);
  display: grid; place-items: center;
  color: var(--color-accent-contrast);
  font-weight: var(--weight-bold);
  flex: none;
  box-shadow: var(--shadow-glow), var(--shadow-highlight);
}
.nav-group { margin-top: var(--space-4); }
.nav-group-label {
  font-size: var(--font-size-overline);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--color-text-subtle);
  padding: var(--space-2) var(--space-2);
}
.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  font-weight: var(--weight-medium);
  transition: background var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard), transform var(--duration-base) var(--ease-out);
}
.nav-link:hover { background: var(--color-surface-raised); color: var(--color-text); text-decoration: none; transform: translateX(2px); }
.nav-link.active { background: var(--color-accent-subtle); color: var(--color-text); box-shadow: var(--shadow-highlight); }
.nav-link.active::before {
  content: ""; width: 3px; height: 1.1em;
  background: var(--color-accent); border-radius: var(--radius-full);
  margin-left: calc(-1 * var(--space-3));
  margin-right: calc(var(--space-3) - 3px);
}
.sidebar-foot { margin-top: auto; padding-top: var(--space-4); }

.app-main { display: flex; flex-direction: column; min-width: 0; }

.app-topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: var(--space-4);
  height: var(--topbar-height);
  padding: 0 var(--space-8);
  background: color-mix(in srgb, var(--color-bg) 82%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.app-topbar .page-title { font-family: var(--font-serif); font-size: var(--font-size-lg); font-weight: var(--weight-semibold); letter-spacing: var(--tracking-tight); }
.app-topbar .spacer { flex: 1; }
.app-topbar .identity { color: var(--color-text-muted); font-size: var(--font-size-sm); display: flex; align-items: center; gap: var(--space-2); }

.app-content { padding: var(--space-8); max-width: var(--content-max); width: 100%; margin: 0 auto; }
.page-actions { display: flex; gap: var(--space-2); align-items: center; }

/* Legacy topbar (kept for the public/login chrome and backward compatibility) */
.topbar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-3) var(--space-6);
  background: var(--color-surface-solid);
  border-bottom: 1px solid var(--color-border);
}
.topbar .brand { font-weight: var(--weight-bold); letter-spacing: var(--tracking-tight); }
.topbar .identity { color: var(--color-text-muted); font-size: var(--font-size-sm); }

.container { max-width: var(--content-max); margin: 0 auto; padding: var(--space-8) var(--space-6); }

/* ---- 4. Cards & sections -------------------------------------------------- */
.card {
  position: relative;
  background: linear-gradient(165deg, color-mix(in srgb, var(--color-surface-raised) 60%, transparent), var(--color-surface-solid));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-sm), var(--shadow-highlight);
}
.card h2 { margin-top: 0; font-size: var(--font-size-h3); }
.card-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-4); }
.card-head h2, .card-head h3 { margin: 0; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-5); margin-bottom: var(--space-5); }
.stat-card {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, color-mix(in srgb, var(--color-surface-raised) 60%, transparent), var(--color-surface-solid));
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-sm), var(--shadow-highlight);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
}
/* A brand hairline along the top edge, brightening on hover. */
.stat-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--color-gradient-brand); opacity: 0.5;
  transition: opacity var(--duration-base) var(--ease-standard);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md), var(--shadow-highlight); border-color: var(--color-border-strong); }
.stat-card:hover::before { opacity: 1; }
.stat-card .stat-label { font-size: var(--font-size-overline); letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--color-text-subtle); }
.stat-card .stat-value { font-family: var(--font-serif); font-size: var(--font-size-h1); font-weight: var(--weight-semibold); letter-spacing: var(--tracking-tight); margin: var(--space-2) 0; font-variant-numeric: tabular-nums; }

/* ---- 5. Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-accent);
  color: var(--color-accent-contrast);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--font-size-sm);
  font-weight: var(--weight-semibold);
  line-height: 1.4;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard), transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.btn:hover { background: var(--color-accent-hover); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn:active { background: var(--color-accent-active); transform: translateY(0); box-shadow: var(--shadow-sm); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ghost { background: transparent; border-color: var(--color-border); color: var(--color-text); box-shadow: none; }
.btn-ghost:hover { background: var(--color-surface-raised); border-color: var(--color-border-strong); box-shadow: var(--shadow-sm); }
.btn-danger { background: var(--color-danger); color: var(--color-accent-contrast); }
.btn-sm { padding: var(--space-1) var(--space-3); font-size: var(--font-size-caption); }

/* Theme toggle: an icon-only ghost button. The moon shows in light mode (click
   to go dark); the sun shows in dark mode (click to go light). */
.theme-toggle { padding-inline: var(--space-2); }
.theme-toggle .icon { width: 1.05rem; height: 1.05rem; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: inline; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ---- 6. Forms & inputs ---------------------------------------------------- */
label { display: block; font-size: var(--font-size-sm); color: var(--color-text-muted); margin-bottom: var(--space-2); }

input[type="text"], input[type="email"], input[type="password"], input[type="url"],
input[type="search"], input[type="number"], select, textarea {
  width: 100%;
  padding: var(--space-2) var(--space-3);
  background: var(--color-surface-sunken);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: inherit;
  font-size: var(--font-size-body);
  margin-bottom: var(--space-4);
  transition: border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}
input::placeholder, textarea::placeholder { color: var(--color-text-subtle); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-highlight), 0 0 0 3px color-mix(in srgb, var(--color-accent) 24%, transparent);
}
input:disabled { opacity: 0.6; cursor: not-allowed; }

.inline-form { display: flex; gap: var(--space-2); align-items: flex-end; }
.inline-form select, .inline-form input { margin-bottom: 0; }

/* ---- 7. Tables ------------------------------------------------------------ */
.table, table.data { width: 100%; border-collapse: collapse; }
.table thead th, table.data thead th {
  text-align: left;
  font-size: var(--font-size-caption);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-subtle);
  font-weight: var(--weight-semibold);
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--color-border);
}
.table tbody td, table.data tbody td { padding: var(--space-3); border-top: 1px solid var(--color-border); vertical-align: top; }
.table tbody tr, table.data tbody tr { transition: background var(--duration-fast) var(--ease-standard); }
.table tbody tr:hover, table.data tbody tr:hover { background: var(--color-surface-raised); box-shadow: inset 2px 0 0 var(--color-accent); }

/* ---- 8. Badges, pills & status banners ------------------------------------ */
.role-pill, .badge {
  display: inline-flex; align-items: center; gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-caption);
  font-weight: var(--weight-medium);
  background: var(--color-surface-raised);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.badge-success { background: var(--color-success-bg); color: var(--color-success); border-color: var(--color-success-border); }
.badge-warning { background: var(--color-warning-bg); color: var(--color-warning); border-color: var(--color-warning-border); }
.badge-danger  { background: var(--color-danger-bg);  color: var(--color-danger);  border-color: var(--color-danger-border); }
.badge-info    { background: var(--color-info-bg);    color: var(--color-info);    border-color: var(--color-info-border); }
.badge-accent  { background: var(--color-accent-subtle); color: var(--color-accent-hover); border-color: var(--color-border-strong); }

/* Active-customer banner: never silent. Internal admins always see which
   customer they are acting as, with a distinct warning colour. */
.context-banner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  background: var(--color-warning-bg);
  border: 1px solid var(--color-warning-border);
  color: var(--color-warning);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
  font-size: var(--font-size-sm);
}
.context-banner.none { background: var(--color-surface-raised); border-color: var(--color-border); color: var(--color-text-muted); }

.alert { padding: var(--space-3) var(--space-4); border-radius: var(--radius-md); margin-bottom: var(--space-4); font-size: var(--font-size-sm); border: 1px solid; }
.alert-success { background: var(--color-success-bg); color: var(--color-success); border-color: var(--color-success-border); }
.alert-info    { background: var(--color-info-bg);    color: var(--color-info);    border-color: var(--color-info-border); }

.error {
  background: var(--color-danger-bg);
  border: 1px solid var(--color-danger-border);
  color: var(--color-danger);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
}

/* ---- 9. Empty / loading states ------------------------------------------- */
.empty-state {
  text-align: center; padding: var(--space-12) var(--space-6); color: var(--color-text-muted);
  border: 1px dashed var(--color-border); border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--color-surface-sunken) 60%, transparent);
}
.empty-state .empty-icon {
  display: inline-grid; place-items: center; width: 56px; height: 56px; margin: 0 auto var(--space-4);
  border-radius: var(--radius-full); font-size: var(--font-size-h2);
  color: var(--color-accent); background: var(--color-accent-subtle);
  border: 1px solid color-mix(in srgb, var(--color-accent) 26%, transparent);
  box-shadow: var(--shadow-highlight);
}
.empty-state h3 { color: var(--color-text); }

.skeleton {
  background: linear-gradient(90deg, var(--color-surface-solid) 25%, var(--color-surface-raised) 37%, var(--color-surface-solid) 63%);
  background-size: 400% 100%;
  border-radius: var(--radius-sm);
  animation: skeleton-shimmer 1.4s ease infinite;
}
@keyframes skeleton-shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

/* ---- 10. Login & public chrome ------------------------------------------- */
.login-wrap { max-width: 400px; margin: 12vh auto; padding: 0 var(--space-6); }
.login-wrap .brand { font-family: var(--font-serif); font-size: var(--font-size-h1); font-weight: var(--weight-semibold); letter-spacing: var(--tracking-tight); margin-bottom: var(--space-1); }
.login-wrap .tagline { color: var(--color-text-muted); margin-bottom: var(--space-8); }

.console-nav { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-2); }

/* ---- 11. Command palette -------------------------------------------------- */
.cmdk-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: var(--color-overlay);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-start; justify-content: center;
  padding-top: 14vh;
}
.cmdk-overlay.open { display: flex; }
.cmdk-panel {
  width: min(560px, 92vw);
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cmdk-input { width: 100%; border: none; border-bottom: 1px solid var(--color-border); border-radius: 0; background: transparent; margin: 0; padding: var(--space-4) var(--space-5); font-size: var(--font-size-lg); }
.cmdk-input:focus { box-shadow: none; }
.cmdk-list { list-style: none; margin: 0; padding: var(--space-2); max-height: 50vh; overflow-y: auto; }
.cmdk-item { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-3) var(--space-4); border-radius: var(--radius-md); color: var(--color-text); cursor: pointer; }
.cmdk-item:hover, .cmdk-item.active { background: var(--color-accent-subtle); text-decoration: none; }
.cmdk-item[hidden] { display: none; }
.kbd { font-family: var(--font-mono); font-size: var(--font-size-caption); background: var(--color-surface-sunken); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 0.1em 0.45em; color: var(--color-text-muted); }

/* ---- 12. Utilities & responsiveness -------------------------------------- */
.row { display: flex; gap: var(--space-5); flex-wrap: wrap; }
.col { flex: 1; min-width: 220px; }
.stack > * + * { margin-top: var(--space-4); }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-mono { font-family: var(--font-mono); }

.sidebar-toggle { display: none; }

@media (max-width: 860px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed; inset: 0 auto 0 0; z-index: 50;
    width: var(--sidebar-width);
    transform: translateX(-100%);
    transition: transform var(--duration-base) var(--ease-standard);
  }
  .sidebar.open { transform: translateX(0); box-shadow: var(--shadow-lg); }
  .sidebar-toggle { display: inline-flex; }
  .app-content, .app-topbar { padding-left: var(--space-5); padding-right: var(--space-5); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* --- Visually-hidden label utility (accessible name without visual noise) ---- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* --- "Test din agent" sandbox -------------------------------------------------
   A calm chat transcript: customer turns align right, agent turns left. No
   gradients or bubbles-with-tails — just two restrained surfaces, token-driven. */
.sandbox-log {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-4) 0;
  min-height: 4rem;
}
.sandbox-turn { display: flex; }
.sandbox-turn-user { justify-content: flex-end; }
.sandbox-turn-agent { justify-content: flex-start; }
.sandbox-bubble {
  max-width: 80%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  font-size: var(--font-size-body);
  line-height: var(--line-height-normal);
}
.sandbox-turn-user .sandbox-bubble {
  background: var(--color-accent-subtle);
  border-color: var(--color-accent-subtle);
}
.sandbox-turn-agent .sandbox-bubble {
  background: var(--color-surface-raised);
}
.sandbox-meta { margin-top: var(--space-2); }
.sandbox-form { margin-top: var(--space-2); }

/* --- Analytics outcome bars ---------------------------------------------------
   Honest proportions, no chart library. Each row is label / track / value. */
.analytics-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.analytics-bar-row {
  display: grid;
  grid-template-columns: 12rem 1fr 6rem;
  align-items: center;
  gap: var(--space-4);
}
.analytics-bar-label { font-size: var(--font-size-sm); }
.analytics-bar-track {
  height: 0.65rem;
  background: var(--color-surface-sunken);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.analytics-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--color-text-subtle);
  transition: width var(--duration-base) var(--ease-standard);
}
.analytics-bar-success { background: var(--color-success); }
.analytics-bar-warning { background: var(--color-warning); }
.analytics-bar-info { background: var(--color-info); }
.analytics-bar-accent { background: var(--color-accent); }
.analytics-bar-value { font-size: var(--font-size-sm); text-align: right; }

@media (max-width: 680px) {
  .analytics-bar-row { grid-template-columns: 1fr; gap: var(--space-1); }
  .analytics-bar-value { text-align: left; }
}

/* ---- 12. "Min side" personalised home (hero, onboarding progress, next steps) ---- */
.hero { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-5); }
.hero .hero-text { flex: 1 1 320px; min-width: 0; }
.hero h2 { font-family: var(--font-serif); font-size: var(--font-size-h2); letter-spacing: var(--tracking-tight); margin-bottom: var(--space-2); }
.hero-progress { flex: 0 0 200px; display: flex; flex-direction: column; gap: var(--space-2); align-items: flex-start; }
.progress-track { width: 100%; height: 6px; background: var(--color-surface-sunken); border-radius: var(--radius-full); overflow: hidden; }
.progress-fill { display: block; height: 100%; border-radius: var(--radius-full); background: var(--color-gradient-brand); transition: width var(--duration-base) var(--ease-standard); }

.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.step { display: flex; align-items: flex-start; gap: var(--space-4); padding: var(--space-4); border: 1px solid var(--color-border); border-radius: var(--radius-md); background: color-mix(in srgb, var(--color-surface-raised) 50%, transparent); }
.step .step-mark { flex: 0 0 auto; width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius-full); font-weight: var(--weight-semibold); font-variant-numeric: tabular-nums; background: var(--color-surface-sunken); color: var(--color-text-subtle); }
.step .step-body { flex: 1 1 auto; min-width: 0; }
.step .step-title { display: flex; align-items: center; gap: var(--space-2); font-weight: var(--weight-semibold); margin-bottom: var(--space-1); }
.step .btn { flex: 0 0 auto; align-self: center; }
.step-done { opacity: 0.72; }
.step-done .step-mark { background: var(--color-success-bg); color: var(--color-success); }
.progress-pct { font-size: var(--font-size-caption); font-variant-numeric: tabular-nums; }
.milestone { font-size: var(--font-size-sm); color: var(--color-accent); font-weight: var(--weight-medium); }

@media (max-width: 680px) {
  .hero-progress { flex-basis: 100%; }
  .step { flex-wrap: wrap; }
  .step .btn { align-self: flex-start; }
}
