/* ============================================================
   ProjectMapster — Pre-login schematic design system
   Engineering-drawing aesthetic · light + dark modes
   ============================================================ */

:root,
[data-theme="light"] {
  --pl-bg: #f7f7f5;
  --pl-bg-elevated: #ffffff;
  --pl-bg-muted: #efefeb;
  --pl-ink: #12141a;
  --pl-ink-secondary: #4a4f5c;
  --pl-ink-tertiary: #7a8090;
  --pl-line: rgba(18, 20, 26, 0.14);
  --pl-line-strong: rgba(18, 20, 26, 0.28);
  --pl-line-hair: rgba(18, 20, 26, 0.07);
  --pl-accent: #1a5f7a;
  --pl-accent-soft: rgba(26, 95, 122, 0.08);
  --pl-accent-line: rgba(26, 95, 122, 0.45);
  --pl-danger: #b42318;
  --pl-success: #0f766e;
  --pl-focus-ring: rgba(26, 95, 122, 0.22);
  --pl-shadow: 0 1px 0 rgba(18, 20, 26, 0.04);
  --pl-panel-bg: rgba(255, 255, 255, 0.78);
  --pl-input-bg: rgba(255, 255, 255, 0.92);
  --pl-grid: rgba(18, 20, 26, 0.045);
  --pl-crosshair: rgba(18, 20, 26, 0.2);
  --pl-dialog-overlay: rgba(18, 20, 26, 0.35);
  --pl-schematic-glow: rgba(26, 95, 122, 0.06);
  color-scheme: light;
}

[data-theme="dark"] {
  --pl-bg: #0b0d11;
  --pl-bg-elevated: #12151c;
  --pl-bg-muted: #161a22;
  --pl-ink: #eef0f4;
  --pl-ink-secondary: #a8b0c0;
  --pl-ink-tertiary: #6d7689;
  --pl-line: rgba(238, 240, 244, 0.12);
  --pl-line-strong: rgba(238, 240, 244, 0.24);
  --pl-line-hair: rgba(238, 240, 244, 0.06);
  --pl-accent: #5eb8d4;
  --pl-accent-soft: rgba(94, 184, 212, 0.1);
  --pl-accent-line: rgba(94, 184, 212, 0.4);
  --pl-danger: #f97066;
  --pl-success: #2dd4bf;
  --pl-focus-ring: rgba(94, 184, 212, 0.28);
  --pl-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  --pl-panel-bg: rgba(12, 15, 20, 0.82);
  --pl-input-bg: rgba(18, 21, 28, 0.92);
  --pl-grid: rgba(238, 240, 244, 0.035);
  --pl-crosshair: rgba(238, 240, 244, 0.18);
  --pl-dialog-overlay: rgba(0, 0, 0, 0.55);
  --pl-schematic-glow: rgba(94, 184, 212, 0.05);
  color-scheme: dark;
}

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

html {
  height: 100%;
}

body.prelogin-page {
  margin: 0;
  min-height: 100%;
  min-height: 100vh;
  font-family: "IBM Plex Sans", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--pl-ink);
  background: var(--pl-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.prelogin-page a {
  color: var(--pl-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

body.prelogin-page a:hover {
  border-bottom-color: var(--pl-accent-line);
}

/* ---- Schematic canvas background ---- */
#pl-schematic-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  display: block;
  pointer-events: none;
  background: var(--pl-bg);
}

/* Fallback static grid if canvas fails */
.pl-schematic-fallback {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--pl-bg);
  background-image:
    linear-gradient(var(--pl-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--pl-grid) 1px, transparent 1px);
  background-size: 48px 48px;
  display: none;
}

body.prelogin-page.pl-no-canvas .pl-schematic-fallback {
  display: block;
}

/* ---- Frame / registration marks ---- */
.pl-frame {
  position: fixed;
  inset: 12px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid var(--pl-line);
}

.pl-frame::before,
.pl-frame::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--pl-crosshair);
}

.pl-frame::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.pl-frame::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.pl-frame-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--pl-crosshair);
}

.pl-frame-corner--tr {
  top: -1px;
  right: -1px;
  border-left: none;
  border-bottom: none;
}

.pl-frame-corner--bl {
  bottom: -1px;
  left: -1px;
  border-right: none;
  border-top: none;
}

/* ---- App shell ---- */
.pl-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 32px;
}

.pl-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pl-line-hair);
}

.pl-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pl-brand__mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pl-ink);
  border-bottom: none;
}

.pl-brand__mark:hover {
  border-bottom: none;
  color: var(--pl-ink);
}

.pl-brand__glyph {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid var(--pl-line-strong);
  position: relative;
}

.pl-brand__glyph::before,
.pl-brand__glyph::after {
  content: "";
  position: absolute;
  background: var(--pl-accent);
}

.pl-brand__glyph::before {
  left: 50%;
  top: 3px;
  bottom: 3px;
  width: 1px;
  transform: translateX(-50%);
}

.pl-brand__glyph::after {
  top: 50%;
  left: 3px;
  right: 3px;
  height: 1px;
  transform: translateY(-50%);
}

.pl-brand__meta {
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pl-ink-tertiary);
  padding-left: 28px;
}

.pl-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pl-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid var(--pl-line);
  background: var(--pl-panel-bg);
  color: var(--pl-ink-secondary);
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.pl-theme-toggle:hover {
  border-color: var(--pl-line-strong);
  color: var(--pl-ink);
}

.pl-theme-toggle:focus-visible {
  outline: 2px solid var(--pl-focus-ring);
  outline-offset: 2px;
}

.pl-theme-toggle__icon {
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.pl-theme-toggle__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: currentColor;
  clip-path: inset(0 50% 0 0);
}

[data-theme="dark"] .pl-theme-toggle__icon::after {
  clip-path: inset(0 0 0 50%);
}

/* ---- Main layout ---- */
.pl-main {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 24px;
}

.pl-main--centered {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

.pl-intro {
  max-width: 36rem;
  padding-right: 12px;
}

.pl-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pl-ink-tertiary);
  margin: 0 0 20px;
}

.pl-intro__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--pl-line-strong);
}

.pl-intro__title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--pl-ink);
}

.pl-intro__title em {
  font-style: normal;
  color: var(--pl-accent);
  border-bottom: 1px solid var(--pl-accent-line);
}

.pl-intro__lede {
  margin: 0 0 28px;
  font-size: 0.98rem;
  color: var(--pl-ink-secondary);
  max-width: 32rem;
}

.pl-spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--pl-line);
}

.pl-spec-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--pl-line-hair);
  font-size: 13px;
}

.pl-spec-list__key {
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pl-ink-tertiary);
  padding-top: 2px;
}

.pl-spec-list__val {
  color: var(--pl-ink-secondary);
}

/* ---- Panel / form card ---- */
.pl-panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  justify-self: end;
  background: var(--pl-panel-bg);
  border: 1px solid var(--pl-line);
  box-shadow: var(--pl-shadow);
  backdrop-filter: blur(10px) saturate(110%);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
  padding: 28px 28px 24px;
}

.pl-main--centered .pl-panel {
  justify-self: center;
  max-width: 420px;
}

.pl-panel__header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pl-line-hair);
}

.pl-panel__label {
  margin: 0 0 6px;
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pl-ink-tertiary);
}

.pl-panel__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--pl-ink);
}

.pl-panel__subtitle {
  margin: 8px 0 0;
  font-size: 0.875rem;
  color: var(--pl-ink-secondary);
}

/* thin dimension ticks on panel */
.pl-panel::before,
.pl-panel::after {
  content: "";
  position: absolute;
  background: var(--pl-line-strong);
}

.pl-panel::before {
  top: -1px;
  left: 20px;
  width: 24px;
  height: 1px;
}

.pl-panel::after {
  top: 20px;
  left: -1px;
  width: 1px;
  height: 24px;
}

/* ---- Form controls ---- */
.pl-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.pl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.pl-field label,
.pl-field .pl-label {
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pl-ink-tertiary);
}

.pl-input-wrap {
  position: relative;
  width: 100%;
}

.pl-input,
.pl-field input[type="text"],
.pl-field input[type="email"],
.pl-field input[type="password"],
.form-input,
.email-input,
.password-input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--pl-line);
  background: var(--pl-input-bg);
  color: var(--pl-ink);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.pl-input::placeholder,
.form-input::placeholder,
.email-input::placeholder,
.password-input::placeholder {
  color: var(--pl-ink-tertiary);
}

.pl-input:focus,
.pl-field input:focus,
.form-input:focus,
.email-input:focus,
.password-input:focus {
  border-color: var(--pl-accent-line);
  box-shadow: 0 0 0 3px var(--pl-focus-ring);
}

.pl-input:disabled,
.pl-field input:disabled,
.form-input:disabled,
.password-input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* password toggle (reset page) */
.password-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.password-wrapper .password-input {
  padding-right: 42px;
}

.password-wrapper .toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--pl-ink-tertiary);
  cursor: pointer;
  user-select: none;
  line-height: 1;
}

.password-wrapper .toggle-password:hover {
  color: var(--pl-ink);
}

/* checkbox agreement */
.pl-check,
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--pl-ink-secondary);
  cursor: pointer;
  line-height: 1.45;
}

.pl-check input[type="checkbox"],
.checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  width: 14px;
  height: 14px;
  accent-color: var(--pl-accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* buttons */
.pl-btn,
.login-button,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--pl-ink);
  background: var(--pl-ink);
  color: var(--pl-bg);
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.pl-btn:hover,
.login-button:hover,
button[type="submit"]:hover {
  background: transparent;
  color: var(--pl-ink);
}

.pl-btn:focus-visible,
.login-button:focus-visible,
button[type="submit"]:focus-visible {
  outline: 2px solid var(--pl-focus-ring);
  outline-offset: 2px;
}

.pl-btn:disabled,
.login-button:disabled,
button[type="submit"]:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pl-btn--ghost {
  background: transparent;
  color: var(--pl-ink);
  border-color: var(--pl-line-strong);
}

.pl-btn--ghost:hover {
  border-color: var(--pl-ink);
  background: var(--pl-accent-soft);
}

.pl-btn--block,
.login-button {
  width: 100%;
}

.pl-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

/* links under form */
.pl-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--pl-line-hair);
  font-size: 12px;
  color: var(--pl-ink-secondary);
}

.pl-links a {
  color: var(--pl-ink-secondary);
  border-bottom: 1px solid transparent;
}

.pl-links a:hover {
  color: var(--pl-ink);
  border-bottom-color: var(--pl-line-strong);
}

.pl-links__sep {
  color: var(--pl-line-strong);
  user-select: none;
}

/* status message (forgot / reset / verify) */
.pl-message,
#message {
  margin: 12px 0 0;
  min-height: 1.25em;
  font-size: 13px;
  color: var(--pl-ink-secondary);
  line-height: 1.45;
}

.pl-message--error {
  color: var(--pl-danger);
}

.pl-message--ok {
  color: var(--pl-success);
}

/* verify-specific */
.pl-verify-status {
  text-align: center;
  padding: 12px 0 4px;
}

.pl-verify-status #message {
  font-size: 14px;
  color: var(--pl-ink-secondary);
}

/* ---- Footer ---- */
.pl-footer {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid var(--pl-line-hair);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pl-ink-tertiary);
}

.pl-footer a {
  color: var(--pl-ink-tertiary);
  border-bottom: none;
}

.pl-footer a:hover {
  color: var(--pl-ink-secondary);
  border-bottom: none;
}

.pl-footer__links {
  display: flex;
  gap: 16px;
}

/* ---- Dialog (login / register) ---- */
#customDialog {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--pl-dialog-overlay);
  backdrop-filter: blur(2px);
}

#dialogTextContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(400px, calc(100vw - 40px));
  background: var(--pl-bg-elevated);
  border: 1px solid var(--pl-line-strong);
  color: var(--pl-ink);
  padding: 24px 24px 20px;
  box-shadow: var(--pl-shadow);
}

#close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 18px;
  color: var(--pl-ink-tertiary);
  cursor: pointer;
  line-height: 1;
  user-select: none;
}

#close:hover {
  color: var(--pl-ink);
}

#dialogText {
  margin: 0 28px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--pl-ink);
}

#dialogActions {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

#dialogActions.visible {
  display: flex;
}

.dialog-button {
  display: none;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--pl-line-strong);
  background: transparent;
  color: var(--pl-ink);
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.dialog-button.visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dialog-button:hover:not(:disabled),
.dialog-button:focus-visible:not(:disabled) {
  border-color: var(--pl-ink);
  background: var(--pl-accent-soft);
}

.dialog-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.dialog-button--primary {
  background: var(--pl-ink);
  color: var(--pl-bg);
  border-color: var(--pl-ink);
}

.dialog-button--primary:hover:not(:disabled),
.dialog-button--primary:focus-visible:not(:disabled) {
  background: transparent;
  color: var(--pl-ink);
}

/* ---- Decorative schematic image (optional; canvas is primary) ---- */
.pl-schematic-art {
  position: absolute;
  right: -4%;
  bottom: -18%;
  width: min(42%, 280px);
  max-height: 42%;
  object-fit: contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.15);
  /* keep out of the text column */
  mask-image: linear-gradient(to left, #000 40%, transparent 95%);
  -webkit-mask-image: linear-gradient(to left, #000 40%, transparent 95%);
}

[data-theme="dark"] .pl-schematic-art {
  /* White-paper Imagine art reads as a slab in dark mode — hide it */
  display: none;
}

.pl-intro {
  position: relative;
  z-index: 1;
}

.pl-intro > *:not(.pl-schematic-art) {
  position: relative;
  z-index: 1;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .pl-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 28px;
  }

  .pl-intro {
    max-width: none;
    padding-right: 0;
  }

  .pl-panel {
    justify-self: stretch;
    max-width: none;
  }

  .pl-schematic-art {
    display: none;
  }
}

@media (max-width: 520px) {
  .pl-shell {
    padding: 20px 16px 24px;
  }

  .pl-frame {
    inset: 8px;
  }

  .pl-panel {
    padding: 22px 18px 20px;
  }

  .pl-spec-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pl-topbar {
    flex-wrap: wrap;
  }

  .pl-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   Landing page — scrollable marketing surface
   ============================================================ */

body.prelogin-page--landing {
  overflow-x: hidden;
  overflow-y: auto;
}

.pl-shell--landing {
  max-width: none;
  padding: 0 0 0;
  gap: 0;
}

.pl-shell--landing > .pl-topbar,
.pl-shell--landing > .pl-hero,
.pl-shell--landing > .pl-strip,
.pl-shell--landing > .pl-section,
.pl-shell--landing > .pl-cta,
.pl-shell--landing > .pl-footer {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.pl-topbar--sticky {
  position: sticky;
  top: 0;
  z-index: 40;
  margin-top: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: color-mix(in srgb, var(--pl-bg) 88%, transparent);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid var(--pl-line-hair);
}

.pl-nav {
  display: none;
  align-items: center;
  gap: 18px;
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pl-nav a {
  color: var(--pl-ink-tertiary);
  border-bottom: 1px solid transparent;
}

.pl-nav a:hover {
  color: var(--pl-ink);
  border-bottom-color: var(--pl-line-strong);
}

.pl-btn--compact {
  min-height: 32px;
  padding: 0 12px;
  font-size: 10px;
  text-decoration: none;
  width: auto;
}

.pl-btn--compact:hover {
  border-bottom: 1px solid var(--pl-ink);
}

a.pl-btn {
  border-bottom: none;
  text-decoration: none;
}

a.pl-btn:hover {
  border-bottom: 1px solid var(--pl-ink);
}

/* Hero */
.pl-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 400px);
  gap: 48px 56px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 56px;
  min-height: calc(100vh - 88px);
}

.pl-hero__copy {
  padding-top: 12px;
  max-width: 38rem;
}

.pl-hero__title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  margin-bottom: 20px;
}

.pl-hero__lede {
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34rem;
  margin-bottom: 28px;
}

.pl-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.pl-hero__ctas .pl-btn {
  width: auto;
  min-width: 10rem;
}

.pl-trust-row {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--pl-line-hair);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.pl-trust-row li {
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pl-ink-tertiary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pl-trust-row li::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid var(--pl-accent);
  flex-shrink: 0;
}

.pl-panel--hero {
  justify-self: stretch;
  max-width: none;
  position: sticky;
  top: 88px;
  align-self: start;
}

/* Metrics strip */
.pl-strip {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-top: 1px solid var(--pl-line);
  border-bottom: 1px solid var(--pl-line);
  background: var(--pl-accent-soft);
}

.pl-strip__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.pl-metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 12px;
  border-right: 1px solid var(--pl-line-hair);
}

.pl-metric:last-child {
  border-right: none;
}

.pl-metric__value {
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--pl-accent);
}

.pl-metric__label {
  font-size: 13px;
  color: var(--pl-ink-secondary);
  line-height: 1.4;
}

/* Sections */
.pl-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.pl-section--tight {
  padding-top: 48px;
  padding-bottom: 48px;
}

.pl-section--band {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-top: 1px solid var(--pl-line-hair);
  border-bottom: 1px solid var(--pl-line-hair);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--pl-bg-muted) 55%, transparent) 0%,
    transparent 100%
  );
}

.pl-section--band > .pl-split {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px;
  box-sizing: border-box;
}

.pl-section__header {
  max-width: 40rem;
  margin-bottom: 40px;
}

.pl-section__header--tight {
  margin-bottom: 28px;
}

.pl-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pl-ink-tertiary);
}

.pl-section__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--pl-line-strong);
}

.pl-section__title {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--pl-ink);
}

.pl-section__lede {
  margin: 0;
  font-size: 0.98rem;
  color: var(--pl-ink-secondary);
  line-height: 1.55;
}

/* Feature grid */
.pl-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--pl-line);
  border: 1px solid var(--pl-line);
}

.pl-feature {
  background: var(--pl-bg);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  transition: background 0.15s ease;
}

.pl-feature:hover {
  background: var(--pl-accent-soft);
}

.pl-feature__index {
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--pl-accent);
}

.pl-feature__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--pl-ink);
}

.pl-feature__body {
  margin: 0;
  flex: 1;
  font-size: 13px;
  color: var(--pl-ink-secondary);
  line-height: 1.5;
}

.pl-feature__tags {
  list-style: none;
  margin: 8px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--pl-line-hair);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pl-feature__tags li {
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pl-ink-tertiary);
  border: 1px solid var(--pl-line);
  padding: 4px 8px;
}

/* Agent cards */
.pl-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px 48px;
  align-items: start;
}

.pl-agent-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pl-agent-card {
  border: 1px solid var(--pl-line);
  background: var(--pl-panel-bg);
  padding: 18px 16px;
  backdrop-filter: blur(8px);
}

.pl-agent-card__code {
  display: block;
  margin-bottom: 10px;
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pl-accent);
}

.pl-agent-card h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--pl-ink);
}

.pl-agent-card p {
  margin: 0;
  font-size: 13px;
  color: var(--pl-ink-secondary);
  line-height: 1.45;
}

/* Who */
.pl-who-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pl-who {
  border: 1px solid var(--pl-line);
  padding: 22px 20px;
  background: var(--pl-panel-bg);
  position: relative;
}

.pl-who::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 16px;
  width: 28px;
  height: 1px;
  background: var(--pl-accent);
}

.pl-who h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--pl-ink);
}

.pl-who p {
  margin: 0;
  font-size: 13px;
  color: var(--pl-ink-secondary);
  line-height: 1.5;
}

/* Steps */
.pl-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--pl-line);
}

.pl-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 18px;
  border-right: 1px solid var(--pl-line-hair);
  background: var(--pl-bg);
}

.pl-step:last-child {
  border-right: none;
}

.pl-step__num {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pl-line-strong);
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 11px;
  color: var(--pl-accent);
}

.pl-step h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--pl-ink);
}

.pl-step p {
  margin: 0;
  font-size: 13px;
  color: var(--pl-ink-secondary);
  line-height: 1.45;
}

/* Compare */
.pl-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--pl-line);
}

.pl-compare__col {
  padding: 28px 24px;
}

.pl-compare__col--muted {
  background: var(--pl-bg-muted);
  border-right: 1px solid var(--pl-line);
}

.pl-compare__col--accent {
  background: var(--pl-accent-soft);
}

.pl-compare__col h3 {
  margin: 0 0 16px;
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pl-ink);
}

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

.pl-compare__col li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-top: 1px solid var(--pl-line-hair);
  font-size: 14px;
  color: var(--pl-ink-secondary);
  line-height: 1.4;
}

.pl-compare__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 1px;
  background: var(--pl-line-strong);
}

.pl-compare__col--accent li::before {
  background: var(--pl-accent);
}

/* CTA */
.pl-cta {
  max-width: none !important;
  padding: 0 !important;
  margin-top: 24px;
  border-top: 1px solid var(--pl-line);
  background:
    linear-gradient(90deg, var(--pl-line-hair) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(var(--pl-line-hair) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--pl-bg-muted);
}

.pl-cta__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pl-cta__inner .pl-section__eyebrow {
  justify-content: center;
}

.pl-cta__title {
  margin: 0 0 14px;
  max-width: 28rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--pl-ink);
}

.pl-cta__body {
  margin: 0 0 28px;
  max-width: 32rem;
  font-size: 0.98rem;
  color: var(--pl-ink-secondary);
  line-height: 1.55;
}

.pl-cta .pl-hero__ctas {
  justify-content: center;
  margin-bottom: 0;
}

/* Landing footer */
.pl-footer--landing {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px 40px;
  border-top: none;
}

.pl-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pl-footer__brand strong {
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pl-ink-secondary);
}

.pl-footer__brand span {
  font-size: 10px;
  letter-spacing: 0.08em;
}

.pl-intro__aside {
  margin: 20px 0 0;
  font-size: 13px;
  color: var(--pl-ink-secondary);
}

/* ---- Pricing teaser (landing) ---- */
.pl-price-teaser {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.pl-price-teaser__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 16px;
  border: 1px solid var(--pl-line);
  background: var(--pl-panel-bg);
  color: inherit;
  text-decoration: none;
  border-bottom: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.pl-price-teaser__card:hover {
  border-color: var(--pl-accent-line);
  background: var(--pl-accent-soft);
  border-bottom: none;
  color: inherit;
}

.pl-price-teaser__card--accent {
  border-color: var(--pl-accent-line);
  box-shadow: inset 0 0 0 1px var(--pl-accent-line);
}

.pl-price-teaser__tier {
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pl-ink-tertiary);
}

.pl-price-teaser__amount {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--pl-ink);
}

.pl-price-teaser__amount span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--pl-ink-tertiary);
  letter-spacing: 0;
}

.pl-price-teaser__note {
  font-size: 12px;
  color: var(--pl-ink-secondary);
}

.pl-inline-link-row {
  margin: 0;
  font-size: 13px;
}

/* ---- Access request form ---- */
.pl-access-section {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-top: 1px solid var(--pl-line);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--pl-bg-muted) 70%, transparent) 0%,
    var(--pl-bg) 40%
  );
}

.pl-access {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px 48px;
  align-items: start;
}

.pl-access .pl-section__header {
  margin-bottom: 0;
  position: sticky;
  top: 96px;
}

.pl-access-form {
  border: 1px solid var(--pl-line);
  background: var(--pl-panel-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 28px 24px 24px;
}

.pl-access-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.pl-access-fieldset {
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pl-access-fieldset legend {
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pl-accent);
  margin-bottom: 4px;
  padding: 0;
}

.pl-access-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.pl-select,
.pl-textarea {
  appearance: none;
  -webkit-appearance: none;
}

.pl-select {
  background-image: linear-gradient(45deg, transparent 50%, var(--pl-ink-tertiary) 50%),
    linear-gradient(135deg, var(--pl-ink-tertiary) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 32px;
  cursor: pointer;
}

.pl-textarea {
  min-height: 110px;
  height: auto;
  padding: 12px;
  resize: vertical;
  line-height: 1.45;
  font-family: inherit;
}

.pl-access-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--pl-line-hair);
}

.pl-access-form__legal {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 12px;
  color: var(--pl-ink-tertiary);
  line-height: 1.45;
}

.pl-access-form__footer .pl-btn {
  width: auto;
  min-width: 10rem;
}

/* ---- Pricing page ---- */
.pl-section__header--center {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pl-section__header--center .pl-section__eyebrow {
  justify-content: center;
}

.pl-section__header--center .pl-section__lede {
  margin-left: auto;
  margin-right: auto;
}

.pl-pricing-hero {
  padding-top: 40px;
}

.pl-pricing-hero__title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.pl-billing-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  margin: 0 auto 32px;
  font-size: 12px;
  color: var(--pl-ink-secondary);
}

.pl-billing-note__tag {
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--pl-line);
  padding: 4px 10px;
  color: var(--pl-ink-tertiary);
}

.pl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.pl-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--pl-line);
  background: var(--pl-panel-bg);
  padding: 22px 18px 18px;
  min-height: 100%;
}

.pl-price-card--featured {
  border-color: var(--pl-ink);
  background: var(--pl-bg-elevated);
  box-shadow: 0 0 0 1px var(--pl-ink);
}

.pl-price-card--enterprise {
  background: color-mix(in srgb, var(--pl-bg-muted) 80%, var(--pl-panel-bg));
}

.pl-price-card__badge {
  position: absolute;
  top: -1px;
  right: 12px;
  transform: translateY(-50%);
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--pl-ink);
  color: var(--pl-bg);
  padding: 4px 8px;
}

.pl-price-card__head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pl-line-hair);
}

.pl-price-card__tier {
  margin: 0 0 6px;
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pl-accent);
}

.pl-price-card__tagline {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--pl-ink-secondary);
  line-height: 1.4;
  min-height: 2.6em;
}

.pl-price-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pl-price-card__amount {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--pl-ink);
  line-height: 1.1;
}

.pl-price-card__amount--sm {
  font-size: 1.55rem;
}

.pl-price-card__period {
  font-size: 11px;
  color: var(--pl-ink-tertiary);
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pl-price-card__features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pl-price-card__features li {
  position: relative;
  padding: 8px 0 8px 16px;
  border-top: 1px solid var(--pl-line-hair);
  font-size: 13px;
  color: var(--pl-ink-secondary);
  line-height: 1.4;
}

.pl-price-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 1px;
  background: var(--pl-accent);
}

.pl-price-card__features li strong {
  color: var(--pl-ink);
  font-weight: 500;
}

.pl-price-card__muted {
  color: var(--pl-ink-tertiary) !important;
  font-style: italic;
}

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

.pl-plan-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--pl-line);
}

.pl-plan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 560px;
}

.pl-plan-table th,
.pl-plan-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--pl-line-hair);
  color: var(--pl-ink-secondary);
}

.pl-plan-table thead th {
  font-family: "IBM Plex Mono", "SF Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pl-ink-tertiary);
  background: var(--pl-bg-muted);
  border-bottom: 1px solid var(--pl-line);
}

.pl-plan-table tbody th {
  font-weight: 500;
  color: var(--pl-ink);
  width: 32%;
}

.pl-plan-table tbody tr:last-child th,
.pl-plan-table tbody tr:last-child td {
  border-bottom: none;
}

.pl-plan-table tbody tr:hover td,
.pl-plan-table tbody tr:hover th {
  background: var(--pl-accent-soft);
}

.pl-fineprint {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--pl-ink-tertiary);
}

/* Landing responsive */
@media (min-width: 960px) {
  .pl-nav {
    display: flex;
  }
}

@media (max-width: 1100px) {
  .pl-pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .pl-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 32px;
    padding-top: 32px;
  }

  .pl-panel--hero {
    position: relative;
    top: auto;
  }

  .pl-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .pl-metric:nth-child(2) {
    border-right: none;
  }

  .pl-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pl-split {
    grid-template-columns: 1fr;
  }

  .pl-steps {
    grid-template-columns: 1fr 1fr;
  }

  .pl-step:nth-child(2) {
    border-right: none;
  }

  .pl-step:nth-child(1),
  .pl-step:nth-child(2) {
    border-bottom: 1px solid var(--pl-line-hair);
  }

  .pl-access {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }

  .pl-access .pl-section__header {
    position: relative;
    top: auto;
  }

  .pl-price-teaser {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .pl-shell--landing > .pl-topbar,
  .pl-shell--landing > .pl-hero,
  .pl-shell--landing > .pl-section,
  .pl-shell--landing > .pl-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pl-topbar--sticky .pl-btn--compact:not(.pl-btn--ghost) {
    display: none;
  }

  .pl-strip__inner,
  .pl-feature-grid,
  .pl-who-grid,
  .pl-agent-list,
  .pl-steps,
  .pl-compare,
  .pl-pricing-grid,
  .pl-price-teaser,
  .pl-access-form__grid,
  .pl-access-form__row {
    grid-template-columns: 1fr;
  }

  .pl-metric {
    border-right: none;
    border-bottom: 1px solid var(--pl-line-hair);
    padding-bottom: 12px;
  }

  .pl-metric:last-child {
    border-bottom: none;
  }

  .pl-step {
    border-right: none;
    border-bottom: 1px solid var(--pl-line-hair);
  }

  .pl-step:last-child {
    border-bottom: none;
  }

  .pl-compare__col--muted {
    border-right: none;
    border-bottom: 1px solid var(--pl-line);
  }

  .pl-hero__ctas .pl-btn {
    width: 100%;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
