@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/fonts/manrope-200-800-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/fonts/manrope-200-800-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/dm-mono-400-latin.woff2) format('woff2');
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/dm-mono-500-latin.woff2) format('woff2');
}

:root {
  color-scheme: dark;
  --bg: #161616;
  --surface: #1f1f1f;
  --surface-2: #262626;
  --ink: #f5f5f2;
  --muted: #a3a39d;
  --line: rgba(255, 255, 255, 0.08);
  --ghost: rgba(255, 255, 255, 0.06);
  --ghost-hover: rgba(255, 255, 255, 0.1);
  --action: #f5f5f2;
  --on-action: #161616;
  --live: #e8b04b;
  --success: #8ccfa6;
  --error: #f39a9a;
  --radius: 12px;
  --font: Manrope, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'DM Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: clip;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.lt-accent {
  color: var(--live);
}
.lt-muted {
  color: var(--muted);
}

/* Header */
.lt-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 68px;
  padding: 0 24px;
  background: rgba(22, 22, 22, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.lt-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.6px;
}
.lt-mark {
  width: 34px;
  height: 34px;
  color: var(--ink);
}
.lt-nav {
  display: flex;
  gap: 4px;
  margin-left: 12px;
}
.lt-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.lt-nav a:hover {
  color: var(--ink);
  background: var(--ghost);
}
.lt-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lt-wallet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--ghost);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--mono);
}
.lt-wallet:hover {
  background: var(--ghost-hover);
}
.lt-wallet[data-state='connected'] {
  color: var(--ink);
}
.lt-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
}
.lt-wallet[data-state='connected'] .lt-dot {
  background: var(--live);
}
.lt-wallet[data-state='busy'] .lt-dot {
  background: var(--muted);
  animation: lt-pulse 1s infinite;
}
@keyframes lt-pulse {
  50% {
    opacity: 0.3;
  }
}

/* Buttons */
.lt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  transition:
    background 0.16s ease,
    color 0.16s ease;
}
.lt-button-primary {
  background: var(--action);
  color: var(--on-action);
}
.lt-button-primary:hover {
  background: #fff;
}
.lt-button-ghost {
  background: var(--ghost);
  color: var(--ink);
}
.lt-button-ghost:hover {
  background: var(--ghost-hover);
}
.lt-cta-desktop {
  min-height: 36px;
  padding: 8px 16px;
}

/* Hero */
.lt-hero {
  position: relative;
  padding: 96px 0 56px;
}
.lt-hero > :not(.lt-hero-art) {
  max-width: min(720px, calc(100% - 500px));
  position: relative;
  z-index: 1;
}
.lt-hero-art {
  position: absolute;
  right: 0;
  top: 64px;
  width: 460px;
  height: 420px;
}
.lt-hero-art::before {
  content: '';
  position: absolute;
  inset: 10% 0 0;
  background: radial-gradient(closest-side, rgba(232, 176, 75, 0.14), transparent 70%);
}
/* Two slabs side by side. They sway gently in place, then both shoot out of
   the screen sideways (left card left, right card right) and come back in on
   swapped sides: a trade. Horizontal only, so scrolling never reveals them. */
.lt-fly {
  position: absolute;
  left: 0;
  top: 0;
  width: 210px;
  animation: 14s infinite;
  will-change: transform;
}
.lt-fly-a {
  animation-name: lt-fly-a;
}
.lt-fly-b {
  animation-name: lt-fly-b;
}
.lt-graded {
  display: block;
  width: 100%;
  transform-origin: 50% 90%;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.6));
  animation: lt-sway 3.2s ease-in-out infinite alternate;
}
.lt-graded-b {
  animation-delay: -1.6s;
}
@keyframes lt-sway {
  from {
    transform: rotate(-1.6deg) translateY(0);
  }
  to {
    transform: rotate(1.6deg) translateY(-7px);
  }
}
/* Seats: left = translate(20px, 50px) rotate(-5deg) upright; right = translate(240px, 50px) rotate(185deg) upside down. */
@keyframes lt-fly-a {
  0%,
  44% {
    transform: translate(20px, 50px) rotate(-5deg);
    animation-timing-function: cubic-bezier(0.7, 0, 0.9, 0.4);
  }
  48% {
    transform: translate(-1800px, 50px) rotate(-30deg);
  }
  48.01% {
    transform: translate(1500px, 50px) rotate(210deg);
    animation-timing-function: cubic-bezier(0.1, 0.6, 0.3, 1);
  }
  53%,
  94% {
    transform: translate(240px, 50px) rotate(185deg);
    animation-timing-function: cubic-bezier(0.7, 0, 0.9, 0.4);
  }
  98% {
    transform: translate(1500px, 50px) rotate(210deg);
  }
  98.01% {
    transform: translate(-1800px, 50px) rotate(-30deg);
    animation-timing-function: cubic-bezier(0.1, 0.6, 0.3, 1);
  }
  100% {
    transform: translate(20px, 50px) rotate(-5deg);
  }
}
@keyframes lt-fly-b {
  0%,
  44% {
    transform: translate(240px, 50px) rotate(185deg);
    animation-timing-function: cubic-bezier(0.7, 0, 0.9, 0.4);
  }
  48% {
    transform: translate(1500px, 50px) rotate(210deg);
  }
  48.01% {
    transform: translate(-1800px, 50px) rotate(-30deg);
    animation-timing-function: cubic-bezier(0.1, 0.6, 0.3, 1);
  }
  53%,
  94% {
    transform: translate(20px, 50px) rotate(-5deg);
    animation-timing-function: cubic-bezier(0.7, 0, 0.9, 0.4);
  }
  98% {
    transform: translate(-1800px, 50px) rotate(-30deg);
  }
  98.01% {
    transform: translate(1500px, 50px) rotate(210deg);
    animation-timing-function: cubic-bezier(0.1, 0.6, 0.3, 1);
  }
  100% {
    transform: translate(240px, 50px) rotate(185deg);
  }
}
.lt-hero-art:hover .lt-fly,
.lt-hero-art:hover .lt-graded {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .lt-fly,
  .lt-graded {
    animation: none;
  }
  .lt-fly-a {
    transform: translate(20px, 50px) rotate(-5deg);
  }
  .lt-fly-b {
    transform: translate(240px, 50px) rotate(185deg);
  }
}

.lt-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}
.lt-hero h1 {
  margin-top: 14px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
}
.lt-lede {
  margin-top: 22px;
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  text-wrap: pretty;
}
.lt-lede strong {
  color: var(--ink);
  font-weight: 700;
}
.lt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.lt-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}

/* Steps */
.lt-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 72px;
}
.lt-steps article {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
}
.lt-step-index {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--live);
}
.lt-steps h2 {
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.lt-steps p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

/* Panel: portfolio + offers */
.lt-panel {
  margin-bottom: 72px;
}
.lt-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.lt-section-heading h2,
.lt-extension h2 {
  margin-top: 10px;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 640px;
}
.lt-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--ghost);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}
.lt-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--live);
}
.lt-page-intro {
  margin-top: 14px;
  max-width: 640px;
  color: var(--muted);
  font-size: 14px;
  text-wrap: pretty;
}
.lt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.lt-card {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.lt-card-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.lt-card h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}
.lt-empty {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px 12px;
  color: var(--muted);
  font-size: 13px;
}
.lt-assets,
.lt-offers {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.lt-assets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lt-assets li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: var(--surface-2);
  min-width: 0;
}
.lt-asset-art {
  flex: none;
  width: 34px;
  height: 46px;
  border-radius: 4px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
}
.lt-asset-name {
  font-weight: 700;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lt-asset-mint {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}
.lt-offers li {
  padding: 12px;
  border-radius: 10px;
  background: var(--surface-2);
}
.lt-offer-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
}
.lt-offer-row + .lt-offer-row {
  margin-top: 6px;
}
.lt-offer-legs {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.lt-status {
  font-family: var(--mono);
  font-size: 11px;
}
.lt-status[data-tone='open'] {
  color: var(--success);
}
.lt-status[data-tone='closed'] {
  color: var(--muted);
}
.lt-status[data-tone='error'] {
  color: var(--error);
}

/* Extension */
.lt-extension {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 36px 0 96px;
}
.lt-checks {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
.lt-checks li::before {
  content: '—';
  margin-right: 10px;
  color: var(--live);
}
.lt-extension-art {
  position: relative;
  height: 320px;
}
.lt-slab {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}
.lt-slab-a {
  transform: translate(-105%, -52%) rotate(-12deg);
}
.lt-slab-b {
  transform: translate(-50%, -50%);
  width: 170px;
  z-index: 1;
}
.lt-slab-c {
  transform: translate(5%, -48%) rotate(12deg);
}

/* Footer */
.lt-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 18px 24px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.lt-footer a:hover {
  color: var(--ink);
}
.lt-footer-network {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
}
.lt-footer-network i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--live);
}

@media (max-width: 1180px) {
  .lt-hero > :not(.lt-hero-art) {
    max-width: calc(100% - 390px);
  }
  .lt-hero-art {
    top: 90px;
    transform: scale(0.8);
    transform-origin: top right;
  }
}

@media (max-width: 860px) {
  .lt-nav {
    display: none;
  }
  .lt-cta-desktop {
    display: none;
  }
  .lt-hero {
    padding: 56px 0 40px;
  }
  .lt-hero > :not(.lt-hero-art) {
    max-width: none;
  }
  .lt-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }
  .lt-lede {
    margin-top: 18px;
    font-size: 15px;
  }
  .lt-hero-actions {
    margin-top: 22px;
  }
  /* Behind the copy: dimmed, smaller, anchored to the top-right corner. */
  .lt-hero-art {
    top: 0;
    right: -60px;
    width: 460px;
    height: 420px;
    transform: scale(0.72);
    transform-origin: top right;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
  }
  .lt-hero-art::before {
    display: none;
  }
  .lt-graded {
    filter: none;
  }
  .lt-steps,
  .lt-grid,
  .lt-extension {
    grid-template-columns: minmax(0, 1fr);
  }
  .lt-extension-art {
    height: 260px;
  }
  .lt-assets {
    grid-template-columns: minmax(0, 1fr);
  }
}
