:root {
  --lp-bg-page: #fff9f6;
  --lp-bg-page-alt: #f4edf3;
  --lp-bg-soft: #fffdfb;
  --lp-bg-quiet: #f7f0f6;
  --lp-bg-warm: #fff4eb;
  --lp-surface: rgba(255, 255, 255, 0.72);
  --lp-surface-soft: rgba(251, 246, 249, 0.72);
  --lp-surface-warm: rgba(255, 243, 235, 0.74);
  --lp-surface-elevated: rgba(255, 255, 255, 0.82);
  --lp-border-soft: rgba(189, 170, 201, 0.38);
  --lp-border-strong: rgba(166, 139, 191, 0.52);
  --lp-border-warm: rgba(232, 197, 113, 0.48);
  --lp-text-primary: #2e2534;
  --lp-text-secondary: #5e5364;
  --lp-text-muted: #706477;
  --lp-brand-pink: #e59bb5;
  --lp-brand-rose: #d67d9f;
  --lp-brand-purple: #b6a1dd;
  --lp-brand-purple-strong: #7158a4;
  --lp-brand-yellow: #f0ce73;
  --lp-brand-yellow-soft: #f6e3ac;
  --lp-brand-peach: #efbbab;
  --lp-brand-ink: #352a40;
  --lp-brand-ink-soft: #5d4d70;
  --lp-success: #539372;
  --lp-focus-outer: #6f49aa;
  --lp-focus-inner: #fff3c4;
  --lp-shadow-sm: 0 12px 30px rgba(133, 106, 151, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  --lp-shadow-md: 0 20px 52px rgba(127, 100, 145, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  --lp-shadow-lg: 0 30px 84px rgba(121, 93, 141, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  --lp-radius-sm: 14px;
  --lp-radius-md: 20px;
  --lp-radius-lg: 28px;
  --lp-radius-xl: 40px;
  --lp-radius-pill: 999px;
  --lp-duration-fast: 140ms;
  --lp-duration-medium: 180ms;
  --lp-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --lp-max-content: 1160px;
  --lp-max-reading: 720px;
  --lp-glass-blur: 26px;
  --lp-header-offset: 76px;
  --glass-bg: var(--lp-surface);
  --glass-border: var(--lp-border-soft);
  --glass-blur: var(--lp-glass-blur);
  --rose: var(--lp-brand-rose);
  --rose-light: var(--lp-brand-ink-soft);
  --mauve: var(--lp-brand-purple);
  --text-primary: var(--lp-text-primary);
  --text-secondary: var(--lp-text-secondary);
  --text-muted: var(--lp-text-muted);
  --radius-lg: var(--lp-radius-lg);
  --ease: var(--lp-ease-out);
}

body.loophly-v2 {
  margin: 0;
  min-height: 100vh;
  color: var(--lp-text-primary);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(229, 155, 181, 0.34), transparent 32%),
    radial-gradient(circle at 92% 8%, rgba(182, 161, 221, 0.28), transparent 30%),
    radial-gradient(circle at 78% 74%, rgba(240, 206, 115, 0.24), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(239, 187, 171, 0.18), transparent 20%),
    linear-gradient(180deg, var(--lp-bg-page) 0%, #f8f1f6 52%, var(--lp-bg-page-alt) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.loophly-v2::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.08) 14%, transparent 30%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.16) 0%, transparent 36%);
}

body.loophly-v2::after {
  content: "";
  position: fixed;
  inset: auto -8vw 5vh auto;
  width: 34vw;
  height: 34vw;
  min-width: 260px;
  min-height: 260px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 225, 126, 0.18) 0%, rgba(255, 203, 136, 0.1) 30%, rgba(255, 255, 255, 0) 72%);
  filter: blur(12px);
}

body.loophly-v2 * {
  box-sizing: border-box;
}

body.loophly-v2 img {
  display: block;
  max-width: 100%;
}

body.loophly-v2 a {
  color: inherit;
}

body.loophly-v2 .lp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.loophly-v2 button,
body.loophly-v2 input,
body.loophly-v2 textarea,
body.loophly-v2 select {
  font: inherit;
}

body.loophly-v2 button {
  border: 0;
  background: none;
}

body.loophly-v2 :focus-visible {
  outline: 2px solid var(--lp-focus-outer);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--lp-focus-inner);
}

body.loophly-v2 .lp-skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 400;
  padding: 10px 16px;
  border-radius: var(--lp-radius-pill);
  background: var(--lp-brand-ink);
  color: #fff7fc;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform var(--lp-duration-fast) var(--lp-ease-out);
}

body.loophly-v2 .lp-skip-link:focus {
  transform: translateY(0);
}

body.loophly-v2 .lp-wrapper {
  width: min(var(--lp-max-content), calc(100% - 40px));
  margin: 0 auto;
}

body.loophly-v2 .lp-wrapper--reading {
  width: min(var(--lp-max-reading), calc(100% - 40px));
}

body.loophly-v2 .lp-section {
  padding: 48px 0;
}

body.loophly-v2 .lp-section--hero {
  padding: 48px 0 40px;
}

body.loophly-v2 .lp-section--tight {
  padding: 28px 0;
}

body.loophly-v2 .lp-eyebrow,
body.loophly-v2 .lp-chip,
body.loophly-v2 .lp-article-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 20px;
  border-radius: var(--lp-radius-pill);
  border: 1px solid rgba(166, 139, 191, 0.3);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  color: var(--lp-brand-purple-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.loophly-v2 .lp-eyebrow--warm,
body.loophly-v2 .lp-chip--warm,
body.loophly-v2 .lp-article-tag--warm {
  border-color: rgba(232, 197, 113, 0.34);
  background: rgba(248, 226, 154, 0.4);
  color: #6b4b10;
}

body.loophly-v2 .lp-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.2;
  letter-spacing: -0.05em;
}

body.loophly-v2 .lp-title--medium {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

body.loophly-v2 .lp-title--small {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

body.loophly-v2 .lp-copy,
body.loophly-v2 .lp-article-prose {
  color: var(--lp-text-secondary);
  font-size: 1.03rem;
  line-height: 1.84;
}

body.loophly-v2 .lp-copy strong,
body.loophly-v2 .lp-article-prose strong {
  color: var(--lp-text-primary);
}

body.loophly-v2 .lp-copy--small {
  font-size: 0.94rem;
  line-height: 1.72;
}

body.loophly-v2 .lp-link,
body.loophly-v2 .lp-link-arrow,
body.loophly-v2 .lp-article-card__link,
body.loophly-v2 .lp-related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  padding: 2px 0;
  color: var(--lp-brand-ink-soft);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.loophly-v2 .lp-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

body.loophly-v2 .lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--lp-radius-pill);
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform var(--lp-duration-medium) var(--lp-ease-out),
    background-color var(--lp-duration-fast) var(--lp-ease-out),
    border-color var(--lp-duration-fast) var(--lp-ease-out),
    box-shadow var(--lp-duration-fast) var(--lp-ease-out),
    color var(--lp-duration-fast) var(--lp-ease-out);
}

body.loophly-v2 .lp-btn:hover {
  transform: translateY(-1px);
}

body.loophly-v2 .lp-btn:active {
  transform: translateY(0);
}

body.loophly-v2 .lp-btn--primary {
  color: #41273c;
  background: linear-gradient(135deg, rgba(246, 227, 172, 0.98) 0%, rgba(239, 187, 171, 0.94) 34%, rgba(229, 155, 181, 0.96) 68%, rgba(195, 176, 222, 0.94) 100%);
  box-shadow: 0 18px 32px rgba(214, 125, 159, 0.2);
}

body.loophly-v2 .lp-btn--primary:hover {
  box-shadow: 0 22px 38px rgba(214, 125, 159, 0.28);
}

body.loophly-v2 .lp-btn--secondary {
  color: var(--lp-brand-ink);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(166, 139, 191, 0.34);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

body.loophly-v2 .lp-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.72);
}

body.loophly-v2 .lp-btn--accent {
  color: #4b2f15;
  background: linear-gradient(135deg, rgba(248, 226, 154, 0.92), rgba(255, 210, 108, 0.88), rgba(239, 187, 171, 0.92));
  box-shadow: 0 16px 30px rgba(210, 176, 72, 0.16);
}

body.loophly-v2 .lp-card,
body.loophly-v2 .lp-panel,
body.loophly-v2 .lp-callout,
body.loophly-v2 .lp-summary,
body.loophly-v2 .lp-keypoints,
body.loophly-v2 .lp-cta-band {
  position: relative;
  border: 1px solid var(--lp-border-soft);
  border-radius: var(--lp-radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(252, 247, 250, 0.58) 100%);
  backdrop-filter: blur(var(--lp-glass-blur)) saturate(148%);
  -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(148%);
  box-shadow: var(--lp-shadow-md);
}

body.loophly-v2 .lp-card::before,
body.loophly-v2 .lp-panel::before,
body.loophly-v2 .lp-callout::before,
body.loophly-v2 .lp-summary::before,
body.loophly-v2 .lp-keypoints::before,
body.loophly-v2 .lp-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.12) 34%, transparent 62%);
  pointer-events: none;
}

body.loophly-v2 .lp-card::after,
body.loophly-v2 .lp-panel::after,
body.loophly-v2 .lp-callout::after,
body.loophly-v2 .lp-summary::after,
body.loophly-v2 .lp-keypoints::after,
body.loophly-v2 .lp-cta-band::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--lp-radius-lg) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  pointer-events: none;
  opacity: 0.65;
}

body.loophly-v2 .lp-card,
body.loophly-v2 .lp-callout,
body.loophly-v2 .lp-summary,
body.loophly-v2 .lp-keypoints {
  padding: 24px;
}

body.loophly-v2 .lp-panel,
body.loophly-v2 .lp-cta-band {
  padding: 30px;
}

body.loophly-v2 .lp-card--quiet,
body.loophly-v2 .lp-panel--quiet,
body.loophly-v2 .lp-summary--quiet {
  background: linear-gradient(180deg, var(--lp-surface-soft) 0%, rgba(246, 239, 245, 0.62) 100%);
}

body.loophly-v2 .lp-card--warm,
body.loophly-v2 .lp-panel--warm,
body.loophly-v2 .lp-callout--warm {
  background: linear-gradient(180deg, var(--lp-surface-warm) 0%, rgba(255, 244, 234, 0.62) 100%);
}

body.loophly-v2 .lp-header {
  position: sticky;
  top: 0;
  z-index: 300;
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  background: rgba(255, 248, 249, 0.58);
  border-bottom: 1px solid rgba(189, 170, 201, 0.3);
  box-shadow: 0 12px 32px rgba(149, 122, 167, 0.08);
}

body.loophly-v2 #main,
body.loophly-v2 section[id] {
  scroll-margin-top: calc(var(--lp-header-offset) + 16px);
}

body.loophly-v2 .lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
}

body.loophly-v2 .lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lp-brand-ink);
}

body.loophly-v2 .lp-brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(248, 235, 241, 0.5));
  backdrop-filter: blur(16px) saturate(155%);
  -webkit-backdrop-filter: blur(16px) saturate(155%);
  border: 1px solid rgba(189, 170, 201, 0.24);
  box-shadow: var(--lp-shadow-sm);
}

body.loophly-v2 .lp-brand__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lp-brand-yellow), var(--lp-brand-pink) 52%, var(--lp-brand-purple));
}

body.loophly-v2 .lp-brand__name {
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

body.loophly-v2 .lp-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

body.loophly-v2 .lp-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.loophly-v2 .lp-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--lp-radius-pill);
  white-space: nowrap;
  color: var(--lp-text-secondary);
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    color var(--lp-duration-fast) var(--lp-ease-out),
    background-color var(--lp-duration-fast) var(--lp-ease-out),
    border-color var(--lp-duration-fast) var(--lp-ease-out);
}

body.loophly-v2 .lp-nav__link:hover,
body.loophly-v2 .lp-nav__link[aria-current="page"] {
  color: var(--lp-brand-ink);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

body.loophly-v2 .lp-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: var(--lp-radius-pill);
  border: 1px solid rgba(189, 170, 201, 0.28);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

body.loophly-v2 .lp-lang-btn {
  min-width: 56px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: var(--lp-radius-pill);
  color: var(--lp-text-secondary);
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: background-color var(--lp-duration-fast) var(--lp-ease-out), color var(--lp-duration-fast) var(--lp-ease-out);
}

body.loophly-v2 .lp-lang-btn.is-active {
  background: linear-gradient(135deg, rgba(246, 227, 172, 0.46), rgba(229, 155, 181, 0.28), rgba(195, 176, 222, 0.34));
  color: var(--lp-brand-ink);
}

body.loophly-v2 .lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.95fr);
  gap: 28px;
  align-items: start;
}

body.loophly-v2 .lp-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.loophly-v2 .lp-hero__title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 5.3vw, 5.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.08em;
}

body.loophly-v2 .lp-hero__title-accent {
  background: linear-gradient(135deg, var(--lp-brand-yellow) 0%, var(--lp-brand-rose) 45%, var(--lp-brand-purple-strong) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.loophly-v2 .lp-hero__subtitle {
  max-width: 640px;
  margin: 0;
  color: var(--lp-text-secondary);
  font-size: 1.08rem;
  line-height: 1.82;
}

body.loophly-v2 .lp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.loophly-v2 .lp-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--lp-radius-pill);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(189, 170, 201, 0.24);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  color: var(--lp-text-secondary);
  font-size: 0.86rem;
  font-weight: 600;
}

body.loophly-v2 .lp-meta-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lp-success);
}

body.loophly-v2 .lp-hero__stack {
  display: grid;
  gap: 16px;
}

body.loophly-v2 .lp-hero-card {
  display: grid;
  gap: 10px;
}

body.loophly-v2 .lp-card-label,
body.loophly-v2 .lp-article-label,
body.loophly-v2 .lp-footer__copy {
  color: var(--lp-text-muted);
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.loophly-v2 .lp-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--lp-text-muted);
  font-size: 0.86rem;
  font-weight: 600;
}

body.loophly-v2 .lp-card-title,
body.loophly-v2 .lp-article-card__title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

body.loophly-v2 .lp-card-copy,
body.loophly-v2 .lp-article-card__desc {
  margin: 0;
  color: var(--lp-text-secondary);
  font-size: 0.95rem;
  line-height: 1.72;
}

body.loophly-v2 .lp-preview {
  display: grid;
  gap: 14px;
}

body.loophly-v2 .lp-preview__window {
  display: grid;
  gap: 14px;
}

body.loophly-v2 .lp-preview__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.loophly-v2 .lp-preview__dots {
  display: inline-flex;
  gap: 6px;
}

body.loophly-v2 .lp-preview__dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(109, 82, 183, 0.22);
}

body.loophly-v2 .lp-preview__content {
  display: grid;
  gap: 12px;
}

body.loophly-v2 .lp-preview__card {
  padding: 18px;
  border-radius: var(--lp-radius-md);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(189, 170, 201, 0.28);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

body.loophly-v2 .lp-preview__card--quiet {
  background: rgba(247, 241, 246, 0.68);
}

body.loophly-v2 .lp-preview__card--warm {
  background: rgba(255, 242, 234, 0.68);
}

body.loophly-v2 .lp-preview-image,
body.loophly-v2.lp-home .lp-home-preview-image {
  border-radius: 22px;
  border: 1px solid rgba(189, 170, 201, 0.28);
  box-shadow: var(--lp-shadow-md);
}

body.loophly-v2.lp-home .lp-home-paths,
body.loophly-v2.lp-home .lp-home-trust {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.loophly-v2.lp-home .lp-home-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
}

body.loophly-v2.lp-home .lp-home-quote {
  margin: 0;
  color: var(--lp-text-primary);
  font-size: 1.08rem;
  line-height: 1.82;
}

body.loophly-v2.lp-home .lp-home-quote strong {
  color: var(--lp-brand-purple-strong);
}

body.loophly-v2.lp-home .lp-home-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.loophly-v2.lp-home .lp-home-inline-list li {
  padding: 8px 12px;
  border-radius: var(--lp-radius-pill);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(189, 170, 201, 0.28);
  color: var(--lp-text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

body.loophly-v2 .lp-grid,
body.loophly-v2 .lp-article-grid,
body.loophly-v2 .lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body.loophly-v2 .lp-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.loophly-v2 .lp-feature-card,
body.loophly-v2 .lp-article-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

body.loophly-v2 .lp-article-card {
  text-decoration: none;
}

body.loophly-v2 .lp-icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(243, 230, 240, 0.52));
  border: 1px solid rgba(189, 170, 201, 0.24);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  color: var(--lp-brand-purple-strong);
}

body.loophly-v2 .lp-icon-chip--warm {
  background: linear-gradient(135deg, rgba(248, 226, 154, 0.54), rgba(239, 187, 171, 0.34));
  border-color: rgba(232, 197, 113, 0.32);
  color: #8c6c13;
}

body.loophly-v2 .lp-icon-chip svg {
  width: 22px;
  height: 22px;
}

body.loophly-v2 .lp-step-list {
  display: grid;
  gap: 16px;
}

body.loophly-v2 .lp-step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

body.loophly-v2 .lp-step__index {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(153, 133, 239, 0.16), rgba(243, 139, 183, 0.16));
  color: var(--lp-brand-purple-strong);
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
}

body.loophly-v2 .lp-step__title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

body.loophly-v2 .lp-step__body {
  margin: 8px 0 0;
  color: var(--lp-text-secondary);
  font-size: 0.95rem;
  line-height: 1.72;
}

body.loophly-v2 .lp-article-shell {
  display: grid;
  gap: 26px;
}

body.loophly-v2 .lp-article-hero {
  display: grid;
  gap: 16px;
  padding-top: 18px;
}

body.loophly-v2 .lp-breadcrumb {
  color: var(--lp-text-muted);
  font-size: 0.92rem;
}

body.loophly-v2 .lp-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.loophly-v2 .lp-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.loophly-v2 .lp-breadcrumb__item + .lp-breadcrumb__item::before {
  content: "/";
  color: var(--lp-text-muted);
}

body.loophly-v2 .lp-breadcrumb a {
  color: var(--lp-brand-purple-strong);
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.loophly-v2 .lp-breadcrumb a:hover,
body.loophly-v2 .lp-link:hover,
body.loophly-v2 .lp-link-arrow:hover,
body.loophly-v2 .lp-article-card__link:hover,
body.loophly-v2 .lp-related-link:hover {
  color: var(--lp-brand-purple-strong);
}

body.loophly-v2 .lp-article-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

body.loophly-v2 .lp-summary,
body.loophly-v2 .lp-keypoints,
body.loophly-v2 .lp-callout,
body.loophly-v2 .lp-article-sources,
body.loophly-v2 .lp-article-related {
  display: grid;
  gap: 12px;
}

body.loophly-v2 .lp-summary__title,
body.loophly-v2 .lp-keypoints__title,
body.loophly-v2 .lp-callout__title,
body.loophly-v2 .lp-article-sources__title,
body.loophly-v2 .lp-article-related__title {
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.loophly-v2 .lp-summary__title,
body.loophly-v2 .lp-keypoints__title,
body.loophly-v2 .lp-article-sources__title,
body.loophly-v2 .lp-article-related__title {
  color: var(--lp-brand-purple-strong);
}

body.loophly-v2 .lp-callout__title {
  color: #6b4b10;
}

body.loophly-v2 .lp-summary__body,
body.loophly-v2 .lp-callout__body,
body.loophly-v2 .lp-cta-band__body {
  margin: 0;
  color: var(--lp-text-secondary);
  line-height: 1.78;
}

body.loophly-v2 .lp-keypoints ul,
body.loophly-v2 .lp-article-sources ul,
body.loophly-v2 .lp-article-prose ul,
body.loophly-v2 .lp-article-prose ol {
  margin: 0;
  padding-left: 1.2rem;
}

body.loophly-v2 .lp-keypoints li,
body.loophly-v2 .lp-article-sources li,
body.loophly-v2 .lp-article-prose li {
  color: var(--lp-text-secondary);
  line-height: 1.78;
}

body.loophly-v2 .lp-article-prose {
  display: grid;
  gap: 18px;
}

body.loophly-v2 .lp-article-prose p,
body.loophly-v2 .lp-article-prose blockquote,
body.loophly-v2 .lp-article-prose table {
  margin: 0;
}

body.loophly-v2 .lp-article-prose h2,
body.loophly-v2 .lp-article-prose h3 {
  margin: 22px 0 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
  line-height: 1.14;
  color: var(--lp-text-primary);
}

body.loophly-v2 .lp-article-prose h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

body.loophly-v2 .lp-article-prose h3 {
  font-size: 1.18rem;
}

body.loophly-v2 .lp-article-prose a,
body.loophly-v2 .lp-article-sources a {
  color: var(--lp-brand-purple-strong);
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.loophly-v2 .lp-article-prose a:hover,
body.loophly-v2 .lp-article-sources a:hover {
  color: var(--lp-brand-ink);
}

body.loophly-v2 .lp-article-prose blockquote {
  padding: 18px 20px;
  border-left: 4px solid rgba(113, 88, 164, 0.34);
  background: rgba(255, 255, 255, 0.48);
  color: var(--lp-text-primary);
}

body.loophly-v2 .lp-article-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(189, 170, 201, 0.32);
  border-radius: var(--lp-radius-md);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

body.loophly-v2 .lp-article-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

body.loophly-v2 .lp-article-table th,
body.loophly-v2 .lp-article-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(205, 184, 214, 0.62);
  text-align: left;
  vertical-align: top;
}

body.loophly-v2 .lp-article-table th {
  color: var(--lp-text-muted);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.loophly-v2 .lp-article-table td {
  color: var(--lp-text-secondary);
  line-height: 1.72;
}

body.loophly-v2 .lp-cta-band {
  text-align: center;
}

body.loophly-v2 .lp-cta-band__title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  letter-spacing: -0.05em;
}

body.loophly-v2 .lp-footer {
  padding: 26px 0 42px;
  border-top: 1px solid rgba(189, 170, 201, 0.34);
}

body.loophly-v2 .lp-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

body.loophly-v2 .lp-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.loophly-v2 .lp-footer__brand-name {
  font-family: "Sora", sans-serif;
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

body.loophly-v2 .lp-footer__copy {
  font-size: 0.9rem;
  line-height: 1.7;
  text-transform: none;
  letter-spacing: 0;
}

body.loophly-v2 .lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.loophly-v2 .lp-footer__link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: var(--lp-radius-pill);
  color: var(--lp-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
}

body.loophly-v2 .lp-footer__link:hover {
  color: var(--lp-brand-ink);
  background: rgba(255, 255, 255, 0.46);
}

html[data-loophly-lang="en"] body.loophly-v2 [data-lang="zh"],
html[data-loophly-lang="zh"] body.loophly-v2 [data-lang="en"],
html:not([data-loophly-lang]) body.loophly-v2 [data-lang="en"] {
  display: none !important;
}

body.loophly-v2 [hidden] {
  display: none !important;
}

body.loophly-v2 .site-header,
body.loophly-v2 .footer,
body.loophly-v2 .glass,
body.loophly-v2 .wrapper,
body.loophly-v2 .footer-inner,
body.loophly-v2 .footer-links,
body.loophly-v2 .footer-link,
body.loophly-v2 .footer-copy,
body.loophly-v2 .site-header-brand,
body.loophly-v2 .site-header-nav,
body.loophly-v2 .site-header-link,
body.loophly-v2 .lang-toggle,
body.loophly-v2 .lang-btn,
body.loophly-v2 .page-hero,
body.loophly-v2 .page-label,
body.loophly-v2 .page-title,
body.loophly-v2 .page-desc,
body.loophly-v2 .page-meta,
body.loophly-v2 .divider,
body.loophly-v2 .section-label,
body.loophly-v2 .section-title,
body.loophly-v2 .section-body,
body.loophly-v2 .faq-section,
body.loophly-v2 .faq-section-title,
body.loophly-v2 .faq-item,
body.loophly-v2 .faq-question,
body.loophly-v2 .faq-arrow,
body.loophly-v2 .faq-answer,
body.loophly-v2 .article-hero,
body.loophly-v2 .article-breadcrumb,
body.loophly-v2 .article-tag,
body.loophly-v2 .article-title,
body.loophly-v2 .article-meta,
body.loophly-v2 .article-body,
body.loophly-v2 .tip-card,
body.loophly-v2 .tip-label,
body.loophly-v2 .verdict-box,
body.loophly-v2 .verdict-label,
body.loophly-v2 .cta-section,
body.loophly-v2 .cta-title,
body.loophly-v2 .cta-desc,
body.loophly-v2 .btn-primary,
body.loophly-v2 .sources,
body.loophly-v2 .sources-title,
body.loophly-v2 .related,
body.loophly-v2 .related-title,
body.loophly-v2 .related-links,
body.loophly-v2 .related-link,
body.loophly-v2 .compare-table,
body.loophly-v2 .stage-table,
body.loophly-v2 .timeline,
body.loophly-v2 .timeline-item,
body.loophly-v2 .timeline-dot,
body.loophly-v2 .timeline-content,
body.loophly-v2 .timeline-date,
body.loophly-v2 .timeline-title,
body.loophly-v2 .timeline-desc,
body.loophly-v2 .tools-grid,
body.loophly-v2 .tool-card,
body.loophly-v2 .tool-badge,
body.loophly-v2 .live-dot,
body.loophly-v2 .tool-name,
body.loophly-v2 .tool-desc,
body.loophly-v2 .tool-link,
body.loophly-v2 .tech-grid,
body.loophly-v2 .tech-card,
body.loophly-v2 .tech-label,
body.loophly-v2 .tech-title,
body.loophly-v2 .tech-body,
body.loophly-v2 .contact-section,
body.loophly-v2 .contact-card,
body.loophly-v2 .contact-icon,
body.loophly-v2 .contact-label,
body.loophly-v2 .contact-email,
body.loophly-v2 .contact-note,
body.loophly-v2 .topics-grid,
body.loophly-v2 .topic-card,
body.loophly-v2 .topic-icon,
body.loophly-v2 .topic-title,
body.loophly-v2 .topic-desc,
body.loophly-v2 .info-card,
body.loophly-v2 .footer-brand {
  box-sizing: border-box;
}

body.loophly-v2 .wrapper {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

body.loophly-v2.lp-about-page .wrapper {
  width: min(860px, calc(100% - 40px));
}

body.loophly-v2.lp-contact-page .wrapper {
  width: min(720px, calc(100% - 40px));
}

body.loophly-v2.lp-legal-page .wrapper {
  width: min(820px, calc(100% - 40px));
}

body.loophly-v2.lp-faq-page .wrapper,
body.loophly-v2.lp-article-page .wrapper {
  width: min(760px, calc(100% - 40px));
}

body.loophly-v2 .lp-mt-20 {
  margin-top: 20px;
}

body.loophly-v2 .lp-mt-24 {
  margin-top: 24px;
}

body.loophly-v2 .lp-mt-28 {
  margin-top: 28px;
}

body.loophly-v2 .lp-mt-32 {
  margin-top: 32px;
}

body.loophly-v2 .lp-mt-12 {
  margin-top: 12px;
}

body.loophly-v2 .lp-mt-14 {
  margin-top: 14px;
}

body.loophly-v2 .lp-mt-16 {
  margin-top: 16px;
}

body.loophly-v2 .lp-mt-18 {
  margin-top: 18px;
}

body.loophly-v2 .lp-mt-4 {
  margin-top: 4px;
}

body.loophly-v2 .lp-note-compact {
  margin-top: 8px;
  font-size: 14px;
  color: var(--lp-text-muted);
}

body.loophly-v2 .lp-mt-48 {
  margin-top: 48px;
}

body.loophly-v2 .lp-my-48 {
  margin: 48px 0;
}

body.loophly-v2 .lp-pb-88 {
  padding-bottom: 88px;
}

body.loophly-v2 .lp-section-end {
  margin-bottom: 80px;
}

body.loophly-v2 .lp-section-end-lg {
  margin-bottom: 100px;
}

body.loophly-v2 .lp-text-center {
  text-align: center;
}

body.loophly-v2 .lp-btn-row--center {
  justify-content: center;
}

body.loophly-v2 .lp-stack {
  display: grid;
}

body.loophly-v2 .lp-stack--16 {
  gap: 16px;
}

body.loophly-v2 .bg-canvas,
body.loophly-v2 .orb,
body.loophly-v2 .orb-1,
body.loophly-v2 .orb-2 {
  display: none !important;
}

body.loophly-v2 .site-header {
  position: sticky;
  top: 0;
  z-index: 240;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
  padding: 14px 24px;
  background: rgba(255, 248, 249, 0.58);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  border-bottom: 1px solid rgba(189, 170, 201, 0.3);
  box-shadow: 0 12px 32px rgba(149, 122, 167, 0.08);
}

body.loophly-v2 .site-header-brand,
body.loophly-v2 .footer-brand {
  font-family: "Sora", sans-serif;
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
  color: var(--lp-brand-ink);
  text-decoration: none;
}

body.loophly-v2 .site-header-nav,
body.loophly-v2 .footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

body.loophly-v2 .site-header-link,
body.loophly-v2 .footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: var(--lp-radius-pill);
  text-decoration: none;
  color: var(--lp-text-secondary);
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background-color var(--lp-duration-fast) var(--lp-ease-out), color var(--lp-duration-fast) var(--lp-ease-out), transform var(--lp-duration-fast) var(--lp-ease-out);
}

body.loophly-v2 .site-header-link:hover,
body.loophly-v2 .site-header-link.active,
body.loophly-v2 .footer-link:hover {
  color: var(--lp-brand-ink);
  background: rgba(255, 255, 255, 0.46);
}

body.loophly-v2 .lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: var(--lp-radius-pill);
  border: 1px solid rgba(189, 170, 201, 0.28);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

body.loophly-v2 .lang-btn {
  min-width: 56px;
  min-height: 40px;
  padding: 8px 14px;
  border: 0;
  border-radius: var(--lp-radius-pill);
  cursor: pointer;
  background: transparent;
  color: var(--lp-text-secondary);
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

body.loophly-v2 .lang-btn.active,
body.loophly-v2 .lang-btn.is-active {
  background: linear-gradient(135deg, rgba(246, 227, 172, 0.46), rgba(229, 155, 181, 0.28), rgba(195, 176, 222, 0.34));
  color: var(--lp-brand-ink);
}

body.loophly-v2 .glass,
body.loophly-v2 .info-card,
body.loophly-v2 .contact-card,
body.loophly-v2 .tool-card,
body.loophly-v2 .tech-card,
body.loophly-v2 .cta-section,
body.loophly-v2 .tip-card,
body.loophly-v2 .verdict-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--lp-radius-lg);
  border: 1px solid rgba(189, 170, 201, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(250, 244, 248, 0.56) 100%);
  backdrop-filter: blur(var(--lp-glass-blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(150%);
  box-shadow: var(--lp-shadow-md);
}

body.loophly-v2 .glass::before,
body.loophly-v2 .info-card::before,
body.loophly-v2 .contact-card::before,
body.loophly-v2 .tool-card::before,
body.loophly-v2 .tech-card::before,
body.loophly-v2 .cta-section::before,
body.loophly-v2 .tip-card::before,
body.loophly-v2 .verdict-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 36%, transparent 64%);
  pointer-events: none;
}

body.loophly-v2 .page-hero,
body.loophly-v2 .article-hero {
  padding: 72px 0 48px;
}

body.loophly-v2.lp-legal-page .page-hero {
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(189, 170, 201, 0.22);
}

body.loophly-v2 .hero {
  padding: 72px 0 48px;
}

body.loophly-v2 .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--lp-radius-pill);
  border: 1px solid rgba(166, 139, 191, 0.3);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  color: var(--lp-brand-purple-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.loophly-v2 .hero-title,
body.loophly-v2 .page-title,
body.loophly-v2 .article-title,
body.loophly-v2 .section-title,
body.loophly-v2 .cta-title {
  text-wrap: balance;
}

body.loophly-v2 .hero-title {
  margin: 0 0 18px;
  color: var(--lp-text-primary);
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1.12;
}

body.loophly-v2 .hero-title .brand,
body.loophly-v2 .page-title .grad {
  background: linear-gradient(135deg, var(--lp-brand-yellow) 0%, var(--lp-brand-rose) 46%, var(--lp-brand-purple-strong) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.loophly-v2 .hero-desc,
body.loophly-v2 .section-sub {
  color: var(--lp-text-secondary);
  font-size: 1.02rem;
  line-height: 1.82;
}

body.loophly-v2 .hero-desc {
  max-width: 720px;
}

body.loophly-v2 .page-label,
body.loophly-v2 .section-label,
body.loophly-v2 .faq-section-title,
body.loophly-v2 .sources-title,
body.loophly-v2 .related-title,
body.loophly-v2 .contact-label,
body.loophly-v2 .article-meta,
body.loophly-v2 .timeline-date,
body.loophly-v2 .tech-label,
body.loophly-v2 .tool-badge,
body.loophly-v2 .tip-label,
body.loophly-v2 .verdict-label {
  color: var(--lp-text-muted);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.loophly-v2 .page-title,
body.loophly-v2 .section-title,
body.loophly-v2 .article-title,
body.loophly-v2 .cta-title {
  margin: 0;
  color: var(--lp-text-primary);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1.2;
}

body.loophly-v2 .page-title {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  margin-bottom: 16px;
}

body.loophly-v2 .section-title {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  margin-bottom: 20px;
}

body.loophly-v2 .article-title {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  margin-bottom: 18px;
}

body.loophly-v2 .page-title .grad,
body.loophly-v2 .site-header-brand .grad {
  background: linear-gradient(135deg, var(--lp-brand-yellow) 0%, var(--lp-brand-rose) 46%, var(--lp-brand-purple-strong) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.loophly-v2 .page-desc,
body.loophly-v2 .section-body,
body.loophly-v2 .article-body p,
body.loophly-v2 .article-body li,
body.loophly-v2 .faq-answer,
body.loophly-v2 .cta-desc,
body.loophly-v2 .tool-desc,
body.loophly-v2 .tech-body,
body.loophly-v2 .topic-desc,
body.loophly-v2 .contact-note,
body.loophly-v2 .timeline-desc,
body.loophly-v2 .content p,
body.loophly-v2 .content li {
  color: var(--lp-text-secondary);
  font-size: 1rem;
  line-height: 1.82;
}

body.loophly-v2 .page-meta,
body.loophly-v2 .footer-copy,
body.loophly-v2 .article-meta {
  color: var(--lp-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

body.loophly-v2 .page-desc {
  max-width: 560px;
}

body.loophly-v2 .section-body {
  max-width: 700px;
}

body.loophly-v2 .hero-desc {
  max-width: 640px;
}

body.loophly-v2.lp-articles-page .hero-desc {
  max-width: 620px;
}

body.loophly-v2 .divider {
  height: 1px;
  margin: 48px 0;
  background: linear-gradient(90deg, transparent, rgba(214, 125, 159, 0.24), rgba(240, 206, 115, 0.2), transparent);
}

body.loophly-v2 .article-breadcrumb {
  margin: 0 0 18px;
  color: var(--lp-text-muted);
  font-size: 0.92rem;
}

body.loophly-v2 .article-breadcrumb a,
body.loophly-v2 .content a,
body.loophly-v2 .sources a,
body.loophly-v2 .related-link,
body.loophly-v2 .tool-link,
body.loophly-v2 .contact-email {
  color: var(--lp-brand-ink-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.loophly-v2 .article-breadcrumb a:hover,
body.loophly-v2 .content a:hover,
body.loophly-v2 .sources a:hover,
body.loophly-v2 .related-link:hover,
body.loophly-v2 .tool-link:hover,
body.loophly-v2 .contact-email:hover {
  color: var(--lp-brand-purple-strong);
}

body.loophly-v2 .article-tag,
body.loophly-v2 .tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--lp-radius-pill);
  border: 1px solid rgba(166, 139, 191, 0.3);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  color: var(--lp-brand-purple-strong);
}

body.loophly-v2 .article-body,
body.loophly-v2 .content,
body.loophly-v2 .sources,
body.loophly-v2 .related {
  max-width: 760px;
}

body.loophly-v2 .content {
  padding-bottom: 100px;
}

body.loophly-v2 .articles-grid,
body.loophly-v2 .related-links {
  display: grid;
  gap: 16px;
}

body.loophly-v2 .articles-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.loophly-v2 .article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: var(--lp-radius-lg);
  border: 1px solid rgba(189, 170, 201, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(250, 244, 248, 0.56) 100%);
  backdrop-filter: blur(var(--lp-glass-blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(150%);
  box-shadow: var(--lp-shadow-md);
  transition: transform var(--lp-duration-medium) var(--lp-ease-out), box-shadow var(--lp-duration-medium) var(--lp-ease-out);
}

body.loophly-v2 .article-card .article-title {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.22;
  letter-spacing: -0.05em;
}

body.loophly-v2 .article-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 36%, transparent 64%);
  pointer-events: none;
}

body.loophly-v2 .article-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-lg);
}

body.loophly-v2 .article-desc {
  margin: 0;
  color: var(--lp-text-secondary);
  font-size: 0.96rem;
  line-height: 1.74;
}

body.loophly-v2 .article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  color: var(--lp-brand-ink-soft);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.loophly-v2 .article-link:hover {
  color: var(--lp-brand-purple-strong);
}

body.loophly-v2 .article-body strong,
body.loophly-v2 .content strong,
body.loophly-v2 .timeline-desc strong,
body.loophly-v2 .page-desc strong,
body.loophly-v2 .section-body strong {
  color: var(--lp-text-primary);
}

body.loophly-v2 .article-body h2,
body.loophly-v2 .content h2,
body.loophly-v2 .content h3 {
  margin: 44px 0 16px;
  color: var(--lp-text-primary);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

body.loophly-v2 .article-body h2,
body.loophly-v2 .content h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
}

body.loophly-v2 .content h3 {
  font-size: 1.04rem;
  color: var(--lp-brand-ink-soft);
}

body.loophly-v2 .step-card {
  padding: 24px 28px;
  margin: 24px 0;
}

body.loophly-v2 .step-number {
  margin: 0 0 8px;
  color: var(--lp-text-muted);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.loophly-v2 .step-title {
  margin: 0 0 10px;
  color: var(--lp-text-primary);
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

body.loophly-v2 .step-card p {
  margin: 0;
  color: var(--lp-text-secondary);
  font-size: 0.96rem;
  line-height: 1.74;
}

body.loophly-v2 .article-body p {
  margin: 0 0 20px;
}

body.loophly-v2 .content p,
body.loophly-v2 .content li {
  margin: 0 0 16px;
}

body.loophly-v2 .tip-card p,
body.loophly-v2 .verdict-box p,
body.loophly-v2 .info-card p {
  margin: 0;
}

body.loophly-v2 .article-body ul,
body.loophly-v2 .article-body ol,
body.loophly-v2 .content ul {
  padding-left: 1.2rem;
  margin: 0 0 20px;
}

body.loophly-v2 .article-body blockquote {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 4px solid rgba(113, 88, 164, 0.34);
  background: rgba(255, 255, 255, 0.48);
  border-radius: 0 18px 18px 0;
}

body.loophly-v2 .tip-card,
body.loophly-v2 .verdict-box,
body.loophly-v2 .info-card,
body.loophly-v2 .cta-section {
  padding: 28px 30px;
  margin: 28px 0;
}

body.loophly-v2 .verdict-box {
  border-left: 4px solid rgba(214, 125, 159, 0.36);
}

body.loophly-v2 .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--lp-radius-pill);
  border: 0;
  background: linear-gradient(135deg, rgba(246, 227, 172, 0.98) 0%, rgba(239, 187, 171, 0.94) 34%, rgba(229, 155, 181, 0.96) 68%, rgba(195, 176, 222, 0.94) 100%);
  box-shadow: 0 18px 32px rgba(214, 125, 159, 0.2);
  color: #41273c;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

body.loophly-v2 .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 38px rgba(214, 125, 159, 0.28);
}

body.loophly-v2 .footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(189, 170, 201, 0.34);
}

body.loophly-v2 .footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

body.loophly-v2 .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lp-success);
  box-shadow: 0 0 0 6px rgba(83, 147, 114, 0.12);
}

body.loophly-v2 .faq-item {
  margin-bottom: 12px;
}

body.loophly-v2 .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 20px;
  border: 1px solid rgba(189, 170, 201, 0.3);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  color: var(--lp-text-primary);
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

body.loophly-v2 .faq-question[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

body.loophly-v2 .faq-arrow {
  color: var(--lp-brand-ink-soft);
  transition: transform var(--lp-duration-medium) var(--lp-ease-out);
}

body.loophly-v2 .faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

body.loophly-v2 .faq-answer {
  display: none;
  padding: 18px 22px 22px;
  border: 1px solid rgba(189, 170, 201, 0.3);
  border-top: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
}

body.loophly-v2 .faq-answer.open {
  display: block;
}

body.loophly-v2 .faq-answer a {
  color: var(--lp-brand-ink-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.loophly-v2 .faq-answer a:hover {
  color: var(--lp-brand-purple-strong);
}

body.loophly-v2 .faq-item {
  margin-bottom: 12px;
}

html[data-loophly-lang="zh"] body.loophly-v2 [data-lang-block="en"],
html[data-loophly-lang="en"] body.loophly-v2 [data-lang-block="zh"],
html:not([data-loophly-lang]) body.loophly-v2 [data-lang-block="en"] {
  display: none !important;
}

body.loophly-v2 .compare-table,
body.loophly-v2 .stage-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  margin: 28px 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--lp-shadow-sm);
}

body.loophly-v2 .compare-table th,
body.loophly-v2 .compare-table td,
body.loophly-v2 .stage-table th,
body.loophly-v2 .stage-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(189, 170, 201, 0.22);
  text-align: left;
  vertical-align: top;
}

body.loophly-v2 .compare-table th,
body.loophly-v2 .stage-table th {
  color: var(--lp-text-muted);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.loophly-v2 .compare-table td,
body.loophly-v2 .stage-table td {
  color: var(--lp-text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
}

body.loophly-v2 .timeline,
body.loophly-v2 .tools-grid,
body.loophly-v2 .tech-grid,
body.loophly-v2 .topics-grid,
body.loophly-v2 .related-links,
body.loophly-v2 .lp-feature-grid-alt {
  display: grid;
}

body.loophly-v2 .timeline {
  gap: 20px;
}

body.loophly-v2 .timeline-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

body.loophly-v2 .lp-author-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px;
}

body.loophly-v2 .lp-author-copy {
  flex: 1;
  min-width: 220px;
}

body.loophly-v2 .lp-author-name {
  margin: 0 0 6px;
  color: var(--lp-text-primary);
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

body.loophly-v2 .lp-author-role {
  margin: 0 0 14px;
  color: var(--lp-text-muted);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.loophly-v2 .lp-author-bio {
  margin: 0;
  color: var(--lp-text-secondary);
  font-size: 1rem;
  line-height: 1.82;
}

body.loophly-v2 .lp-feature-grid-alt {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.loophly-v2 .lp-feature-card-alt {
  padding: 24px;
}

body.loophly-v2 .lp-feature-symbol {
  margin-bottom: 16px;
}

body.loophly-v2 .lp-feature-title {
  margin: 0 0 8px;
  color: var(--lp-text-primary);
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.loophly-v2 .lp-feature-desc {
  margin: 0;
  color: var(--lp-text-secondary);
  font-size: 0.94rem;
  line-height: 1.74;
}

body.loophly-v2 .timeline-dot,
body.loophly-v2 .contact-icon,
body.loophly-v2 .topic-icon,
body.loophly-v2 .lp-static-icon,
body.loophly-v2 .lp-author-mark,
body.loophly-v2 .lp-feature-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(243, 230, 240, 0.52));
  border: 1px solid rgba(189, 170, 201, 0.24);
  color: var(--lp-brand-ink-soft);
  box-shadow: var(--lp-shadow-sm);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

body.loophly-v2 .timeline-dot {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

body.loophly-v2 .lp-static-icon svg,
body.loophly-v2 .contact-icon svg,
body.loophly-v2 .topic-icon svg,
body.loophly-v2 .lp-author-mark svg,
body.loophly-v2 .lp-feature-symbol svg {
  width: 24px;
  height: 24px;
}

body.loophly-v2 .timeline-title,
body.loophly-v2 .tool-name,
body.loophly-v2 .tech-title,
body.loophly-v2 .topic-title {
  margin: 0 0 8px;
  color: var(--lp-text-primary);
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

body.loophly-v2 .tools-grid,
body.loophly-v2 .topics-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.loophly-v2 .tech-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.loophly-v2 .tool-card,
body.loophly-v2 .tech-card,
body.loophly-v2 .topic-card {
  padding: 24px;
}

body.loophly-v2 .contact-card {
  padding: 34px;
  text-align: center;
}

body.loophly-v2 .contact-icon,
body.loophly-v2 .topic-icon {
  margin-bottom: 16px;
}

body.loophly-v2 .content code,
body.loophly-v2 .info-card code {
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--lp-brand-ink-soft);
  font-size: 0.92em;
}

body.loophly-v2.lp-lang-ready [data-lang][hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  body.loophly-v2 {
    scroll-behavior: auto;
  }

  body.loophly-v2 *,
  body.loophly-v2 *::before,
  body.loophly-v2 *::after {
    animation: none !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  body.loophly-v2 .lp-hero,
  body.loophly-v2 .lp-grid,
  body.loophly-v2 .lp-article-grid,
  body.loophly-v2 .lp-feature-grid {
    grid-template-columns: 1fr;
  }

  body.loophly-v2 .lp-grid--2 {
    grid-template-columns: 1fr;
  }

  body.loophly-v2.lp-home .lp-home-paths,
  body.loophly-v2.lp-home .lp-home-trust,
  body.loophly-v2.lp-home .lp-home-proof {
    grid-template-columns: 1fr;
  }

  body.loophly-v2 .tools-grid,
  body.loophly-v2 .tech-grid,
  body.loophly-v2 .topics-grid {
    grid-template-columns: 1fr;
  }

  body.loophly-v2 .articles-grid {
    grid-template-columns: 1fr;
  }

  body.loophly-v2 .lp-feature-grid-alt {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --lp-header-offset: 172px;
  }

  body.loophly-v2 .lp-wrapper,
  body.loophly-v2 .lp-wrapper--reading {
    width: calc(100% - 28px);
  }

  body.loophly-v2 .lp-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    row-gap: 10px;
    min-height: auto;
    padding: 10px 0 14px;
  }

  body.loophly-v2 .lp-header__actions {
    grid-column: 1 / -1;
    justify-self: start;
  }

  body.loophly-v2 .lp-nav {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }

  body.loophly-v2 .lp-panel,
  body.loophly-v2 .lp-card,
  body.loophly-v2 .lp-callout,
  body.loophly-v2 .lp-summary,
  body.loophly-v2 .lp-keypoints,
  body.loophly-v2 .lp-cta-band {
    padding: 20px;
  }

  body.loophly-v2 .lp-article-prose {
    font-size: 1rem;
  }

  body.loophly-v2 .wrapper {
    width: calc(100% - 28px);
  }

  body.loophly-v2.lp-about-page .wrapper,
  body.loophly-v2.lp-contact-page .wrapper,
  body.loophly-v2.lp-legal-page .wrapper,
  body.loophly-v2.lp-faq-page .wrapper,
  body.loophly-v2.lp-article-page .wrapper {
    width: calc(100% - 28px);
  }

  body.loophly-v2 .site-header {
    padding: 10px 14px 14px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  body.loophly-v2 .site-header-nav {
    width: 100%;
    order: 3;
  }

  body.loophly-v2 .page-hero,
  body.loophly-v2 .article-hero {
    padding: 48px 0 32px;
  }

  body.loophly-v2 .cta-section,
  body.loophly-v2 .tip-card,
  body.loophly-v2 .verdict-box,
  body.loophly-v2 .info-card,
  body.loophly-v2 .contact-card,
  body.loophly-v2 .tool-card,
  body.loophly-v2 .tech-card,
  body.loophly-v2 .topic-card {
    padding: 22px;
  }

  body.loophly-v2 .compare-table,
  body.loophly-v2 .stage-table {
    display: block;
    overflow-x: auto;
  }

  body.loophly-v2 .timeline-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  body.loophly-v2 .timeline-dot,
  body.loophly-v2 .contact-icon,
  body.loophly-v2 .topic-icon,
  body.loophly-v2 .lp-static-icon,
  body.loophly-v2 .lp-author-mark,
  body.loophly-v2 .lp-feature-symbol {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}
