/* GrowMind LP2 story — LP1 visual language */

:root {
    --lp2-bg: #0a1218;
    --lp2-surface: #111b24;
    --lp2-surface2: #15202b;
    --lp2-border: #1e2a38;
    --lp2-text: #e7ecf3;
    --lp2-muted: #8b98a8;
    --lp2-green: #3dd68c;
    --lp2-green-dim: rgba(61, 214, 140, 0.15);
    --lp2-green-border: rgba(61, 214, 140, 0.35);
}

.lp2-body {
    margin: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(61, 214, 140, 0.12), transparent 55%),
        var(--lp2-bg);
    color: var(--lp2-text);
    font-family: "Segoe UI", system-ui, sans-serif;
    line-height: 1.55;
    min-height: 100vh;
}

.lp2-top {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 18, 24, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--lp2-border);
    padding: 0.75rem 1rem;
    padding-top: max(0.75rem, env(safe-area-inset-top));
}

.lp2-top-inner {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.lp2-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--lp2-text);
    text-decoration: none;
    font-size: 1.05rem;
}

.lp2-logo:hover { color: var(--lp2-green); text-decoration: none; }
.lp2-logo strong { color: var(--lp2-green); }

.lp2-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    background: var(--lp2-green-dim);
    color: var(--lp2-green);
    font-size: 0.72rem;
    font-weight: 800;
}

.lp2-top-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.lp2-top-actions a {
    color: var(--lp2-muted);
    text-decoration: none;
    font-size: 0.88rem;
}

.lp2-top-actions a:hover { color: var(--lp2-green); }

.lp2-lang-switcher {
    display: flex;
    gap: 2px;
    align-items: center;
}

.lp2-lang-btn {
    display: inline-block;
    padding: 0.25rem 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--lp2-muted);
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.lp2-lang-btn:hover {
    color: var(--lp2-text);
    text-decoration: none;
}

.lp2-lang-btn.active {
    background: var(--lp2-green);
    color: #0a1218;
}

.lp2-main {
    max-width: 820px;
    margin: 0 auto;
    padding: 1.75rem 1.25rem 3.5rem;
}

.lp2-story {
    background: var(--lp2-surface);
    border: 1px solid var(--lp2-border);
    border-radius: 12px;
    padding: 1.75rem 1.85rem 2.25rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.lp2-story-head {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--lp2-border);
}

.lp2-story h1 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.65rem, 4vw, 2.15rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lp2-story-nav { margin: 0; }

.lp2-story-section {
    border-top: 1px solid var(--lp2-border);
    padding-top: 1.35rem;
    margin-top: 0.85rem;
}

.lp2-story-section:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.lp2-story-section h2 {
    margin: 0 0 0.85rem;
    font-size: 1.25rem;
    color: var(--lp2-green);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.lp2-story-section p {
    margin: 0 0 0.9rem;
    font-size: 1.02rem;
    color: #d5dde8;
}

.lp2-story-section ul,
.lp2-story-section ol {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
    color: #d5dde8;
}

.lp2-story-section li {
    margin: 0.4rem 0;
    font-size: 1.02rem;
}

.lp2-story-section strong { color: #fff; }

.lp2-story-sign {
    margin-top: 1.35rem !important;
    color: var(--lp2-muted) !important;
}

.lp2-story-note {
    font-size: 0.9rem !important;
    color: var(--lp2-muted) !important;
}

.lp2-table-wrap {
    overflow-x: auto;
    margin: 0.85rem 0 1.1rem;
    border-radius: 8px;
    border: 1px solid var(--lp2-border);
}

.lp2-compare {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.lp2-compare th,
.lp2-compare td {
    border-bottom: 1px solid var(--lp2-border);
    border-right: 1px solid var(--lp2-border);
    padding: 0.75rem 0.85rem;
    vertical-align: top;
    text-align: left;
}

.lp2-compare th:last-child,
.lp2-compare td:last-child { border-right: 0; }

.lp2-compare tr:last-child td { border-bottom: 0; }

.lp2-compare thead th {
    background: var(--lp2-green-dim);
    color: var(--lp2-green);
    font-size: 0.95rem;
}

.lp2-compare tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.lp2-compare td:first-child { color: var(--lp2-muted); }
.lp2-compare td:last-child {
    background: rgba(61, 214, 140, 0.06);
    color: var(--lp2-text);
}

.lp2-compare-imgs td {
    padding: 0.85rem;
    background: var(--lp2-surface2) !important;
    width: 50%;
    vertical-align: top;
}

.lp2-compare-imgs figure { margin: 0; }

.lp2-compare-imgs img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    border: 1px solid var(--lp2-border);
    background: #0a1218;
}

.lp2-compare-imgs figcaption {
    margin-top: 0.45rem;
    font-size: 0.8rem;
    color: var(--lp2-muted);
    text-align: center;
}

.lp2-steps > li { margin-bottom: 0.85rem; }
.lp2-steps ul { margin-top: 0.4rem; }

.lp2-tag {
    display: inline-block;
    margin-top: 0.3rem;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    border: 1px solid var(--lp2-green-border);
    background: var(--lp2-green-dim);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--lp2-green);
}

.lp2-save {
    font-size: 0.85rem;
    color: var(--lp2-green);
}

.lp2-rewards td:nth-child(2) {
    white-space: nowrap;
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--lp2-green) !important;
}

.lp2-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.1rem 0 0.5rem;
}

.lp2-gallery-item {
    margin: 0;
    background: var(--lp2-surface2);
    border: 1px solid var(--lp2-border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.15s ease;
}

.lp2-gallery-item:hover { border-color: var(--lp2-green-border); }

.lp2-gallery-item a { display: block; position: relative; }

.lp2-gallery-item img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    background: #0a1218;
}

.lp2-gallery-item.is-rejected img {
    filter: grayscale(0.35) brightness(0.92);
}

.lp2-gallery-x {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}
.lp2-gallery-x::before,
.lp2-gallery-x::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 118%;
    height: 10px;
    margin-left: -59%;
    margin-top: -5px;
    background: #e11d2e;
    border-radius: 3px;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
}
.lp2-gallery-x::before { transform: rotate(38deg); }
.lp2-gallery-x::after { transform: rotate(-38deg); }

.lp2-gallery-reject-tag {
    display: block;
    margin-top: 0.35rem;
    color: #ff6b7a;
    font-weight: 600;
    font-size: 0.75rem;
}
.lp2-reject-legend {
    color: #ff6b7a !important;
}

.lp2-gallery-item figcaption {
    padding: 0.5rem 0.65rem 0.7rem;
    font-size: 0.8rem;
    color: var(--lp2-muted);
    line-height: 1.35;
}

.lp2-share-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.1rem 0 0.5rem;
}

.lp2-btn {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    border: 1px solid var(--lp2-green-border);
    background: transparent;
    color: var(--lp2-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.lp2-btn:hover {
    background: var(--lp2-green-dim);
    color: #fff;
    text-decoration: none;
}

.lp2-btn-ghost {
    border-color: #2a3544;
    color: var(--lp2-muted);
}

.lp2-btn-ghost:hover {
    border-color: var(--lp2-muted);
    color: var(--lp2-text);
    background: rgba(255, 255, 255, 0.04);
}

.lp2-btn-primary {
    background: var(--lp2-green);
    border-color: var(--lp2-green);
    color: #0a1218;
}

.lp2-btn-primary:hover {
    background: #52e09a;
    color: #0a1218;
}

.lp2-cta {
    background: linear-gradient(160deg, rgba(61, 214, 140, 0.14), rgba(61, 214, 140, 0.04));
    margin: 1.25rem 0 0;
    padding: 1.5rem 1.25rem 1.65rem !important;
    border-radius: 12px;
    border: 1px solid var(--lp2-green-border) !important;
    border-top: 1px solid var(--lp2-green-border) !important;
}

.lp2-cta-ask {
    font-size: 1.35rem;
    color: var(--lp2-green);
    margin: 1rem 0 !important;
}

.lp2-social-ideas { margin-bottom: 1rem; }

.lp2-social-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin: 1.1rem 0;
}

.lp2-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 0.5rem;
    border: 1px solid var(--lp2-border);
    border-radius: 10px;
    background: var(--lp2-surface2);
    color: var(--lp2-muted);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: default;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.lp2-social-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.lp2-social-icon:hover {
    border-color: var(--lp2-green-border);
    color: var(--lp2-green);
    background: var(--lp2-green-dim);
}

.lp2-story-nav .lp2-btn {
    cursor: pointer;
    font: inherit;
}

@media (max-width: 600px) {
    .lp2-social-icons { grid-template-columns: repeat(2, 1fr); }
    .lp2-gallery { grid-template-columns: 1fr; }
    .lp2-gallery-item img { height: 180px; }
    .lp2-compare-imgs img { height: 160px; }
    .lp2-story { padding: 1.15rem 1rem 1.6rem; }
    .lp2-main { padding: 1.1rem 0.85rem 2.5rem; }
}

@media print {
    .no-print { display: none !important; }
    .lp2-body {
        background: #fff !important;
        color: #111 !important;
    }
    .lp2-main { max-width: none; margin: 0; padding: 0; }
    .lp2-story {
        background: #fff !important;
        border: 0;
        box-shadow: none;
        padding: 0;
    }
    .lp2-story-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    .lp2-story-section h2 { color: #146c43 !important; }
    .lp2-story-section p,
    .lp2-story-section li { color: #222 !important; }
    .lp2-story-section strong { color: #111 !important; }
    .lp2-compare thead th { background: #eef6f1 !important; color: #146c43 !important; }
    .lp2-compare td:first-child { color: #444 !important; }
    .lp2-compare td:last-child { background: #f3faf6 !important; color: #111 !important; }

    .lp2-gallery {
        display: block !important;
    }
    .lp2-gallery-item {
        display: block !important;
        background: #fff !important;
        border-color: #ccc !important;
        break-inside: avoid;
        page-break-inside: avoid;
        margin-bottom: 10mm;
    }
    .lp2-gallery-item figcaption,
    .lp2-compare-imgs figcaption {
        color: #333 !important;
    }

    /* Képek: lazy/object-fit nélkül, mindig látszanak PDF-ben */
    .lp2-story img,
    .lp2-compare-imgs img,
    .lp2-gallery-item img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        border: 1px solid #ccc !important;
        background: #fff !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .lp2-compare-imgs td {
        background: #fff !important;
        width: 50% !important;
    }

    .lp2-cta {
        background: #f3faf6 !important;
        border-color: #ccc !important;
        color: #111 !important;
    }
    .lp2-btn-primary { background: #1f9d57 !important; color: #fff !important; }
    @page { size: A4; margin: 12mm; }
}

/* LP3 fejlodes naplo */
.lp3-doc img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--lp2-border);
  margin: 0.5rem 0 0.25rem;
  display: block;
}
.lp3-doc .bs-figure { margin: 1.25rem 0 0.35rem; }
.lp3-doc h2 { margin-top: 1.75em; }
.lp3-doc h3 {
  margin-top: 2em;
  color: var(--lp2-green);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.lp3-doc .lp3-caption {
  margin: 0 0 1.5rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--lp2-muted);
  background: var(--lp2-surface);
  border-left: 3px solid var(--lp2-green);
  border-radius: 0 6px 6px 0;
}
.lp3-doc blockquote {
  border-left: 3px solid var(--lp2-green);
  background: var(--lp2-green-dim);
  padding: 0.75rem 1rem;
  color: var(--lp2-text);
}

/* LP3 audio — felso bal */
.lp3-audio-el { display: none; }
.lp3-page .lp2-top-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.lp3-audio-fab {
  position: relative;
  order: -1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--lp2-green-border);
  border-radius: 999px;
  background: rgba(17, 27, 36, 0.95);
  color: var(--lp2-text);
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.lp3-audio-fab:hover { border-color: var(--lp2-green); }
.lp3-audio-fab.is-playing {
  background: var(--lp2-green-dim);
  border-color: var(--lp2-green);
}
.lp3-audio-fab.needs-gesture {
  animation: lp3-pulse 1.6s ease-in-out infinite;
}
.lp3-audio-fab-icon {
  color: var(--lp2-green);
  font-size: 1.05rem;
}
@keyframes lp3-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(61, 214, 140, 0); }
}
.lp3-audio-credit {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  color: var(--lp2-muted);
}
.lp3-audio-credit a { color: var(--lp2-green); }
.lp2-compact-direction {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.lp2-compact-direction .lp2-story-head {
  margin-bottom: 0.75rem;
}
.lp2-compact-stories {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.25rem 0 2rem;
}
.lp2-story-card {
  margin: 0;
  background: var(--lp2-surface2);
  border: 1px solid var(--lp2-border);
  border-radius: 12px;
  overflow: hidden;
}
.lp2-story-card a { display: block; }
.lp2-story-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  background: #0a1218;
}
.lp2-story-card-title {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--lp2-text, #e8f0ea);
  font-size: 1.05rem;
}
.lp2-story-card-cmt {
  display: block;
  color: var(--lp2-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}
.lp2-story-card figcaption {
  padding: 0.85rem 1rem 1.1rem;
}
.lp2-gallery-compact .lp2-gallery-item img {
  height: 220px;
}

.lp3-lp2-note {
  max-width: 42rem;
  margin: 0 auto 2rem;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  color: var(--lp2-muted);
}
.lp3-lp2-appendix {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}
.lp3-lp2-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 3.5rem auto 1.5rem;
  max-width: 42rem;
}
.lp3-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  max-width: 42rem;
  margin: 0 auto 1.35rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--lp2-border);
  border-radius: 10px;
  background: var(--lp2-surface2);
}
.lp3-toc a {
  color: var(--lp2-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.lp3-toc a:hover { color: var(--lp2-green); }
.lp3-toc span {
  display: inline-block;
  min-width: 1.1rem;
  margin-right: 0.3rem;
  color: var(--lp2-green);
  font-weight: 700;
}
.lp3-part-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp2-green);
}
.lp3-part-kicker-pad {
  max-width: 42rem;
  margin: 0 auto 0.5rem;
  padding: 0 1.25rem;
}
@media print {
  .lp3-audio-fab, .lp3-audio-credit, .lp3-toc { display: none !important; }
}

/* LTD investor docs */
.ltd-lead {
  margin: 0.5rem 0 0;
  color: var(--lp2-muted);
  font-size: 1.02rem;
}
.ltd-files {
  max-width: 42rem;
  margin: 2.5rem auto 0;
  padding: 0 1.25rem 2.5rem;
}
.ltd-files h2 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  color: var(--lp2-green);
}
.ltd-file-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--lp2-border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--lp2-surface);
}
.ltd-file-list li + li {
  border-top: 1px solid var(--lp2-border);
}
.ltd-file-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  color: var(--lp2-text);
  text-decoration: none;
}
.ltd-file-list a:hover {
  background: var(--lp2-surface2);
  color: var(--lp2-green);
}
.ltd-file-name { font-weight: 600; }
.ltd-file-size {
  color: var(--lp2-muted);
  font-size: 0.85rem;
  white-space: nowrap;
}
.ltd-badge {
  color: var(--lp2-muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.ltd-top-inner {
  max-width: 960px;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}
.ltd-ai-form {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 1 1 14rem;
  max-width: 26rem;
  min-width: 0;
}
.ltd-ai-input {
  flex: 1;
  min-width: 0;
  padding: 0.4rem 0.65rem;
  font-size: 0.85rem;
  border: 1px solid var(--lp2-border);
  border-radius: 6px;
  background: var(--lp2-surface);
  color: var(--lp2-text);
}
.ltd-ai-input::placeholder { color: var(--lp2-muted); }
.ltd-ai-btn {
  flex-shrink: 0;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--lp2-green);
  border-radius: 6px;
  background: var(--lp2-green);
  color: #0a1218;
  cursor: pointer;
}
.ltd-ai-btn:hover { opacity: 0.92; }
.ltd-ai-form .ai-voice-mic,
.ltd-ai-form .topbar-ai-mic {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  border: 1px solid var(--lp2-border);
  border-radius: 6px;
  background: var(--lp2-surface);
  color: var(--lp2-text);
  cursor: pointer;
}
.ltd-ai-form .ai-voice-mic:hover { border-color: var(--lp2-green); color: var(--lp2-green); }
.ltd-ai-form .ai-voice-mic.is-listening {
  border-color: #c44;
  color: #c44;
  box-shadow: 0 0 0 2px rgba(204, 68, 68, 0.25);
}
.ltd-ai-banner {
  max-width: 42rem;
  margin: 1rem auto 0;
  padding: 0.75rem 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--lp2-border);
}
.ltd-ai-banner-err {
  border-color: rgba(240, 113, 120, 0.45);
  background: rgba(240, 113, 120, 0.12);
  color: #f0a0a4;
}
.ltd-ai-answer {
  max-width: 42rem;
  margin: 1rem auto 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--lp2-green-border);
  border-radius: 10px;
  background: var(--lp2-surface);
}
.ltd-ai-answer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.ltd-ai-answer-head strong { color: var(--lp2-green); }
.ltd-ai-answer-text { color: var(--lp2-text); line-height: 1.55; }
.ltd-ai-sources {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--lp2-muted);
}
.landing-gate {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}
.landing-gate-card {
  width: min(26rem, 100%);
  background: var(--lp2-surface);
  border: 1px solid var(--lp2-border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem 1.5rem;
}
.landing-gate-card h1 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--lp2-text);
}
.landing-eyebrow { color: var(--lp2-green); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.landing-lead { color: var(--lp2-muted); }
.landing-gate-form label {
  display: block;
  margin: 0.75rem 0 0.35rem;
  font-size: 0.9rem;
  color: var(--lp2-muted);
}
.landing-gate-form input[type="text"],
.landing-gate-form input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.35rem;
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--lp2-border);
  background: var(--lp2-bg);
  color: var(--lp2-text);
  font-size: 1rem;
}
.landing-btn {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--lp2-green);
  background: var(--lp2-green);
  color: #0a1218;
  font-weight: 650;
  cursor: pointer;
}
.landing-btn-primary { width: 100%; margin-top: 1.25rem; }
.landing-alert-err {
  margin: 0.75rem 0;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(240, 113, 120, 0.12);
  border: 1px solid rgba(240, 113, 120, 0.35);
  color: #f0a0a4;
}
.password-field { position: relative; }
.password-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--lp2-muted);
  cursor: pointer;
}
.password-toggle-input { position: absolute; opacity: 0; pointer-events: none; }
@media (max-width: 720px) {
  .ltd-ai-form { order: 3; flex: 1 1 100%; max-width: none; }
}
.ltd-doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.ltd-doc th,
.ltd-doc td {
  border: 1px solid var(--lp2-border);
  padding: 0.5rem 0.65rem;
  text-align: left;
}
.ltd-doc th { background: var(--lp2-surface2); }
