/*
 * Hobbsless — alternative landing page theme ("Instrument Panel")
 * Used only by views/landing-new.pug (route: /new).
 * Dark, hardware-forward look: hairline panels, mono readouts, amber backlight.
 * Loaded after core.css; everything is scoped under body.hl-panel so nothing
 * here can leak into the Vuexy app pages.
 */

body.hl-panel {
  --hl-bg: #0a0d12;
  --hl-bg-alt: #0e1218;
  --hl-panel: #12171f;
  --hl-panel-hi: #171d27;
  --hl-line: rgba(255, 255, 255, 0.09);
  --hl-line-hi: rgba(255, 255, 255, 0.18);
  --hl-text: #e8ecf3;
  --hl-muted: #8e99ad;
  --hl-amber: #ffb340;
  --hl-amber-dim: rgba(255, 179, 64, 0.14);
  --hl-cyan: #4fd6c8;
  --hl-red: #ff6b5e;
  --hl-nav-h: 68px;
  --hl-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --hl-display: "Space Grotesk", "Public Sans", system-ui, sans-serif;
  --hl-body: "Inter", system-ui, -apple-system, sans-serif;

  background-color: var(--hl-bg);
  color: var(--hl-text);
  font-family: var(--hl-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.hl-panel h1,
body.hl-panel h2,
body.hl-panel h3,
body.hl-panel h4,
body.hl-panel h5,
body.hl-panel h6 {
  font-family: var(--hl-display);
  color: var(--hl-text);
  letter-spacing: -0.02em;
  font-weight: 600;
}

body.hl-panel p {
  color: var(--hl-muted);
}

body.hl-panel a {
  color: var(--hl-text);
  text-decoration: none;
}

body.hl-panel a:hover {
  color: var(--hl-amber);
}

body.hl-panel ::selection {
  background: var(--hl-amber);
  color: #0a0d12;
}

/* ---------------------------------------------------------------- helpers */

.hl-panel .hl-wrap {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.hl-panel .hl-section {
  padding-block: clamp(4rem, 9vw, 7.5rem);
  position: relative;
}

.hl-panel .hl-rule {
  border-top: 1px solid var(--hl-line);
}

/* Small uppercase mono label that heads every section */
.hl-panel .hl-eyebrow {
  font-family: var(--hl-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hl-amber);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.hl-panel .hl-eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--hl-amber);
  opacity: 0.7;
}

.hl-panel .hl-h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hl-panel .hl-lede {
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 0;
}

.hl-panel .hl-mono {
  font-family: var(--hl-mono);
  font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------------ buttons */

.hl-panel .hl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--hl-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--hl-line-hi);
  border-radius: 2px;
  background: transparent;
  color: var(--hl-text);
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.hl-panel .hl-btn:hover {
  border-color: var(--hl-amber);
  color: var(--hl-amber);
  transform: translateY(-1px);
}

.hl-panel .hl-btn-primary {
  background: var(--hl-amber);
  border-color: var(--hl-amber);
  color: #0a0d12;
  font-weight: 600;
}

.hl-panel .hl-btn-primary:hover {
  background: #ffc46b;
  border-color: #ffc46b;
  color: #0a0d12;
}

.hl-panel .hl-btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
}

/* ------------------------------------------------------------------- navbar */

.hl-panel .hl-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 13, 18, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hl-line);
}

.hl-panel .hl-nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--hl-nav-h);
}

/*
 * Toasts. core.css overrides Bootstrap's --bs-toast-zindex down to 8, which is
 * below the sticky navbar (z-index 60) and leaves the toast stuck behind the
 * header. Lift it back over the navbar and drop it clear of the header bar.
 */
.hl-panel .hl-toasts {
  /* Beats Bootstrap's .top-0 utility, which is itself !important. */
  top: calc(var(--hl-nav-h) + 0.5rem) !important;
  z-index: 1095;
}

.hl-panel .hl-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--hl-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--hl-text);
}

.hl-panel .hl-brand img {
  height: 30px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 3px;
  box-sizing: content-box;
}

.hl-panel .hl-nav-links {
  display: flex;
  gap: 2rem;
  margin: 0 auto 0 1rem;
  padding: 0;
  list-style: none;
}

.hl-panel .hl-nav-links a {
  font-family: var(--hl-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hl-muted);
}

.hl-panel .hl-nav-links a:hover {
  color: var(--hl-text);
}

.hl-panel .hl-nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--hl-text);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.25rem;
}

.hl-panel .hl-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

@media (max-width: 991.98px) {
  .hl-panel .hl-nav-links {
    display: none;
  }
  .hl-panel .hl-nav-links.is-open {
    display: flex;
    position: absolute;
    inset: var(--hl-nav-h) 0 auto;
    flex-direction: column;
    gap: 0;
    margin: 0;
    background: var(--hl-bg-alt);
    border-bottom: 1px solid var(--hl-line);
  }
  .hl-panel .hl-nav-links.is-open li {
    border-top: 1px solid var(--hl-line);
  }
  .hl-panel .hl-nav-links.is-open a {
    display: block;
    padding: 1rem 1.5rem;
  }
  .hl-panel .hl-nav-toggle {
    display: block;
    order: -1;
  }
  .hl-panel .hl-nav-inner {
    gap: 1rem;
  }
  .hl-panel .hl-nav-actions .hl-btn-primary {
    display: none;
  }
}

/* --------------------------------------------------------------------- hero */

.hl-panel .hl-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(3rem, 7vw, 5.5rem);
}

/* Faint engineering grid, faded out toward the edges */
.hl-panel .hl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(
    ellipse 75% 65% at 50% 25%,
    #000 20%,
    transparent 78%
  );
  mask-image: radial-gradient(
    ellipse 75% 65% at 50% 25%,
    #000 20%,
    transparent 78%
  );
  pointer-events: none;
}

/* Amber backlight bloom behind the gauge */
.hl-panel .hl-hero::after {
  content: "";
  position: absolute;
  top: -12%;
  right: -5%;
  width: 46rem;
  height: 46rem;
  background: radial-gradient(
    circle,
    rgba(255, 179, 64, 0.13) 0%,
    transparent 62%
  );
  pointer-events: none;
}

.hl-panel .hl-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

@media (max-width: 991.98px) {
  .hl-panel .hl-hero-grid {
    grid-template-columns: 1fr;
  }
}

.hl-panel .hl-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--hl-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hl-cyan);
  border: 1px solid rgba(79, 214, 200, 0.35);
  border-radius: 2px;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1.75rem;
}

.hl-panel .hl-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hl-cyan);
  box-shadow: 0 0 0 0 rgba(79, 214, 200, 0.6);
  animation: hl-pulse 2.4s ease-out infinite;
}

@keyframes hl-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 214, 200, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(79, 214, 200, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 214, 200, 0);
  }
}

.hl-panel .hl-hero-title {
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}

.hl-panel .hl-hero-title em {
  font-style: normal;
  color: var(--hl-amber);
}

.hl-panel .hl-hero-sub {
  font-size: 1.1rem;
  max-width: 52ch;
  margin-bottom: 2.25rem;
}

.hl-panel .hl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hl-panel .hl-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  font-family: var(--hl-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hl-muted);
}

.hl-panel .hl-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hl-panel .hl-hero-meta i {
  color: var(--hl-cyan);
}

/* ------------------------------------------------------------- hero gauge */

.hl-panel .hl-gauge {
  position: relative;
  background:
    linear-gradient(180deg, var(--hl-panel-hi), var(--hl-panel)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent) border-box;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 1.75rem;
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hl-panel .hl-gauge-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--hl-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hl-muted);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--hl-line);
}

.hl-panel .hl-gauge-live {
  color: var(--hl-cyan);
}

.hl-panel .hl-gauge-dial {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
}

.hl-panel .hl-gauge-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 10;
  stroke-linecap: round;
}

.hl-panel .hl-gauge-fill {
  fill: none;
  stroke: url(#hlGaugeGrad);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  filter: drop-shadow(0 0 8px rgba(255, 179, 64, 0.45));
  animation: hl-sweep 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

@keyframes hl-sweep {
  to {
    stroke-dashoffset: 96;
  }
}

.hl-panel .hl-gauge-readout {
  text-align: center;
  margin-top: -3.25rem;
  margin-bottom: 1.5rem;
}

.hl-panel .hl-gauge-value {
  font-family: var(--hl-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.4rem, 6vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
  color: var(--hl-amber);
  text-shadow: 0 0 24px rgba(255, 179, 64, 0.35);
}

.hl-panel .hl-gauge-unit {
  font-family: var(--hl-mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--hl-muted);
  margin-top: 0.5rem;
}

/* Maintenance rows inside the gauge panel */
.hl-panel .hl-gauge-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hl-line);
}

.hl-panel .hl-gauge-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--hl-line);
  font-size: 0.875rem;
}

.hl-panel .hl-gauge-list li:last-child {
  border-bottom: 0;
}

.hl-panel .hl-gauge-list .hl-item {
  flex: 1;
  color: var(--hl-text);
}

.hl-panel .hl-tag {
  font-family: var(--hl-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  white-space: nowrap;
}

.hl-panel .hl-tag-ok {
  color: var(--hl-cyan);
  background: rgba(79, 214, 200, 0.12);
}

.hl-panel .hl-tag-due {
  color: var(--hl-amber);
  background: var(--hl-amber-dim);
}

.hl-panel .hl-tag-over {
  color: var(--hl-red);
  background: rgba(255, 107, 94, 0.13);
}

/* ------------------------------------------------------------- stat strip */

.hl-panel .hl-strip {
  border-block: 1px solid var(--hl-line);
  background: var(--hl-bg-alt);
}

.hl-panel .hl-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hl-panel .hl-strip-cell {
  padding: 2rem 1.5rem;
  border-left: 1px solid var(--hl-line);
}

.hl-panel .hl-strip-cell:first-child {
  border-left: 0;
  padding-left: 0;
}

.hl-panel .hl-strip-k {
  font-family: var(--hl-mono);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--hl-text);
  line-height: 1.2;
}

.hl-panel .hl-strip-v {
  font-family: var(--hl-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hl-muted);
  margin-top: 0.35rem;
}

@media (max-width: 767.98px) {
  .hl-panel .hl-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hl-panel .hl-strip-cell:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
  .hl-panel .hl-strip-cell:nth-child(n + 3) {
    border-top: 1px solid var(--hl-line);
  }
}

/* ------------------------------------------------------------ steps / how */

.hl-panel .hl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid var(--hl-line);
  border-radius: 3px;
  overflow: hidden;
}

.hl-panel .hl-step {
  padding: 2.25rem;
  border-left: 1px solid var(--hl-line);
  background: var(--hl-panel);
  transition: background-color 0.2s ease;
}

.hl-panel .hl-step:first-child {
  border-left: 0;
}

.hl-panel .hl-step:hover {
  background: var(--hl-panel-hi);
}

.hl-panel .hl-step-n {
  font-family: var(--hl-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--hl-amber);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hl-panel .hl-step-n::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hl-line);
}

.hl-panel .hl-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.hl-panel .hl-step p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .hl-panel .hl-steps {
    grid-template-columns: 1fr;
  }
  .hl-panel .hl-step {
    border-left: 0;
    border-top: 1px solid var(--hl-line);
  }
  .hl-panel .hl-step:first-child {
    border-top: 0;
  }
}

/* ------------------------------------------------------------- feature grid */

.hl-panel .hl-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hl-line);
  border: 1px solid var(--hl-line);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 3.5rem;
}

.hl-panel .hl-feature {
  background: var(--hl-bg);
  padding: 2.25rem;
  position: relative;
  transition: background-color 0.2s ease;
}

.hl-panel .hl-feature:hover {
  background: var(--hl-panel);
}

.hl-panel .hl-feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hl-line-hi);
  border-radius: 3px;
  color: var(--hl-amber);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.hl-panel .hl-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.hl-panel .hl-feature p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .hl-panel .hl-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .hl-panel .hl-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------ reasons */

.hl-panel .hl-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.hl-panel .hl-reason {
  border-top: 2px solid var(--hl-amber);
  padding-top: 1.5rem;
}

.hl-panel .hl-reason:nth-child(2) {
  border-top-color: var(--hl-cyan);
}

.hl-panel .hl-reason:nth-child(3) {
  border-top-color: #7f8ea3;
}

.hl-panel .hl-reason-k {
  font-family: var(--hl-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hl-muted);
  margin-bottom: 1rem;
}

.hl-panel .hl-reason h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.hl-panel .hl-reason p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .hl-panel .hl-reasons {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* -------------------------------------------------------------- pilot cards */

.hl-panel .hl-pilots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.hl-panel .hl-pilot {
  border: 1px solid var(--hl-line);
  border-radius: 3px;
  padding: 2rem;
  background: linear-gradient(
    180deg,
    var(--hl-panel) 0%,
    rgba(18, 23, 31, 0.4) 100%
  );
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.hl-panel .hl-pilot:hover {
  border-color: var(--hl-line-hi);
  transform: translateY(-3px);
}

.hl-panel .hl-pilot-icon {
  font-size: 1.6rem;
  color: var(--hl-amber);
  margin-bottom: 1.25rem;
  display: block;
}

.hl-panel .hl-pilot h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.hl-panel .hl-pilot p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .hl-panel .hl-pilots {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------- faq + signup */

.hl-panel .hl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 991.98px) {
  .hl-panel .hl-split {
    grid-template-columns: 1fr;
  }
}

.hl-panel .hl-faq {
  border-top: 1px solid var(--hl-line);
  margin-top: 2.5rem;
}

.hl-panel .hl-faq-item {
  border-bottom: 1px solid var(--hl-line);
}

.hl-panel .hl-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: 0;
  color: var(--hl-text);
  font-family: var(--hl-display);
  font-size: 1rem;
  font-weight: 500;
  padding: 1.25rem 0;
  transition: color 0.18s ease;
}

.hl-panel .hl-faq-q:hover {
  color: var(--hl-amber);
}

.hl-panel .hl-faq-q .hl-faq-mark {
  flex: none;
  font-family: var(--hl-mono);
  color: var(--hl-amber);
  transition: transform 0.25s ease;
}

.hl-panel .hl-faq-q[aria-expanded="true"] .hl-faq-mark {
  transform: rotate(45deg);
}

.hl-panel .hl-faq-a {
  color: var(--hl-muted);
  font-size: 0.93rem;
  padding-bottom: 1.35rem;
  max-width: 58ch;
}

/* Signup panel */
.hl-panel .hl-signup {
  border: 1px solid var(--hl-line-hi);
  border-radius: 3px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 179, 64, 0.1) 0%,
      transparent 55%
    ),
    var(--hl-panel);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: 2.5rem;
}

.hl-panel .hl-signup h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.hl-panel .hl-signup p {
  font-size: 0.95rem;
}

.hl-panel .hl-field {
  display: flex;
  gap: 0.5rem;
  margin: 1.75rem 0 1rem;
}

.hl-panel .hl-field input {
  flex: 1;
  min-width: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--hl-line-hi);
  border-radius: 2px;
  color: var(--hl-text);
  font-family: var(--hl-mono);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.18s ease;
}

.hl-panel .hl-field input::placeholder {
  color: #6b7688;
}

.hl-panel .hl-field input:focus {
  outline: none;
  border-color: var(--hl-amber);
  box-shadow: 0 0 0 3px rgba(255, 179, 64, 0.12);
}

.hl-panel .hl-signup-note {
  font-size: 0.8rem;
  color: var(--hl-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0;
}

.hl-panel .hl-signup-note i {
  color: var(--hl-cyan);
  margin-top: 0.2rem;
}

@media (max-width: 479.98px) {
  .hl-panel .hl-field {
    flex-direction: column;
  }
}

/* ---------------------------------------------------------------- final cta */

.hl-panel .hl-cta {
  border-top: 1px solid var(--hl-line);
  background:
    radial-gradient(
      ellipse 60% 100% at 50% 100%,
      rgba(255, 179, 64, 0.1) 0%,
      transparent 70%
    ),
    var(--hl-bg-alt);
  text-align: center;
}

.hl-panel .hl-cta h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hl-panel .hl-cta p {
  max-width: 44ch;
  margin: 0 auto 2rem;
}

.hl-panel .hl-cta .hl-btn + .hl-btn {
  margin-left: 0.85rem;
}

.hl-panel .hl-cta img {
  max-width: 190px;
  width: 45%;
  height: auto;
  margin-bottom: 2rem;
  opacity: 0.85;
  filter: drop-shadow(0 0 40px rgba(255, 179, 64, 0.25));
}

/* ------------------------------------------------------------------ footer */

.hl-panel .hl-footer {
  border-top: 1px solid var(--hl-line);
  background: var(--hl-bg);
  padding-block: 3.5rem 0;
}

.hl-panel .hl-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (max-width: 767.98px) {
  .hl-panel .hl-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hl-panel .hl-footer p {
  font-size: 0.9rem;
  max-width: 40ch;
}

.hl-panel .hl-footer h4 {
  font-family: var(--hl-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hl-muted);
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.hl-panel .hl-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hl-panel .hl-footer li {
  margin-bottom: 0.7rem;
}

.hl-panel .hl-footer li a {
  font-size: 0.9rem;
  color: var(--hl-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hl-panel .hl-footer li a:hover {
  color: var(--hl-text);
}

.hl-panel .hl-footer-bottom {
  border-top: 1px solid var(--hl-line);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  font-family: var(--hl-mono);
  font-size: 0.75rem;
  color: var(--hl-muted);
}

/* Newsletter form in the footer */
.hl-panel .hl-footer-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  max-width: 24rem;
}

.hl-panel .hl-footer-form input {
  flex: 1;
  min-width: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--hl-line);
  border-radius: 2px;
  color: var(--hl-text);
  font-family: var(--hl-mono);
  font-size: 0.85rem;
  padding: 0.7rem 0.9rem;
}

.hl-panel .hl-footer-form input::placeholder {
  color: #6b7688;
}

.hl-panel .hl-footer-form input:focus {
  outline: none;
  border-color: var(--hl-amber);
}

/* ------------------------------------------------------------ reveal on scroll */

.hl-panel .hl-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.hl-panel .hl-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hl-panel .hl-reveal,
  .hl-panel .hl-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hl-panel .hl-gauge-fill {
    animation: none;
    stroke-dashoffset: 96;
  }
  .hl-panel .hl-status-dot {
    animation: none;
  }
}

/* ------------------------------------------------------------------- legal */
/* Simple prose styling for text-heavy pages (privacy policy, terms) that
 * share the landing page's header/footer but don't have hero/feature-grid
 * content of their own. */

.hl-panel .hl-legal-head {
  max-width: 62ch;
  margin-bottom: 3rem;
}

.hl-panel .hl-legal-updated {
  color: var(--hl-muted);
  font-family: var(--hl-mono);
  font-size: 0.85rem;
  max-width: none;
}

.hl-panel .hl-legal-body {
  max-width: 68ch;
}

.hl-panel .hl-legal-body h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
}

.hl-panel .hl-legal-body h3 {
  font-size: 1.05rem;
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}

.hl-panel .hl-legal-body p {
  font-size: 0.97rem;
  margin-bottom: 1rem;
}

.hl-panel .hl-legal-body ul {
  color: var(--hl-muted);
  font-size: 0.97rem;
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.hl-panel .hl-legal-body li {
  margin-bottom: 0.6rem;
}

.hl-panel .hl-legal-body a {
  color: var(--hl-amber);
  text-decoration: underline;
  text-decoration-color: rgba(255, 179, 64, 0.4);
}

.hl-panel .hl-legal-body a:hover {
  color: #ffc46b;
}
