/* =========================================================
   LABIL — site vitrine
   ========================================================= */

:root {
  /* Brand LABIL — violet / teal / orange */
  --purple: #5e3d84;
  --purple-dark: #4a2f6b;
  --purple-soft: #f0eaf5;
  --purple-text: #5e3d84;
  --green: #18a090;
  --green-dark: #0e7a6e;
  --green-deep: #3d2858;
  --green-soft: #e3f5f3;
  --green-border: #a8d9d3;
  --blue: #2f6df0;
  --blue-dark: #1b50c4;
  --blue-soft: #e8f0fe;
  --red: #d64034;
  --red-dark: #c5372c;
  --red-soft: #fdecea;
  --amber: #e88848;
  --amber-dark: #c46a2e;
  --amber-soft: #fdf0e6;
  --ink: #202124;
  --ink-2: #3c4043;
  --muted: #5f6368;
  --muted-2: #9aa0a6;
  --muted-3: #8a8780;
  --line: #e6e9ee;
  --line-2: #eceef1;
  --line-3: #dadce0;
  --bg: #f6f8fb;
  --bg-warm: #fbfbfa;
  --white: #fff;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04);
  --shadow-md: 0 16px 40px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 30px 60px -20px rgba(16, 24, 40, 0.22);
  --font: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1200px;
  --nav-h: 64px;
  --ease: cubic-bezier(0.34, 1.3, 0.5, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1100px 460px at 50% -40px, rgba(94, 61, 132, 0.12), rgba(94, 61, 132, 0) 62%),
    radial-gradient(900px 520px at 88% 60px, rgba(24, 160, 144, 0.12), rgba(24, 160, 144, 0) 60%),
    linear-gradient(180deg, #f4eef8 0, #eef7f6 300px, #f6f8fb 700px);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p,
figure,
blockquote,
figcaption {
  margin: 0;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.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;
}

/* ---- Animations ---- */
@keyframes cadFade {
  from {
    opacity: 0;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cadPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

@keyframes cadMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes cadRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  padding: 14px 26px;
  font-size: 15.5px;
  box-shadow: 0 8px 20px rgba(24, 160, 144, 0.3);
}

.btn--primary:hover {
  background: var(--green-dark);
}

.btn--ghost {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  gap: 9px;
}

.btn--outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 15px 26px;
  font-size: 16px;
}

.btn--light {
  background: var(--white);
  color: var(--green-dark);
  padding: 15px 28px;
  font-size: 16px;
}

.btn--sm {
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
}

.btn__play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line-3);
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 11px;
}

.btn__plus {
  font-size: 1.1em;
  line-height: 1;
}

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.brand__mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.brand__name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--purple);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}

.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.15s ease;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--ink);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav__link-text {
  font-size: 14px;
  font-weight: 600;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.is-open .nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  padding: 64px 0 28px;
  text-align: center;
  animation: cadRise 0.7s ease both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.625rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.6px;
  margin: 0 auto 22px;
  max-width: 760px;
}

.hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 auto 32px;
  max-width: 600px;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- Product demo ---- */
.demo {
  padding: 24px 0 0;
}

.demo__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.demo__tab {
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  background: #eef2f7;
  color: var(--muted);
  transition: background 0.3s, color 0.3s;
}

.demo__tab.is-active {
  background: var(--green);
  color: var(--white);
}

.demo__shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.demo__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line-2);
  flex-wrap: wrap;
}

.demo__bar-date {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
}

.demo__bar-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-2);
}

.demo__bar-spacer {
  flex: 1;
}

.demo__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  color: var(--green-dark);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
}

.demo__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.demo__create {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
}

.demo__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d7e3f7;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
}

.demo__body {
  display: flex;
  align-items: stretch;
  position: relative;
  min-height: 560px;
}

.demo__calendar {
  flex: 1;
  min-width: 0;
}

.demo__panel {
  width: 330px;
  flex: none;
  border-left: 1px solid var(--line-2);
  background: var(--bg-warm);
  display: flex;
  flex-direction: column;
}

.panel__head {
  padding: 16px 18px 14px;
  border-bottom: 1px solid #eef0f0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.panel__title {
  font-size: 14px;
  font-weight: 700;
}

.panel__badge {
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--white);
  background: var(--red);
  border-radius: 20px;
  padding: 3px 9px;
}

.panel__section {
  padding: 16px 18px;
  border-bottom: 1px solid #eef0f0;
}

.panel__section:last-child {
  border-bottom: none;
}

.panel__label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 11px;
}

.panel__label {
  font-size: 12.5px;
  font-weight: 700;
  color: #56544e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pill {
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}

.pill--danger {
  color: var(--red-dark);
  background: var(--red-soft);
}

.pill--warn {
  color: var(--amber-dark);
  background: var(--amber-soft);
}

.panel__metric {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 14px;
}

.panel__metric strong {
  font-size: 34px;
  font-weight: 800;
  line-height: 0.9;
}

.panel__metric span {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-2);
  margin-bottom: 2px;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 56px;
}

.bars__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.bars__col i {
  display: block;
  width: 100%;
  border-radius: 3px;
}

.bars__col span {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted-2);
}

.bars__col--warn span {
  color: var(--amber-dark);
}

.bars__col--danger span {
  color: var(--red-dark);
  font-weight: 700;
}

.bars__col--ok span {
  color: var(--green);
}

.amp-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.amp-value strong {
  font-size: 21px;
  font-weight: 800;
}

.amp-value span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted-2);
}

.amp-bar {
  position: relative;
  height: 8px;
  background: var(--line-2);
  border-radius: 20px;
  margin-bottom: 7px;
}

.amp-bar__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 78%;
  background: var(--amber);
  border-radius: 20px;
}

.amp-bar__mark {
  position: absolute;
  left: 64%;
  top: -3px;
  bottom: -3px;
  width: 2px;
  background: #56544e;
}

.amp-hint {
  font-size: 11px;
  color: var(--muted-3);
  font-weight: 500;
}

.replan {
  border: 1px solid #f1d9d6;
  background: #fdf6f5;
  border-radius: 10px;
  padding: 12px;
}

.replan__top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}

.replan__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.replan__top strong {
  font-size: 13.5px;
}

.replan__top span {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--red-dark);
}

.replan p {
  font-size: 12.5px;
  color: #56544e;
  line-height: 1.45;
  margin-bottom: 11px;
}

.replan .btn {
  display: inline-flex;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 8px;
}

/* Calendar mock */
.cal {
  display: flex;
  flex-direction: column;
  height: 560px;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  position: relative;
}

.cal__toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line-2);
  flex: none;
  flex-wrap: wrap;
}

.cal__nav-btns {
  display: flex;
  gap: 4px;
}

.cal__nav-btns span {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 17px;
}

.cal__today {
  padding: 5px 12px;
  border: 1px solid var(--line-3);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}

.cal__range {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.cal__views {
  margin-left: auto;
  display: flex;
  border: 1px solid var(--line-3);
  border-radius: 8px;
  overflow: hidden;
  font-size: 12.5px;
  font-weight: 600;
}

.cal__views span {
  padding: 6px 13px;
  color: var(--muted);
}

.cal__views span.is-active {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.cal__days {
  display: flex;
  border-bottom: 1px solid var(--line-2);
  flex: none;
}

.cal__gutter-label {
  width: 56px;
  flex: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
  font-size: 10px;
  color: var(--muted-2);
  font-weight: 500;
}

.cal__day {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 0 9px;
  border-left: 1px solid #f0f2f4;
}

.cal__day-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.4px;
}

.cal__day-num {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink-2);
}

.cal__day-num.is-today {
  color: var(--white);
  background: var(--blue);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.cal__day-meta {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  background: #f1f3f5;
  border-radius: 20px;
  padding: 2px 8px;
}

.cal__day--warn .cal__day-meta {
  color: var(--amber-dark);
  background: var(--amber-soft);
}

.cal__day--danger {
  background: #fdf3f2;
}

.cal__day--danger .cal__day-name {
  color: var(--red-dark);
}

.cal__day--danger .cal__day-num {
  color: #b32b22;
}

.cal__day--danger .cal__day-meta {
  color: var(--white);
  background: var(--red);
  font-weight: 700;
}

.cal__day--ok .cal__day-meta {
  color: var(--green);
  background: var(--green-soft);
}

.cal__grid-wrap {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.cal__times {
  width: 56px;
  flex: none;
}

.cal__times div {
  height: 48px;
  position: relative;
}

.cal__times span {
  position: absolute;
  top: -7px;
  right: 8px;
  font-size: 10.5px;
  color: var(--muted-2);
  font-weight: 500;
}

.cal__cols {
  flex: 1;
  position: relative;
  background: repeating-linear-gradient(#fff 0 47px, #f1f3f5 47px 48px);
  display: flex;
  height: 528px;
}

.cal__col {
  flex: 1;
  position: relative;
  border-left: 1px solid #f0f2f4;
}

.cal__col--danger {
  background: rgba(214, 64, 52, 0.05);
}

.evt {
  position: absolute;
  left: 4px;
  right: 4px;
  border-radius: 6px;
  padding: 5px 7px;
  overflow: hidden;
  box-shadow: inset 3px 0 0 var(--blue);
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.evt--violet {
  background: var(--purple-soft);
  color: var(--purple-text);
  box-shadow: inset 3px 0 0 var(--purple);
}

.evt--amber {
  background: var(--amber-soft);
  color: var(--amber-dark);
  box-shadow: inset 3px 0 0 #e08a00;
}

.evt strong {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.2;
}

.evt span {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.8;
}

.evt--sm {
  padding: 3px 7px;
}

.evt--sm strong {
  font-size: 11px;
  line-height: 1.1;
}

.now-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 352px;
  height: 0;
  border-top: 2px solid #ea4335;
  z-index: 5;
}

.now-line::before {
  content: "";
  position: absolute;
  left: -4px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ea4335;
}

/* Overlays */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  animation: cadFade 0.45s ease;
  padding: 16px;
}

.overlay.is-visible {
  display: flex;
}

.overlay--modal {
  background: rgba(28, 30, 36, 0.4);
}

.overlay--dash {
  background: rgba(246, 248, 251, 0.55);
}

.modal {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.3);
  overflow: hidden;
}

.modal--wide {
  max-width: 610px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.22);
}

.modal__head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-bottom: 1px solid #eef0f0;
}

.modal__head strong {
  font-size: 13px;
  font-weight: 700;
}

.modal__head .modal__sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-2);
}

.modal__close {
  margin-left: auto;
  font-size: 16px;
  color: var(--muted-2);
}

.modal__body {
  padding: 20px;
}

.modal__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red-soft);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  animation: cadPulse 1.8s ease-in-out infinite;
}

.modal__icon i {
  width: 5px;
  height: 18px;
  background: var(--red);
  border-radius: 3px;
}

.modal__body h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.modal__body > p {
  font-size: 13px;
  line-height: 1.5;
  color: #56544e;
  margin-bottom: 16px;
}

.slots-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.slots {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
  position: relative;
}

.slots__cursor {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc((100% - 14px) / 3);
  border: 1.5px solid var(--green);
  background: rgba(24, 160, 144, 0.1);
  border-radius: 9px;
  transition: transform 0.5s var(--ease);
  z-index: 3;
  pointer-events: none;
}

.slot {
  flex: 1;
  text-align: center;
  border: 1px solid var(--line-2);
  background: var(--white);
  border-radius: 9px;
  padding: 8px 4px;
}

.slot strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
}

.slot span {
  font-size: 10px;
  color: var(--muted-2);
  font-weight: 500;
}

.modal__actions {
  display: flex;
  gap: 9px;
}

.modal__actions .btn--primary {
  flex: 1;
  padding: 10px;
  font-size: 13px;
  border-radius: 9px;
  box-shadow: none;
}

.modal__actions .btn--secondary {
  color: #56544e;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border: 1px solid var(--line-3);
  border-radius: 9px;
}

/* Dashboard overlay */
.dash-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.dash-score {
  width: 150px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ring {
  width: 54px;
  height: 54px;
  flex: none;
  border-radius: 50%;
  background: conic-gradient(#e8920c 0 58%, #f0eee9 58% 100%);
  display: grid;
  place-items: center;
}

.ring__inner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ring__inner strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.ring__inner span {
  font-size: 8px;
  font-weight: 600;
  color: var(--muted-2);
}

.dash-score__label {
  font-size: 11.5px;
  font-weight: 700;
  color: #56544e;
}

.dash-score__hint {
  font-size: 10.5px;
  color: var(--amber-dark);
  font-weight: 600;
  margin-top: 2px;
}

.dash-card {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.dash-card__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-3);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.dash-card__value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 5px;
}

.dash-card__value strong {
  font-size: 25px;
  font-weight: 800;
  line-height: 0.9;
}

.dash-card__value em {
  font-style: normal;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--red-dark);
}

.dash-card__meta {
  font-size: 11px;
  color: var(--muted-2);
  font-weight: 500;
  margin-top: 4px;
}

.habits {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.habit {
  flex: 1;
}

.habit__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.habit__row strong {
  font-size: 12.5px;
}

.habit__row span {
  font-size: 11.5px;
  font-weight: 700;
}

.habit__row span.bad {
  color: var(--red-dark);
}

.habit__row span.warn {
  color: var(--amber-dark);
}

.habit__row span.ok {
  color: var(--green);
}

.habit__bar {
  height: 6px;
  background: var(--line-2);
  border-radius: 20px;
  overflow: hidden;
}

.habit__bar i {
  display: block;
  height: 100%;
}

.suggestions {
  background: #f1f9f6;
  border: 1px solid #d7ece3;
  border-radius: 12px;
  padding: 13px 15px;
}

.suggestions__title {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 9px;
}

.suggestions li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--ink-2);
  margin-bottom: 7px;
}

.suggestions li:last-child {
  margin-bottom: 0;
}

.suggestions li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

/* ---- Trust ---- */
.trust {
  padding: 48px 0 8px;
  text-align: center;
}

.trust__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.trust__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.trust__logos span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.trust__logos span:nth-child(2) {
  font-weight: 700;
  letter-spacing: 0;
}

.trust__logos span:nth-child(3) {
  letter-spacing: 1px;
}

.trust__logos span:nth-child(5) {
  font-weight: 600;
}

/* ---- Sections ---- */
.section {
  padding: 80px 0 0;
}

.section__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section__intro h2,
.section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.375rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px -18px rgba(16, 24, 40, 0.26);
}

.feature--blue:hover {
  border-color: #cdd9f5;
}

.feature--amber:hover {
  border-color: #f3cf99;
}

.feature--red:hover {
  border-color: #f1c4bf;
}

.feature--green:hover {
  border-color: var(--green-border);
}

.feature__glow {
  position: absolute;
  top: -44px;
  right: -44px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  pointer-events: none;
}

.feature--blue .feature__glow {
  background: radial-gradient(circle, rgba(47, 109, 240, 0.12), rgba(47, 109, 240, 0) 70%);
}

.feature--amber .feature__glow {
  background: radial-gradient(circle, rgba(232, 146, 12, 0.12), rgba(232, 146, 12, 0) 70%);
}

.feature--red .feature__glow {
  background: radial-gradient(circle, rgba(214, 64, 52, 0.12), rgba(214, 64, 52, 0) 70%);
}

.feature--green .feature__glow {
  background: radial-gradient(circle, rgba(24, 160, 144, 0.12), rgba(24, 160, 144, 0) 70%);
}

.feature__top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.feature__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature--blue .feature__icon {
  background: var(--blue-soft);
  align-items: flex-end;
  gap: 3.5px;
  padding-bottom: 14px;
}

.feature--blue .feature__icon i {
  width: 4px;
  border-radius: 2px;
  background: var(--blue);
}

.feature--blue .feature__icon i:nth-child(1) {
  height: 10px;
}

.feature--blue .feature__icon i:nth-child(2) {
  height: 16px;
}

.feature--blue .feature__icon i:nth-child(3) {
  height: 22px;
  background: var(--red);
}

.feature--amber .feature__icon {
  background: var(--amber-soft);
}

.feature--amber .feature__icon i {
  position: relative;
  width: 24px;
  height: 9px;
  background: #f3cf99;
  border-radius: 20px;
}

.feature--amber .feature__icon i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 78%;
  background: var(--amber);
  border-radius: 20px;
}

.feature--red .feature__icon {
  background: var(--red-soft);
}

.feature--red .feature__icon i {
  width: 20px;
  height: 20px;
  border: 2.5px solid var(--red);
  border-radius: 6px;
  position: relative;
}

.feature--red .feature__icon i::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 7px;
  right: -4px;
  height: 2.5px;
  background: var(--red);
  transform: rotate(-45deg);
}

.feature--green .feature__icon {
  background: var(--green-soft);
}

.feature--green .feature__icon i {
  width: 20px;
  height: 20px;
  border: 2.5px solid var(--green);
  border-radius: 50%;
  position: relative;
}

.feature--green .feature__icon i::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 3.5px;
  width: 2.5px;
  height: 7px;
  background: var(--green);
  border-radius: 2px;
}

.feature--green .feature__icon i::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  width: 6px;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px;
}

.feature h3 {
  position: relative;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 9px;
}

.feature p {
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.feature__foot {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f0f2f4;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-2);
}

.feature__foot strong {
  margin-left: auto;
  font-size: 12.5px;
  font-weight: 800;
}

.feature--blue .feature__foot strong {
  color: var(--blue);
}

.feature--amber .feature__foot strong {
  color: var(--amber);
}

.feature--red .feature__foot strong {
  color: var(--red);
}

.feature--green .feature__foot strong {
  color: var(--green);
}

/* Blocking showcase */
.showcase {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.showcase__copy {
  padding: 48px;
}

.showcase__copy h2 {
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.showcase__copy > p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  color: var(--ink-2);
}

.checklist i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  flex: none;
}

.showcase__visual {
  background: #eef2f7;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase__visual .modal {
  max-width: 380px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.16);
}

/* How it works */
.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.how h2 {
  margin-bottom: 30px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.step {
  display: flex;
  gap: 15px;
}

.step__num {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 9px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.step strong {
  display: block;
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

.rules {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 22px;
}

.rules__head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 700;
}

.rules__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rule {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 11px;
  transition: border-color 0.3s;
}

.rule.is-on {
  border-color: var(--green-border);
}

.rule__copy {
  flex: 1;
}

.rule__copy strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

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

.rule.is-on .rule__copy span {
  color: var(--green-dark);
}

.rule__value {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
}

.rule__value--time {
  font-size: 15px;
  color: var(--ink);
}

.toggle {
  width: 42px;
  height: 24px;
  border-radius: 20px;
  background: #c8cdd2;
  position: relative;
  transition: background 0.3s;
  flex: none;
}

.toggle.is-on {
  background: var(--green);
}

.toggle i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.35s var(--ease);
}

.toggle.is-on i {
  transform: translateX(18px);
}

/* Testimonials */
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.marquee__track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 6px 0;
  animation: cadMarquee 56s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.card-quote {
  width: min(340px, 80vw);
  flex: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.card-quote__stars {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 14px;
}

.card-quote__stars .dim {
  color: var(--line-3);
}

.card-quote blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  flex: 1;
}

.card-quote figcaption {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
  flex: none;
}

.avatar--blue {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.avatar--violet {
  background: var(--purple-soft);
  color: var(--purple-text);
}

.avatar--green {
  background: var(--green-soft);
  color: var(--green-dark);
}

.avatar--amber {
  background: var(--amber-soft);
  color: var(--amber-dark);
}

.card-quote figcaption strong {
  display: block;
  font-size: 14px;
}

.card-quote figcaption span {
  font-size: 12.5px;
  color: var(--muted);
}

/* Final CTA */
.cta {
  padding: 80px 0;
}

.cta__box {
  background: linear-gradient(135deg, var(--purple-dark), var(--green));
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta__box::before,
.cta__box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.cta__box::before {
  top: -50px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-width: 36px;
}

.cta__box::after {
  bottom: -70px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-width: 42px;
  border-color: rgba(255, 255, 255, 0.06);
}

.cta__box h2 {
  position: relative;
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  color: var(--white);
}

.cta__box p {
  position: relative;
  font-size: 17px;
  color: #bcd9cd;
  max-width: 540px;
  margin: 0 auto 30px;
  line-height: 1.55;
}

.cta__actions {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer__inner {
  padding: 36px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer__brand strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--purple);
}

.footer__brand em {
  font-style: normal;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted-2);
  margin-left: 2px;
}

.footer__copy {
  font-size: 13px;
  color: var(--muted-2);
  margin-left: 6px;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer__links a:hover {
  color: var(--ink);
}

/* Legal pages */
.page {
  background: var(--white);
  min-height: calc(100vh - 180px);
}

.page__hero {
  padding: 56px 0 32px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #eef3fb, #fff);
}

.page__hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.page__hero p {
  color: var(--muted);
  font-size: 16px;
}

.page__content {
  padding: 48px 0 80px;
  max-width: 720px;
}

.page__content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 36px 0 12px;
}

.page__content p,
.page__content li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
}

.page__content ul {
  padding-left: 1.2rem;
  list-style: disc;
  margin-bottom: 16px;
}

.download__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  margin: 0 0 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.download__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.download__brand img {
  flex: none;
}

.download__brand strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.download__brand span {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.download__steps {
  margin: 0 0 28px;
  padding-left: 1.2em;
  display: grid;
  gap: 12px;
}

.download__steps li {
  padding-left: 4px;
}

.download__steps strong {
  font-weight: 700;
  color: var(--ink);
}

.page__content code {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: 0.92em;
  background: var(--green-soft);
  color: var(--green-deep);
  padding: 0.12em 0.4em;
  border-radius: 6px;
}

.page__content a {
  color: var(--green-dark);
  text-decoration: underline;
}

/* Form */
.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  max-width: 480px;
  margin-inline: auto;
  text-align: left;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.lead-form input,
.lead-form textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line-3);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(24, 160, 144, 0.35);
  border-color: var(--green);
}

.form-alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.form-alert--ok {
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid var(--green-border);
}

.form-alert--err {
  background: var(--red-soft);
  color: var(--red-dark);
  border: 1px solid #f1d9d6;
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .demo__panel {
    display: none;
  }

  .demo__body {
    min-height: 480px;
  }

  .cal {
    height: 480px;
  }

  .how {
    gap: 36px;
  }

  .dash-stats {
    flex-wrap: wrap;
  }

  .dash-score {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .nav__links,
  .nav__actions .nav__link-text {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 18px 16px 22px;
    gap: 16px;
    align-items: flex-start;
    margin: 0;
    box-shadow: var(--shadow-md);
  }

  .hero {
    padding: 52px 0 16px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero__lead {
    font-size: 16.5px;
  }

  .features,
  .showcase,
  .how {
    grid-template-columns: 1fr;
  }

  .showcase__copy,
  .showcase__visual {
    padding: 30px 22px;
  }

  .section {
    padding: 52px 0 0;
  }

  .cta {
    padding: 52px 0;
  }

  .cta__box {
    padding: 44px 22px;
  }

  .trust__logos {
    gap: 28px;
  }

  .cal__gutter-label,
  .cal__times,
  .cal__views,
  .cal__today {
    display: none;
  }

  .cal__day-meta {
    display: none;
  }

  .cal__day-num {
    font-size: 16px;
  }

  .evt span {
    display: none;
  }

  .evt strong {
    font-size: 10.5px;
  }

  .habits {
    flex-direction: column;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer__links {
    margin-left: 0;
    gap: 16px;
  }

  .footer__copy {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav__actions .btn--sm {
    padding: 9px 12px;
    font-size: 13px;
  }

  .demo__tab {
    font-size: 11.5px;
    padding: 6px 12px;
  }

  .demo__bar-title,
  .demo__create,
  .demo__avatar {
    display: none;
  }

  .modal--wide {
    max-width: 100%;
  }

  .dash-stats {
    flex-direction: column;
  }
}

/* ---- Installer ---- */
.install-body {
  min-height: 100vh;
  background:
    radial-gradient(900px 420px at 20% -10%, rgba(24, 160, 144, 0.14), transparent 60%),
    radial-gradient(800px 400px at 100% 0%, rgba(47, 109, 240, 0.12), transparent 55%),
    linear-gradient(180deg, #e9f0fb, #f6f8fb 50%, #fff);
}

.install {
  width: min(100% - 32px, 760px);
  margin: 40px auto 64px;
}

.install__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 32px clamp(20px, 4vw, 40px) 28px;
}

.install__header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.install__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.install__header h1 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}

.install__lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.install__lead code,
.install__foot code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: #f1f3f5;
  padding: 1px 6px;
  border-radius: 6px;
}

.install__form fieldset {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 14px;
  margin: 0 0 16px;
}

.install__form legend {
  padding: 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--ink-2);
}

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

.install__form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
}

.install__form input[type="text"],
.install__form input[type="url"],
.install__form input[type="email"],
.install__form input[type="password"],
.install__form select {
  font: inherit;
  font-weight: 500;
  padding: 11px 12px;
  border: 1px solid var(--line-3);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  width: 100%;
}

.install__form input:focus,
.install__form select:focus {
  outline: 2px solid rgba(24, 160, 144, 0.3);
  border-color: var(--green);
}

.install__check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: 600 !important;
  grid-template-columns: none !important;
  padding-top: 28px;
}

.install__check input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.install__check--block {
  padding: 4px 2px 18px;
}

.install__test {
  margin-top: 14px;
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.install__actions {
  display: flex;
  justify-content: flex-end;
}

.install__actions .btn {
  width: 100%;
  padding: 15px 22px;
}

.install__foot {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.5;
}

.install .form-alert {
  margin-bottom: 16px;
}

.install .form-alert ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
}

.install .form-alert li,
.install .form-alert p {
  margin: 0 0 4px;
}

.install .form-alert li:last-child,
.install .form-alert p:last-child {
  margin-bottom: 0;
}

.flash-banner {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
}

.flash-banner--ok {
  background: var(--green-soft);
  color: var(--green-dark);
}

.flash-banner--warn {
  background: var(--amber-soft);
  color: var(--amber-dark);
}

.flash-banner--err {
  background: var(--red-soft);
  color: var(--red-dark);
}

@media (max-width: 700px) {
  .install__grid {
    grid-template-columns: 1fr;
  }

  .install__check {
    padding-top: 4px;
  }

  .install__header {
    flex-direction: column;
  }
}
