/* BSM1123 public landing. Demo-inspired structure, original implementation. */

:root {
  --lp-bg: #f7f4ef;
  --lp-paper: #ffffff;
  --lp-paper-2: #f0eee8;
  --lp-ink: #121212;
  --lp-ink-2: #2b2b2b;
  --lp-muted: #68645d;
  --lp-line: #ded8cc;
  --lp-dark: #181818;
  --lp-dark-2: #232323;
  --lp-accent: #32c6b1;
  --lp-accent-2: #f1c84b;
  --lp-danger: #e35b56;
  --lp-radius: 8px;
  --lp-wrap: 1180px;
  --lp-font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --lp-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  --lp-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --lp-ease: cubic-bezier(.22, .61, .36, 1);
}

body[data-theme="pearl"]    { --lp-accent: #32c6b1; --lp-accent-2: #f1c84b; }
body[data-theme="mint"]     { --lp-accent: #0f9f7f; --lp-accent-2: #8067e8; }
body[data-theme="sky"]      { --lp-accent: #2596d1; --lp-accent-2: #ef6f91; }
body[data-theme="rose"]     { --lp-accent: #d64872; --lp-accent-2: #2ab7a0; }
body[data-theme="amber"]    { --lp-accent: #d3912a; --lp-accent-2: #3478db; }
body[data-theme="lavender"] { --lp-accent: #7a5ce1; --lp-accent-2: #27b892; }
body[data-theme="sage"]     { --lp-accent: #6e9f34; --lp-accent-2: #2d79cf; }
body[data-theme="coral"]    { --lp-accent: #df6748; --lp-accent-2: #189ab4; }
body[data-theme="ocean"]    { --lp-accent: #168aa2; --lp-accent-2: #d39a32; }
body[data-theme="graphite"] { --lp-accent: #525966; --lp-accent-2: #2bb39f; }
body[data-theme="lemon"]    { --lp-accent: #9f8d16; --lp-accent-2: #3075d4; }
body[data-theme="teal"]     { --lp-accent: #0e9f91; --lp-accent-2: #c64acf; }
body[data-theme="blush"]    { --lp-accent: #d8428b; --lp-accent-2: #2e77d5; }

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body.lp {
  margin: 0;
  background: var(--lp-bg);
  color: var(--lp-ink);
  font-family: var(--lp-font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.lp a { color: inherit; text-decoration: none; }
.lp img { display: block; max-width: 100%; }
.lp svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-wrap {
  width: min(var(--lp-wrap), calc(100% - 48px));
  margin-inline: auto;
}

.lp-announce {
  position: relative;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 42px;
  padding: 9px 52px;
  background: var(--lp-dark);
  color: #f6f2ea;
  font-size: 13px;
  font-weight: 600;
}
.lp-announce a {
  border-bottom: 1px solid currentColor;
  color: var(--lp-accent);
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(247, 244, 239, .9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
}
.lp-header.is-stuck {
  border-bottom-color: var(--lp-line);
  box-shadow: 0 14px 34px rgba(18, 18, 18, .08);
}
.lp-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}
.lp-brand-word {
  display: inline-flex;
  align-items: center;
  color: var(--lp-ink);
  font-family: var(--lp-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}
.lp-brand-word::after {
  content: "";
  width: .38em;
  height: .38em;
  margin-left: .16em;
  border-radius: 50%;
  background: var(--lp-accent);
}
.lp-brand-sub {
  display: block;
  margin-top: 4px;
  color: var(--lp-muted);
  font-family: var(--lp-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 18px;
}
.lp-nav-links a,
.lp-link,
.lp-logout button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--lp-radius);
  border: 0;
  background: transparent;
  color: var(--lp-ink-2);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}
.lp-nav-links a:hover,
.lp-nav-links a.is-active,
.lp-link:hover,
.lp-logout button:hover {
  background: var(--lp-paper);
  color: var(--lp-ink);
}
.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.lp-theme {
  height: 40px;
  min-width: 112px;
  padding: 0 30px 0 12px;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: var(--lp-paper);
  color: var(--lp-ink);
  font-family: var(--lp-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.lp-logout { display: inline; }
.lp-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: var(--lp-paper);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.lp-burger span {
  width: 21px;
  height: 2px;
  background: var(--lp-ink);
}

.lp-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
}
.lp-mobile.is-open { display: block; }
.lp-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, .58);
}
.lp-mobile-panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(360px, 88vw);
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
  background: var(--lp-paper);
  box-shadow: -30px 0 70px rgba(18, 18, 18, .24);
}
.lp-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: var(--lp-display);
  font-size: 22px;
  font-weight: 900;
}
.lp-mobile-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: var(--lp-bg);
  cursor: pointer;
  font-size: 22px;
}
.lp-mobile-panel a {
  padding: 13px 12px;
  border-radius: var(--lp-radius);
  font-weight: 800;
}
.lp-mobile-panel a:hover { background: var(--lp-paper-2); }

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--lp-radius);
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s var(--lp-ease), background .18s, border-color .18s, color .18s;
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn-sm {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 14px;
}
.lp-btn-dark {
  background: var(--lp-dark);
  color: #fff !important;
}
.lp-btn-light {
  background: var(--lp-paper);
  color: var(--lp-ink);
  border-color: var(--lp-line);
}
.lp-btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
}

.lp-hero {
  position: relative;
  overflow: hidden;
  min-height: min(820px, calc(100vh - 120px));
  min-height: min(820px, calc(100svh - 120px));
  display: grid;
  align-items: center;
  isolation: isolate;
  background:
    url("/static/aiero/elements-1.png") no-repeat 6% 16% / 170px auto,
    radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--lp-accent) 24%, transparent), transparent 30%),
    var(--lp-bg);
}
.lp-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 14%;
  z-index: -1;
  width: min(58vw, 700px);
  aspect-ratio: 1;
  background: url("/static/aiero/Vector-13.png") no-repeat center / contain;
  opacity: .18;
  pointer-events: none;
}
.lp-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 170px;
  background: linear-gradient(0deg, var(--lp-bg), transparent);
  pointer-events: none;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(340px, .66fr);
  gap: 42px;
  align-items: center;
  padding: 62px 0 74px;
}
.lp-hero-copy {
  max-width: 850px;
}
.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--lp-ink);
  font-family: var(--lp-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.lp-kicker::before {
  content: "[";
  color: var(--lp-accent);
}
.lp-kicker::after {
  content: "]";
  color: var(--lp-accent);
}
.lp-h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--lp-display);
  font-size: clamp(48px, 7.8vw, 104px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 0;
  color: var(--lp-ink);
  overflow-wrap: break-word;
}
.lp-h1 del {
  color: transparent;
  -webkit-text-stroke: 2px var(--lp-ink);
  text-decoration-color: var(--lp-accent);
  text-decoration-thickness: 8px;
}
.lp-hero-sub {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--lp-ink-2);
  font-size: clamp(18px, 2.1vw, 23px);
  font-weight: 600;
}
.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.lp-floating-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.lp-floating-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--lp-paper);
  border: 1px solid var(--lp-line);
  box-shadow: 0 8px 24px rgba(18, 18, 18, .06);
  color: var(--lp-ink);
  font-size: 13px;
  font-weight: 850;
}
.lp-floating-tags span:nth-child(2) { background: var(--lp-dark); color: #fff; }
.lp-floating-tags span:nth-child(3) { background: var(--lp-accent); }
.lp-hero-art {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: end;
}
.lp-orb-img {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(100%, 520px);
  border-radius: 0 0 48px 0;
  box-shadow: 0 34px 80px rgba(18, 18, 18, .22);
}
.lp-hero-console {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  margin: 0 auto 44px 0;
  overflow: hidden;
  border-radius: 0 0 28px 0;
  background: var(--lp-dark);
  color: #fff;
  box-shadow: 0 28px 80px rgba(18, 18, 18, .28);
}
.lp-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--lp-mono);
  font-size: 12px;
  letter-spacing: .08em;
}
.lp-console-head b {
  font-family: var(--lp-display);
  font-size: 42px;
  line-height: 1;
  color: var(--lp-accent);
}
.lp-console-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 132px;
  padding: 26px 22px 0;
}
.lp-console-bars i {
  flex: 1;
  min-width: 10px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--lp-accent), var(--lp-accent-2));
  transform-origin: bottom;
  animation: lp-grow .8s var(--lp-ease) both;
}
.lp-console-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.lp-console-grid span {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #bfbfbf;
  font-size: 13px;
}
.lp-console-grid b {
  display: block;
  color: #fff;
  font-family: var(--lp-display);
  font-size: 30px;
}
.lp-hero-qr {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 250px;
  padding: 14px;
  border-radius: var(--lp-radius);
  background: #fff;
  box-shadow: 0 20px 54px rgba(18, 18, 18, .16);
}
.lp-hero-qr p {
  margin: 0;
  color: var(--lp-ink);
  font-size: 13px;
  font-weight: 850;
}
.lp-faux-qr {
  flex: none;
  width: 64px;
  height: 64px;
  border: 6px solid #fff;
  background-color: #fff;
  background-image:
    linear-gradient(90deg, #111 2px, transparent 2px),
    linear-gradient(#111 2px, transparent 2px);
  background-size: 10px 10px;
}

/* Aiero moving image strip */
.lp-moving-gallery {
  overflow: hidden;
  max-width: 100vw;
  padding: 58px 0 54px;
  background: #f0f2f4;
}
.lp-moving-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  padding-left: max(24px, 4vw);
  animation: lp-gallery-slide 38s linear infinite;
  will-change: transform;
}
.lp-moving-gallery:hover .lp-moving-track {
  animation-play-state: paused;
}
.lp-moving-card {
  position: relative;
  flex: none;
  overflow: hidden;
  border-radius: 24px;
  background: #dce8f3;
  box-shadow: 0 22px 48px rgba(18, 18, 18, .08);
  transform: translateZ(0);
  transition: transform .45s var(--lp-ease), box-shadow .45s var(--lp-ease);
}
.lp-moving-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 70px rgba(18, 18, 18, .15);
}
.lp-moving-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--lp-ease), filter .45s;
}
.lp-moving-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}
.lp-card-tall {
  width: clamp(280px, 22vw, 375px);
  height: clamp(390px, 30vw, 500px);
}
.lp-card-wide {
  width: clamp(320px, 24vw, 395px);
  height: clamp(230px, 19vw, 310px);
}
.lp-card-hero {
  width: clamp(340px, 26vw, 430px);
  height: clamp(430px, 34vw, 560px);
}
.lp-card-small {
  width: clamp(240px, 17vw, 305px);
  height: clamp(230px, 19vw, 310px);
}
.lp-card-label span {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  color: #fff;
  font-family: var(--lp-display);
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: 0;
  text-shadow: 0 8px 26px rgba(0, 0, 0, .16);
  pointer-events: none;
}
.lp-card-wide.lp-card-label span {
  right: 12px;
  font-size: clamp(42px, 4.4vw, 72px);
}
@keyframes lp-gallery-slide {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 13px), 0, 0); }
}

.lp-marquee {
  overflow: hidden;
  max-width: 100vw;
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  background: var(--lp-paper);
}
.lp-marquee-track {
  display: flex;
  width: max-content;
  animation: lp-marquee 24s linear infinite;
}
.lp-marquee span {
  padding: 24px 34px;
  color: var(--lp-ink);
  font-family: var(--lp-display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.lp-marquee span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lp-ink);
}

.lp-section { padding: 96px 0; }
.lp-section-head {
  max-width: 720px;
}
.lp-section-head h2,
.lp-project-head h2,
.lp-final h2 {
  margin: 0;
  font-family: var(--lp-display);
  font-size: clamp(36px, 5.4vw, 74px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: 0;
}
.lp-section-head p,
.lp-project-head p,
.lp-final p {
  margin: 22px 0 0;
  color: var(--lp-muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
}
.lp-dark {
  background: var(--lp-dark);
  color: #fff;
}
.lp-dark .lp-kicker,
.lp-dark .lp-section-head p { color: #d6d0c4; }
.lp-dark .lp-kicker::before,
.lp-dark .lp-kicker::after { color: var(--lp-accent); }

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: rgba(255, 255, 255, .13);
}
.lp-stat {
  min-height: 196px;
  padding: 26px;
  background: var(--lp-dark);
}
.lp-stat b {
  display: block;
  font-family: var(--lp-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1;
}
.lp-stat span {
  display: block;
  max-width: 180px;
  margin-top: 12px;
  color: #bfbfbf;
  font-weight: 700;
}

.lp-split {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 56px;
  align-items: start;
}
.lp-feature-list {
  display: grid;
  border-top: 1px solid var(--lp-line);
}
.lp-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}
.lp-feature {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 0 18px 18px;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: var(--lp-paper);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(18, 18, 18, .05);
}
.lp-feature > img {
  grid-column: 1 / -1;
  width: calc(100% + 36px);
  height: 152px;
  margin: 0 -18px 2px;
  object-fit: cover;
}
.lp-feature > span {
  color: var(--lp-muted);
  font-family: var(--lp-mono);
  font-size: 12px;
  font-weight: 800;
}
.lp-feature h3 {
  margin: 0;
  font-family: var(--lp-display);
  font-size: clamp(21px, 2.1vw, 28px);
  font-weight: 900;
  line-height: 1.04;
}
.lp-feature p {
  margin: 10px 0 0;
  color: var(--lp-muted);
  font-weight: 600;
}
.lp-feature i {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--lp-radius);
  background: var(--lp-dark);
  color: var(--lp-ink);
  color: #fff;
}
.lp-feature i svg { width: 22px; height: 22px; }

.lp-board {
  border-block: 1px solid var(--lp-line);
  background: var(--lp-paper);
}
.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.lp-step {
  min-height: 268px;
  padding: 22px;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: var(--lp-bg);
}
.lp-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border-radius: 50%;
  background: var(--lp-dark);
  color: #fff;
  font-family: var(--lp-mono);
  font-size: 12px;
  font-weight: 800;
}
.lp-step:nth-child(even) span { background: var(--lp-accent); color: var(--lp-ink); }
.lp-step h3 {
  margin: 0;
  font-family: var(--lp-display);
  font-size: 24px;
  line-height: 1.05;
}
.lp-step p {
  margin: 12px 0 0;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-project-head {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 420px);
  gap: 34px;
  align-items: end;
  margin-bottom: 44px;
}
.lp-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.lp-project {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: var(--lp-paper);
  overflow: hidden;
  transition: transform .25s var(--lp-ease), box-shadow .25s var(--lp-ease);
}
.lp-project:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 58px rgba(18, 18, 18, .12);
}
.lp-project::before {
  content: "";
  height: 108px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--lp-accent) 70%, transparent), transparent 62%),
    repeating-linear-gradient(90deg, rgba(18, 18, 18, .12) 0 1px, transparent 1px 26px),
    var(--lp-paper-2);
}
.lp-project-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.lp-project-index {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(18, 18, 18, .12);
  font-family: var(--lp-mono);
  font-size: 11px;
  font-weight: 800;
}
.lp-project-score-badges {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  justify-content: flex-end;
  max-width: calc(100% - 116px);
}
.lp-project-score-badges .lp-score-badge {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 5px;
  min-height: 28px;
  padding: 4px 7px;
  border: 1px solid rgba(18, 18, 18, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: var(--lp-ink);
  box-shadow: 0 8px 18px rgba(18, 18, 18, .06);
  backdrop-filter: blur(10px);
}
.lp-score-badge small {
  color: var(--lp-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lp-score-badge b {
  display: inline-grid;
  min-width: 24px;
  min-height: 20px;
  place-items: center;
  border-radius: 999px;
  background: var(--lp-ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 950;
}
.lp-score-badge-student b {
  background: var(--lp-accent);
}
.lp-score-badge-staff b {
  background: var(--lp-accent-2);
}
.lp-score-badge-guest b {
  background: var(--lp-muted);
}
.lp-project h3 {
  margin: 0;
  font-family: var(--lp-display);
  font-size: clamp(25px, 2.3vw, 36px);
  font-weight: 900;
  line-height: 1.05;
  max-width: calc(100% - 108px);
}
.lp-project p {
  margin: 12px 0 0;
  color: var(--lp-muted);
  font-weight: 700;
}
.lp-project-team {
  max-width: calc(100% - 108px);
  font-size: 14px;
}
.lp-project-desc {
  max-width: 94%;
  color: var(--lp-ink-2) !important;
  font-size: 15.5px;
  line-height: 1.55;
  font-weight: 650 !important;
}
.lp-project-members {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--lp-line);
}
.lp-project-members strong {
  display: block;
  margin-bottom: 10px;
  color: var(--lp-ink);
  font-family: var(--lp-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.lp-project-members div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.lp-project-members span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--lp-line);
  border-radius: 999px;
  background: var(--lp-bg);
  color: var(--lp-ink-2);
  font-size: 12.5px;
  font-weight: 800;
}
.lp-project-members span.lp-student-chip {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
  min-height: 38px;
  padding: 7px 10px;
  border-radius: 14px;
}
.lp-student-chip small {
  color: var(--lp-muted);
  font-size: 10px;
  font-weight: 800;
}
.lp-project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
}
.lp-project-footer span {
  color: var(--lp-muted);
  font-size: 13px;
  font-weight: 800;
}
.lp-project-footer b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-ink);
}
.lp-project-qr {
  position: absolute;
  right: 14px;
  top: 96px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: var(--lp-radius);
  background: #fff;
  border: 1px solid rgba(18, 18, 18, .14);
}
.lp-project-qr img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}
.lp-empty {
  grid-column: 1 / -1;
  padding: 48px;
  border: 1px dashed var(--lp-line);
  background: var(--lp-paper);
  color: var(--lp-muted);
  text-align: center;
  font-weight: 700;
}

.lp-proof {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 54px;
  align-items: start;
}
.lp-proof-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--lp-radius);
  background: var(--lp-dark-2);
}
.lp-proof-badge {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  border-radius: var(--lp-radius);
  background: var(--lp-accent);
  color: var(--lp-ink);
}
.lp-proof-badge svg { width: 36px; height: 36px; }
.lp-proof-panel ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.lp-proof-panel li {
  display: flex;
  gap: 12px;
  color: #e9e4dc;
  font-weight: 700;
}
.lp-proof-panel li svg {
  flex: none;
  width: 21px;
  height: 21px;
  color: var(--lp-accent);
}
.lp-proof-metric {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.lp-proof-metric b {
  font-family: var(--lp-display);
  font-size: 62px;
  line-height: 1;
}
.lp-proof-metric span { color: #c7c0b5; font-weight: 700; }

.lp-faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 44px;
}
.lp-faq-list {
  display: grid;
  gap: 10px;
}
.lp-faq-item {
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: var(--lp-paper);
  overflow: hidden;
}
.lp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--lp-ink);
  cursor: pointer;
  text-align: left;
  font-family: var(--lp-display);
  font-size: 20px;
  font-weight: 900;
}
.lp-faq-ico {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lp-dark);
  color: #fff;
  flex: none;
}
.lp-faq-item.is-open .lp-faq-ico { background: var(--lp-accent); color: var(--lp-ink); }
.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s var(--lp-ease);
}
.lp-faq-a p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--lp-muted);
  font-weight: 650;
}

.lp-final {
  padding: 110px 0;
  background: var(--lp-dark);
  color: #fff;
}
.lp-final-inner {
  max-width: 980px;
}
.lp-final p {
  max-width: 560px;
  color: #d5d0c8;
}

.lp-footer {
  padding: 54px 0;
  background: #0f0f0f;
  color: #fff;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 34px;
}
.lp-footer strong {
  display: block;
  font-family: var(--lp-display);
  font-size: 24px;
  font-weight: 900;
}
.lp-footer p {
  max-width: 360px;
  margin: 12px 0 0;
  color: #bfb9ae;
}
.lp-footer h4 {
  margin: 0 0 14px;
  color: var(--lp-accent);
  font-family: var(--lp-mono);
  font-size: 12px;
  text-transform: uppercase;
}
.lp-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}
.lp-footer a {
  color: #f1eee9;
  font-weight: 700;
}
.lp-footer a:hover { color: var(--lp-accent); }

.lp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--lp-ease), transform .6s var(--lp-ease);
}
.lp-reveal.is-in {
  opacity: 1;
  transform: none;
}
@keyframes lp-grow { from { transform: scaleY(0); } }
@keyframes lp-marquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-reveal { opacity: 1; transform: none; transition: none; }
  .lp-marquee-track,
  .lp-moving-track,
  .lp-console-bars i { animation: none; }
  .lp-btn:hover,
  .lp-project:hover,
  .lp-moving-card:hover { transform: none; }
}

@media (max-width: 1080px) {
  .lp-hero-grid,
  .lp-split,
  .lp-proof,
  .lp-faq-grid,
  .lp-project-head {
    grid-template-columns: 1fr;
  }
  .lp-hero-console { max-width: 520px; }
  .lp-hero-art { min-height: 540px; }
  .lp-orb-img { width: min(100%, 470px); }
  .lp-moving-gallery { padding-block: 42px; }
  .lp-moving-track { gap: 18px; }
  .lp-stats-grid,
  .lp-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-project-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .lp-wrap { width: calc(100% - 32px); }
  .lp-announce {
    justify-content: flex-start;
    padding-inline: 16px 44px;
  }
  .lp-nav { min-height: 66px; }
  .lp-nav-links,
  .lp-desktop-only { display: none; }
  .lp-burger { display: flex; }
}

@media (max-width: 760px) {
  .lp-hero {
    min-height: auto;
  }
  .lp-hero::before {
    background:
      linear-gradient(0deg, rgba(247, 244, 239, 1) 0%, rgba(247, 244, 239, .9) 52%, rgba(247, 244, 239, .58) 100%),
      linear-gradient(90deg, rgba(247, 244, 239, .94), rgba(247, 244, 239, .46));
  }
  .lp-hero-grid { padding: 44px 0 56px; }
  .lp-h1 del {
    -webkit-text-stroke-width: 1.2px;
    text-decoration-thickness: 5px;
  }
  .lp-hero-cta .lp-btn,
  .lp-final .lp-btn { width: 100%; }
  .lp-hero-console { border-radius: 0 0 22px 0; }
  .lp-section { padding: 68px 0; }
  .lp-stats-grid,
  .lp-steps-grid,
  .lp-service-grid,
  .lp-project-grid,
  .lp-footer-grid { grid-template-columns: 1fr; }
  .lp-stat { min-height: 150px; }
  .lp-hero-art { min-height: 500px; }
  .lp-orb-img {
    position: relative;
    width: 100%;
  }
  .lp-hero-console {
    width: calc(100% - 20px);
    margin: -178px 0 60px;
  }
  .lp-hero-qr {
    right: 0;
    bottom: 0;
    max-width: 220px;
  }
  .lp-feature {
    grid-template-columns: 38px minmax(0, 1fr);
  }
  .lp-feature i { display: none; }
  .lp-project { min-height: 320px; }
  .lp-project-qr img { width: 58px; height: 58px; }
  .lp-card-tall,
  .lp-card-hero {
    width: 285px;
    height: 390px;
  }
  .lp-card-wide,
  .lp-card-small {
    width: 285px;
    height: 230px;
  }
  .lp-card-label span {
    right: -2px;
    font-size: 52px;
  }
}
