/* Guest landing — terminal / research desk */

.landing-root {
  --ld-bg: #0b0e11;
  --ld-ink: #020202;
  --ld-line: rgba(255, 255, 255, 0.1);
  --ld-line-soft: rgba(255, 255, 255, 0.06);
  --ld-text: #eaecef;
  --ld-muted: #848e9c;
  --ld-soft: #b7bdc6;
  --ld-cyan: #f0b90b;
  --ld-blue: #f0b90b;
  --ld-green: #0ecb81;
  --ld-red: #f6465d;
  --ld-band: #12161c;
  --ld-mark: #f0b90b;
  --ld-font: "Sora", "IBM Plex Sans", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --ld-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  display: none;
  min-height: 100vh;
  background: var(--ld-bg);
  color: var(--ld-text);
  font-family: var(--ld-font);
  -webkit-font-smoothing: antialiased;
}

body.is-landing .landing-root { display: block !important; }
body:not(.is-landing) .landing-root { display: none !important; }
body.is-landing .app-root { display: none !important; }
body.is-landing .ambient { display: none; }
body.is-landing {
  background: var(--ld-bg);
  background-image: none;
}
body:not(.is-landing) .app-root { display: block; }
.app-root.hidden { display: none !important; }

.ld-shell { width: 100%; margin: 0 auto; padding: 0 0 28px; background: transparent; }

/* Topbar */
.ld-topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 40;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 48px), 1480px);
  min-height: 58px;
  padding: 7px 8px 7px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(8, 11, 14, 0.72);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.ld-top-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: #fff;
  text-decoration: none;
}
.ld-top-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.ld-top-brand span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ld-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
}
.ld-nav a {
  color: var(--ld-soft);
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0.02em;
  font-family: var(--ld-font);
}
.ld-nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.ld-top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.ld-login {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--ld-soft);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--ld-font);
  letter-spacing: 0;
}
.ld-login:hover { color: #fff; border-color: rgba(255, 255, 255, 0.28); }
.ld-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 108px;
  padding: 0 18px;
  border: 1px solid #f0b90b;
  border-radius: 8px;
  background: #f0b90b;
  color: #0b0e11;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  font-weight: 600;
}
.ld-signup:hover { background: #f8d12f; }
.ld-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 9, 13, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ld-menu-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 3px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.ld-menu-btn[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.ld-menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.ld-mobile-nav {
  position: fixed;
  top: 68px;
  left: 16px;
  right: 16px;
  z-index: 39;
  display: none;
  padding: 8px;
  border: 1px solid var(--ld-line);
  background: rgba(7, 9, 13, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.ld-mobile-nav.is-open { display: grid; }
.ld-mobile-nav a,
.ld-mobile-nav button {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--ld-soft);
  font: inherit;
  font-size: 14px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.ld-mobile-nav .ld-mobile-primary {
  justify-content: center;
  margin-top: 4px;
  background: #f0b90b;
  color: #0b0e11;
}

/* Hero — one full-bleed composition */
.ld-hero {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.ld-hero-media {
  position: relative;
  min-height: min(100vh, 820px);
  height: auto;
  max-height: none;
  overflow: hidden;
  background: var(--ld-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 116px 0 72px;
}
.ld-hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(920px 420px at 12% 18%, rgba(240, 185, 11, 0.12), transparent 58%),
    radial-gradient(720px 380px at 88% 28%, rgba(14, 203, 129, 0.06), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 42%, rgba(0, 0, 0, 0.18));
  animation: ld-atmosphere-shift 14s ease-in-out infinite alternate;
}
.ld-hero-brand {
  position: absolute;
  top: max(20px, env(safe-area-inset-top) + 14px);
  left: max(24px, 4vw);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  pointer-events: none;
  user-select: none;
  line-height: 0;
}
.ld-hero-brand img {
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: 0;
  background: transparent;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.ld-hero-brand span {
  font-family: var(--ld-font);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.ld-hero-stage {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 96px), 1480px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 5vw, 88px);
  align-items: center;
}
.ld-hero-copy {
  position: relative;
  z-index: 3;
  width: auto;
  max-width: 34em;
  margin: 0;
  padding: 0;
  animation: ld-copy-rise 0.9s ease-out both;
}
.ld-hero-copy h1 {
  margin: 0;
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: #fff;
  word-break: keep-all;
}
.ld-hero-lead {
  margin: 22px 0 0;
  max-width: 38em;
  color: rgba(235, 242, 255, 0.78);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
}
.ld-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.ld-hero-visual {
  position: relative;
  min-height: 380px;
  animation: ld-visual-rise 1.05s ease-out 0.12s both;
}
.ld-hero-visual-frame {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: #12161c;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
  transform-origin: left center;
}
.ld-hero-visual-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1403 / 684;
  object-fit: cover;
  object-position: left center;
}
.ld-hero-visual-glow {
  position: absolute;
  inset: 12% -8% -10% 18%;
  z-index: 1;
  background: radial-gradient(circle at 50% 50%, rgba(240, 185, 11, 0.22), transparent 68%);
  filter: blur(18px);
  animation: ld-glow-pulse 5.5s ease-in-out infinite alternate;
}
.ld-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--ld-line);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  font-weight: 600;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.ld-btn-pill {
  min-height: 44px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 15px;
}
.ld-btn-primary { background: #f0b90b; color: #0b0e11; border-color: #f0b90b; }
.ld-btn-ghost {
  background: rgba(11, 14, 17, 0.35);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ld-btn-primary:hover { background: #f8d12f; transform: translateY(-1px); }
.ld-btn-ghost:hover { border-color: rgba(240, 185, 11, 0.55); color: #fff; }

@keyframes ld-atmosphere-shift {
  from { opacity: 0.85; transform: scale(1); }
  to { opacity: 1; transform: scale(1.04); }
}
@keyframes ld-visual-rise {
  from { opacity: 0; transform: translateY(28px) translateX(16px); }
  to { opacity: 1; transform: translateY(0) translateX(0); }
}
@keyframes ld-glow-pulse {
  from { opacity: 0.55; }
  to { opacity: 1; }
}
@keyframes ld-copy-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Intro */
.ld-section {
  width: min(100% - 32px, 1560px);
  margin: 0 auto;
  padding: 48px 0 0;
  border-bottom: 1px solid var(--ld-line-soft);
  scroll-margin-top: 72px;
}
.ld-section-tight { padding-bottom: 84px; }

.ld-intro-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  margin-bottom: 40px;
  align-items: end;
}
.ld-intro-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(36px, 5.2vw, 68px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  word-break: keep-all;
}
.ld-intro-accent {
  margin: 18px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ld-cyan);
  font-family: var(--ld-mono);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
}
.ld-intro-accent::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--ld-cyan);
  opacity: 0.7;
  flex: 0 0 auto;
}
.ld-intro-desc {
  margin: 0;
  color: var(--ld-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 34em;
  padding-bottom: 6px;
}
.ld-mark {
  display: inline;
  padding: 0.05em 0.18em;
  background: var(--ld-mark);
  color: #101113;
  white-space: nowrap;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Binance-style value props 2x2 */
.ld-values {
  border-bottom: 0;
  padding: 72px 0 24px;
}
.ld-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 80px;
  padding-bottom: 72px;
}
.ld-value {
  min-width: 0;
}
.ld-value-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}
.ld-value-icon svg {
  width: 48px;
  height: 48px;
  display: block;
}
.ld-value h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.35;
}
.ld-value p {
  margin: 0 0 14px;
  max-width: 36em;
  color: var(--ld-muted);
  font-size: 14px;
  line-height: 1.7;
}
.ld-text-link {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ld-cyan);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.ld-text-link:hover {
  color: #f8d12f;
  text-decoration: underline;
}

.ld-highlight {
  width: 100%;
  padding: 24px 0 80px;
  border-bottom: 1px solid var(--ld-line-soft);
}
.ld-highlight-inner {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ld-highlight-visual {
  position: relative;
  min-height: 280px;
  height: 320px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 40%, rgba(240, 185, 11, 0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(14, 203, 129, 0.08), transparent 45%),
    #12161c;
  overflow: hidden;
}
.ld-viz-bars {
  position: absolute;
  left: 28px;
  bottom: 36px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
  opacity: 0.55;
}
.ld-viz-bars i {
  display: block;
  width: 18px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(240, 185, 11, 0.35), rgba(255, 255, 255, 0.08));
}
.ld-viz-bars i:nth-child(1) { height: 42%; }
.ld-viz-bars i:nth-child(2) { height: 68%; }
.ld-viz-bars i:nth-child(3) { height: 52%; }
.ld-viz-bars i:nth-child(4) { height: 86%; }
.ld-viz-bars i:nth-child(5) { height: 60%; }
.ld-viz-pie {
  position: absolute;
  left: 46%;
  top: 18%;
  width: 168px;
  height: 168px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}
.ld-viz-pie svg { width: 100%; height: 100%; display: block; }
.ld-viz-arrow {
  position: absolute;
  right: 18%;
  top: 22%;
  color: #0ecb81;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 24px rgba(14, 203, 129, 0.45);
}
.ld-viz-cube {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #2b3139, #0b0e11);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(240, 185, 11, 0.25);
  transform: rotate(-8deg);
}
.ld-viz-cube img { width: 36px; height: 36px; display: block; }
.ld-highlight-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.25;
}
.ld-highlight-copy p {
  margin: 0 0 28px;
  max-width: 34em;
  color: var(--ld-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Feature cards 2x2 */
.ld-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 84px;
}
.ld-feature-card {
  border: 1px solid var(--ld-line-soft);
  background:
    linear-gradient(180deg, rgba(240, 185, 11, 0.04), transparent 42%),
    #0a0d12;
  min-height: 420px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.ld-feature-visual {
  position: relative;
  min-height: 240px;
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 185, 11, 0.08), transparent 45%),
    #0d1118;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.ld-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.92;
}
.ld-feature-body {
  padding: 22px 24px 26px;
}
.ld-eyebrow {
  margin: 0 0 8px;
  color: var(--ld-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--ld-mono);
}
.ld-feature-body h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.ld-feature-body p {
  margin: 0;
  color: var(--ld-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ld-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px;
}
.ld-chip {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: var(--ld-soft);
  font-family: var(--ld-mono);
  background: rgba(0, 0, 0, 0.25);
}
.ld-stat-big {
  padding: 28px 22px;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--ld-green);
  line-height: 1;
}
.ld-stat-big small {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--ld-muted);
  letter-spacing: 0;
  font-weight: 400;
}
.ld-levels {
  display: grid;
  gap: 10px;
  padding: 22px;
  font-family: var(--ld-mono);
  font-size: 13px;
}
.ld-levels div {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}
.ld-r-row {
  display: flex;
  gap: 8px;
  padding: 0 22px 22px;
  flex-wrap: wrap;
}
.ld-r-row span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-family: var(--ld-mono);
}
.ld-r-row span.is-on {
  background: rgba(93, 184, 255, 0.16);
  border-color: rgba(93, 184, 255, 0.4);
  color: var(--ld-blue);
}
.ld-cal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 0 22px 22px;
  font-size: 11px;
  font-family: var(--ld-mono);
}
.ld-cal i {
  display: block;
  padding: 10px 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-style: normal;
  text-align: center;
  color: var(--ld-muted);
}
.ld-cal i.up { color: var(--ld-green); }
.ld-cal i.down { color: var(--ld-red); }

/* Entry / deploy */
.ld-section-head {
  max-width: 920px;
  margin-bottom: 36px;
}
.ld-section-head h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 500;
}
.ld-section-head p {
  margin: 16px 0 0;
  color: var(--ld-muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 40em;
}
.ld-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ld-tab {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--ld-line-soft);
  background: transparent;
  color: var(--ld-muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
}
.ld-tab.is-active {
  background: #f0b90b;
  color: #0b0e11;
  border-color: #f0b90b;
}
.ld-entry-panel {
  display: none;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  padding-bottom: 84px;
  align-items: stretch;
}
.ld-entry-panel.is-active { display: grid; }
.ld-entry-copy h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.ld-entry-copy .ld-accent {
  display: block;
  margin-top: 8px;
  color: var(--ld-blue);
  font-size: 15px;
}
.ld-entry-copy p {
  margin: 14px 0 0;
  color: var(--ld-muted);
  font-size: 15px;
  line-height: 1.55;
}
.ld-entry-meta {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  font-size: 13px;
  color: var(--ld-muted);
}
.ld-entry-meta strong { color: #fff; font-weight: 500; }
.ld-mock {
  border: 1px solid var(--ld-line);
  background: #0b0c0f;
  min-height: 320px;
  padding: 18px;
  overflow: hidden;
}
.ld-mock img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ld-mock-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ld-muted);
  margin-bottom: 14px;
  font-family: var(--ld-mono);
}
.ld-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 12px;
  color: var(--ld-muted);
  font-size: 13px;
}
.ld-result {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ld-line-soft);
  font-size: 13px;
}
.ld-result em { font-style: normal; color: var(--ld-red); font-family: var(--ld-mono); }
.ld-chat { display: grid; gap: 10px; font-size: 13px; line-height: 1.45; }
.ld-bubble {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #12141a;
  max-width: 92%;
}
.ld-bubble.me {
  justify-self: end;
  background: #1a1f27;
  border-color: rgba(240, 185, 11, 0.28);
}

/* Dark research band */
.ld-band {
  padding: 44px max(16px, calc(50vw - 780px)) 64px;
  background:
    linear-gradient(135deg, rgba(240, 185, 11, 0.06), transparent 40%),
    linear-gradient(180deg, #0b1018, #080b10);
  color: var(--ld-text);
  border-top: 1px solid var(--ld-line-soft);
  border-bottom: 1px solid var(--ld-line-soft);
}
.ld-band-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  width: min(100%, 1560px);
  margin: 0 auto;
  align-items: start;
}
.ld-band h2 {
  margin: 0;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.ld-band p {
  margin: 14px 0 0;
  color: var(--ld-muted);
  font-size: 15px;
  line-height: 1.55;
}
.ld-band-list { display: grid; gap: 14px; }
.ld-band-list article {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.ld-band-list strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ld-cyan);
  font-family: var(--ld-mono);
  letter-spacing: 0.02em;
}
.ld-band-list span {
  color: var(--ld-muted);
  font-size: 13px;
  line-height: 1.45;
}
.ld-band-cta { margin-top: 24px; }

/* Pricing — horizontal swipe cards */
.ld-section.ld-section-pricing {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 48px 0 0;
  border-bottom: 0;
  overflow: visible;
}
.ld-pricing-rail {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.ld-pricing-rail::-webkit-scrollbar { display: none; }
.ld-pricing-scroll {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 24px 64px;
  scroll-snap-type: x mandatory;
}

@media (min-width: 900px) {
  .ld-pricing-scroll {
    width: min(100%, 860px);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    gap: 16px;
  }
  .ld-plan {
    width: 260px;
    min-width: 260px;
    max-width: 260px;
  }
}
.ld-plan {
  box-sizing: border-box;
  flex: 0 0 auto !important;
  width: 260px;
  min-width: 260px;
  max-width: 260px;
  scroll-snap-align: start;
  border: 1px solid var(--ld-line-soft);
  background:
    linear-gradient(180deg, rgba(240, 185, 11, 0.05), transparent 42%),
    #0a0d12;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.ld-plan.is-featured {
  border-color: rgba(240, 185, 11, 0.42);
  background:
    linear-gradient(180deg, rgba(240, 185, 11, 0.1), transparent 48%),
    #0c1118;
}
.ld-plan h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.ld-plan .ld-price {
  margin: 18px 0 6px;
  font-size: 34px;
  letter-spacing: -0.04em;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.ld-plan .ld-price small {
  font-size: 14px;
  color: var(--ld-muted);
  letter-spacing: 0;
  font-weight: 400;
}
.ld-plan .ld-bill {
  color: var(--ld-muted);
  font-size: 13px;
  margin-bottom: 22px;
  flex: 1;
}
.ld-plan .ld-btn {
  width: 100%;
}

/* FAQ */
.ld-faq { padding-bottom: 84px; }
.ld-faq-item { border-bottom: 1px solid var(--ld-line-soft); }
.ld-faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
}
.ld-faq-item button span {
  color: var(--ld-muted);
  font-size: 22px;
  line-height: 1;
}
.ld-faq-body {
  display: none;
  padding: 0 0 22px;
  color: var(--ld-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 52em;
}
.ld-faq-item.is-open .ld-faq-body { display: block; }

/* Footer CTA */
.ld-footer-cta {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
  padding: 84px 0;
  border-bottom: 1px solid var(--ld-line-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ld-footer-cta h2 {
  margin: 0;
  max-width: 16em;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 500;
}
.ld-footer-cta p {
  margin: 16px 0 28px;
  color: var(--ld-muted);
  max-width: 36em;
  font-size: 15px;
  line-height: 1.55;
}
.ld-footer-cta .ld-btn {
  width: auto;
  min-width: 180px;
}
.ld-footer {
  width: min(100% - 32px, 1560px);
  margin: 0 auto;
  padding: 48px 0 28px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
}
.ld-footer-brand {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--ld-text);
  text-decoration: none;
  font-family: var(--ld-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ld-footer p {
  margin: 0;
  color: var(--ld-muted);
  font-size: 13px;
  line-height: 1.55;
  max-width: 28em;
}
.ld-footer h4 {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ld-muted);
  font-weight: 500;
}
.ld-footer a {
  display: block;
  color: var(--ld-soft);
  text-decoration: none;
  font-size: 14px;
  margin: 0 0 10px;
}
.ld-footer-muted {
  display: block;
  margin: 0 0 10px;
  color: var(--ld-muted);
  font-size: 14px;
}
.ld-legal {
  width: min(100% - 32px, 1560px);
  margin: 0 auto;
  padding: 0 0 40px;
  color: var(--ld-muted);
  font-size: 12px;
  line-height: 1.55;
}

/* Auth modal */
.ld-auth {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.ld-auth.is-open {
  display: flex;
}
.ld-auth-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 6, 10, 0.78);
  backdrop-filter: blur(6px);
  cursor: pointer;
  animation: ld-auth-fade-in 0.22s ease;
}
.ld-auth-panel {
  position: relative;
  margin: auto;
  width: min(100%, 420px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  background: linear-gradient(165deg, #14161c 0%, #0a0b0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  animation: ld-auth-slide-in 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}
.ld-auth-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.ld-auth-head-text { min-width: 0; flex: 1; }
.ld-auth-panel h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
}
.ld-auth-panel .ld-auth-head-text > p {
  display: none;
}
.ld-auth-close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: -4px -4px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.ld-auth-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.ld-auth-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(93, 184, 255, 0.45);
  color: #fff;
  transform: scale(1.04);
}
.ld-auth-close:active {
  transform: scale(0.96);
}
.ld-auth-close:focus-visible {
  outline: 2px solid rgba(93, 184, 255, 0.55);
  outline-offset: 2px;
}

/* 续期弹窗关闭：纯图标，无圆圈底 */
.ld-auth-close-plain {
  width: 32px;
  height: 32px;
  margin: -2px -2px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
}
.ld-auth-close-plain:hover {
  background: transparent;
  border-color: transparent;
  color: #fff;
  transform: none;
}
.ld-auth-close-plain:active {
  transform: none;
  color: rgba(255, 255, 255, 0.8);
}
.ld-field { display: grid; gap: 8px; margin-bottom: 14px; }
.ld-field label {
  font-size: 12px;
  color: var(--ld-muted);
  letter-spacing: 0.02em;
}
.ld-field input {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font: inherit;
  font-size: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.ld-field input::placeholder { color: rgba(255, 255, 255, 0.28); }
.ld-field input:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.42);
}
.ld-field input:focus {
  outline: none;
  border-color: rgba(93, 184, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(93, 184, 255, 0.14);
  background: rgba(0, 0, 0, 0.5);
}
.ld-auth-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 0 12px;
}
.ld-auth-meta.hidden { display: none; }
.ld-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}
.ld-remember.hidden { display: none; }
.ld-remember input {
  width: 15px;
  height: 15px;
  accent-color: #d4af37;
  cursor: pointer;
}
.ld-auth-link {
  display: inline-flex;
  margin: 0;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.ld-auth-link:hover { color: #f0b90b; }
.ld-auth-link.hidden { display: none; }
.ld-code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.ld-code-send {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
}
.ld-code-send:hover:not(:disabled) {
  border-color: rgba(240, 185, 11, 0.45);
  color: #f0b90b;
}
.ld-code-send:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.ld-oauth {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.ld-oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.ld-oauth-btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}
.ld-oauth-btn:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}
.ld-oauth-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}
.ld-oauth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 2px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
}
.ld-oauth-divider::before,
.ld-oauth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.ld-oauth-divider span { white-space: nowrap; }

.ld-auth-actions { display: grid; gap: 10px; margin-top: 10px; }
.ld-auth-actions .ld-btn {
  min-height: 46px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}
.ld-auth-actions .ld-btn-primary {
  background: linear-gradient(180deg, #f8d12f 0%, #f0b90b 100%);
  color: #0b0e11;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(240, 185, 11, 0.22);
}
.ld-auth-actions .ld-btn-primary:hover {
  background: #f8d12f;
  transform: translateY(-1px);
}
.ld-auth-actions .ld-btn-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
}
.ld-auth-error {
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(240, 113, 120, 0.1);
  border: 1px solid rgba(240, 113, 120, 0.25);
  color: var(--ld-red);
  font-size: 13px;
  line-height: 1.4;
}

.ld-contact-panel {
  max-width: 380px;
}

.ld-contact-body {
  display: grid;
  gap: 14px;
}

.ld-contact-steps {
  margin: 0;
  padding: 0 0 0 1.15em;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.ld-contact-steps li + li {
  margin-top: 6px;
}

.ld-contact-steps strong {
  color: #f0b90b;
  font-weight: 650;
}

.ld-contact-tip {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.ld-contact-qr {
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #fff;
}

.ld-contact-qr img {
  width: min(100%, 220px);
  height: auto;
  display: block;
  border-radius: 4px;
}
@keyframes ld-auth-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes ld-auth-slide-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .ld-feature-grid,
  .ld-entry-panel.is-active,
  .ld-band-grid,
  .ld-footer,
  .ld-intro-head,
  .ld-values-grid,
  .ld-highlight-inner {
    grid-template-columns: 1fr;
  }
  .ld-values-grid { gap: 36px; padding-bottom: 48px; }
  .ld-highlight-visual { min-height: 240px; height: 260px; }
  .ld-highlight { padding-bottom: 56px; }
  .ld-hero-stage {
    width: min(calc(100% - 56px), 1040px);
    gap: 36px;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }
  .ld-hero-copy h1 {
    font-size: clamp(50px, 6vw, 68px);
  }
  .ld-hero-visual { min-height: 0; }
}

@media (max-width: 900px) {
  .ld-nav { display: none; }
  .ld-menu-btn { display: inline-flex; }
  .ld-hero-media {
    min-height: 0;
    padding: 108px 0 48px;
  }
  .ld-hero-stage {
    width: min(100% - 40px, 640px);
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ld-hero-copy {
    max-width: none;
  }
  .ld-hero-copy h1 {
    font-size: clamp(40px, 9vw, 56px);
    line-height: 1.04;
  }
  .ld-hero-visual {
    min-height: 0;
    order: -1;
    max-width: 520px;
  }
  .ld-hero-visual-frame {
    transform: none;
  }
}

@media (max-width: 720px) {
  .ld-top-actions .ld-login { display: none; }
}

@media (max-width: 560px) {
  .ld-shell { padding-bottom: calc(20px + env(safe-area-inset-bottom)); }
  .ld-topbar {
    top: calc(10px + env(safe-area-inset-top));
    width: calc(100% - 24px);
    gap: 8px;
    min-height: 54px;
    padding: 5px 6px 5px 12px;
  }
  .ld-top-brand img { width: 28px; height: 28px; }
  .ld-top-brand span { font-size: 16px; }
  .ld-top-actions { gap: 8px; }
  .ld-top-actions .ld-signup { display: none; }
  .ld-menu-btn { display: inline-flex; width: 42px; height: 42px; }
  .ld-mobile-nav {
    top: calc(62px + env(safe-area-inset-top));
    left: 12px;
    right: 12px;
  }
  .ld-hero-media {
    padding: calc(88px + env(safe-area-inset-top)) 0 40px;
  }
  .ld-hero-stage {
    width: calc(100% - 40px);
  }
  .ld-hero-brand {
    left: 20px;
    gap: 10px;
  }
  .ld-hero-brand img {
    width: 32px;
    height: 32px;
    border-radius: 0;
    background: transparent;
  }
  .ld-hero-brand span {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
  .ld-hero-copy h1 {
    font-size: clamp(36px, 11vw, 44px);
    line-height: 1.05;
  }
  .ld-hero-lead { margin-top: 16px; font-size: 15px; }
  .ld-intro-desc,
  .ld-section-head p,
  .ld-band p,
  .ld-footer-cta p { font-size: 14px; line-height: 1.65; }
  .ld-hero-actions { display: grid; grid-template-columns: 1fr; }
  .ld-btn { width: 100%; min-height: 48px; }
  .ld-hero-visual { display: none; }
  .ld-section,
  .ld-footer-cta,
  .ld-footer,
  .ld-legal { width: calc(100% - 40px); }
  .ld-section { padding-top: 36px; }
  .ld-intro-head { gap: 20px; margin-bottom: 28px; align-items: start; }
  .ld-intro-copy h2,
  .ld-section-head h2,
  .ld-footer-cta h2 {
    font-size: clamp(30px, 9.6vw, 40px);
    line-height: 1.05;
  }
  .ld-intro-accent {
    white-space: normal;
    font-size: 13px;
  }
  .ld-values { padding-top: 40px; }
  .ld-value h3 { font-size: 20px; }
  .ld-value-icon, .ld-value-icon svg { width: 40px; height: 40px; }
  .ld-feature-grid { gap: 12px; padding-bottom: 52px; }
  .ld-feature-card { min-height: 0; }
  .ld-feature-visual { min-height: 210px; }
  .ld-feature-body { padding: 20px; }
  .ld-feature-body h3 { font-size: 22px; }
  .ld-pricing-scroll {
    justify-content: flex-start;
    width: max-content;
    min-width: 100%;
    padding: 0 20px 52px;
    gap: 12px;
  }
  .ld-plan {
    width: 78vw;
    min-width: 78vw;
    max-width: 78vw;
    padding: 22px 18px 18px;
  }
  .ld-tabs {
    margin: 0 -20px 24px;
    padding: 0 20px 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .ld-tabs::-webkit-scrollbar { display: none; }
  .ld-tab { flex: 0 0 auto; min-height: 44px; }
  .ld-entry-panel { gap: 22px; padding-bottom: 52px; }
  .ld-entry-copy h3 { font-size: 24px; }
  .ld-mock { min-height: 260px; padding: 14px; }
  .ld-band { padding: 48px 20px 52px; }
  .ld-band-grid { gap: 28px; }
  .ld-footer-cta { padding: 56px 0; }
  .ld-footer {
    grid-template-columns: 1fr 1fr;
    padding: 40px 0 24px;
    gap: 28px 20px;
  }
  .ld-footer > div:first-child { grid-column: 1 / -1; }
  .ld-footer-brand { width: fit-content; }
  .ld-legal { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
  .ld-auth {
    align-items: center;
    justify-content: center;
    padding: 16px;
    padding-top: max(16px, env(safe-area-inset-top));
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
  .ld-auth-panel {
    width: min(100%, 420px);
    max-height: calc(100dvh - 32px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    overflow-y: auto;
    border-radius: 14px;
    padding: 22px 20px 20px;
  }
  .ld-auth-close:not(.ld-auth-close-plain) { width: 44px; height: 44px; }
  .ld-field input { min-height: 48px; font-size: 16px; }
  .ld-stat-big { font-size: 46px; }
}

@media (max-width: 350px) {
  .ld-hero-copy h1 { font-size: 32px; }
  .ld-section,
  .ld-footer-cta,
  .ld-footer,
  .ld-legal { width: calc(100% - 32px); }
  .ld-hero-stage { width: calc(100% - 32px); }
  .ld-tabs { margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .ld-auth-backdrop,
  .ld-auth-panel,
  .ld-hero-copy,
  .ld-hero-visual,
  .ld-hero-atmosphere,
  .ld-hero-visual-glow { animation: none; }
}
