@charset "utf-8";

/* Homepage V2 — preserves the established Across cyan/navy/white palette. */
.home-v2 {
    --home-navy: var(--brand-navy, #0f1d4a);
    --home-navy-soft: var(--brand-navy-soft, #1f3c70);
    --home-cyan: var(--brand-cyan, #00a8d4);
    --home-aqua: var(--brand-aqua, #36b6c1);
    --home-mint: var(--brand-mint, #86d1ca);
    --home-ink: #12203f;
    --home-muted: #5e6b82;
    --home-line: rgba(15, 29, 74, 0.12);
    --home-surface: #f5f9fa;
    color: var(--home-ink);
    background: #fff;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    letter-spacing: normal;
    overflow: clip;
}

.home-v2 *,
.home-v2 *::before,
.home-v2 *::after {
    box-sizing: border-box;
}

.home-v2 button,
.home-v2 a {
    font: inherit;
}

.home-v2 a:focus-visible,
.home-v2 button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
    box-shadow: 0 0 0 6px var(--home-cyan);
}

.home_skip_link {
    position: fixed;
    top: 1.2rem;
    left: 1.2rem;
    z-index: 12000;
    padding: 1rem 1.4rem;
    color: var(--home-navy);
    background: #fff;
    border-radius: 999px;
    font-size: 1.4rem;
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.home_skip_link:focus {
    transform: translateY(0);
}

.home_shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.home-v2 .header_area {
    z-index: 30;
}

.home-v2 .header_inner {
    width: min(1240px, calc(100% - 48px));
    max-width: none;
    height: 124px;
}

.home-v2 .header_logo {
    width: 180px;
    transition: opacity 160ms ease, transform 160ms ease;
}

.home-v2 .header_logo:hover {
    opacity: 0.82;
    transform: translateY(-2px);
}

.home-v2 .header_site_menu {
    margin-left: auto;
}

.home-v2 .header_site_menu a,
.home-v2 .header_language a {
    color: #fff;
}

.home-v2 .hero_container.home_hero {
    min-height: max(760px, 100svh);
    height: auto;
    isolation: isolate;
    background: var(--home-navy);
}

.home-v2 #background_img {
    height: 100%;
    min-height: 100%;
    filter: saturate(0.68) contrast(1.02);
    transform: scale(1.015);
}

.home_hero_overlay {
    background:
        linear-gradient(90deg, rgba(5, 13, 38, 0.94) 0%, rgba(8, 23, 55, 0.86) 44%, rgba(7, 32, 65, 0.56) 73%, rgba(5, 16, 43, 0.72) 100%),
        linear-gradient(180deg, rgba(15, 29, 74, 0.1), rgba(15, 29, 74, 0.62));
}

.home_hero_grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.28;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(96, 215, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 215, 255, 0.1) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 58%, #000 100%);
}

.home_hero_inner {
    position: relative;
    z-index: 8;
    width: min(1240px, calc(100% - 48px));
    min-height: max(760px, 100svh);
    margin-inline: auto;
    padding: 184px 0 126px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.75fr);
    gap: clamp(48px, 7vw, 100px);
    align-items: center;
}

.home_hero_copy {
    color: #fff;
    max-width: 760px;
}

.home_eyebrow {
    margin: 0 0 1.4rem;
    color: var(--home-cyan);
    font-family: "Roboto Condensed", "Inter", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-transform: uppercase;
}

.home_eyebrow_light {
    display: inline-flex;
    gap: 0.9rem;
    align-items: center;
    color: #9be9f8;
}

.home_live_dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: var(--home-mint);
    box-shadow: 0 0 0 0 rgba(134, 209, 202, 0.55);
    animation: homeLivePulse 2.2s ease-out infinite;
}

.home-v2 .main_catch {
    margin: 0;
    color: #fff;
    font-size: clamp(4.8rem, 6.2vw, 8.2rem);
    font-style: normal;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-wrap: balance;
    text-shadow: 0 12px 42px rgba(2, 8, 26, 0.38);
    white-space: pre-line;
}

.home-v2 .sub_catch {
    margin: 2.2rem 0 0;
    color: #8ee6f7;
    font-family: "Roboto Condensed", "Inter", sans-serif;
    font-size: clamp(2rem, 2.1vw, 2.8rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.home_hero_lead {
    max-width: 690px;
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.6rem, 1.5vw, 2rem);
    line-height: 1.78;
}

.home_hero_actions,
.home_solution_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 3.2rem;
}

.home_btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    padding: 1.35rem 2.2rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.home_btn:hover {
    transform: translateY(-3px);
}

.home_btn_primary {
    color: var(--home-navy);
    background: linear-gradient(135deg, #77d9e9, var(--home-mint));
    box-shadow: 0 14px 36px rgba(0, 168, 212, 0.28);
}

.home_btn_primary:hover {
    color: var(--home-navy);
    box-shadow: 0 18px 44px rgba(0, 168, 212, 0.42);
}

.home_btn_secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.home_btn_secondary:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.14);
}

.home_btn_dark {
    color: #fff;
    background: var(--home-navy);
}

.home_btn_dark:hover {
    color: #fff;
    background: var(--home-navy-soft);
    box-shadow: 0 14px 32px rgba(15, 29, 74, 0.2);
}

.home_hero_facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.8rem;
    margin: 3rem 0 0;
    padding: 0;
    list-style: none;
}

.home_hero_facts li {
    position: relative;
    padding-left: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    font-weight: 600;
}

.home_hero_facts li::before {
    content: "";
    position: absolute;
    top: 0.52em;
    left: 0;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: var(--home-cyan);
}

.home_hero_system {
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(128, 227, 244, 0.28);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(10, 28, 62, 0.78), rgba(12, 43, 74, 0.58));
    box-shadow: 0 30px 90px rgba(2, 9, 27, 0.42);
    backdrop-filter: blur(18px);
}

.home_hero_system::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 30%, rgba(105, 225, 242, 0.08) 48%, transparent 66%);
    transform: translateX(-120%);
    animation: homeSystemSweep 5.8s ease-in-out infinite;
}

.home_system_header {
    min-height: 58px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.68);
    font-family: "Roboto Condensed", monospace;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.home_system_status {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
    color: #a8eee3;
}

.home_system_status::before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: var(--home-mint);
    box-shadow: 0 0 14px rgba(134, 209, 202, 0.85);
}

.home_system_flow {
    padding: 2.4rem 2rem 1.8rem;
}

.home_system_node {
    position: relative;
    padding: 1.6rem 1.7rem 1.5rem 5.6rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.055);
}

.home_system_node > span {
    position: absolute;
    top: 50%;
    left: 1.6rem;
    color: #78dceb;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    transform: translateY(-50%);
}

.home_system_node strong,
.home_system_node small {
    display: block;
}

.home_system_node strong {
    font-size: 1.55rem;
    line-height: 1.3;
}

.home_system_node small {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.45;
}

.home_system_connector {
    width: 2px;
    height: 26px;
    margin-left: 3.1rem;
    overflow: hidden;
    background: rgba(96, 215, 255, 0.15);
}

.home_system_connector i {
    display: block;
    width: 100%;
    height: 11px;
    background: #7ce4f3;
    box-shadow: 0 0 12px rgba(124, 228, 243, 0.9);
    animation: homeConnector 1.45s ease-in-out infinite;
}

.home_system_signal {
    height: 72px;
    padding: 1.8rem 2rem 2.2rem;
    display: flex;
    gap: 0.65rem;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home_system_signal span {
    flex: 1;
    min-height: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #8aeadf, var(--home-cyan));
    animation: homeSignal 1.9s ease-in-out infinite alternate;
}

.home_system_signal span:nth-child(1) { height: 28%; animation-delay: -0.8s; }
.home_system_signal span:nth-child(2) { height: 72%; animation-delay: -1.3s; }
.home_system_signal span:nth-child(3) { height: 46%; animation-delay: -0.4s; }
.home_system_signal span:nth-child(4) { height: 92%; animation-delay: -1.6s; }
.home_system_signal span:nth-child(5) { height: 60%; animation-delay: -0.2s; }
.home_system_signal span:nth-child(6) { height: 36%; animation-delay: -1.05s; }

.home_scroll_hint {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    z-index: 9;
    display: grid;
    gap: 0.8rem;
    justify-items: center;
    color: rgba(255, 255, 255, 0.62);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.home_scroll_hint i {
    position: relative;
    width: 1px;
    height: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.24);
}

.home_scroll_hint i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateY(-100%);
    animation: homeScrollLine 1.8s ease-in-out infinite;
}

.home-v2 main:focus {
    outline: none;
}

.home_proof,
.home_solutions,
.home_products,
.home_news {
    background: #fff;
}

.home_proof {
    padding: 8rem 0 7rem;
    border-bottom: 1px solid var(--home-line);
}

.home_section_intro {
    max-width: 820px;
    margin-bottom: 4.4rem;
}

.home_section_intro_compact {
    margin-bottom: 3.4rem;
}

.home_section_intro h2,
.home_field_copy h2 {
    margin: 0;
    color: var(--home-navy);
    font-size: clamp(3.2rem, 4.5vw, 5.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.home_section_intro > p:not(.home_eyebrow),
.home_section_intro_split > p,
.home_field_copy > p:not(.home_eyebrow) {
    margin: 1.8rem 0 0;
    color: var(--home-muted);
    font-size: 1.7rem;
    line-height: 1.8;
}

.home_section_intro_split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
    gap: 5rem;
    align-items: end;
}

.home_section_intro_split > p {
    margin: 0 0 0.8rem;
}

.home_proof_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
}

.home_proof_item {
    min-height: 150px;
    padding: 2.8rem 2.3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--home-line);
}

.home_proof_item:last-child {
    border-right: 0;
}

.home_proof_item strong {
    color: var(--home-cyan);
    font-family: "Roboto Condensed", "Inter", sans-serif;
    font-size: clamp(2.5rem, 3.2vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1;
}

.home_proof_item span {
    margin-top: 1.2rem;
    color: var(--home-navy);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.45;
}

.home_proof_note {
    margin: 1.8rem 0 0;
    color: #778297;
    font-size: 1.15rem;
    line-height: 1.6;
}

.home_field_story {
    padding: 10rem 0;
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 168, 212, 0.24), transparent 35%),
        radial-gradient(circle at 90% 75%, rgba(134, 209, 202, 0.16), transparent 40%),
        var(--home-navy);
}

.home_field_story_grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(4rem, 8vw, 10rem);
    align-items: center;
}

.home_field_visual {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background:
        linear-gradient(rgba(96, 215, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 215, 255, 0.06) 1px, transparent 1px),
        rgba(255, 255, 255, 0.055);
    background-size: 48px 48px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.26);
}

.home_field_visual img {
    width: min(78%, 470px);
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.28));
    transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home_field_visual:hover img {
    transform: scale(1.035);
}

.home_field_scan {
    position: absolute;
    inset: -20% 0 auto;
    height: 32%;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(108, 225, 240, 0.13), transparent);
    animation: homeFieldScan 5.4s ease-in-out infinite;
}

.home_field_badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #9eeef2;
    background: rgba(15, 29, 74, 0.72);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.home_field_copy .home_eyebrow {
    color: #93e9f4;
}

.home_field_copy h2 {
    color: #fff;
}

.home_field_copy > p:not(.home_eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

.home_field_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2.8rem 0 0;
    padding: 0;
    list-style: none;
}

.home_field_tags li {
    padding: 0.8rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.055);
    font-size: 1.15rem;
    font-weight: 600;
}

.home_text_link {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    margin-top: 3rem;
    color: var(--home-cyan);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
}

.home_text_link span {
    transition: transform 160ms ease;
}

.home_text_link:hover span {
    transform: translateX(5px);
}

.home_field_copy .home_text_link {
    color: #91edf2;
}

.home_solutions {
    padding: 11rem 0;
}

.home_solution_explorer {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    min-height: 590px;
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 26px;
    background: var(--home-surface);
    box-shadow: 0 28px 80px rgba(15, 29, 74, 0.1);
}

.home_solution_tabs {
    padding: 1.2rem;
    border-right: 1px solid var(--home-line);
    background: #fff;
}

.home_solution_tab {
    width: 100%;
    min-height: 128px;
    padding: 2rem 1.8rem;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 1.2rem;
    text-align: left;
    border: 0;
    border-bottom: 1px solid var(--home-line);
    color: var(--home-ink);
    background: transparent;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.home_solution_tab:last-child {
    border-bottom: 0;
}

.home_solution_tab:hover {
    background: rgba(0, 168, 212, 0.06);
}

.home_solution_tab.is_active {
    color: #fff;
    border-color: transparent;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--home-navy), var(--home-navy-soft));
    box-shadow: 0 12px 30px rgba(15, 29, 74, 0.2);
    transform: translateX(6px);
}

.home_solution_index {
    color: var(--home-cyan);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home_solution_tab strong,
.home_solution_tab small {
    display: block;
}

.home_solution_tab strong {
    font-size: 1.5rem;
    line-height: 1.4;
}

.home_solution_tab small {
    margin-top: 0.65rem;
    color: var(--home-muted);
    font-size: 1.12rem;
    line-height: 1.45;
}

.home_solution_tab.is_active small {
    color: rgba(255, 255, 255, 0.62);
}

.home_solution_panel {
    padding: clamp(3.2rem, 5vw, 6rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: homePanelIn 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.home_solution_panel_head > span {
    display: inline-block;
    margin-bottom: 1.2rem;
    color: var(--home-cyan);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home_solution_panel_head > strong {
    display: block;
    color: var(--home-navy);
    font-size: clamp(2.6rem, 3.3vw, 4.2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.home_solution_panel_head > p {
    max-width: 670px;
    margin: 1.5rem 0 0;
    color: var(--home-muted);
    font-size: 1.55rem;
    line-height: 1.75;
}

.home_microdemo {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr) 62px minmax(0, 1fr);
    align-items: stretch;
}

.home_microdemo_node {
    min-height: 136px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(15, 29, 74, 0.12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 29, 74, 0.07);
}

.home_microdemo_node small {
    color: #7d8798;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.home_microdemo_node strong {
    color: var(--home-navy);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.45;
}

.home_microdemo_node_ai {
    border-color: rgba(0, 168, 212, 0.28);
    background: linear-gradient(145deg, #eefbfc, #fff);
}

.home_microdemo_node_result {
    border-color: rgba(54, 182, 193, 0.3);
    background: linear-gradient(145deg, #f1fbf8, #fff);
}

.home_microdemo_link {
    position: relative;
    align-self: center;
    height: 2px;
    overflow: hidden;
    background: rgba(0, 168, 212, 0.16);
}

.home_microdemo_link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--home-cyan);
    border-right: 2px solid var(--home-cyan);
    transform: translateY(-50%) rotate(45deg);
}

.home_microdemo_link span {
    display: block;
    width: 34%;
    height: 100%;
    background: var(--home-cyan);
    box-shadow: 0 0 12px rgba(0, 168, 212, 0.8);
    animation: homeFlowSignal 1.5s ease-in-out infinite;
}

.home_text_button {
    padding: 0.8rem 0;
    border: 0;
    color: var(--home-navy);
    background: transparent;
    font-size: 1.45rem;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(0, 168, 212, 0.42);
    text-underline-offset: 0.45rem;
    cursor: pointer;
}

.home_products {
    padding: 11rem 0 10rem;
    background: linear-gradient(180deg, #eff8fa 0%, #f8fbfc 100%);
}

.home_products .home_proj_slider {
    margin-top: 2rem;
}

.home_products_all,
.home_news_all {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    text-align: right;
}

.home_approach {
    padding: 11rem 0;
    color: #fff;
    background:
        radial-gradient(circle at 82% 22%, rgba(0, 168, 212, 0.2), transparent 32%),
        var(--home-navy);
}

.home_approach .home_eyebrow {
    color: #92e8f3;
}

.home_approach .home_section_intro h2 {
    color: #fff;
}

.home_approach .home_section_intro > p:not(.home_eyebrow) {
    color: rgba(255, 255, 255, 0.68);
}

.home_approach_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.home_approach_card {
    min-height: 310px;
    padding: 3.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.055);
    transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.home_approach_card:hover {
    border-color: rgba(121, 226, 238, 0.38);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
}

.home_approach_card > span {
    color: #84e3ef;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.home_approach_card h3 {
    margin: 6rem 0 0;
    color: #fff;
    font-size: 2.15rem;
    font-weight: 750;
    line-height: 1.35;
}

.home_approach_card p {
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 1.4rem;
    line-height: 1.78;
}

.home_approach_link {
    color: #8ce8ee;
}

.home_news {
    padding: 11rem 0;
}

.home-v2 .home_news_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.home-v2 .home_news_card {
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 29, 74, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-v2 .home_news_card:hover {
    border-color: rgba(0, 168, 212, 0.32);
    box-shadow: 0 22px 50px rgba(15, 29, 74, 0.12);
    transform: translateY(-6px);
}

.home-v2 .home_news_card > a {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.home_news_visual {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #edf5f7;
}

.home_news_visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home_news_card:hover .home_news_visual img {
    transform: scale(1.045);
}

.home_news_featured {
    position: absolute;
    top: 1.4rem;
    left: 1.4rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    color: #fff;
    background: var(--home-navy);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.home-v2 .home_news_body {
    flex: 1;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
}

.home-v2 .news_head {
    width: 100%;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.home-v2 .news_date {
    width: auto;
    color: #7a8598;
    font-size: 1.1rem;
    font-weight: 650;
}

.home-v2 .news_label {
    padding: 0.45rem 0.8rem;
    color: var(--home-cyan);
    border: 1px solid rgba(0, 168, 212, 0.22);
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
}

.home-v2 .home_news_body h3 {
    margin: 1.5rem 0 0;
    color: var(--home-navy);
    font-size: 1.7rem;
    font-weight: 750;
    line-height: 1.5;
}

.home-v2 .home_news_body > p {
    margin: 1.2rem 0 0;
    color: var(--home-muted);
    font-size: 1.3rem;
    line-height: 1.7;
}

.home_news_read {
    margin-top: auto;
    padding-top: 2rem;
    color: var(--home-cyan);
    font-size: 1.2rem;
    font-weight: 800;
}

.home-motion-ready [data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-motion-ready [data-reveal].is_visible {
    opacity: 1;
    transform: none;
}

@keyframes homeLivePulse {
    70% { box-shadow: 0 0 0 9px rgba(134, 209, 202, 0); }
    100% { box-shadow: 0 0 0 0 rgba(134, 209, 202, 0); }
}

@keyframes homeSystemSweep {
    0%, 55% { transform: translateX(-120%); }
    82%, 100% { transform: translateX(120%); }
}

@keyframes homeConnector {
    from { transform: translateY(-130%); }
    to { transform: translateY(260%); }
}

@keyframes homeSignal {
    to { height: 22%; opacity: 0.55; }
}

@keyframes homeScrollLine {
    0% { transform: translateY(-100%); }
    50%, 100% { transform: translateY(100%); }
}

@keyframes homeFieldScan {
    0%, 25% { transform: translateY(-120%); opacity: 0; }
    38% { opacity: 1; }
    72%, 100% { transform: translateY(480%); opacity: 0; }
}

@keyframes homePanelIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}

@keyframes homeFlowSignal {
    from { transform: translateX(-120%); }
    to { transform: translateX(320%); }
}

@media (max-width: 1020px) {
    .home_hero_inner {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
        gap: 4rem;
    }

    .home_microdemo {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .home_microdemo_link {
        width: 2px;
        height: 34px;
        justify-self: center;
    }

    .home_microdemo_link::after {
        top: auto;
        right: 50%;
        bottom: 0;
        transform: translateX(50%) rotate(135deg);
    }

    .home_microdemo_link span {
        width: 100%;
        height: 34%;
        animation-name: homeFlowSignalVertical;
    }

    @keyframes homeFlowSignalVertical {
        from { transform: translateY(-120%); }
        to { transform: translateY(320%); }
    }
}

@media (max-width: 880px) {
    .home-v2 .header_inner {
        width: min(100% - 32px, 760px);
        height: auto;
        min-height: 0;
        padding: 20px 0;
    }

    .home-v2 .hero_container.home_hero,
    .home_hero_inner {
        min-height: auto;
    }

    .home_hero_inner {
        width: min(100% - 36px, 760px);
        padding: 184px 0 92px;
        grid-template-columns: 1fr;
    }

    .home_hero_system {
        width: min(100%, 580px);
    }

    .home_scroll_hint {
        display: none;
    }

    .home_proof_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home_proof_item:nth-child(2) {
        border-right: 0;
    }

    .home_proof_item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--home-line);
    }

    .home_field_story_grid,
    .home_section_intro_split,
    .home_solution_explorer {
        grid-template-columns: 1fr;
    }

    .home_field_visual {
        min-height: 390px;
    }

    .home_solution_tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
        border-right: 0;
        border-bottom: 1px solid var(--home-line);
    }

    .home_solution_tab {
        min-height: 118px;
        border: 1px solid var(--home-line);
        border-radius: 14px;
    }

    .home_solution_tab.is_active {
        transform: none;
    }

    .home_approach_grid,
    .home-v2 .home_news_grid {
        grid-template-columns: 1fr;
    }

    .home_approach_card {
        min-height: 240px;
    }

    .home_approach_card h3 {
        margin-top: 3.8rem;
    }

    .home_section_intro_split > p {
        margin-top: -3rem;
    }
}

@media (max-width: 600px) {
    .home_shell,
    .home_products_all,
    .home_news_all {
        width: calc(100% - 32px);
    }

    .home-v2 .main_catch {
        font-size: clamp(4rem, 13vw, 5.8rem);
    }

    .home-v2 .header_logo {
        width: 142px;
    }

    .home-v2 .header_site_menu ul {
        gap: 10px 14px;
    }

    .home-v2 .header_site_menu a {
        font-size: 1.35rem;
    }

    .home-v2 .header_language a {
        font-size: 1.15rem;
    }

    .home-v2 .sub_catch {
        font-size: 1.8rem;
    }

    .home_hero_lead {
        font-size: 1.5rem;
    }

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

    .home_hero_actions .home_btn {
        width: 100%;
    }

    .home_hero_facts {
        display: grid;
        gap: 0.8rem;
    }

    .home_hero_system {
        border-radius: 18px;
    }

    .home_proof,
    .home_solutions,
    .home_products,
    .home_approach,
    .home_news,
    .home_field_story {
        padding-block: 7.5rem;
    }

    .home_section_intro h2,
    .home_field_copy h2 {
        font-size: 3.4rem;
    }

    .home_proof_grid {
        grid-template-columns: 1fr;
    }

    .home_proof_item,
    .home_proof_item:nth-child(2),
    .home_proof_item:nth-child(-n + 2) {
        min-height: 110px;
        border-right: 0;
        border-bottom: 1px solid var(--home-line);
    }

    .home_proof_item:last-child {
        border-bottom: 0;
    }

    .home_field_visual {
        min-height: 300px;
        border-radius: 20px;
    }

    .home_solution_tabs {
        grid-template-columns: 1fr;
    }

    .home_solution_tab {
        min-height: 100px;
    }

    .home_solution_panel {
        padding: 3rem 2rem;
    }

    .home_solution_panel_head > strong {
        font-size: 2.8rem;
    }

    .home_solution_actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v2 *,
    .home-v2 *::before,
    .home-v2 *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .home-motion-ready [data-reveal],
    .home-motion-ready [data-reveal].is_visible {
        opacity: 1;
        transform: none;
    }
}
