:root {
  --ink: #102033;
  --muted: #667589;
  --line: #dce4ea;
  --soft: #f5f8fa;
  --panel: #ffffff;
  --navy: #102a43;
  --navy-2: #173b57;
  --teal: #0aa6a6;
  --green: #21a67a;
  --amber: #b7791f;
  --red: #d64545;
  --shadow: 0 18px 45px rgba(20, 38, 56, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.logo-only {
  gap: 0;
}

.site-logo {
  display: block;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.btn.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 26px rgba(10, 166, 166, 0.22);
}

.btn.ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn.danger {
  background: #fff;
  color: var(--red);
  border-color: rgba(214, 69, 69, 0.28);
}

.btn.small {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.btn.full {
  width: 100%;
}

.icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.icon-button.danger {
  color: var(--red);
}

.muted {
  color: var(--muted);
}

.yes {
  color: var(--green);
  font-weight: 800;
}

.flash-stack {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 30;
  display: grid;
  gap: 8px;
  max-width: 420px;
}

.site-flash {
  top: 86px;
}

.flash {
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.flash.success {
  border-color: rgba(33, 166, 122, 0.35);
  color: #11674c;
}

.flash.error {
  border-color: rgba(214, 69, 69, 0.35);
  color: var(--red);
}

/* Website */
.site-screen {
  background: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 234, 0.8);
  backdrop-filter: blur(14px);
}

.site-nav,
.site-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover {
  background: var(--soft);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(44px, 8vw, 104px) clamp(18px, 5vw, 70px) 46px;
  background: linear-gradient(135deg, #f7fbfb 0%, #ffffff 52%, #edf7f5 100%);
}

.hero.hero-slider {
  display: block;
  position: relative;
  overflow: hidden;
}

.slides {
  position: relative;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: inherit;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hero-slider .hero-slide[hidden],
.hero-slider .hero-slide:not(.active) {
  display: none !important;
}

.hero-image {
  width: min(100%, 680px);
  aspect-ratio: 1.35;
  border: 1px solid #b8c8d3;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 70px rgba(16, 32, 51, 0.18);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-dots {
  position: absolute;
  left: clamp(18px, 5vw, 70px);
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 34px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c8d6dc;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--teal);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-head p,
.sub-hero p {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1,
.sub-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow),
.sub-hero span {
  display: block;
  margin-top: 18px;
  color: #53657a;
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.product-shot {
  width: min(100%, 680px);
  min-height: 470px;
  border: 1px solid #b8c8d3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(16, 32, 51, 0.18);
  overflow: hidden;
}

.shot-top {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  background: var(--navy);
}

.shot-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8bb8c8;
}

.shot-body {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 426px;
}

.shot-body aside {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px 14px;
  background: #eef5f5;
  border-right: 1px solid var(--line);
}

.shot-body aside b,
.shot-body aside i,
.shot-kpis b,
.shot-calendar span,
.shot-table i {
  display: block;
  border-radius: 8px;
  background: #d7e5e8;
}

.shot-body aside b {
  width: 72px;
  height: 28px;
  background: var(--teal);
}

.shot-body aside i {
  height: 18px;
}

.shot-body main {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.shot-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.shot-kpis b {
  height: 82px;
  background: #eef4f7;
}

.shot-calendar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.shot-calendar span {
  height: 72px;
}

.shot-calendar span:nth-child(2),
.shot-calendar span:nth-child(5) {
  background: #cdeee8;
}

.shot-table {
  display: grid;
  gap: 9px;
}

.shot-table i {
  height: 24px;
  background: #edf2f5;
}

.section {
  padding: 78px clamp(18px, 5vw, 70px);
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head h2,
.split-band h2,
.cta-band h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
}

.feature-grid,
.pricing-grid,
.testimonial-grid,
.blog-grid,
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.price-card,
.testimonial,
.blog-card,
.contact-card,
.quick-tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #e8f7f5;
  color: var(--teal);
  font-weight: 900;
  margin-bottom: 16px;
}

.feature-card h3,
.price-card h3,
.testimonial strong,
.blog-card h2 {
  margin: 0 0 10px;
}

.feature-card p,
.price-card p,
.testimonial p,
.blog-card p,
.split-band p,
.cta-band p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  background: #f3f8f7;
}

.advantage-list {
  display: grid;
  gap: 12px;
}

.advantage-list span,
.security-list span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 750;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(10, 166, 166, 0.45);
  box-shadow: var(--shadow);
}

.price-card strong {
  margin: 12px 0;
  font-size: 32px;
}

.price-card strong span {
  font-size: 15px;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 22px;
  padding: 0;
  list-style: none;
  color: #46596e;
}

.price-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}

.price-card .btn {
  margin-top: auto;
}

.testimonial span,
.blog-card span {
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  color: var(--muted);
  line-height: 1.65;
}

.cta-band {
  margin: 0 clamp(18px, 5vw, 70px) 74px;
  padding: 44px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.cta-band p {
  color: #c8d8e2;
}

.sub-hero {
  padding: 84px clamp(18px, 5vw, 70px) 44px;
  background: #f7fbfb;
}

.form-section {
  padding: 38px clamp(18px, 5vw, 70px) 86px;
}

.site-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.site-form .wide,
.site-form button {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: #31465b;
  font-size: 14px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(10, 166, 166, 0.15);
  border-color: var(--teal);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
}

.contact-layout .site-form {
  max-width: none;
}

.text-page {
  max-width: 900px;
  color: #40556a;
  line-height: 1.85;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  padding: 44px clamp(18px, 5vw, 70px);
  background: #0d2030;
  color: #d7e5eb;
}

.site-footer p {
  max-width: 620px;
  color: #9fb0bf;
  line-height: 1.65;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

/* Login */
.login-screen,
.install-screen {
  min-height: 100vh;
  background: linear-gradient(135deg, #eef7f6, #ffffff);
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 430px;
  gap: 42px;
  align-items: center;
  min-height: 100vh;
  padding: clamp(22px, 5vw, 70px);
}

.login-shell-minimal {
  grid-template-columns: minmax(300px, 430px);
  justify-content: center;
}

.login-card-minimal {
  width: min(100%, 430px);
}

.login-brand {
  margin-bottom: 22px;
}

.login-copy h1 {
  max-width: 760px;
  margin: 28px 0 16px;
  font-size: 54px;
  line-height: 1.05;
}

.login-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.login-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.login-proof span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 750;
}

.login-card,
.install-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}

.stack-form {
  display: grid;
  gap: 14px;
}

.demo-logins {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.demo-logins strong {
  color: var(--ink);
}

.install-screen {
  display: grid;
  place-items: center;
  padding: 22px;
}

.install-card {
  max-width: 640px;
}

.install-card pre {
  overflow: auto;
  padding: 12px;
  border-radius: 8px;
  background: #0d2030;
  color: #d7e5eb;
}

.install-actions {
  display: flex;
  gap: 10px;
}

/* Panel */
.panel-screen {
  background: #eef3f6;
}

.panel-shell {
  display: grid;
  grid-template-columns: 274px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
  background: #0d2030;
  color: #dce8ee;
  padding: 18px;
}

.panel-brand {
  display: flex;
  margin-bottom: 22px;
  color: #fff;
}

.side-nav {
  display: grid;
  gap: 4px;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 39px;
  padding: 0 11px;
  border-radius: 8px;
  color: #b9c9d4;
  font-weight: 750;
}

.side-nav a:hover,
.side-nav a.active {
  background: #173b57;
  color: #fff;
}

.side-nav a span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  color: #73d4cf;
}

.nav-label {
  margin: 16px 10px 6px;
  color: #6f8798;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-main {
  min-width: 0;
  padding: 18px 22px 60px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0 18px;
  background: rgba(238, 243, 246, 0.92);
  backdrop-filter: blur(12px);
}

.quick-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 520px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quick-search input {
  border: 0;
  padding-left: 0;
}

.quick-search input:focus {
  outline: 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.user-chip {
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.user-chip strong,
.user-chip span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-chip span {
  color: var(--muted);
  font-size: 12px;
}

.page-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 12px 0 18px;
}

.page-head p {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.page-head h1 {
  margin: 0;
  font-size: 32px;
}

.page-head span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.stat-card,
.panel-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.04);
}

.stat-card {
  padding: 16px;
}

.stat-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.stat-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 25px;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
}

.panel-card {
  padding: 18px;
  margin-bottom: 16px;
}

.panel-card h3 {
  margin: 0 0 16px;
}

.grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bar-list,
.usage-meter {
  display: grid;
  gap: 12px;
}

.bar-row div,
.usage-meter div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.bar-row i,
.usage-meter i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #edf2f5;
  overflow: hidden;
}

.bar-row i {
  background: var(--teal);
}

.usage-meter b {
  display: block;
  height: 100%;
  background: var(--teal);
}

.table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.filter-form {
  display: flex;
  gap: 8px;
  width: min(100%, 520px);
}

.table-wrap {
  width: 100%;
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: #51657a;
  font-size: 12px;
  text-transform: uppercase;
}

td {
  color: #24394e;
}

.actions-col {
  width: 120px;
}

.row-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #edf2f5;
  color: #486075;
  font-size: 12px;
  font-weight: 850;
}

.status-active,
.status-paid,
.status-won,
.status-completed,
.status-sent {
  background: #e7f7ef;
  color: #11674c;
}

.status-new,
.status-waiting,
.status-pending,
.status-queued,
.status-trial {
  background: #fff7e6;
  color: var(--amber);
}

.status-passive,
.status-cancelled,
.status-failed,
.status-lost,
.status-overdue,
.status-urgent {
  background: #fdecec;
  color: var(--red);
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 24px;
  border: 1px dashed #c8d4dc;
  border-radius: 8px;
  background: #f9fbfc;
  text-align: center;
}

.empty-state.compact {
  min-height: 86px;
}

.empty-state h3 {
  margin: 0 0 8px;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.modal {
  width: min(760px, calc(100vw - 28px));
  border: 0;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(16, 32, 51, 0.28);
}

.modal::backdrop {
  background: rgba(16, 32, 51, 0.48);
}

.modal-card {
  padding: 20px;
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.modal-head h3 {
  margin: 0;
}

.modal-actions,
.settings-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

.upload-preview,
.thumb {
  display: block;
  max-width: 140px;
  max-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.thumb {
  max-width: 90px;
  max-height: 48px;
}

.logo-form {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.current-logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
}

.current-logo img {
  max-width: 220px;
  max-height: 86px;
  object-fit: contain;
}

.logo-size-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.toggle-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.toggle-row input {
  width: auto;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.settings-group {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.settings-group.wide,
.settings-actions {
  grid-column: 1 / -1;
}

.quick-tile {
  display: grid;
  gap: 8px;
}

.quick-tile span {
  color: var(--teal);
  font-weight: 800;
}

.security-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1180px) {
  .stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid,
  .pricing-grid,
  .testimonial-grid,
  .blog-grid,
  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero,
  .hero-slide,
  .split-band,
  .login-shell,
  .contact-layout,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1,
  .login-copy h1,
  .sub-hero h1 {
    font-size: 42px;
  }

  .site-nav,
  .site-actions {
    display: none;
  }

  .site-header.menu-open .site-nav,
  .site-header.menu-open .site-actions {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 74px;
    display: grid;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .site-actions {
    top: 294px;
  }

  .mobile-menu {
    display: inline-grid;
    place-items: center;
  }

  .panel-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    left: -286px;
    z-index: 40;
    width: 274px;
    transition: left 0.18s ease;
  }

  .sidebar.open {
    left: 0;
  }

  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .topbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .user-chip {
    min-width: 0;
    flex: 1;
  }
}

@media (max-width: 680px) {
  .hero h1,
  .login-copy h1,
  .sub-hero h1 {
    font-size: 34px;
  }

  .hero-copy > p:not(.eyebrow),
  .sub-hero span {
    font-size: 17px;
  }

  .feature-grid,
  .pricing-grid,
  .testimonial-grid,
  .blog-grid,
  .quick-grid,
  .site-form,
  .settings-grid,
  .logo-size-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .shot-body {
    grid-template-columns: 92px 1fr;
  }

  .shot-kpis,
  .shot-calendar {
    grid-template-columns: 1fr;
  }

  .product-shot {
    min-height: 360px;
  }

  .table-toolbar,
  .filter-form,
  .install-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
