:root{
  /* B/W + off-white palette (ispirata all'immagine) */
  --bg: #f2f2f1;              /* off-white leggermente scuro */
  --bg-2: #ededec;            /* off-white secondario */
  --paper: #ffffff;           /* bianco pieno */
  --ink: #0a0a0c;             /* quasi nero */
  --ink-2: #16161a;           /* nero morbido */
  --muted: rgba(10, 10, 12, 0.62);
  --border: rgba(10, 10, 12, 0.10);
  --border-2: rgba(255, 255, 255, 0.12);
  --shadow: 0 1px 2px rgba(10, 10, 12, 0.05), 0 12px 28px rgba(10, 10, 12, 0.06);

  --radius: 14px;
  --radius-sm: 12px;
  --sidebar-w: 272px;

  /* Accenti molto sobri (quasi monocromo) */
  --accent: #111114;          /* usato per focus/hover */
  --danger: #b91c1c;
}

@font-face{
  font-family: "Alphazet";
  src:
    url("Alphazet-Light.woff2") format("woff2"),
    url("Alphazet-Light.woff") format("woff"),
    url("Alphazet-Light.ttf") format("truetype"),
    url("Alphazet-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Alphazet";
  src:
    url("Alphazet-SemiBold.woff2") format("woff2"),
    url("Alphazet-SemiBold.woff") format("woff"),
    url("Alphazet-SemiBold.ttf") format("truetype"),
    url("Alphazet-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: "Alphazet", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

button, input, select, textarea{
  font: inherit;
  letter-spacing: inherit;
}

a{ color: inherit; text-decoration: none; }
h1, h2, h3{ margin: 0 0 10px 0; letter-spacing: -0.02em; }
h2{ font-size: 20px; }
h3{ font-size: 15px; color: #0f172a; }

/* Landing (full page + navbar) */
.landing-page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.landing-nav{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(242, 242, 241, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 10, 12, 0.10);
}
.landing-nav-inner{
  width: 100%;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}
.landing-logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.landing-logo-mark{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(180deg, #0b0b0d 0%, #060607 100%);
  border: 1px solid rgba(10, 10, 12, 0.18);
  font-weight: 750;
  letter-spacing: -0.03em;
}
.landing-logo-text{ display: grid; line-height: 1.05; }
.landing-logo-name{ font-weight: 750; letter-spacing: -0.02em; }
.landing-logo-sub{ font-size: 12px; color: var(--muted); font-weight: 650; margin-top: 2px; }

.landing-links{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.landing-links a{
  color: rgba(10, 10, 12, 0.72);
  font-weight: 650;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.landing-links a:hover{
  color: rgba(10, 10, 12, 0.92);
  background: rgba(10, 10, 12, 0.04);
  border-color: rgba(10, 10, 12, 0.08);
}
.landing-cta{ display: inline-flex; gap: 10px; align-items: center; }
.icon-btn.landing-menu-toggle{ display: none; }

.landing-mobile-drawer{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, var(--sidebar-w));
  background: linear-gradient(180deg, #0b0b0d 0%, #070708 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  padding: 14px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateX(102%);
  transition: transform 180ms ease;
}
.landing-mobile-links{
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 6px;
}
.landing-mobile-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.45);
  z-index: 85;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
body.landing-menu-open .landing-mobile-drawer{ transform: translateX(0); }
body.landing-menu-open .landing-mobile-backdrop{
  opacity: 1;
  pointer-events: auto;
}

.landing-hero{
  flex: 1;
  display: grid;
  align-items: stretch;
  padding: 0;
}
.landing-hero-inner{
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 252, 253, 0.96) 100%);
}
.landing-hero-inner::after{
  content: "";
  position: absolute;
  top: 6%;
  right: 8%;
  bottom: 6%;
  width: min(47vw, 680px);
  background: url("landing-device.png") no-repeat right center / contain;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}
.landing-hero-left{
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  align-content: center;
  padding: 4px 34px 52px 34px;
  max-width: 900px;
  background: transparent;
}
.landing-kicker{
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  color: rgba(10, 10, 12, 0.92);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.95) 0%, rgba(245, 158, 11, 0.82) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.landing-hero-title{
  margin: 14px 0 0 0;
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 750;
}
.landing-hero-copy{
  margin: 12px 0 0 0;
  color: rgba(10, 10, 12, 0.72);
  font-weight: 650;
  font-size: 1.2rem;
  line-height: 1.55;
  max-width: 60ch;
}
.landing-hero-actions{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.landing-scroll-cue{
  display: none;
}
.landing-showcase{
  width: 100%;
  padding: 34px 42px 40px 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 252, 253, 0.96) 100%);
}
.landing-showcase-inner{
  width: 100%;
  max-width: none;
}
.landing-showcase-kicker{
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(10, 10, 12, 0.54);
  font-size: 12px;
  font-weight: 750;
}
.landing-showcase-title{
  margin: 10px 0 0 0;
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.landing-showcase-copy{
  margin: 10px 0 0 0;
  color: rgba(10, 10, 12, 0.68);
  font-weight: 600;
  max-width: 84ch;
}
.landing-showcase-grid{
  margin-top: 16px;
  display: grid;
  gap: 14px;
}
.landing-showcase-more{
  display: none;
}
.landing-showcase-card{
  border: 1px solid rgba(10, 10, 12, 0.11);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  overflow: hidden;
}
.landing-showcase-card:hover{
  transform: translateY(-3px);
  border-color: rgba(10, 10, 12, 0.2);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}
.landing-showcase-media{
  width: 100%;
  height: min(300px, 32vw);
  min-height: 240px;
  border-radius: 12px;
  border: 1px solid rgba(10, 10, 12, 0.08);
  background-color: #f7f7f8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 18px;
}
.landing-showcase-media-nexus{
  background-image: url("landing-device.png");
}
.landing-showcase-media-optic{
  background-image: url("landing-device2.png");
}
.landing-showcase-content{
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(10, 10, 12, 0.08);
  flex: 1;
}
.landing-showcase-label{
  margin: 0;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(10, 10, 12, 0.66);
  background: rgba(10, 10, 12, 0.04);
  border: 1px solid rgba(10, 10, 12, 0.1);
}
.landing-showcase-label-orange{
  color: rgba(10, 10, 12, 0.92);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.95) 0%, rgba(245, 158, 11, 0.82) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.landing-showcase-card h3{
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: rgba(10, 10, 12, 0.96);
}
.landing-showcase-desc{
  margin: 0;
  color: rgba(10, 10, 12, 0.62);
  font-weight: 560;
  font-size: 14px;
  line-height: 1.6;
  max-width: 42ch;
}
.landing-showcase-card .btn{
  margin-top: auto;
  justify-self: start;
  min-width: 0;
  width: 100%;
  max-width: 200px;
}
.landing-showcase-more-kicker{
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-weight: 750;
  color: rgba(10, 10, 12, 0.48);
}
.landing-showcase-more-title{
  margin: 8px 0 0 0;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: rgba(10, 10, 12, 0.92);
}
.landing-showcase-more-copy{
  margin: 8px 0 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(10, 10, 12, 0.58);
  font-weight: 560;
  flex: 1;
}
.landing-showcase-more .btn{
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}
@media (min-width: 1021px){
  .landing-showcase-grid{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(200px, 248px);
    align-items: stretch;
  }
  .landing-showcase-more{
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    border: 1px dashed rgba(10, 10, 12, 0.18);
    background: rgba(255, 255, 255, 0.65);
    padding: 20px 16px;
    box-shadow: none;
    min-height: 540px;
  }
  .landing-showcase-more:hover{
    border-color: rgba(245, 158, 11, 0.45);
    background: rgba(245, 158, 11, 0.06);
  }
}
.landing-remap-charts{
  width: 100%;
  padding: 20px 42px 10px 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 252, 253, 0.96) 100%);
}
.landing-remap-charts-inner{
  width: 100%;
  max-width: none;
}
.landing-remap-kicker{
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(10, 10, 12, 0.54);
  font-size: 12px;
  font-weight: 750;
}
.landing-remap-title{
  margin: 10px 0 0 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.landing-remap-copy{
  margin: 10px 0 0 0;
  color: rgba(10, 10, 12, 0.68);
  font-weight: 600;
  max-width: 96ch;
}
.landing-remap-grid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.landing-remap-card{
  border-radius: 16px;
  border: 1px solid rgba(10, 10, 12, 0.1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  background: #ffffff;
}
.landing-remap-card .chart-wrap{
  border-radius: 14px;
}
.landing-remap-note{
  margin: 10px 0 0 0;
  color: rgba(10, 10, 12, 0.62);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 560;
}
.landing-remap-mobile-peak{
  display: none;
  margin: 0 0 8px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(245, 158, 11, 0.95);
}
.landing-plans{
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 252, 253, 0.96) 100%);
  padding: 0;
}
.landing-plans-inner{
  width: 100%;
  max-width: none;
  padding: 34px 42px 0 42px;
}
.landing-plans-kicker{
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(10, 10, 12, 0.54);
  font-size: 12px;
  font-weight: 750;
}
.landing-plans-title{
  margin: 10px 0 0 0;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.03;
  letter-spacing: -0.028em;
}
.landing-plans-copy{
  margin: 12px 0 0 0;
  color: rgba(10, 10, 12, 0.68);
  font-weight: 600;
}
.landing-plans-extra{
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
}
.landing-plans-extra h3{
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.landing-plans-extra ul{
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}
.landing-plans-extra li{
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: rgba(10, 10, 12, 0.8);
  font-weight: 560;
}
.landing-plans-extra li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.95);
}
.landing-plan-grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 310px));
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}
.landing-plan-card{
  position: relative;
  padding: 24px 22px;
  min-height: 700px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  display: flex;
  flex-direction: column;
}
.landing-plan-card h3{
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.008em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.landing-plan-icon{
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: inline-grid;
  place-items: center;
  background: #ffffff;
  border: 1.5px solid rgba(10, 10, 12, 0.7);
  position: relative;
}
.landing-plan-icon::before{
  content: "";
  width: 10px;
  height: 10px;
  border: 1.5px solid rgba(10, 10, 12, 0.88);
  border-radius: 3px;
}
.landing-plan-icon.icon-pro::before{
  width: 12px;
  height: 2px;
  border: 0;
  border-radius: 2px;
  background: rgba(10, 10, 12, 0.92);
  box-shadow: 0 -4px 0 rgba(10, 10, 12, 0.92), 0 4px 0 rgba(10, 10, 12, 0.92);
}
.landing-plan-icon.icon-aziendale::before{
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 12, 0.92) 0 3px,
    transparent 3px 5px,
    rgba(10, 10, 12, 0.92) 5px 8px,
    transparent 8px 10px,
    rgba(10, 10, 12, 0.92) 10px 12px
  );
}
.landing-plan-price{
  margin: 10px 0 0 0;
  font-size: 36px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(10, 10, 12, 0.95);
}
.landing-plan-price span{
  margin-left: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(10, 10, 12, 0.44);
}
.landing-plan-trial{
  margin: 6px 0 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.02em;
}
.landing-plan-desc{
  margin: 14px 0 0 0;
  color: rgba(10, 10, 12, 0.66);
  font-weight: 560;
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.landing-plan-card ul{
  margin: 12px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  color: rgba(10, 10, 12, 0.86);
  padding-top: 14px;
}
.landing-plan-card li{
  position: relative;
  padding-left: 19px;
  font-size: 13.5px;
  font-weight: 560;
  line-height: 1.4;
}
.landing-plan-card li::before{
  content: "";
  position: absolute;
  left: 1px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.9);
}
.landing-plan-card.is-featured{
  border-color: rgba(245, 158, 11, 0.62);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.16);
  transform: translateY(-4px);
}
.landing-plan-badge{
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0;
  height: 24px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: inline-grid;
  place-items: center;
  color: rgba(10, 10, 12, 0.92);
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.5);
}
.landing-plans-disclaimer{
  margin: 24px 0 0 0;
  padding: 0 42px;
  color: rgba(10, 10, 12, 0.58);
  font-size: 12px;
  line-height: 1.65;
  max-width: none;
  text-align: justify;
  width: calc(100% + 84px);
  margin-left: -42px;
  margin-right: -42px;
}
.landing-plans-contact{
  margin: 18px 0 0 0;
  padding-top: 14px;
  padding-bottom: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  text-align: center;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
  width: 100%;
  background: #0b0b0d;
  border-radius: 0;
  width: calc(100% + 84px);
  margin-left: -42px;
  margin-right: -42px;
}
.landing-plans-contact a{
  color: rgba(245, 158, 11, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.landing-plans-contact a:hover{
  color: rgba(245, 158, 11, 1);
}
.landing-plan-cta-btn{
  margin-top: auto;
  width: 100%;
  justify-content: center;
}
.landing-plan-card.is-featured .landing-plan-cta-btn{
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.96) 0%, rgba(245, 158, 11, 0.86) 100%);
  border-color: rgba(245, 158, 11, 0.62);
  color: rgba(10, 10, 12, 0.95);
}
.landing-plan-card.is-featured .landing-plan-cta-btn:hover{
  background: linear-gradient(180deg, rgba(245, 158, 11, 1) 0%, rgba(245, 158, 11, 0.9) 100%);
  border-color: rgba(245, 158, 11, 0.72);
}
@media (min-width: 1021px){
  .landing-plan-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
    border-color: rgba(15, 23, 42, 0.22);
  }
  .landing-plan-card.is-featured:hover{
    transform: translateY(-7px);
    border-color: rgba(245, 158, 11, 0.72);
    box-shadow: 0 16px 34px rgba(245, 158, 11, 0.2);
  }
}
.landing-file-explorer{
  width: 100%;
  padding: 26px 42px 8px 42px;
  background: linear-gradient(180deg, rgba(250, 250, 252, 1) 0%, rgba(243, 244, 246, 0.72) 100%);
}
.landing-file-explorer-inner{
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
.file-explorer-window{
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  background: #0f1217;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
  overflow: hidden;
  min-height: 700px;
}
.file-explorer-topbar{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
}
.file-explorer-topbar-left{
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.file-explorer-topbar .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}
.file-explorer-topbar .dot:nth-child(1){
  background: #ff5f57;
}
.file-explorer-topbar .dot:nth-child(2){
  background: #febc2e;
}
.file-explorer-topbar .dot:nth-child(3){
  background: #28c840;
}
.file-explorer-topbar p{
  margin: 0 0 0 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 620;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-explorer-body{
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  min-height: 460px;
}
.file-explorer-sidebar{
  padding: 14px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  min-height: 700px;
}
.file-explorer-sidebar h3,
.file-explorer-content h3{
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.01em;
}
.file-explorer-sidebar ul{
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.file-explorer-sidebar li{
  margin: 0;
}
.file-nav-item{
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  font-weight: 560;
  border-radius: 8px;
  padding: 8px 9px;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}
.file-nav-item:hover{
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.file-nav-item.is-active{
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.56);
  color: rgba(255, 255, 255, 0.96);
}
.file-explorer-content{
  padding: 14px;
}
.file-explorer-toolbar{
  display: flex;
  align-items: center;
  gap: 10px;
}
.file-explorer-headings{
  display: grid;
  gap: 2px;
}
.file-breadcrumb{
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 520;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-breadcrumb-content{
  margin-bottom: 8px;
}
.file-mobile-only-note{
  display: none;
}
.file-back-btn{
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.file-back-btn:hover{
  background: rgba(255, 255, 255, 0.1);
}
.file-folder-grid{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.file-empty-state{
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 560;
}
.file-folder-card{
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}
.file-folder-card:hover{
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.08);
  transform: translateY(-1px);
}
[data-firmware-view]{
  grid-column: 1 / -1;
  margin-top: 0;
}
.file-folder-icon{
  width: 22px;
  height: 16px;
  border-radius: 3px;
  background: rgba(245, 158, 11, 0.95);
  position: relative;
  flex-shrink: 0;
}
.file-folder-icon::before{
  content: "";
  position: absolute;
  left: 2px;
  top: -4px;
  width: 10px;
  height: 5px;
  border-radius: 2px 2px 0 0;
  background: rgba(245, 158, 11, 0.84);
}
.file-folder-name{
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
}
.file-folder-meta{
  margin: 2px 0 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}
.landing-footer{
  padding: 14px 18px 22px 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}
.landing-footer-inner{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.landing-footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: flex-end;
}
.landing-footer-links a{
  color: rgba(10, 10, 12, 0.62);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 140ms ease, border-color 140ms ease;
}
.landing-footer-links a:hover{
  color: rgba(10, 10, 12, 0.9);
  border-bottom-color: rgba(10, 10, 12, 0.28);
}

/* Legal pages */
.legal-page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.legal-main{
  width: 100%;
  padding: 24px 20px 26px 20px;
}
.legal-card{
  width: min(1000px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 10, 12, 0.12);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px;
}
.legal-eyebrow{
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(10, 10, 12, 0.58);
  font-weight: 700;
}
.legal-title{
  margin: 8px 0 0 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.legal-updated{
  margin: 10px 0 0 0;
  font-size: 13px;
  color: rgba(10, 10, 12, 0.62);
}
.legal-section{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 10, 12, 0.1);
}
.legal-section h2{
  margin: 0;
  font-size: 18px;
}
.legal-section p{
  margin: 10px 0 0 0;
  color: rgba(10, 10, 12, 0.78);
  line-height: 1.58;
  font-size: 14px;
}
.legal-list{
  margin: 10px 0 0 0;
  padding-left: 20px;
  color: rgba(10, 10, 12, 0.8);
  display: grid;
  gap: 6px;
}
.legal-back{
  margin-top: 20px;
}

@media (min-width: 1021px){
  .landing-scroll-cue{
    position: fixed;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 120;
    width: auto;
    height: auto;
    color: rgba(10, 10, 12, 0.5);
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    text-shadow: none;
    animation: landingScrollCueFloat 1.6s ease-in-out infinite;
    transition: opacity 240ms ease, transform 240ms ease;
  }
  .landing-scroll-cue:hover{
    color: rgba(10, 10, 12, 0.68);
  }
  .landing-scroll-cue.is-hidden{
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
    pointer-events: none;
  }
}
@keyframes landingScrollCueFloat{
  0%, 100%{ transform: translateX(-50%) translateY(0); }
  50%{ transform: translateX(-50%) translateY(6px); }
}

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

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

.sidebar{
  position: sticky;
  top: 0;
  height: 100vh;
  background: linear-gradient(180deg, #0b0b0d 0%, #070708 100%);
  color: rgba(255, 255, 255, 0.92);
  border-right: 1px solid rgba(10, 10, 12, 0.12);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-header{ padding: 6px 6px 10px 6px; }
.brand{ display: flex; align-items: center; gap: 12px; }
.brand-mark{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-2);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand-name{ font-size: 15px; font-weight: 650; }
.brand-subtitle{ font-size: 12px; color: rgba(255, 255, 255, 0.62); margin-top: 2px; }

.sidebar-nav{
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 6px;
}
.nav-item{
  padding: 10px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid transparent;
  position: relative;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}
.nav-item + .nav-item{
  margin-top: 2px;
  padding-top: 12px;
}
.nav-item + .nav-item::before{
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.16) 18%, rgba(255,255,255,0.10) 82%, transparent 100%);
}
.nav-item:hover{
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-2);
  color: #ffffff;
}
.nav-item.is-active{
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}
.nav-item:focus{ outline: 2px solid rgba(255, 255, 255, 0.18); outline-offset: 2px; }

.sidebar-footer{
  margin-top: auto;
  padding: 10px 6px 6px 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.user-chip{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-2);
}
.user-label{ font-size: 13px; color: rgba(255, 255, 255, 0.82); }
.sidebar-footnote{ font-size: 12px; color: rgba(255, 255, 255, 0.52); padding: 0 6px; }

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

.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(242, 242, 241, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar-title{ font-size: 13px; color: var(--muted); font-weight: 650; }
.topbar-spacer{ flex: 1; }

.main{
  padding: 22px 22px 10px 22px;
  width: 100%;
  max-width: none;
}

.section{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(10, 10, 12, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 16px;
}
.section > h2{ color: var(--ink); }

.dashboard-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.data-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.card{
  background: var(--paper);
  border: 1px solid rgba(10, 10, 12, 0.10);
  border-radius: var(--radius-sm);
  padding: 14px;
  box-shadow: 0 1px 0 rgba(10, 10, 12, 0.02);
}

/* Chart */
.chart-card{ padding: 14px; }
.chart-header{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.chart-title{
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.chart-subtitle{
  font-size: 12px;
  color: var(--muted);
  font-weight: 650;
}
.chart-wrap{
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #0b0b0d 0%, #060607 100%);
  border: 1px solid rgba(10, 10, 12, 0.12);
  box-shadow: var(--shadow);
}
#dyno-chart-left,
#dyno-chart-right{
  width: 100%;
  height: auto;
  display: block;
}
.chart-legend{
  margin-top: 10px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}
.legend-item{ display: inline-flex; align-items: center; gap: 8px; }
.swatch{
  width: 18px;
  height: 2px;
  border-radius: 99px;
  display: inline-block;
}
.swatch-gray{ background: rgba(255, 255, 255, 0.50); }
.swatch-orange{ background: #f59e0b; }

/* AI Insight */
.ai-insight{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.10) 0%, rgba(245, 158, 11, 0.06) 100%);
  border-color: rgba(245, 158, 11, 0.22);
  transition: transform 180ms ease, opacity 180ms ease;
}
.ai-insight.is-closing{
  transform: translateX(18px);
  opacity: 0;
}
.ai-badge{
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 750;
  color: rgba(10, 10, 12, 0.92);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.95) 0%, rgba(245, 158, 11, 0.82) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.ai-text{
  font-weight: 750;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ai-highlight{
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.28);
}
.ai-muted{
  display: block;
  margin-top: 4px;
  font-weight: 650;
  color: var(--muted);
}
.ai-actions{
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ai-insight-collapsed{
  margin-top: 12px;
  width: auto;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.10) 0%, rgba(245, 158, 11, 0.06) 100%);
  border: 1px solid rgba(245, 158, 11, 0.22);
  box-shadow: 0 1px 0 rgba(10, 10, 12, 0.02);
  margin-left: auto;
}
.ai-insight-collapsed:hover{
  border-color: rgba(245, 158, 11, 0.32);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0.07) 100%);
}
.ai-pill{
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  color: rgba(10, 10, 12, 0.92);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.95) 0%, rgba(245, 158, 11, 0.82) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.ai-caret{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 750;
  color: rgba(10, 10, 12, 0.92);
  background: rgba(10, 10, 12, 0.06);
  border: 1px solid rgba(10, 10, 12, 0.10);
}
.ai-insight-collapsed:focus{
  outline: 2px solid rgba(10, 10, 12, 0.18);
  outline-offset: 2px;
}
.btn-ghost{
  background: transparent;
  border-color: rgba(10, 10, 12, 0.14);
  color: var(--ink);
}
.btn-ghost:hover{
  background: rgba(10, 10, 12, 0.04);
}
.stat{
  font-size: 32px;
  font-weight: 750;
  letter-spacing: -0.03em;
  margin-top: 8px;
}

.vehicle-list, .alert-list, .manual-list{ margin-top: 12px; display: grid; gap: 10px; }

.chat-container{
  margin-top: 10px;
  display: grid;
  gap: 10px;
}
.chat-messages{
  height: 260px;
  overflow: auto;
  background: var(--paper);
  border: 1px solid rgba(10, 10, 12, 0.10);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.chat-input{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
input[type="text"], input[type="password"]{
  height: 42px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(10, 10, 12, 0.14);
  background: var(--paper);
  padding: 0 12px;
  outline: none;
}
input[type="text"]:focus, input[type="password"]:focus{
  border-color: rgba(10, 10, 12, 0.40);
  box-shadow: 0 0 0 4px rgba(10, 10, 12, 0.10);
}

.upload-area{
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* Buttons */
.btn{
  height: 42px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 80ms ease, filter 120ms ease, background 120ms ease, border-color 120ms ease;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--ink);
  color: var(--paper);
  border-color: rgba(255,255,255,0.12);
}
.btn-primary:hover{ filter: brightness(1.06); }
.btn-danger{
  background: var(--danger);
  color: #ffffff;
}
.btn-sm{
  height: 34px;
  border-radius: 11px;
  padding: 0 12px;
  font-size: 13px;
}

.icon-btn{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(10, 10, 12, 0.10);
  background: rgba(242, 242, 241, 0.72);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.icon-btn:hover{ background: rgba(242, 242, 241, 0.92); }

/* Footer */
.footer{
  padding: 18px 22px 26px 22px;
  color: var(--muted);
  font-size: 13px;
}

/* Alert overlay */
.alert-overlay{
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.60);
  display: grid;
  place-items: center;
  z-index: 50;
  padding: 18px;
}
.alert-content{
  width: min(520px, 100%);
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid rgba(10, 10, 12, 0.14);
  box-shadow: var(--shadow);
  padding: 18px;
  text-align: center;
}
.alert-icon{ font-size: 34px; }
.hidden{ display: none !important; }

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  display: grid;
  place-items: center;
  z-index: 60;
  padding: 18px;
}
.modal-content{
  width: min(420px, 100%);
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid rgba(10, 10, 12, 0.14);
  box-shadow: var(--shadow);
  padding: 18px;
}
.modal-content h2{ margin-bottom: 12px; }
.modal-content form{ display: grid; gap: 10px; }

/* Login page (professional full-page layout) */
body.login-page{
  background: linear-gradient(180deg, rgba(247, 249, 251, 1) 0%, rgba(238, 243, 248, 1) 100%);
}
.login-page-shell{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.login-main{
  flex: 1;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}
.login-page-panel{
  width: min(900px, 100%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(10, 10, 12, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  padding: 0;
}
.login-panel-layout{
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1fr);
}
.login-panel-side{
  padding: 28px 24px;
  border-right: 1px solid rgba(10, 10, 12, 0.1);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(241, 245, 249, 0.8) 100%);
}
.login-panel-form-wrap{
  padding: 28px 24px;
}
.login-kicker{
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 750;
  color: rgba(10, 10, 12, 0.52);
}
.login-page-title{
  margin: 8px 0 0 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.login-page-copy{
  margin: 8px 0 14px 0;
  color: rgba(10, 10, 12, 0.66);
  font-size: 14px;
}
.login-feature-list{
  margin: 12px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.login-feature-list li{
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: rgba(10, 10, 12, 0.72);
}
.login-feature-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.95);
}
body.login-page .login-form{
  display: grid;
  gap: 10px;
}
body.login-page .login-form label{
  font-size: 12px;
  font-weight: 650;
  color: rgba(10, 10, 12, 0.72);
}
body.login-page .login-page-panel .btn{
  justify-content: center;
}
.login-form-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.login-form-row a{
  font-size: 12px;
  color: rgba(10, 10, 12, 0.76);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.login-checkbox{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(10, 10, 12, 0.72);
}
.login-checkbox input{
  width: 14px;
  height: 14px;
}
.login-support-note{
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: rgba(10, 10, 12, 0.62);
}
.login-support-note a{
  text-decoration: underline;
  text-underline-offset: 2px;
}
.close{
  float: right;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: rgba(10, 10, 12, 0.72);
  background: rgba(10, 10, 12, 0.05);
}
.close:hover{ background: rgba(10, 10, 12, 0.08); }

/* Responsive */
@media (max-width: 1020px){
  .dashboard-grid, .data-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .charts-grid{ grid-template-columns: 1fr; }
  .ai-insight{ grid-template-columns: 1fr; }
  .ai-actions{ justify-content: flex-start; }
  .landing-nav-inner{ grid-template-columns: auto 1fr auto; justify-items: stretch; }
  .landing-links, .landing-cta{ display: none; }
  .icon-btn.landing-menu-toggle{
    display: inline-grid;
    justify-self: end;
  }
  .landing-mobile-drawer .sidebar-footer{
    margin-top: auto;
  }
  .landing-hero-inner{ grid-template-columns: 1fr; }
  .landing-hero-inner::after{
    top: 25px;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(78vw, 430px);
    height: 150px;
    background-position: center top;
    background-size: contain;
    opacity: 1;
    z-index: 1;
  }
  .landing-hero-left{
    max-width: none;
    padding: 198px 22px 34px 22px;
    background: transparent;
  }
  .landing-plans{
    padding: 0;
  }
  .landing-showcase{
    padding: 18px 22px 26px 22px;
  }
  .landing-showcase-grid{
    grid-template-columns: 1fr;
  }
  .landing-showcase-media{
    height: min(240px, 52vw);
    min-height: 200px;
  }
  .landing-showcase-card{
    min-height: 460px;
  }
  .landing-showcase-card h3{
    font-size: 20px;
  }
  .landing-showcase-desc{
    max-width: none;
  }
  .landing-remap-charts{
    padding: 14px 22px 8px 22px;
  }
  .landing-remap-grid{
    grid-template-columns: 1fr;
  }
  .landing-remap-note{
    font-size: 12.5px;
  }
  .landing-remap-mobile-peak{
    display: block;
  }
  .landing-plans-inner{
    max-width: none;
    padding: 10px 22px 0 22px;
  }
  .landing-plan-grid{
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
  .landing-plan-card{ min-height:650px; }
  .landing-file-explorer{
    padding: 18px 22px 8px 22px;
  }
  .landing-file-explorer-inner{
    grid-template-columns: 1fr;
  }
  .file-explorer-body{
    grid-template-columns: 1fr;
  }
  .file-explorer-sidebar,
  .file-breadcrumb-content,
  .file-explorer-toolbar,
  [data-folder-panel]{
    display: none;
  }
  .file-explorer-content{
    min-height: 240px;
    display: grid;
    place-items: center;
    text-align: center;
  }
  .file-mobile-only-note{
    display: block;
    margin: 0;
    max-width: 30ch;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 560;
  }
  .file-explorer-sidebar{
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .file-folder-grid{
    grid-template-columns: 1fr;
  }
  .landing-plans-contact{
    width: calc(100% + 44px);
    margin-left: -22px;
    margin-right: -22px;
  }
  .landing-plans-disclaimer{
    width: calc(100% + 44px);
    margin-left: -22px;
    margin-right: -22px;
    padding: 0 22px;
  }
  .login-page-panel{
    width: min(560px, 100%);
  }
  .login-panel-layout{
    grid-template-columns: 1fr;
  }
  .login-panel-side{
    border-right: 0;
    border-bottom: 1px solid rgba(10, 10, 12, 0.1);
  }
}

@media (max-width: 900px){
  .app-shell{ grid-template-columns: 1fr; }
  .sidebar{
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(86vw, var(--sidebar-w));
    transform: translateX(-102%);
    transition: transform 180ms ease;
    z-index: 70;
  }
  body.sidebar-open .sidebar{ transform: translateX(0); }
  .topbar{ padding-left: 12px; }
  .main{ padding: 16px 14px 10px 14px; }
}
.landing-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-logo-img {
  height: 28px;
}

.landing-logo-text {
  font-size: 20px;
  font-weight: 700;
}
.sidebar-header {
  display: none;
}