/* CaseStack Landing Page */

:root {
    --lp-primary: #2563eb;
    --lp-primary-dark: #1d4ed8;
    --lp-navy: #0b1b35;
    --lp-navy-light: #132744;
    --lp-text: #1e293b;
    --lp-muted: #64748b;
    --lp-border: #e2e8f0;
    --lp-bg: #f6f8fc;
    --lp-white: #ffffff;
    --lp-radius: 16px;
    --lp-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    --lp-container: 1120px;
}

.landing-body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--lp-text);
    background: var(--lp-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100%;
}

.lp-container {
    width: 100%;
    max-width: var(--lp-container);
    margin-inline: auto;
    padding-inline: 1rem;
    box-sizing: border-box;
}

/* Header */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lp-border);
}

.lp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 72px;
    min-width: 0;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--lp-text);
    font-weight: 800;
    font-size: 1.15rem;
    flex-shrink: 0;
    min-width: 0;
}

.lp-logo__mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lp-navy), var(--lp-primary));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 800;
}

.lp-nav {
    display: flex;
    gap: 1.75rem;
}

.lp-nav a {
    color: var(--lp-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.15s;
}

.lp-nav a:hover {
    color: var(--lp-primary);
}

.lp-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.lp-btn-label--mobile {
    display: none;
}

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.lp-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.lp-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--lp-text);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

.lp-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lp-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.lp-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.lp-btn--primary {
    background: var(--lp-primary);
    color: #fff;
}

.lp-btn--primary:hover {
    background: var(--lp-primary-dark);
}

.lp-btn--ghost {
    background: transparent;
    color: var(--lp-text);
}

.lp-btn--ghost:hover {
    color: var(--lp-primary);
}

.lp-btn--outline {
    background: transparent;
    border-color: var(--lp-border);
    color: var(--lp-text);
}

.lp-btn--outline:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
}

.lp-btn--white {
    background: #fff;
    color: var(--lp-primary);
}

.lp-btn--white:hover {
    background: #f1f5f9;
}

.lp-btn--outline-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.lp-btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lp-btn--lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
}

/* Hero */
.lp-hero {
    padding: 4rem 0 3rem;
    background:
        radial-gradient(ellipse 80% 60% at 70% 0%, rgba(37, 99, 235, 0.1), transparent),
        linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.lp-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lp-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lp-primary);
    margin-bottom: 1rem;
}

.lp-hero h1 {
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--lp-navy);
    margin-bottom: 1.25rem;
}

.lp-hero__lead {
    font-size: 1.1rem;
    color: var(--lp-muted);
    max-width: 36rem;
    margin-bottom: 2rem;
}

.lp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 100%;
}

.lp-hero__preview {
    max-width: 100%;
    min-width: 0;
}

.lp-hero__stats {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--lp-border);
    padding-top: 1.5rem;
}

.lp-hero__stats li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.lp-hero__stats strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lp-navy);
}

.lp-hero__stats span {
    font-size: 0.82rem;
    color: var(--lp-muted);
}

/* Mock dashboard */
.lp-mock {
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: var(--lp-shadow);
    border: 1px solid var(--lp-border);
    background: var(--lp-white);
}

.lp-mock__topbar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    background: #f1f5f9;
    border-bottom: 1px solid var(--lp-border);
}

.lp-mock__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.lp-mock__title {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    color: var(--lp-muted);
    font-weight: 500;
}

.lp-mock__body {
    display: flex;
    min-height: 280px;
}

.lp-mock__sidebar {
    width: 130px;
    background: var(--lp-navy);
    padding: 1rem 0.75rem;
}

.lp-mock__nav-item {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    margin-bottom: 0.25rem;
}

.lp-mock__nav-item.is-active {
    background: rgba(37, 99, 235, 0.35);
    color: #fff;
    font-weight: 600;
}

.lp-mock__main {
    flex: 1;
    padding: 1rem;
    background: var(--lp-bg);
}

.lp-mock__kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lp-mock__kpi {
    background: #fff;
    border-radius: 10px;
    padding: 0.65rem;
    border: 1px solid var(--lp-border);
}

.lp-mock__kpi small {
    display: block;
    font-size: 0.65rem;
    color: var(--lp-muted);
}

.lp-mock__kpi strong {
    font-size: 1.1rem;
    color: var(--lp-navy);
}

.lp-mock__list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.lp-mock__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    font-size: 0.78rem;
    min-width: 0;
}

.lp-mock__row span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.lp-mock__row em {
    flex-shrink: 0;
    font-style: normal;
    color: var(--lp-primary);
    font-weight: 600;
    font-size: 0.72rem;
}

/* Trust bar */
.lp-trust {
    padding: 2rem 0;
    border-bottom: 1px solid var(--lp-border);
    text-align: center;
}

.lp-trust > .lp-container > p {
    color: var(--lp-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.lp-trust__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.lp-trust__tags span {
    padding: 0.4rem 0.85rem;
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--lp-text);
    font-weight: 500;
}

/* Sections */
.lp-section {
    padding: 5rem 0;
}

.lp-section--muted {
    background: var(--lp-bg);
}

.lp-section__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.lp-section__head h2 {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--lp-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lp-section__intro {
    margin: 0 auto;
}

.lp-text {
    color: var(--lp-muted);
    font-size: 1.02rem;
}

.lp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.lp-split h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--lp-navy);
    margin-bottom: 1rem;
    line-height: 1.25;
}

/* Cards */
.lp-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.lp-card--accent {
    background: linear-gradient(145deg, var(--lp-navy) 0%, var(--lp-navy-light) 100%);
    border: none;
    color: #fff;
}

.lp-card--accent h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.lp-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-checklist li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
}

.lp-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--lp-primary);
    font-weight: 700;
}

.lp-card--accent .lp-checklist li::before {
    color: #93c5fd;
}

/* Features grid */
.lp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-feature {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.lp-section--muted .lp-feature {
    background: var(--lp-white);
}

.lp-feature:hover {
    box-shadow: var(--lp-shadow);
    transform: translateY(-2px);
}

.lp-feature__icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.lp-feature h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lp-navy);
    margin-bottom: 0.5rem;
}

.lp-feature p {
    font-size: 0.9rem;
    color: var(--lp-muted);
    margin: 0;
}

/* Collaboration flow */
.lp-flow {
    display: flex;
    align-items: stretch;
    gap: 1rem;
}

.lp-flow__step {
    flex: 1;
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.75rem;
}

.lp-flow__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--lp-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lp-flow__step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-navy);
    margin-bottom: 0.5rem;
}

.lp-flow__step p {
    font-size: 0.88rem;
    color: var(--lp-muted);
    margin: 0;
}

.lp-flow__arrow {
    display: flex;
    align-items: center;
    color: var(--lp-muted);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Roles */
.lp-roles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.lp-role {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.5rem;
    border-top: 3px solid var(--lp-primary);
}

.lp-role h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lp-navy);
    margin-bottom: 0.5rem;
}

.lp-role p {
    font-size: 0.85rem;
    color: var(--lp-muted);
    margin: 0;
}

/* CTA */
.lp-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--lp-navy) 0%, #1e3a5f 50%, var(--lp-primary-dark) 100%);
    color: #fff;
    text-align: center;
}

.lp-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.lp-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.lp-cta__inner .lp-hero__cta {
    justify-content: center;
}

.lp-cta__hint {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.55) !important;
}

/* Footer */
.lp-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--lp-border);
    background: #fff;
}

.lp-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-footer p {
    font-size: 0.85rem;
    color: var(--lp-muted);
    margin: 0;
}

.lp-footer__link {
    font-size: 0.85rem;
    color: var(--lp-primary);
    font-weight: 600;
    text-decoration: none;
}

/* Pain points */
.lp-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.lp-pain {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.5rem;
}

.lp-pain h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lp-navy);
    margin-bottom: 0.5rem;
}

.lp-pain p {
    font-size: 0.88rem;
    color: var(--lp-muted);
    margin: 0;
}

/* Feature detail blocks */
.lp-detail-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lp-detail {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
}

.lp-section--muted .lp-detail {
    background: var(--lp-white);
}

.lp-detail__head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem 1.75rem 0;
}

.lp-detail__icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.lp-detail__head h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-navy);
    margin-bottom: 0.25rem;
}

.lp-detail__head > div > p {
    font-size: 0.9rem;
    color: var(--lp-muted);
    margin: 0;
}

.lp-detail__body {
    padding: 1rem 1.75rem 1.5rem 4.5rem;
}

.lp-detail__body ul {
    margin: 0;
    padding-left: 1.1rem;
}

.lp-detail__body li {
    font-size: 0.9rem;
    color: var(--lp-text);
    margin-bottom: 0.45rem;
    line-height: 1.5;
}

.lp-detail__body li strong {
    color: var(--lp-navy);
}

/* Workflow timeline */
.lp-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 720px;
    margin-inline: auto;
}

.lp-timeline__item {
    display: flex;
    gap: 1.25rem;
    padding-bottom: 2rem;
    position: relative;
}

.lp-timeline__item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 36px;
    bottom: 0;
    width: 2px;
    background: var(--lp-border);
}

.lp-timeline__num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--lp-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
}

.lp-timeline__item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-navy);
    margin-bottom: 0.35rem;
}

.lp-timeline__item p {
    font-size: 0.9rem;
    color: var(--lp-muted);
    margin: 0;
}

/* Before / After */
.lp-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.lp-compare__col {
    border-radius: var(--lp-radius);
    padding: 1.75rem;
    border: 1px solid var(--lp-border);
}

.lp-compare__col--before {
    background: #fef2f2;
    border-color: #fecaca;
}

.lp-compare__col--after {
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.lp-compare__col h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lp-compare__col--before h3 { color: #b91c1c; }
.lp-compare__col--after h3 { color: #047857; }

.lp-compare__col ul {
    margin: 0;
    padding-left: 1.1rem;
}

.lp-compare__col li {
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    line-height: 1.45;
}

/* Permissions table */
.lp-table-wrap {
    overflow-x: auto;
    margin-top: 2.5rem;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    background: var(--lp-white);
}

.lp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.lp-table th,
.lp-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--lp-border);
}

.lp-table th {
    background: var(--lp-bg);
    font-weight: 700;
    color: var(--lp-navy);
    font-size: 0.82rem;
}

.lp-table td:not(:first-child) {
    text-align: center;
    color: var(--lp-muted);
    font-weight: 600;
}

.lp-table tbody tr:last-child td {
    border-bottom: none;
}

/* Security grid */
.lp-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.lp-security-grid .lp-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-navy);
    margin-bottom: 0.5rem;
}

.lp-security-grid .lp-card p {
    margin: 0;
    font-size: 0.88rem;
}

/* FAQ */
.lp-faq {
    max-width: 720px;
    margin: 0 auto;
}

.lp-faq__item {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.lp-faq__item summary {
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    color: var(--lp-navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-faq__item summary::-webkit-details-marker {
    display: none;
}

.lp-faq__item summary::after {
    content: "+";
    font-size: 1.25rem;
    color: var(--lp-primary);
    font-weight: 400;
}

.lp-faq__item[open] summary::after {
    content: "−";
}

.lp-faq__item p {
    padding: 0 1.25rem 1.1rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--lp-muted);
    line-height: 1.55;
}

/* CTA demo credentials */
.lp-cta__demo {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: left;
    max-width: 520px;
    margin-inline: auto;
}

.lp-cta__demo p {
    margin-bottom: 0.5rem !important;
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.lp-cta__demo ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.lp-cta__demo li {
    margin-bottom: 0.25rem;
}

.lp-cta__demo code {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 960px) {
    .lp-hero__grid,
    .lp-split {
        grid-template-columns: 1fr;
    }

    .lp-hero__preview {
        order: -1;
    }

    .lp-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-roles {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-pain-grid,
    .lp-security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-compare {
        grid-template-columns: 1fr;
    }

    .lp-detail__body {
        padding-left: 1.75rem;
    }

    .lp-flow {
        flex-direction: column;
    }

    .lp-flow__arrow {
        justify-content: center;
        transform: rotate(90deg);
    }
}

@media (max-width: 720px) {
    .lp-btn-label--desktop {
        display: none;
    }

    .lp-btn-label--mobile {
        display: inline;
    }

    .lp-header__actions .lp-btn {
        padding: 0.55rem 0.75rem;
        font-size: 0.82rem;
    }

    .lp-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        border-bottom: 1px solid var(--lp-border);
        padding: 1rem 1.5rem 1.5rem;
        gap: 0.25rem;
    }

    .lp-nav.is-open {
        display: flex;
    }

    .lp-nav a {
        padding: 0.65rem 0;
    }

    .lp-header__actions .lp-btn--ghost {
        display: none;
    }

    .lp-menu-toggle {
        display: flex;
    }

    .lp-header__inner {
        position: relative;
    }

    .lp-features,
    .lp-roles,
    .lp-pain-grid,
    .lp-security-grid {
        grid-template-columns: 1fr;
    }

    .lp-hero {
        padding-top: 2.5rem;
    }

    .lp-section {
        padding: 3.5rem 0;
    }

    .lp-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-hero__cta .lp-btn {
        width: 100%;
        white-space: normal;
    }

    .lp-cta__inner .lp-hero__cta {
        padding-inline: 0;
    }

    .lp-hero__stats {
        gap: 1.25rem;
    }

    .lp-hero__lead {
        font-size: 1rem;
    }

    .lp-mock__sidebar {
        width: 100px;
        padding: 0.75rem 0.5rem;
    }

    .lp-mock__nav-item {
        font-size: 0.65rem;
        padding: 0.35rem 0.45rem;
    }

    .lp-mock__title {
        font-size: 0.65rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .lp-detail__head {
        flex-direction: column;
        padding: 1.25rem 1.25rem 0;
    }

    .lp-detail__body {
        padding: 1rem 1.25rem 1.25rem;
    }

    .lp-card {
        padding: 1.5rem;
    }

    .lp-footer__inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 400px) {
    .lp-header__actions .lp-btn--ghost {
        display: none;
    }

    .lp-logo__text {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
