:root {
  --ease: cubic-bezier(.22, .68, .24, 1);
  --bg: #0c1016;
  --bg2: #141a23;
  --bg3: #19202b;
  --fg: #dce3ed;
  --dim: #a1a9b7;
  --accent: #b2c8eb;
  --accent2: #cee1ff;
  --teal: #e3d0ff;
  --purple: #b9a8e8;
  --border: #252d38;
  --green: #3fb950;
  --yellow: #d29922;
  --red: #f85149;
  --mono: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 -apple-system, "Segoe UI", Roboto, "Inter", sans-serif;
  display: flex;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: -25%;
  z-index: -3;
  background:
    radial-gradient(640px 460px at 14% 16%, rgba(178, 200, 235, 0.13), transparent 62%),
    radial-gradient(720px 520px at 88% 10%, rgba(227, 208, 255, 0.09), transparent 62%),
    radial-gradient(860px 640px at 60% 94%, rgba(54, 82, 129, 0.22), transparent 62%);
  filter: blur(48px);
  animation: aurora 36s ease-in-out infinite alternate;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}
@keyframes aurora {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate3d(-3%, 2%, 0) rotate(2deg) scale(1.06); }
  100% { transform: translate3d(3%, -2%, 0) rotate(-2deg) scale(1.03); }
}

.bgfx {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.bgfx::before, .bgfx::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
}
.bgfx::before { opacity: 0.28; }
.bgfx::after {
  opacity: 0.9;
  -webkit-mask-image: radial-gradient(300px circle at var(--spx, -400px) var(--spy, -400px), black, transparent 72%);
  mask-image: radial-gradient(300px circle at var(--spx, -400px) var(--spy, -400px), black, transparent 72%);
}

@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
}
::view-transition-old(root) { animation: 180ms var(--ease) both vt-out; }
::view-transition-new(root) { animation: 300ms var(--ease) both vt-in; }
@keyframes vt-out { to   { opacity: 0; transform: translateY(-8px); } }
@keyframes vt-in  { from { opacity: 0; transform: translateY(12px); } }

nav {
  width: 250px;
  flex-shrink: 0;
  background: rgba(12, 16, 22, 0.55);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border-right: 1px solid var(--border);
  padding: 24px 0 40px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 5;
}
nav .logo {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  padding: 0 24px 4px;
  color: var(--fg);
  text-decoration: none;
  display: block;
  transition: text-shadow .3s var(--ease);
}
nav .logo:hover { text-shadow: 0 0 24px rgba(227, 208, 255, 0.6); }
nav .logo img {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  transition: filter .3s var(--ease), transform .3s var(--ease);
}
nav .logo:hover img {
  filter: brightness(1.25);
  transform: scale(1.06);
}
nav .logo span {
  background: linear-gradient(90deg, var(--accent), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: caret 1.15s steps(1) infinite;
}
@keyframes caret { 50% { opacity: 0; } }
nav .tagline {
  padding: 0 24px 16px;
  font-size: 12px;
  color: var(--dim);
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
nav .group {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--dim);
  padding: 16px 24px 6px;
}
nav a.item {
  display: block;
  padding: 5px 24px;
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  border-left: 2px solid transparent;
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), padding-left .28s var(--ease);
}
nav a.item:hover { background: var(--bg3); color: var(--accent2); padding-left: 30px; }
nav a.item.active {
  border-left-color: var(--accent);
  background: linear-gradient(90deg, rgba(178, 200, 235, 0.16), rgba(178, 200, 235, 0.02));
  color: var(--accent2);
}

main {
  flex: 1;
  min-width: 0;
  padding: 48px clamp(24px, 6vw, 96px) 96px;
  max-width: 1020px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent2);
  margin: 0 0 10px;
}
h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -1px;
  line-height: 1.12;
  background: linear-gradient(100deg, var(--fg) 25%, var(--accent2) 60%, var(--teal) 90%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sheen 10s ease-in-out infinite alternate;
}
@keyframes sheen {
  from { background-position: 0% 0; }
  to   { background-position: 100% 0; }
}
.subtitle { color: var(--dim); margin: 0 0 36px; font-size: 18px; max-width: 640px; }

h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 48px 0 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 110px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 40%, var(--teal) 60%, transparent);
  background-size: 250% 100%;
  animation: flowline 5.5s linear infinite;
}
@keyframes flowline {
  from { background-position: 210% 0; }
  to   { background-position: -110% 0; }
}
h3 { font-size: 18px; margin: 30px 0 8px; }

a { color: var(--accent2); }
main a {
  text-decoration: none;
  background: linear-gradient(currentColor, currentColor) no-repeat left bottom / 0% 1px;
  transition: background-size .3s var(--ease);
}
main a:hover { background-size: 100% 1px; }
p { margin: 10px 0; }
ul, ol { padding-left: 24px; }
li { margin: 4px 0; }

.cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 8px; }
.btn {
  position: relative;
  display: inline-block;
  padding: 11px 26px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 15px;
  text-decoration: none !important;
  background-size: 0 !important;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              border-color .25s var(--ease), color .25s var(--ease);
}
.btn:hover { transform: scale(1.03); }
.btn:active { transform: scale(0.98); }
.btn.primary {
  background: var(--fg) !important;
  color: #0c1016;
}
.btn.primary::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--accent), var(--teal), var(--purple), var(--accent));
  background-size: 300% 100%;
  filter: blur(16px);
  opacity: 0.55;
  animation: halo 8s linear infinite;
  transition: opacity .3s var(--ease);
}
.btn.primary:hover::before { opacity: 0.85; }
@keyframes halo {
  from { background-position: 0% 0; }
  to   { background-position: 300% 0; }
}
.btn.ghost {
  color: var(--fg);
  border: 1px solid rgba(206, 225, 255, 0.45);
  background: rgba(178, 200, 235, 0.06) !important;
}
.btn.ghost:hover {
  border-color: var(--accent2);
  box-shadow: 0 0 24px rgba(178, 200, 235, 0.25);
}

code {
  font-family: var(--mono);
  font-size: 13.5px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1px 6px;
  color: var(--accent2);
}
pre {
  background: rgba(20, 26, 35, 0.75);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 18px 14px;
  overflow-x: auto;
  line-height: 1.55;
  position: relative;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
pre:hover {
  border-color: rgba(178, 200, 235, 0.4);
  box-shadow: 0 8px 40px rgba(5, 9, 18, 0.5);
}
pre::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(248, 81, 73, 0.75);
  box-shadow: 17px 0 rgba(210, 153, 34, 0.75), 34px 0 rgba(63, 185, 80, 0.75);
}
pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--fg);
  font-size: 13.5px;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 14px 0;
  font-size: 14.5px;
}
th, td {
  border: 1px solid var(--border);
  padding: 7px 12px;
  text-align: left;
  vertical-align: top;
}
th { background: rgba(178, 200, 235, 0.08); font-weight: 600; }
tr:nth-child(even) td { background: rgba(20, 26, 35, 0.6); }
tr { transition: background .18s var(--ease); }
tr:hover td { background: rgba(178, 200, 235, 0.07) !important; }
td code { white-space: nowrap; }

.note, .warn, .tip {
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  background: rgba(20, 26, 35, 0.7);
  border-radius: 0 12px 12px 0;
  padding: 10px 16px;
  margin: 16px 0;
}
.warn { border-left-color: var(--yellow); }
.tip { border-left-color: var(--green); }

.shots { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0; }
.shots img {
  width: calc(50% - 7px);
  min-width: 280px;
  border-radius: 16px;
  border: 1px solid rgba(206, 225, 255, 0.22);
  box-shadow: 0 20px 60px rgba(3, 6, 12, 0.6), 0 0 40px rgba(178, 200, 235, 0.07);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.shots img:hover {
  transform: translateY(-4px) scale(1.012);
  border-color: rgba(206, 225, 255, 0.55);
  box-shadow: 0 28px 70px rgba(3, 6, 12, 0.7), 0 0 60px rgba(178, 200, 235, 0.16);
}

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin: 20px 0; }
.card, .stat, .shot-card {
  position: relative;
  overflow: hidden;
  background: rgba(20, 26, 35, 0.72);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card { padding: 18px 20px; }
.card:hover, .stat:hover, .shot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 200, 235, 0.5);
  box-shadow: 0 14px 44px rgba(3, 6, 12, 0.6), 0 0 0 1px rgba(178, 200, 235, 0.12),
              0 0 44px rgba(178, 200, 235, 0.08);
}
.card::after, .stat::after, .shot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(206, 225, 255, 0.13), transparent 62%);
  transition: opacity .35s var(--ease);
}
.card:hover::after, .stat:hover::after, .shot-card:hover::after { opacity: 1; }
.card h3 { margin: 0 0 6px; font-size: 16px; }
.card p { margin: 0; font-size: 14px; color: var(--dim); }
.card a { text-decoration: none; }

.pill {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--dim);
  margin-right: 6px;
  transition: box-shadow .25s var(--ease);
}
.pill:hover { box-shadow: 0 0 14px rgba(178, 200, 235, 0.25); }
.pill.done { color: var(--green); border-color: var(--green); }
.pill.wip { color: var(--yellow); border-color: var(--yellow); }
.pill.next { color: var(--accent2); border-color: var(--accent); }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.stat { padding: 16px 18px; }
.stat .v {
  font-size: 30px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--fg);
  line-height: 1.2;
}
.stat .l {
  font-size: 12.5px;
  color: var(--dim);
  margin-top: 2px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.shot-card img { width: 100%; display: block; transition: transform .5s var(--ease); }
.shot-card:hover img { transform: scale(1.03); }
.shot-card .meta { padding: 10px 14px; font-size: 13.5px; }
.shot-card .meta .by { color: var(--dim); font-size: 12.5px; }

.rv {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: opacity, transform;
}
.rv.in { opacity: 1; transform: none; }

footer {
  margin-top: 70px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--dim);
  font-size: 13px;
}
kbd {
  font-family: var(--mono);
  font-size: 12.5px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 1px 7px;
}

::selection { background: rgba(178, 200, 235, 0.35); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--bg3); border: 2px solid var(--bg); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--border); }

@media (max-width: 800px) {
  body { flex-direction: column; }
  nav { width: 100%; height: auto; position: static; }
  .shots img { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .rv { opacity: 1; transform: none; }
}

body.lp { display: block; }
.lp-main { max-width: none; padding: 0; }
.lp .lp-main > section, .lp .lp-main > footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 64px);
}

.lp-bar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 9px 12px 9px 20px;
  border-radius: 999px;
  background: rgba(12, 16, 22, 0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  white-space: nowrap;
}
.lp-logo {
  font-family: var(--mono);
  font-size: 19px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.lp-logo img {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  transition: filter .3s var(--ease), transform .3s var(--ease);
}
.lp-logo:hover img {
  filter: brightness(1.25);
  transform: scale(1.06);
}
.lp-logo span {
  background: linear-gradient(90deg, var(--accent), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: caret 1.15s steps(1) infinite;
}
.lp-links { display: flex; gap: 20px; }
.lp-links a {
  color: var(--dim);
  text-decoration: none;
  font-size: 14.5px;
  transition: color .2s var(--ease), text-shadow .2s var(--ease);
}
.lp-links a:hover { color: var(--fg); text-shadow: 0 0 16px rgba(206, 225, 255, 0.6); }
.lp-star { padding: 6px 16px !important; font-size: 13.5px !important; }

.lp-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 90px !important;
  padding-bottom: 40px !important;
}
.lp-hero-logo {
  display: block;
  width: clamp(88px, 18vw, 140px);
  height: clamp(88px, 18vw, 140px);
  margin-bottom: 22px;
  border-radius: 28px;
  filter: drop-shadow(0 0 40px rgba(178, 200, 235, 0.18));
  animation: logo-float 5s var(--ease) infinite;
  transition: filter .4s var(--ease), transform .4s var(--ease);
  will-change: transform, filter;
}
.lp-hero-logo:hover {
  filter: drop-shadow(0 0 60px rgba(178, 200, 235, 0.35));
  animation-play-state: paused;
  transform: scale(1.04);
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.lp-title {
  font-size: clamp(38px, 6.4vw, 76px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.06;
  margin: 0 0 18px;
  background: none;
  -webkit-text-fill-color: currentColor;
  animation: none;
  color: var(--fg);
}
.lp-title span {
  background: linear-gradient(100deg, var(--accent) 10%, var(--teal) 55%, var(--purple) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sheen 8s ease-in-out infinite alternate;
}
.lp-hero .subtitle { margin: 0 auto 10px; }
.lp-hero .cta { justify-content: center; }

.lp-in {
  opacity: 0;
  transform: translateY(22px);
  animation: lp-in .9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes lp-in { to { opacity: 1; transform: none; } }

.lp-demo {
  position: relative;
  width: min(760px, 92vw);
  height: 300px;
  margin-top: 54px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(206, 225, 255, 0.25);
  box-shadow: 0 30px 90px rgba(3, 6, 12, 0.7), 0 0 70px rgba(178, 200, 235, 0.12);
  transform: perspective(1200px) rotateX(var(--rx, 6deg)) rotateY(var(--ry, 0deg));
  transition: transform .25s var(--ease);
}
.lp-demo-bg {
  position: absolute;
  inset: 0;
  background: url("assets/bg0.png") center / cover;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.09) translate(-1.5%, -1%); }
}
.lp-demo-title {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}
.lp-demo-title span { color: var(--accent2); animation: caret 1.15s steps(1) infinite; }
.lp-demo-row {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 40px;
}
.lp-demo-entry {
  position: relative;
  z-index: 1;
  width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.lp-demo-entry img { width: 58px; height: 58px; filter: drop-shadow(0 4px 14px rgba(0,0,0,.5)); }
.lp-demo-entry span {
  font-family: var(--mono);
  font-size: 12px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}
.lp-demo-sel {
  position: absolute;
  z-index: 0;
  top: -14px;
  left: -12px;
  width: 116px;
  height: 118px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  animation: selslide 9s var(--ease) infinite;
}
.lp-demo-sel::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -12px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  box-shadow: 0 0 14px rgba(178, 200, 235, 0.8);
}
@keyframes selslide {
  0%, 16%   { transform: translateX(0); }
  25%, 41%  { transform: translateX(132px); }
  50%, 66%  { transform: translateX(264px); }
  75%, 91%  { transform: translateX(396px); }
  100%      { transform: translateX(0); }
}
.lp-demo-power {
  position: absolute;
  right: 20px;
  bottom: 14px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.lp-marquee-wrap { padding-top: 30px !important; padding-bottom: 10px !important; }
.lp-band-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 18px;
}
.lp-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.lp-track {
  display: flex;
  align-items: center;
  gap: 58px;
  width: max-content;
  padding: 8px 0;
  animation: marquee 34s linear infinite;
}
.lp-track img {
  width: 46px;
  height: 46px;
  opacity: 0.55;
  filter: grayscale(0.6);
  transition: opacity .3s var(--ease), filter .3s var(--ease), transform .3s var(--ease);
}
.lp-track img:hover { opacity: 1; filter: none; transform: scale(1.18); }
.lp-marquee:hover .lp-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.lp-section { padding-top: 90px !important; padding-bottom: 10px !important; }
.lp-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  border: none;
  margin: 0 0 26px;
  padding: 0;
}
.lp-h2::after { display: none; }

.lp-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lp-big { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.lp-card-shot {
  width: 100%;
  margin-top: 16px;
  border-radius: 12px;
  border: 1px solid rgba(206, 225, 255, 0.2);
  flex: 1;
  object-fit: cover;
  min-height: 0;
}
@media (max-width: 900px) {
  .lp-bento { grid-template-columns: 1fr 1fr; }
  .lp-big { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 600px) {
  .lp-bento { grid-template-columns: 1fr; }
  .lp-big { grid-column: auto; }
  .lp-links { display: none; }
}

.lp-trio { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.lp-trio-v {
  font-family: var(--mono);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(100deg, var(--accent), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-center { text-align: center; font-size: 16px; }
.lp-get { text-align: center; }
.lp-get pre { text-align: left; max-width: 760px; margin: 18px auto; }
.lp-get .cta { justify-content: center; }

.lp-footer {
  margin-top: 100px;
  border-top: 1px solid var(--border);
  padding-top: 44px !important;
  padding-bottom: 54px !important;
}
.lp-foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 26px;
}
.lp-foot-grid a {
  display: block;
  color: var(--dim);
  text-decoration: none;
  font-size: 14px;
  margin: 5px 0;
  transition: color .2s var(--ease);
}
.lp-foot-grid a:hover { color: var(--accent2); }
.lp-foot-h {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 10px;
}
.lp-foot-logo { font-size: 22px; margin-bottom: 8px; }
.lp-foot-grid p { color: var(--dim); font-size: 13.5px; }
@media (max-width: 800px) {
  .lp-foot-grid { grid-template-columns: 1fr 1fr; }
}
