/* ===== Loop Harmony Page Styles ===== */

/* Hero */
.lh-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 60px) 0 80px;
    background: linear-gradient(135deg, var(--navy-900) 0%, #071230 50%, #0d1a3a 100%);
    overflow: hidden;
}

.lh-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lh-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,122,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,122,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.lh-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.lh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,122,255,0.1);
    border: 1px solid rgba(0,122,255,0.2);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 24px;
}

.lh-hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.lh-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 32px;
}

.lh-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Intro - 6 Features */
.lh-intro {
    padding: 120px 0;
    background: var(--white);
}

.lh-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lh-feat-card {
    position: relative;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.lh-feat-card:hover {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.lh-feat-num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 40px;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
}

.lh-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lh-feat-icon.blue { background: rgba(0,122,255,0.1); color: var(--blue); }
.lh-feat-icon.green { background: rgba(0,200,150,0.1); color: var(--green); }
.lh-feat-icon.purple { background: rgba(123,97,255,0.1); color: var(--purple); }
.lh-feat-icon.cyan { background: rgba(0,180,216,0.1); color: #00b4d8; }
.lh-feat-icon.orange { background: rgba(255,107,53,0.1); color: var(--orange); }
.lh-feat-icon.red { background: rgba(255,68,68,0.1); color: var(--red); }

.lh-feat-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.lh-feat-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* 3 Pillars */
.lh-pillars {
    padding: 120px 0;
    background: var(--gray-50);
}

.lh-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lh-pillar-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

.lh-pillar-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.lh-pillar-card.highlight {
    border-color: var(--green);
    background: linear-gradient(135deg, rgba(0,200,150,0.03) 0%, var(--white) 100%);
}

.lh-pillar-icon {
    margin-bottom: 20px;
}

.lh-pillar-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.lh-pillar-card > p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.lh-pillar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lh-pillar-list li {
    font-size: 13px;
    color: var(--gray-500);
    padding-left: 16px;
    position: relative;
}

.lh-pillar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.5;
}

/* System */
.lh-system {
    padding: 120px 0;
    background: var(--navy-900);
}

.lh-system .section-title { color: var(--white); }
.lh-system .section-desc { color: rgba(255,255,255,0.5); }

.lh-system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lh-sys-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.lh-sys-card:hover {
    border-color: rgba(0,122,255,0.3);
    background: rgba(0,122,255,0.06);
    transform: translateY(-4px);
}

.lh-sys-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0,122,255,0.1);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.lh-sys-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.lh-sys-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* AWAS AI-Insight */
.lh-awas {
    padding: 120px 0;
    background: var(--white);
}

.lh-awas-tech {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.lh-awas-tech-card {
    background: linear-gradient(135deg, var(--navy-900), #0d2050);
    border-radius: var(--radius-lg);
    padding: 36px;
    color: var(--white);
}

.lh-awas-tech-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.lh-awas-badge {
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.lh-awas-tech-card h3 {
    font-size: 20px;
    font-weight: 700;
}

.lh-awas-tech-card > p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

.lh-awas-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lh-awas-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.spec-label {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.spec-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
}

.lh-awas-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lh-awas-feat {
    display: flex;
    gap: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.lh-awas-feat:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
}

.lh-awas-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lh-awas-feat-icon.blue { background: rgba(0,122,255,0.1); color: var(--blue); }
.lh-awas-feat-icon.green { background: rgba(0,200,150,0.1); color: var(--green); }
.lh-awas-feat-icon.purple { background: rgba(123,97,255,0.1); color: var(--purple); }

.lh-awas-feat h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.lh-awas-feat p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Events */
.lh-events {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.lh-events-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 24px;
    text-align: center;
}

.lh-events-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lh-event-cat-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 3px solid;
}

.lh-event-cat-title.blue { color: var(--blue); border-color: var(--blue); }
.lh-event-cat-title.green { color: var(--green); border-color: var(--green); }
.lh-event-cat-title.red { color: var(--red); border-color: var(--red); }

.lh-event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lh-event-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 6px;
    padding: 6px 12px;
}

/* Combined Flow */
.lh-combined {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--navy-900), #0d2050);
}

.lh-combined .section-title { color: var(--white); }
.lh-combined .section-desc { color: rgba(255,255,255,0.5); }

.lh-combined-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lh-flow-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    transition: var(--transition);
}

.lh-flow-item:hover {
    border-color: rgba(0,122,255,0.3);
    transform: translateY(-4px);
}

.lh-flow-item.accent {
    border-color: rgba(0,200,150,0.3);
    background: rgba(0,200,150,0.06);
}

.lh-flow-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.lh-flow-icon.blue { background: rgba(0,122,255,0.15); color: var(--blue); }
.lh-flow-icon.green { background: rgba(0,200,150,0.15); color: var(--green); }
.lh-flow-icon.purple { background: rgba(123,97,255,0.15); color: var(--purple); }
.lh-flow-icon.orange { background: rgba(255,107,53,0.15); color: var(--orange); }

.lh-flow-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.lh-flow-item p {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

.lh-flow-arrow {
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* Applications */
.lh-applications {
    padding: 120px 0;
    background: var(--gray-50);
}

.lh-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lh-app-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 240px;
    background: linear-gradient(135deg, #0a1628 0%, #0d2b5e 100%);
    cursor: pointer;
    transition: var(--transition);
}

.lh-app-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.lh-app-card.large {
    grid-column: span 2;
}

.lh-app-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,122,255,0.1) 0%, transparent 60%);
}

.lh-app-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lh-app-icon {
    margin-bottom: 16px;
    color: var(--green);
}

.lh-app-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.lh-app-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* Specs Table */
.lh-specs {
    padding: 100px 0;
    background: var(--white);
}

.lh-specs-table {
    max-width: 640px;
    margin: 0 auto;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.lh-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
    border-bottom: 1px solid var(--gray-100);
}

.lh-spec-row:last-child {
    border-bottom: none;
}

.lh-spec-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-900);
    min-width: 100px;
}

.lh-spec-value {
    font-size: 14px;
    color: var(--gray-400);
    text-align: right;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .lh-hero-title {
        font-size: 44px;
    }

    .lh-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lh-pillars-grid {
        grid-template-columns: 1fr;
    }

    .lh-system-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lh-awas-tech {
        grid-template-columns: 1fr;
    }

    .lh-events-categories {
        grid-template-columns: 1fr;
    }

    .lh-app-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lh-app-card.large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .lh-hero-title {
        font-size: 32px;
    }

    .lh-hero-desc {
        font-size: 15px;
    }

    .lh-hero-desc br {
        display: none;
    }

    .lh-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .lh-features-grid {
        grid-template-columns: 1fr;
    }

    .lh-system-grid {
        grid-template-columns: 1fr;
    }

    .lh-combined-flow {
        flex-direction: column;
    }

    .lh-flow-item {
        max-width: 100%;
        width: 100%;
    }

    .lh-flow-arrow {
        transform: rotate(90deg);
    }

    .lh-app-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== 2026 Loop Harmony refresh ===== */
.lh-hero {
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 30%, rgba(0, 200, 150, 0.14), transparent 28%),
        radial-gradient(circle at 15% 80%, rgba(0, 122, 255, 0.18), transparent 34%),
        linear-gradient(135deg, #020b2e 0%, #061844 55%, #062b4d 100%);
}

.lh-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
    pointer-events: none;
}

.lh-hero-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
    gap: 64px;
    align-items: center;
    padding: 130px 0 80px;
}

.lh-hero-content { position: relative; z-index: 2; }
.lh-hero-title { font-size: clamp(56px, 6vw, 88px); line-height: .98; letter-spacing: -.065em; }
.lh-hero-kicker { margin: 30px 0 8px; color: #63e6c6; font-size: 18px; font-weight: 700; }
.lh-hero-desc { max-width: 620px; font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.72); }
.lh-hero-proof { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 32px; color: rgba(255,255,255,.52); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.lh-hero-proof span { position: relative; }
.lh-hero-proof span:not(:last-child)::after { content: ''; position: absolute; right: -12px; top: 7px; width: 3px; height: 3px; border-radius: 50%; background: #00c896; }

.lh-hero-visual { position: relative; perspective: 1200px; }
.command-window { overflow: hidden; border: 1px solid rgba(122,208,255,.28); border-radius: 24px; background: rgba(4,16,42,.86); box-shadow: 0 40px 100px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.08); transform: rotateY(-5deg) rotateX(2deg); backdrop-filter: blur(18px); }
.command-topbar { height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid rgba(255,255,255,.08); color: white; }
.command-brand { font-weight: 800; letter-spacing: -.02em; }
.command-live { display: flex; align-items: center; gap: 8px; font-size: 11px; color: #8fffe2; }
.command-live i { width: 7px; height: 7px; border-radius: 50%; background: #00dca6; box-shadow: 0 0 14px #00dca6; }
.command-layout { display: grid; grid-template-columns: 58px 1fr; min-height: 410px; }
.command-sidebar { padding: 20px 15px; display: flex; flex-direction: column; gap: 18px; border-right: 1px solid rgba(255,255,255,.07); }
.command-sidebar span { width: 27px; height: 27px; border-radius: 8px; background: rgba(255,255,255,.08); }
.command-sidebar span.active { background: linear-gradient(135deg,#007aff,#00c896); }
.command-main { padding: 25px; }
.command-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; color: white; }
.command-heading strong { font-size: 18px; }
.command-heading small { color: #55e4bd; }
.command-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.command-metrics div { padding: 14px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: rgba(255,255,255,.045); }
.command-metrics small { display: block; color: rgba(255,255,255,.5); font-size: 10px; }
.command-metrics strong { color: white; font-size: 24px; }
.command-streams { display: grid; grid-template-columns: 1.25fr .75fr; gap: 10px; margin-top: 12px; }
.command-streams .stream { position: relative; height: 190px; overflow: hidden; border-radius: 14px; background-position: center; background-size: cover; }
.command-streams .construction { background-image: linear-gradient(to top, rgba(1,10,29,.95),rgba(1,10,29,.08)), url('https://resource.clickn.co.kr/storage/504386915'); }
.command-streams .logistics { background-image: linear-gradient(to top, rgba(1,10,29,.95),rgba(1,10,29,.08)), url('https://resource.clickn.co.kr/storage/658812784'); }
.command-streams span { position: absolute; left: 14px; bottom: 12px; color: white; font-size: 12px; font-weight: 700; }
.command-timeline { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; height: 2px; background: rgba(255,255,255,.12); }
.command-timeline span { width: 8px; height: 8px; border-radius: 50%; background: #2b83d8; }
.command-timeline span.alert { background: #ff6b55; box-shadow: 0 0 16px #ff6b55; }
.floating-signal { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(7,25,61,.88); box-shadow: 0 18px 50px rgba(0,0,0,.35); color: white; backdrop-filter: blur(12px); }
.floating-signal b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg,#007aff,#00c896); font-size: 11px; }
.floating-signal span { font-size: 12px; }
.signal-location { left: -34px; bottom: 40px; }
.signal-alert { right: -20px; top: 90px; }

.lh-concept-visual { position: relative; min-height: 510px; overflow: hidden; border: 1px solid rgba(122,208,255,.28); border-radius: 26px; background: rgba(4,16,42,.86); box-shadow: 0 40px 100px rgba(0,0,0,.42); }
.lh-concept-main { position: absolute; inset: 28px 24px 88px; width: calc(100% - 48px); height: calc(100% - 116px); object-fit: contain; }
.lh-concept-secondary { position: absolute; right: 18px; bottom: 18px; width: 44%; padding: 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(5,20,48,.94); box-shadow: 0 18px 45px rgba(0,0,0,.38); }
.lh-concept-secondary img { display: block; width: 100%; height: 118px; object-fit: contain; }
.lh-concept-secondary span { display: block; padding: 7px 5px 2px; color: #8fffe2; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.lh-hero-visual > .command-window,
.lh-hero-visual > .floating-signal { display: none; }

.lh-intro { padding: 118px 0 90px; }
.lh-features-grid { gap: 16px; }
.lh-feat-card { border: 1px solid #e8edf5; border-radius: 18px; box-shadow: none; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.lh-feat-card:hover { transform: translateY(-6px); border-color: rgba(0,122,255,.25); box-shadow: 0 20px 50px rgba(9,42,91,.1); }

.lh-observability { padding: 110px 0; color: white; background: #030c23; scroll-margin-top: 72px; }
.obs-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: end; }
.obs-heading h2 { margin-top: 18px; font-size: clamp(40px,5vw,66px); line-height: 1.12; letter-spacing: -.045em; color: white; }
.obs-heading p { max-width: 530px; color: rgba(255,255,255,.64); font-size: 17px; line-height: 1.8; }
.obs-flow { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 70px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; background: rgba(255,255,255,.1); }
.obs-step { position: relative; min-height: 330px; padding: 42px 34px; background: #07132f; }
.obs-step.featured { background: linear-gradient(145deg,#09214b,#083751); }
.obs-number { position: absolute; right: 28px; top: 27px; color: rgba(255,255,255,.2); font-weight: 800; }
.obs-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 54px; border-radius: 16px; font-size: 26px; }
.obs-blue { color: #77b9ff; background: rgba(0,122,255,.14); }
.obs-cyan { color: #6bf1d1; background: rgba(0,200,150,.14); }
.obs-green { color: #a3f07d; background: rgba(114,215,72,.14); }
.obs-step h3 { margin-bottom: 15px; color: white; font-size: 23px; }
.obs-step p { color: rgba(255,255,255,.61); line-height: 1.75; }

.lh-product-view { padding: 118px 0; background: #f4f7fb; scroll-margin-top: 72px; }
.product-view-heading { max-width: 760px; margin-bottom: 46px; }
.product-view-heading h2 { margin: 18px 0 12px; color: var(--navy-900); font-size: clamp(38px,4vw,56px); line-height: 1.15; letter-spacing: -.045em; }
.product-view-heading p { font-size: 17px; color: var(--gray-400); }
.product-view-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.product-figure { overflow: hidden; border: 1px solid #e1e7f0; border-radius: 22px; background: white; box-shadow: 0 18px 50px rgba(13,32,80,.08); }
.product-figure a { display: block; overflow: hidden; aspect-ratio: 16/9; background: #dfe8f3; }
.product-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-figure:hover img { transform: scale(1.025); }
.product-figure figcaption { display: grid; gap: 7px; padding: 22px 24px 25px; }
.product-figure figcaption strong { color: var(--navy-900); font-size: 19px; }
.product-figure figcaption span { color: var(--gray-400); font-size: 14px; line-height: 1.6; }

@media (max-width: 1024px) {
    .lh-hero-shell { grid-template-columns: 1fr; gap: 54px; padding-top: 130px; }
    .lh-hero-content { max-width: 720px; }
    .lh-hero-visual { max-width: 720px; }
    .obs-heading { grid-template-columns: 1fr; gap: 25px; }
}

@media (max-width: 768px) {
    .lh-hero { min-height: auto; }
    .lh-hero-shell { gap: 44px; padding: 112px 0 70px; }
    .lh-hero-title { font-size: clamp(44px,14vw,62px); }
    .lh-hero-kicker { margin-top: 24px; font-size: 16px; }
    .lh-hero-desc { font-size: 15px; line-height: 1.7; }
    .lh-hero-desc br { display: none; }
    .lh-hero-actions { align-items: stretch; }
    .lh-hero-actions .btn { justify-content: center; }
    .lh-hero-proof { gap: 8px 18px; margin-top: 24px; font-size: 11px; }
    .command-window { border-radius: 17px; transform: none; }
    .command-topbar { height: 46px; padding: 0 15px; }
    .command-layout { grid-template-columns: 42px 1fr; min-height: 310px; }
    .command-sidebar { padding: 14px 9px; gap: 13px; }
    .command-sidebar span { width: 23px; height: 23px; }
    .command-main { padding: 15px; }
    .command-heading { margin-bottom: 13px; }
    .command-heading strong { font-size: 14px; }
    .command-heading small { font-size: 9px; }
    .command-metrics div { padding: 9px; }
    .command-metrics strong { font-size: 18px; }
    .command-streams .stream { height: 125px; }
    .command-timeline { margin-top: 16px; }
    .floating-signal { padding: 8px 10px; }
    .floating-signal b { width: 27px; height: 27px; }
    .floating-signal span { font-size: 10px; }
    .signal-location { left: -8px; bottom: -24px; }
    .signal-alert { right: -8px; top: 65px; }
    .lh-intro, .lh-observability, .lh-product-view { padding: 78px 0; }
    .obs-heading h2 { font-size: 38px; }
    .obs-heading p { font-size: 15px; }
    .obs-flow { grid-template-columns: 1fr; margin-top: 42px; }
    .obs-step { min-height: auto; padding: 30px 26px; }
    .obs-icon { margin-bottom: 32px; }
    .product-view-grid { grid-template-columns: 1fr; }
    .product-figure figcaption { padding: 19px 20px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    .command-window, .lh-feat-card, .product-figure img { transition: none; transform: none; }
}

@media (max-width: 768px) {
    .lh-hero {
        align-items: flex-start;
    }
    .lh-hero-shell {
        grid-template-rows: auto auto;
        align-items: start;
        align-content: start;
        padding-top: 40px;
    }
    .lh-concept-visual { min-height: 350px; border-radius: 18px; }
    .lh-concept-main { inset: 18px 12px 76px; width: calc(100% - 24px); height: calc(100% - 94px); }
    .lh-concept-secondary { right: 10px; bottom: 10px; width: 48%; padding: 7px; }
    .lh-concept-secondary img { height: 76px; }
}

@media (max-width: 768px) {
    .lh-hero-title,
    .section-title,
    .lh-observability h2,
    .product-view-heading h2,
    .lh-app-content h3,
    .cta h2 {
        max-width: 100%;
        text-wrap: balance;
    }
    html[lang="ko"] .lh-hero-kicker,
    html[lang="ko"] .lh-hero-desc,
    html[lang="ko"] .section-title,
    html[lang="ko"] .section-desc,
    html[lang="ko"] .lh-observability h2,
    html[lang="ko"] .lh-observability p,
    html[lang="ko"] .lh-feat-card,
    html[lang="ko"] .lh-app-content,
    html[lang="ko"] .cta-content {
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    html[lang="ja"] .lh-hero-desc,
    html[lang="ja"] .section-title,
    html[lang="ja"] .section-desc,
    html[lang="ja"] .lh-observability,
    html[lang="ja"] .lh-app-content,
    html[lang="ja"] .cta-content {
        line-break: strict;
        word-break: normal;
    }
}
/* The detail page is dedicated exclusively to LoopHarmony. */
.lh-awas,
.lh-combined,
.lh-specs {
    display: none;
}
