/* =========================================================
   Essenzuschuss — Design System
   Stripe / Linear / Ramp / Revolut inspired
   ========================================================= */

:root {
  /* Color palette — light */
  --bg:           #f6f7fb;
  --bg-elev:      #ffffff;
  --bg-glass:     rgba(255,255,255,.72);
  --surface:      #ffffff;
  --surface-2:    #f1f2f7;
  --border:       rgba(15,17,28,.07);
  --border-strong:rgba(15,17,28,.12);
  --text:         #0a0d1c;
  --text-soft:    #4a5170;
  --text-muted:   #757c95;
  --brand:        #5b5bf5;
  --brand-2:      #8a5bff;
  --brand-3:      #38e1c4;
  --accent:       #ff7849;
  --success:      #16b985;
  --warning:      #f7a823;
  --danger:       #ef3b56;
  --shadow-sm:    0 1px 2px rgba(15,17,28,.04), 0 1px 3px rgba(15,17,28,.06);
  --shadow-md:    0 6px 24px -8px rgba(20,24,60,.18), 0 2px 6px rgba(20,24,60,.06);
  --shadow-lg:    0 24px 60px -20px rgba(20,24,60,.35);
  --shadow-glow:  0 0 0 6px rgba(91,91,245,.10);
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease: cubic-bezier(.2,.8,.2,1);
}

[data-theme="dark"] {
  --bg:           #07080f;
  --bg-elev:      #0d1020;
  --bg-glass:     rgba(13,16,32,.65);
  --surface:      #11142a;
  --surface-2:    #181c39;
  --border:       rgba(255,255,255,.06);
  --border-strong:rgba(255,255,255,.12);
  --text:         #f3f5fb;
  --text-soft:    #aab1cc;
  --text-muted:   #6c7395;
  --shadow-sm:    0 1px 2px rgba(0,0,0,.4);
  --shadow-md:    0 8px 32px -8px rgba(0,0,0,.45);
  --shadow-lg:    0 28px 80px -20px rgba(0,0,0,.65);
  --shadow-glow:  0 0 0 6px rgba(91,91,245,.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { min-height: 100vh; font-size: 15px; line-height: 1.55; letter-spacing: -.005em; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ==== Background mesh (landing) ==== */
.mesh-bg {
  position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
}
.mesh-bg::before, .mesh-bg::after {
  content: ""; position: absolute; width: 60vmax; height: 60vmax; border-radius: 50%;
  filter: blur(120px); opacity: .55; transition: opacity .6s var(--ease);
}
.mesh-bg::before { background: radial-gradient(circle, var(--brand) 0%, transparent 60%); top: -20vmax; left: -10vmax; }
.mesh-bg::after  { background: radial-gradient(circle, var(--brand-3) 0%, transparent 60%); bottom: -20vmax; right: -10vmax; }
[data-theme="dark"] .mesh-bg::before { opacity: .35; }
[data-theme="dark"] .mesh-bg::after  { opacity: .3; }

/* ==== Containers ==== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 840px; margin: 0 auto; padding: 0 24px; }

/* ==== Typography ==== */
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -.02em; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.15; }
h3 { font-size: 1.2rem; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--brand); padding: 8px 14px; background: color-mix(in srgb, var(--brand) 12%, transparent); border-radius: 999px; }
.muted { color: var(--text-muted); }
.gradient-text { background: linear-gradient(120deg, var(--brand), var(--brand-2) 50%, var(--brand-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ==== Buttons ==== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 18px; font-weight: 600; font-size: 14.5px; border-radius: 12px; border: 1px solid transparent; transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .15s var(--ease); white-space: nowrap; }
.btn:active { transform: scale(.98); }
.btn-primary { background: linear-gradient(180deg, var(--brand), color-mix(in srgb, var(--brand) 80%, #000)); color: #fff; box-shadow: 0 6px 16px -8px var(--brand), inset 0 1px 0 rgba(255,255,255,.18); }
.btn-primary:hover { box-shadow: 0 10px 24px -8px var(--brand), inset 0 1px 0 rgba(255,255,255,.22); transform: translateY(-1px); }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--surface-2); }
.btn-ghost { background: transparent; color: var(--text-soft); }
.btn-ghost:hover { background: var(--surface-2); color: var(--text); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-sm { padding: 7px 12px; font-size: 13px; border-radius: 9px; }
.btn-lg { padding: 14px 22px; font-size: 15.5px; border-radius: 14px; }
.btn-block { width: 100%; }

/* ==== Cards ==== */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 22px; }
.card-hover { transition: transform .2s var(--ease), box-shadow .25s var(--ease); }
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.glass { backdrop-filter: blur(22px) saturate(1.2); -webkit-backdrop-filter: blur(22px) saturate(1.2); background: var(--bg-glass); border: 1px solid var(--border-strong); }

/* ==== Forms ==== */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-soft); }
.input, .select, .textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text); font: inherit; transition: border .15s var(--ease), box-shadow .15s var(--ease);
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--brand); box-shadow: var(--shadow-glow); }
.input-icon { position: relative; }
.input-icon .input { padding-left: 42px; }
.input-icon svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); width: 18px; height: 18px; }

/* ==== Stat cards ==== */
.stat { display: flex; flex-direction: column; gap: 4px; padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.stat .stat-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); font-weight: 600; }
.stat .stat-value { font-size: 30px; font-weight: 700; letter-spacing: -.025em; line-height: 1.1; }
.stat .stat-delta { font-size: 12.5px; color: var(--success); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.stat .stat-delta.neg { color: var(--danger); }
.stat::after {
  content: ""; position: absolute; right: -20px; top: -20px; width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 30%, transparent) 0%, transparent 70%);
}

/* ==== Pills / Badges ==== */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; font-size: 12px; font-weight: 600; border-radius: 999px; background: var(--surface-2); color: var(--text-soft); }
.badge.success { background: color-mix(in srgb, var(--success) 14%, transparent); color: var(--success); }
.badge.warn    { background: color-mix(in srgb, var(--warning) 18%, transparent); color: var(--warning); }
.badge.danger  { background: color-mix(in srgb, var(--danger) 14%, transparent); color: var(--danger); }
.badge.info    { background: color-mix(in srgb, var(--brand) 14%, transparent); color: var(--brand); }

/* ==== Tables ==== */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--surface); }
.table th, .table td { padding: 14px 18px; text-align: left; font-size: 14px; }
.table th { font-weight: 600; color: var(--text-muted); text-transform: uppercase; font-size: 11.5px; letter-spacing: .08em; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.table tbody tr { transition: background .15s var(--ease); }
.table tbody tr:hover { background: var(--surface-2); }
.table tbody td { border-bottom: 1px solid var(--border); }
.table tbody tr:last-child td { border-bottom: 0; }

/* ==== Topbar ==== */
.topbar { position: sticky; top: 0; z-index: 50; padding: 14px 0; background: var(--bg-glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.topbar .inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.02em; font-size: 17px; }
.brand .logo { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--brand), var(--brand-2) 60%, var(--brand-3)); display: grid; place-items: center; color: #fff; box-shadow: 0 6px 16px -8px var(--brand); }
.brand .logo svg { width: 18px; height: 18px; }
.nav { display: flex; gap: 4px; align-items: center; }
.nav a { padding: 8px 14px; border-radius: 10px; color: var(--text-soft); font-weight: 500; font-size: 14px; transition: color .15s, background .15s; }
.nav a:hover { color: var(--text); background: var(--surface-2); }

/* ==== Layout: Sidebar (app shell) ==== */
.shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.sidebar { padding: 22px 16px; border-right: 1px solid var(--border); background: var(--bg-elev); position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.sidebar .brand { padding: 4px 8px 18px; }
.sidebar .nav-group { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); padding: 14px 12px 6px; font-weight: 600; }
.sidebar .nav-item { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px; color: var(--text-soft); font-weight: 500; font-size: 14px; transition: all .15s var(--ease); }
.sidebar .nav-item:hover { background: var(--surface-2); color: var(--text); }
.sidebar .nav-item.active { background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand); }
.sidebar .nav-item svg { width: 18px; height: 18px; opacity: .9; }
.main { padding: 28px 36px 80px; }
.main-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.main-head h1 { font-size: 28px; }
.main-head .sub { color: var(--text-muted); margin-top: 6px; }

/* ==== Grid utilities ==== */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.flex { display: flex; }
.row { display: flex; align-items: center; gap: 10px; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-20 { gap: 20px; } .gap-30 { gap: 30px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }

/* ==== Landing hero ==== */
.hero { padding: 100px 0 80px; text-align: center; position: relative; }
.hero h1 .accent { display: inline-block; }
.hero .lead { font-size: 19px; color: var(--text-soft); max-width: 640px; margin: 24px auto 36px; line-height: 1.55; }
.hero .cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero .preview-card { margin-top: 70px; border-radius: 24px; padding: 12px; background: var(--bg-glass); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px); border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg); max-width: 1000px; margin-left: auto; margin-right: auto; transform: perspective(2000px) rotateX(6deg); transition: transform .5s var(--ease); }
.hero .preview-card:hover { transform: perspective(2000px) rotateX(2deg); }
.hero .preview-card img, .hero .preview-card .mock-dashboard { border-radius: 16px; width: 100%; display: block; }

/* ==== Mock dashboard inside preview ==== */
.mock-dashboard { background: var(--bg); padding: 24px; }
.mock-dashboard .mock-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.mock-dashboard .mock-card { background: var(--surface); border-radius: 14px; padding: 16px; border: 1px solid var(--border); }
.mock-dashboard .mock-bars { display: flex; align-items: flex-end; gap: 8px; height: 110px; padding-top: 14px; }
.mock-dashboard .mock-bar { flex: 1; background: linear-gradient(180deg, var(--brand), var(--brand-2)); border-radius: 6px; opacity: .85; }

/* ==== Feature grid ==== */
.feature { padding: 26px; border-radius: 18px; background: var(--surface); border: 1px solid var(--border); transition: all .2s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.feature .icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--brand); background: color-mix(in srgb, var(--brand) 12%, transparent); margin-bottom: 14px; }
.feature h3 { font-size: 17px; margin-bottom: 6px; }
.feature p { color: var(--text-soft); font-size: 14px; line-height: 1.55; margin: 0; }

/* ==== Pricing ==== */
.price-card { padding: 30px; border-radius: 22px; background: var(--surface); border: 1px solid var(--border); position: relative; }
.price-card.featured { border: 1.5px solid var(--brand); box-shadow: 0 24px 60px -25px var(--brand); transform: translateY(-6px); }
.price-card .price { font-size: 42px; font-weight: 700; letter-spacing: -.03em; }
.price-card ul { list-style: none; padding: 0; margin: 18px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-soft); font-size: 14px; }
.price-card ul li::before { content: ""; flex: 0 0 18px; height: 18px; border-radius: 50%; background: color-mix(in srgb, var(--success) 18%, transparent); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316b985' stroke-width='3'><polyline points='5,12 10,17 19,8'/></svg>"); background-repeat: no-repeat; background-position: center; background-size: 12px; margin-top: 1px; }

/* ==== Auth screens ==== */
.auth-shell { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-shell .left { padding: 60px; display: flex; flex-direction: column; justify-content: space-between; }
.auth-shell .right { position: relative; background: linear-gradient(135deg, var(--brand), var(--brand-2) 60%, var(--brand-3)); overflow: hidden; padding: 60px; color: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.auth-shell .right::before, .auth-shell .right::after { content: ""; position: absolute; border-radius: 50%; filter: blur(40px); }
.auth-shell .right::before { width: 320px; height: 320px; background: rgba(255,255,255,.25); top: -80px; right: -80px; }
.auth-shell .right::after { width: 360px; height: 360px; background: rgba(0,0,0,.25); bottom: -100px; left: -120px; }
.auth-form { max-width: 380px; width: 100%; margin: auto; }
@media (max-width: 880px) { .auth-shell { grid-template-columns: 1fr; } .auth-shell .right { display: none; } .auth-shell .left { padding: 30px; } }

/* ==== Upload / Camera ==== */
.dropzone { border: 2px dashed var(--border-strong); border-radius: var(--radius-lg); padding: 40px 24px; text-align: center; background: var(--surface); transition: all .15s var(--ease); cursor: pointer; }
.dropzone.dragover { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 6%, var(--surface)); }
.dropzone .icon-wrap { width: 56px; height: 56px; border-radius: 16px; background: color-mix(in srgb, var(--brand) 12%, transparent); display: grid; place-items: center; margin: 0 auto 12px; color: var(--brand); }

.camera-stage { position: relative; aspect-ratio: 3/4; width: 100%; max-width: 480px; margin: 0 auto; border-radius: 22px; overflow: hidden; background: #000; box-shadow: var(--shadow-lg); }
.camera-stage video, .camera-stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.camera-stage canvas.overlay { pointer-events: none; }
.camera-toolbar { display: flex; justify-content: center; gap: 14px; padding: 16px 0; }
.camera-shutter { width: 72px; height: 72px; border-radius: 50%; border: 4px solid var(--surface); background: var(--brand); color: #fff; display: grid; place-items: center; box-shadow: 0 0 0 3px var(--border-strong), 0 12px 28px -10px var(--brand); transition: transform .12s var(--ease); }
.camera-shutter:hover { transform: scale(1.05); }
.camera-shutter:active { transform: scale(.95); }
.scan-line { position: absolute; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--brand-3), transparent); box-shadow: 0 0 18px var(--brand-3); animation: scan 2.6s linear infinite; pointer-events: none; }
@keyframes scan { 0%{top:0; opacity:0} 10%{opacity:1} 90%{opacity:1} 100%{top:100%; opacity:0} }
.camera-quality { position: absolute; top: 14px; left: 14px; display: flex; gap: 6px; align-items: center; padding: 6px 10px; border-radius: 999px; background: rgba(0,0,0,.55); color: #fff; font-size: 12px; font-weight: 600; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.camera-quality .dot { width: 8px; height: 8px; border-radius: 50%; background: #16b985; box-shadow: 0 0 8px #16b985; }
.camera-quality.warn .dot { background: #f7a823; box-shadow: 0 0 8px #f7a823; }
.camera-quality.bad .dot  { background: #ef3b56; box-shadow: 0 0 8px #ef3b56; }

/* ==== Progress / loader ==== */
.progress { height: 8px; border-radius: 999px; background: var(--surface-2); overflow: hidden; position: relative; }
.progress > span { display: block; height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); border-radius: inherit; transition: width .3s var(--ease); }
.spinner { width: 22px; height: 22px; border-radius: 50%; border: 2.5px solid var(--border-strong); border-top-color: var(--brand); animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.shimmer { position: relative; overflow: hidden; background: var(--surface-2); }
.shimmer::after { content:""; position: absolute; inset:0; background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--text) 8%, transparent), transparent); animation: shimmer 1.4s infinite; }
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

/* ==== Toasts / Flash ==== */
.flash-stack { position: fixed; top: 24px; right: 24px; z-index: 100; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.flash { padding: 14px 16px; border-radius: 14px; background: var(--surface); box-shadow: var(--shadow-md); border: 1px solid var(--border-strong); display: flex; gap: 12px; align-items: flex-start; animation: slideIn .3s var(--ease); }
.flash.success { border-left: 3px solid var(--success); }
.flash.error   { border-left: 3px solid var(--danger); }
.flash.info    { border-left: 3px solid var(--brand); }
@keyframes slideIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }

/* ==== Theme toggle ==== */
.theme-toggle { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border-strong); color: var(--text-soft); }
.theme-toggle:hover { color: var(--text); }

/* ==== Mobile ==== */
@media (max-width: 880px) {
  .shell { grid-template-columns: 1fr; }
  .sidebar { position: fixed; left: -280px; width: 280px; transition: left .3s var(--ease); z-index: 60; box-shadow: var(--shadow-lg); }
  .sidebar.open { left: 0; }
  .main { padding: 18px 18px 100px; }
  .hamburger { display: grid; }
}
.hamburger { display: none; width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border-strong); background: var(--surface); color: var(--text-soft); place-items: center; }

/* ==== Footer ==== */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--border); margin-top: 80px; color: var(--text-muted); font-size: 14px; }
.footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-soft); margin-bottom: 12px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer a:hover { color: var(--text); }
@media (max-width: 760px) { .footer .cols { grid-template-columns: 1fr 1fr; } }

/* ==== Misc ==== */
.divider { height: 1px; background: var(--border); margin: 24px 0; }
.kbd { padding: 2px 6px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--border-strong); font-family: var(--font-mono); font-size: 12px; color: var(--text-soft); }
.risk-bar { display: inline-block; height: 6px; width: 120px; border-radius: 999px; background: var(--surface-2); overflow: hidden; vertical-align: middle; }
.risk-bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--success), var(--warning) 50%, var(--danger)); }
.avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: 12px; }
.avatar.lg { width: 64px; height: 64px; font-size: 22px; }

/* ==== Reveal on scroll ==== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ==== Print ==== */
@media print { .sidebar, .topbar, .footer { display: none; } .main { padding: 0; } }
