:root {
  --ailppt-violet: #7c3aed;
  --ailppt-violet-dark: #5b21b6;
  --ailppt-violet-deep: #3b1765;
  --ailppt-violet-soft: #f5f3ff;
  --ailppt-ink: #201a2b;
  --ailppt-muted: #676171;
  --ailppt-line: #e7e1ee;
  --ailppt-surface: #ffffff;
  --ailppt-soft: #faf9fc;
  --ailppt-green: #08775c;
  --ailppt-green-soft: #eaf9f3;
  --ailppt-blue: #1464aa;
  --ailppt-blue-soft: #edf6ff;
  --ailppt-amber: #9a5b00;
  --ailppt-amber-soft: #fff7e8;
  --ailppt-shadow: 0 18px 55px rgba(55, 35, 75, 0.09);
}

body.ailppt-page .site-content > .ast-container,
body.ailppt-page .site-content .ast-container,
body.ailppt-page .content-area,
body.ailppt-page .site-main,
body.ailppt-page article.page,
body.ailppt-page .entry-content {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.ailppt-page .entry-header,
body.ailppt-page .post-thumb {
  display: none;
}

.ailppt,
.ailppt * {
  box-sizing: border-box;
}

.ailppt {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 26px 22px 74px;
  color: var(--ailppt-ink);
  font-size: 16px;
  line-height: 1.62;
}

.ailppt a {
  color: var(--ailppt-violet-dark);
}

.ailppt a,
.ailppt button,
.ailppt input,
.ailppt select,
.ailppt summary {
  -webkit-tap-highlight-color: transparent;
}

.ailppt a:focus-visible,
.ailppt button:focus-visible,
.ailppt input:focus-visible,
.ailppt select:focus-visible,
.ailppt summary:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.32);
  outline-offset: 3px;
}

.ailppt-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 17px;
  color: #7c7488;
  font-size: 13px;
  font-weight: 650;
}

.ailppt-breadcrumb a {
  color: #5f5869;
  text-decoration: none;
}

.ailppt-breadcrumb a:hover {
  color: var(--ailppt-violet);
  text-decoration: underline;
}

.ailppt-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: 528px;
  padding: clamp(36px, 6vw, 72px);
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 12%, rgba(196, 181, 253, 0.26), transparent 25%),
    radial-gradient(circle at 14% 94%, rgba(99, 102, 241, 0.26), transparent 32%),
    linear-gradient(135deg, #2e1065 0%, #5b21b6 47%, #7c3aed 100%);
  box-shadow: 0 30px 75px rgba(76, 29, 149, 0.24);
  color: #fff;
}

.ailppt-hero::before,
.ailppt-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.ailppt-hero::before {
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255,255,255,0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.13) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent 35%, #000 100%);
}

.ailppt-hero::after {
  top: -120px;
  right: -80px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, 0.025),
    0 0 0 96px rgba(255, 255, 255, 0.018);
}

.ailppt-hero-copy {
  min-width: 0;
}

.ailppt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #f1eaff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.ailppt-eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #83f5ce;
  box-shadow: 0 0 0 5px rgba(131, 245, 206, 0.15);
}

.ailppt-hero h1 {
  max-width: 720px;
  margin: 0 0 20px;
  color: #fff !important;
  font-size: clamp(43px, 6.25vw, 76px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.ailppt-hero-copy > p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,0.9) !important;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.67;
}

.ailppt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ailppt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;
  backdrop-filter: blur(8px);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.ailppt-button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.18);
}

.ailppt-button.is-primary {
  border-color: #fff;
  background: #fff;
  color: var(--ailppt-violet-dark) !important;
  box-shadow: 0 12px 28px rgba(38, 14, 77, 0.22);
}

.ailppt-button.is-primary span {
  margin-left: 9px;
}

.ailppt-hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 21px !important;
  color: rgba(255,255,255,0.77) !important;
  font-size: 12px !important;
}

.ailppt-hero-note > span {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: rgba(131, 245, 206, 0.18);
  color: #9bf8d8;
  font-size: 11px;
  font-weight: 900;
}

.ailppt-hero-panel {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 22px;
  background: rgba(28, 9, 58, 0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 22px 45px rgba(20, 5, 45, 0.17);
  backdrop-filter: blur(15px);
}

.ailppt-hero-panel > span {
  color: #dcd0f7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.ailppt-hero-panel > div {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 18px 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.17);
}

.ailppt-hero-panel > div strong {
  color: #fff;
  font-size: 58px;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.ailppt-hero-panel > div small {
  max-width: 105px;
  color: #e7def5;
  font-size: 12px;
  line-height: 1.35;
}

.ailppt-hero-panel ul {
  margin: 15px 0 17px;
  padding: 0;
  list-style: none;
}

.ailppt-hero-panel li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
}

.ailppt-hero-panel li b {
  color: #fff;
}

.ailppt-hero-panel > a {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.ailppt-hero-panel > a:hover {
  text-decoration: underline;
}

.ailppt-kpis {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin: -28px 26px 70px;
}

.ailppt-kpis article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 19px;
  border: 1px solid var(--ailppt-line);
  border-radius: 17px;
  background: rgba(255,255,255,0.97);
  box-shadow: var(--ailppt-shadow);
}

.ailppt-kpi-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 900;
}

.ailppt-kpi-icon.is-violet { background: var(--ailppt-violet-soft); color: var(--ailppt-violet-dark); }
.ailppt-kpi-icon.is-green { background: var(--ailppt-green-soft); color: var(--ailppt-green); }
.ailppt-kpi-icon.is-blue { background: var(--ailppt-blue-soft); color: var(--ailppt-blue); }
.ailppt-kpi-icon.is-amber { background: var(--ailppt-amber-soft); color: var(--ailppt-amber); }

.ailppt-kpis strong {
  display: block;
  color: var(--ailppt-ink);
  font-size: 22px;
  line-height: 1.05;
}

.ailppt-kpis p {
  margin: 5px 0 0;
  color: var(--ailppt-muted);
  font-size: 11.5px;
  line-height: 1.35;
}

.ailppt-section-heading {
  max-width: 830px;
  margin-bottom: 28px;
}

.ailppt-section-heading > span,
.ailppt-reuse > div > span {
  color: var(--ailppt-violet);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.ailppt-section-heading h2,
.ailppt-reuse h2 {
  margin: 8px 0 11px;
  color: var(--ailppt-ink);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.ailppt-section-heading p,
.ailppt-reuse p {
  margin: 0;
  color: var(--ailppt-muted);
  font-size: 16px;
  line-height: 1.72;
}

.ailppt-findings {
  margin-bottom: 78px;
}

.ailppt-finding-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.ailppt-finding-grid article {
  position: relative;
  min-height: 240px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--ailppt-line);
  border-radius: 21px;
  background: linear-gradient(145deg, #fff 0%, #fbf9ff 100%);
  box-shadow: 0 14px 38px rgba(55,35,75,0.055);
}

.ailppt-finding-grid article::after {
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--ailppt-violet-soft);
  content: "";
}

.ailppt-finding-grid b {
  display: block;
  margin-bottom: 22px;
  color: var(--ailppt-violet);
  font-size: 39px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.ailppt-finding-grid h3 {
  margin: 0 0 9px;
  color: var(--ailppt-ink);
  font-size: 19px;
  line-height: 1.25;
}

.ailppt-finding-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ailppt-muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.ailppt-definition {
  margin: 17px 0 0;
  padding: 15px 18px;
  border-left: 4px solid var(--ailppt-violet);
  border-radius: 4px 13px 13px 4px;
  background: var(--ailppt-violet-soft);
  color: #574d64;
  font-size: 13px;
}

.ailppt-tracker {
  margin-bottom: 82px;
}

.ailppt-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1.8fr) repeat(4, minmax(135px, 0.72fr)) auto;
  gap: 9px;
  align-items: stretch;
  padding: 15px;
  border: 1px solid var(--ailppt-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 13px 36px rgba(55,35,75,0.06);
}

.ailppt-controls label {
  display: block;
  margin: 0;
}

.ailppt-search {
  position: relative;
}

.ailppt-search i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #7d7488;
  font-size: 20px;
  font-style: normal;
  pointer-events: none;
}

.ailppt-controls input,
.ailppt-controls select {
  width: 100%;
  height: 44px;
  margin: 0;
  border: 1px solid #ded7e7;
  border-radius: 11px;
  background-color: #fbfafc;
  color: #332b3c;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 650;
}

.ailppt-controls input {
  padding: 0 12px 0 42px;
}

.ailppt-controls select {
  padding: 0 30px 0 11px;
}

.ailppt-controls input:hover,
.ailppt-controls select:hover {
  border-color: #bfb1d0;
}

.ailppt-reset {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 11px;
  background: var(--ailppt-violet-soft);
  color: var(--ailppt-violet-dark);
  font-family: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.ailppt-reset:hover {
  background: #ece7ff;
}

.ailppt-results {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 14px 2px;
  color: var(--ailppt-muted);
  font-size: 12.5px;
}

.ailppt-results p {
  margin: 0;
}

.ailppt-results strong {
  color: var(--ailppt-ink);
}

.ailppt-updated {
  display: flex;
  align-items: center;
  gap: 7px;
}

.ailppt-updated span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #12a57a;
  box-shadow: 0 0 0 4px #e4f8f1;
}

.ailppt-table-wrap {
  overflow: hidden;
  border: 1px solid var(--ailppt-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--ailppt-shadow);
}

.ailppt-table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  table-layout: fixed;
}

.ailppt-table th,
.ailppt-table td {
  border: 0;
  border-bottom: 1px solid #eeeaf2;
  background: transparent;
  text-align: left;
  vertical-align: top;
}

.ailppt-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 14px 13px;
  background: #f7f4fb;
  color: #5c5269;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ailppt-table thead th:nth-child(1) { width: 16%; }
.ailppt-table thead th:nth-child(2) { width: 11%; }
.ailppt-table thead th:nth-child(3) { width: 10%; }
.ailppt-table thead th:nth-child(4) { width: 14%; }
.ailppt-table thead th:nth-child(5) { width: 10%; }
.ailppt-table thead th:nth-child(6) { width: 27%; }
.ailppt-table thead th:nth-child(7) { width: 12%; }

.ailppt-table tbody th,
.ailppt-table tbody td {
  padding: 16px 13px;
  color: #443b4d;
  font-size: 12.5px;
  line-height: 1.55;
}

.ailppt-table tbody tr:last-child th,
.ailppt-table tbody tr:last-child td {
  border-bottom: 0;
}

.ailppt-table tbody tr:hover {
  background: #fcfbfe;
}

.ailppt-tool {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ailppt-ink) !important;
  text-decoration: none !important;
}

.ailppt-tool:hover strong {
  color: var(--ailppt-violet-dark);
  text-decoration: underline;
}

.ailppt-avatar {
  display: grid;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid #ded6ea;
  border-radius: 10px;
  background: linear-gradient(145deg, #fff, #f3effa);
  color: var(--ailppt-violet-dark);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 5px 14px rgba(65, 42, 87, 0.08);
}

.ailppt-tool strong {
  display: block;
  color: var(--ailppt-ink);
  font-size: 13px;
  line-height: 1.3;
}

.ailppt-tool small,
.ailppt-price + small {
  display: block;
  margin-top: 3px;
  color: #817889;
  font-size: 9.5px;
  line-height: 1.35;
}

.ailppt-category,
.ailppt-model {
  display: inline-block;
  padding: 4px 7px;
  border-radius: 7px;
  background: #f3f0f6;
  color: #62596b;
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.35;
}

.ailppt-model {
  background: var(--ailppt-violet-soft);
  color: #66528a;
}

.ailppt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.ailppt-badge > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.ailppt-badge.is-positive { color: var(--ailppt-green); }
.ailppt-badge.is-positive > span { background: #19a77e; box-shadow: 0 0 0 3px #e5f8f1; }
.ailppt-badge.is-neutral { color: #8c620f; }
.ailppt-badge.is-neutral > span { background: #e5a833; box-shadow: 0 0 0 3px #fff5dc; }
.ailppt-badge.is-negative { color: #8b5360; }
.ailppt-badge.is-negative > span { background: #c47a8b; box-shadow: 0 0 0 3px #faedf1; }

.ailppt-price {
  display: block;
  color: var(--ailppt-ink);
  font-size: 12.5px;
  line-height: 1.35;
}

.ailppt-note {
  color: #62596b !important;
  font-size: 11.5px !important;
}

.ailppt-table time {
  display: block;
  color: #746b7c;
  font-size: 10px;
}

.ailppt-source {
  display: inline-block;
  margin-top: 5px;
  color: var(--ailppt-violet-dark) !important;
  font-size: 10px;
  font-weight: 850;
  text-decoration: none !important;
}

.ailppt-source:hover {
  text-decoration: underline !important;
}

.ailppt-empty {
  padding: 54px 24px;
  text-align: center;
}

.ailppt-empty strong {
  display: block;
  font-size: 20px;
}

.ailppt-empty p {
  margin: 6px 0 16px;
  color: var(--ailppt-muted);
}

.ailppt-empty button {
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--ailppt-violet);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.ailppt-method {
  margin-bottom: 78px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid #ded7eb;
  border-radius: 27px;
  background:
    radial-gradient(circle at 95% 2%, rgba(124,58,237,0.08), transparent 28%),
    linear-gradient(150deg, #fbfaff, #f6f3fb);
}

.ailppt-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.ailppt-process li {
  min-width: 0;
  padding: 22px;
  border: 1px solid #e2dcea;
  border-radius: 17px;
  background: rgba(255,255,255,0.88);
}

.ailppt-process li > b {
  display: grid;
  width: 31px;
  height: 31px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 9px;
  background: var(--ailppt-violet);
  color: #fff;
  font-size: 12px;
}

.ailppt-process h3,
.ailppt-boundaries h3 {
  margin: 0 0 7px;
  color: var(--ailppt-ink);
  font-size: 16px;
  line-height: 1.3;
}

.ailppt-process p,
.ailppt-boundaries p {
  margin: 0;
  color: var(--ailppt-muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.ailppt-boundaries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 13px;
}

.ailppt-boundaries article {
  display: flex;
  gap: 15px;
  padding: 21px;
  border: 1px solid #ddd6e8;
  border-radius: 17px;
  background: #fff;
}

.ailppt-boundaries article > span {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ailppt-green-soft);
  color: var(--ailppt-green);
  font-weight: 900;
}

.ailppt-boundaries article + article > span {
  background: var(--ailppt-amber-soft);
  color: var(--ailppt-amber);
}

.ailppt-reuse {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  margin-bottom: 78px;
  padding: clamp(33px, 6vw, 62px);
  border-radius: 27px;
  background:
    radial-gradient(circle at 85% 10%, rgba(167,139,250,0.18), transparent 26%),
    linear-gradient(135deg, #24113e, #4c1d95);
  box-shadow: 0 26px 60px rgba(53, 21, 90, 0.18);
}

.ailppt-reuse > div > span { color: #cfc0f1; }
.ailppt-reuse h2 { color: #fff; }
.ailppt-reuse p { color: #ddd4ea; }

.ailppt-reuse > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.ailppt-reuse > div a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  background: #fff;
  color: var(--ailppt-violet-dark) !important;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none !important;
}

.ailppt-reuse aside {
  padding: 23px;
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 18px;
  background: rgba(255,255,255,0.09);
  color: #fff;
}

.ailppt-reuse aside > strong {
  font-size: 12px;
}

.ailppt-reuse blockquote {
  margin: 13px 0 16px;
  padding: 0 0 0 13px;
  border-left: 2px solid #a78bfa;
  color: #ddd4ea;
  font-size: 11.5px;
  line-height: 1.65;
}

.ailppt-reuse button {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,0.23);
  border-radius: 8px;
  background: rgba(255,255,255,0.11);
  color: #fff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.ailppt-faq {
  margin-bottom: 78px;
}

.ailppt-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.ailppt-faq details {
  padding: 0 20px;
  border: 1px solid var(--ailppt-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(55,35,75,0.035);
}

.ailppt-faq summary {
  position: relative;
  padding: 18px 32px 18px 0;
  color: var(--ailppt-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.ailppt-faq summary::-webkit-details-marker { display: none; }

.ailppt-faq summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  place-items: center;
  border-radius: 50%;
  background: var(--ailppt-violet-soft);
  color: var(--ailppt-violet-dark);
  content: "+";
  font-size: 15px;
  font-weight: 800;
}

.ailppt-faq details[open] summary::after { content: "–"; }

.ailppt-faq details p {
  margin: -3px 0 18px;
  padding-right: 22px;
  color: var(--ailppt-muted);
  font-size: 12.5px;
  line-height: 1.68;
}

.ailppt-related {
  margin-bottom: 53px;
}

.ailppt-related > div:last-child {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.ailppt-related > div:last-child > a {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--ailppt-line);
  border-radius: 19px;
  background: #fff;
  color: var(--ailppt-ink) !important;
  text-decoration: none !important;
  box-shadow: 0 12px 32px rgba(55,35,75,0.05);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.ailppt-related > div:last-child > a:hover {
  transform: translateY(-3px);
  border-color: #cfc1e2;
  box-shadow: 0 18px 42px rgba(55,35,75,0.09);
}

.ailppt-related a > span {
  color: var(--ailppt-violet);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: .12em;
}

.ailppt-related a > strong {
  margin: 11px 0 7px;
  font-size: 19px;
  line-height: 1.25;
}

.ailppt-related a > p {
  flex: 1;
  margin: 0 0 18px;
  color: var(--ailppt-muted);
  font-size: 12.5px;
}

.ailppt-related a > b {
  color: var(--ailppt-violet-dark);
  font-size: 12px;
}

.ailppt-footer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 0;
  border-top: 1px solid var(--ailppt-line);
  color: var(--ailppt-muted);
  font-size: 12px;
}

.ailppt-footer-note p { margin: 0; }
.ailppt-footer-note > a { white-space: nowrap; font-weight: 800; text-decoration: none; }

@media (max-width: 1120px) {
  .ailppt-hero { grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); }
  .ailppt-kpis { grid-template-columns: 1fr 1fr; }
  .ailppt-controls { grid-template-columns: minmax(250px, 1.5fr) repeat(2, 1fr); }
  .ailppt-controls .ailppt-reset { grid-column: span 1; }
  .ailppt-table { min-width: 1050px; }
  .ailppt-table-wrap { overflow-x: auto; }
}

@media (max-width: 860px) {
  .ailppt { padding: 20px 15px 58px; }
  .ailppt-hero { grid-template-columns: 1fr; min-height: auto; padding: 42px 28px; border-radius: 24px; }
  .ailppt-hero-panel { max-width: 440px; }
  .ailppt-kpis { margin: 15px 0 62px; }
  .ailppt-finding-grid,
  .ailppt-related > div:last-child { grid-template-columns: 1fr; }
  .ailppt-finding-grid article { min-height: 0; }
  .ailppt-process { grid-template-columns: 1fr 1fr; }
  .ailppt-reuse { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .ailppt-hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .ailppt-hero-copy > p { font-size: 16px; }
  .ailppt-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .ailppt-button.is-primary { grid-column: 1 / -1; }
  .ailppt-kpis { grid-template-columns: 1fr; }
  .ailppt-section-heading h2,
  .ailppt-reuse h2 { font-size: 33px; }
  .ailppt-controls { grid-template-columns: 1fr 1fr; }
  .ailppt-search { grid-column: 1 / -1; }
  .ailppt-reset { grid-column: 1 / -1 !important; }
  .ailppt-results { align-items: flex-start; flex-direction: column; }
  .ailppt-method { padding: 28px 20px; }
  .ailppt-process,
  .ailppt-boundaries,
  .ailppt-faq-grid { grid-template-columns: 1fr; }
  .ailppt-footer-note { align-items: flex-start; flex-direction: column; }

  .ailppt-table-wrap { overflow: visible; border: 0; border-radius: 0; box-shadow: none; background: transparent; }
  .ailppt-table { min-width: 0; border-collapse: separate; background: transparent; table-layout: auto; }
  .ailppt-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .ailppt-table tbody { display: grid; gap: 12px; }
  .ailppt-table tbody tr { display: grid; grid-template-columns: 1fr 1fr; gap: 0 15px; padding: 18px; border: 1px solid var(--ailppt-line); border-radius: 17px; background: #fff; box-shadow: 0 10px 28px rgba(55,35,75,.055); }
  .ailppt-table tbody th,
  .ailppt-table tbody td { display: block; padding: 10px 0; border-bottom: 1px solid #eeeaf2; font-size: 12px; }
  .ailppt-table tbody th { grid-column: 1 / -1; padding-top: 0; }
  .ailppt-table tbody td::before { display: block; margin-bottom: 5px; color: #82778d; content: attr(data-label); font-size: 8.5px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
  .ailppt-table tbody td.ailppt-note { grid-column: 1 / -1; }
  .ailppt-table tbody td:last-child { border-bottom: 0; }
  .ailppt-tool strong { font-size: 15px; }
  .ailppt-avatar { width: 40px; height: 40px; flex-basis: 40px; }
}

@media (max-width: 440px) {
  .ailppt { padding-right: 12px; padding-left: 12px; }
  .ailppt-hero { padding: 35px 21px; }
  .ailppt-actions { grid-template-columns: 1fr; }
  .ailppt-button.is-primary { grid-column: auto; }
  .ailppt-hero-note { display: block; }
  .ailppt-hero-note > span { display: inline-grid; margin-right: 6px; vertical-align: middle; }
  .ailppt-controls { grid-template-columns: 1fr; }
  .ailppt-search,
  .ailppt-reset { grid-column: auto !important; }
  .ailppt-table tbody tr { grid-template-columns: 1fr; }
  .ailppt-table tbody td.ailppt-note { grid-column: auto; }
  .ailppt-reuse { padding: 30px 21px; }
}

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

@media print {
  .ailppt-controls,
  .ailppt-actions,
  .ailppt-faq,
  .ailppt-related,
  .ailppt-footer-note { display: none !important; }
  .ailppt { width: 100%; padding: 0; }
  .ailppt-hero { min-height: 0; color: #111; background: #eee; box-shadow: none; }
  .ailppt-table { min-width: 0; font-size: 8px; }
  .ailppt-table-wrap { overflow: visible; box-shadow: none; }
}
