:root {
    --sense-bg: #f7f8fa;
    --sense-surface: #ffffff;
    --sense-ink: #07090d;
    --sense-muted: #676d78;
    --sense-line: rgba(11, 17, 28, 0.12);
    --sense-blue: #0878ff;
    --sense-cyan: #00c8ff;
    --sense-dark: #07090d;
    --sense-titanium: #9ca2aa;
    --sense-radius: 26px;
    --sense-shell: min(1320px, calc(100vw - 80px));
    --sense-header-height: 64px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

body.sense-page {
    margin: 0;
    min-width: 320px;
    color: var(--sense-ink);
    background: var(--sense-bg);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
        "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.sense-page main,
.sense-page main * {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.sense-page a {
    color: inherit;
    text-decoration: none;
}

.sense-page button,
.sense-page a {
    -webkit-tap-highlight-color: transparent;
}

.sense-page button {
    font: inherit;
}

.sense-page img {
    display: block;
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 999;
    padding: 10px 16px;
    color: #fff !important;
    background: #000;
    border-radius: 8px;
    transform: translateY(-140%);
}

.skip-link:focus {
    transform: translateY(0);
}

.sense-shell {
    width: var(--sense-shell);
    margin-inline: auto;
}

.sense-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--sense-header-height);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
    backdrop-filter: saturate(160%) blur(20px);
    transition: box-shadow 240ms ease, background 240ms ease;
}

.sense-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
}

.sense-nav {
    width: min(1440px, calc(100vw - 64px));
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.sense-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.sense-brand-yunli {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.sense-brand-divider {
    width: 1px;
    height: 18px;
    background: rgba(0, 0, 0, 0.18);
}

.sense-brand-product {
    color: #32363d;
    font-size: 15px;
    font-weight: 560;
    letter-spacing: -0.01em;
}

.sense-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.2vw, 38px);
    font-size: 13px;
    color: #343840;
}

.sense-nav-links a,
.sense-nav-back {
    position: relative;
    transition: color 180ms ease;
}

.sense-nav-links a::after {
    content: "";
    position: absolute;
    inset: auto 0 -8px;
    height: 1px;
    background: var(--sense-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms ease;
}

.sense-nav-links a:hover,
.sense-nav-links a.active,
.sense-nav-back:hover {
    color: var(--sense-blue);
}

.sense-nav-links a:hover::after,
.sense-nav-links a.active::after {
    transform: scaleX(1);
}

.sense-nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
}

.sense-nav-cta {
    padding: 9px 18px;
    color: #fff !important;
    background: var(--sense-ink);
    border-radius: 999px;
    transition: transform 180ms ease, background 180ms ease;
}

.sense-nav-cta:hover {
    background: var(--sense-blue);
    transform: translateY(-1px);
}

.sense-menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.sense-mobile-menu {
    display: none;
}

.sense-section {
    position: relative;
    padding: clamp(88px, 7.5vw, 120px) 0;
}

.sense-eyebrow,
.sense-kicker {
    margin: 0 0 22px;
    color: var(--sense-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sense-hero {
    position: relative;
    min-height: max(720px, 92svh);
    padding-top: var(--sense-header-height);
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 45%, rgba(0, 145, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}

.sense-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(7, 9, 13, 0.027) 1px, transparent 1px);
    background-size: 100% 96px;
    mask-image: linear-gradient(to right, #000, transparent 42%);
}

.sense-hero-canvas,
.sense-start-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sense-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: clamp(24px, 4vw, 80px);
    padding-block: 64px;
}

.sense-hero-copy {
    padding-left: clamp(0px, 2vw, 24px);
}

.sense-hero-copy h1 {
    margin: 0 0 24px;
    font-size: clamp(48px, 5vw, 78px);
    font-weight: 680;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.sense-hero-lead {
    margin: 0 0 24px;
    font-size: clamp(32px, 2.8vw, 46px);
    font-weight: 620;
    line-height: 1.15;
    letter-spacing: -0.05em;
}

.sense-hero-desc {
    margin: 0;
    color: var(--sense-muted);
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.8;
}

.sense-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
}

.sense-button {
    min-width: 118px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease,
        background 180ms ease;
}

.sense-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(8, 120, 255, 0.16);
}

.sense-button-dark {
    color: #fff !important;
    background: var(--sense-ink);
    border-color: var(--sense-ink);
}

.sense-button-dark:hover {
    background: var(--sense-blue);
    border-color: var(--sense-blue);
}

.sense-button-light {
    background: rgba(255, 255, 255, 0.78);
}

.sense-hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 38px;
    color: #4f5560;
    font-size: 12px;
}

.sense-hero-notes span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sense-hero-notes span::before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--sense-blue);
    border-radius: 50%;
}

.sense-product-stage {
    position: relative;
    height: min(680px, 68vh);
    min-height: 540px;
    margin: 0;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 160ms ease-out;
}

.sense-product-stage::after {
    content: "";
    position: absolute;
    right: 9%;
    bottom: 9%;
    width: 42%;
    height: 10%;
    background: rgba(0, 114, 255, 0.16);
    filter: blur(34px);
    border-radius: 50%;
    z-index: -1;
}

.sense-product-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(0.9);
    transform-origin: 58% 52%;
    mix-blend-mode: normal;
    filter: contrast(1.02) saturate(0.97);
}

.sense-product-stage figcaption {
    position: absolute;
    right: 5%;
    bottom: 3%;
    color: #7c828d;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sense-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6a707b !important;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: translateX(-50%);
    animation: sense-float 2.4s ease-in-out infinite;
}

@keyframes sense-float {
    50% { transform: translate(-50%, 6px); }
}

.sense-value {
    background: #fff;
}

.sense-value-head {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 70px;
}

.sense-value-head h2,
.sense-section-heading h2,
.sense-business-heading h2,
.sense-design-copy h2,
.sense-start-copy h2 {
    margin: 0;
    font-size: clamp(46px, 5.2vw, 78px);
    font-weight: 660;
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.sense-value-head p {
    margin: 0 0 10px;
    color: var(--sense-muted);
    font-size: 18px;
    line-height: 1.9;
}

.sense-value-flow {
    position: relative;
    min-height: 260px;
    margin-top: 68px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8vw;
    align-items: start;
}

.sense-value-flow canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sense-value-flow article {
    position: relative;
    z-index: 2;
    padding-top: 34px;
}

.sense-flow-index {
    color: var(--sense-blue);
    font-size: 12px;
    font-weight: 700;
}

.sense-value-flow h3 {
    margin: 12px 0 12px;
    font-size: 26px;
    font-weight: 620;
    letter-spacing: -0.03em;
}

.sense-value-flow h3 small {
    margin-left: 8px;
    color: #777d87;
    font-size: 14px;
    font-weight: 500;
}

.sense-value-flow p {
    max-width: 270px;
    margin: 0;
    color: var(--sense-muted);
    font-size: 14px;
    line-height: 1.75;
}

.sense-intelligence {
    background: var(--sense-bg);
}

.sense-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 56px;
}

.sense-section-heading h2 {
    font-size: clamp(42px, 4.6vw, 66px);
}

.sense-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--sense-line);
    border-left: 1px solid var(--sense-line);
}

.sense-capability {
    position: relative;
    min-height: 340px;
    padding: clamp(30px, 3.4vw, 46px);
    overflow: hidden;
    border-right: 1px solid var(--sense-line);
    border-bottom: 1px solid var(--sense-line);
    background: rgba(255, 255, 255, 0.66);
    transition: background 250ms ease;
}

.sense-capability:hover {
    background: #fff;
}

.sense-capability-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--sense-blue);
    font-size: 15px;
}

.sense-capability-top i {
    font-size: 28px;
}

.sense-capability h3 {
    margin: 52px 0 12px;
    font-size: clamp(26px, 2.6vw, 38px);
    font-weight: 620;
    letter-spacing: -0.045em;
}

.sense-capability > p {
    margin: 0;
    color: var(--sense-muted);
    font-size: 15px;
}

.sense-mini-wave {
    position: absolute;
    inset: auto 34px 34px;
    width: calc(100% - 68px);
    height: 72px;
}

.sense-transcript {
    position: absolute;
    inset: auto 48px 44px;
    display: grid;
    gap: 9px;
}

.sense-transcript span {
    width: clamp(130px, 22vw, 310px);
    height: 8px;
    background: linear-gradient(90deg, var(--sense-blue), rgba(8, 120, 255, 0.08));
    border-radius: 99px;
    transform-origin: left;
    animation: sense-line-read 2.8s ease-in-out infinite;
}

.sense-transcript span:nth-child(2) { width: 82%; animation-delay: -0.45s; }
.sense-transcript span:nth-child(3) { width: 63%; animation-delay: -0.9s; }
.sense-transcript span:nth-child(4) { width: 38%; animation-delay: -1.35s; }

@keyframes sense-line-read {
    0%, 100% { transform: scaleX(0.42); opacity: 0.35; }
    50% { transform: scaleX(1); opacity: 1; }
}

.sense-speakers {
    position: absolute;
    right: 48px;
    bottom: 40px;
    display: flex;
    align-items: center;
}

.sense-speakers span {
    width: 58px;
    height: 58px;
    margin-left: -10px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--sense-ink);
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--sense-line);
    animation: sense-speaker 2.7s ease-in-out infinite;
}

.sense-speakers span:nth-child(2) { background: var(--sense-blue); animation-delay: -0.9s; }
.sense-speakers span:nth-child(3) { background: #6b7280; animation-delay: -1.8s; }

@keyframes sense-speaker {
    50% { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(8, 120, 255, 0.18); }
}

.sense-summary-list {
    position: absolute;
    inset: auto 48px 36px;
    display: grid;
    gap: 12px;
}

.sense-summary-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3d424b;
    font-size: 13px;
}

.sense-summary-list i {
    width: 7px;
    height: 7px;
    background: var(--sense-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(8, 120, 255, 0.1);
}

.sense-business {
    color: #fff;
    background:
        radial-gradient(circle at 76% 34%, rgba(8, 120, 255, 0.2), transparent 30%),
        radial-gradient(circle at 24% 92%, rgba(0, 196, 255, 0.07), transparent 28%),
        #06080c;
    overflow: hidden;
}

.sense-business > canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sense-business-inner {
    position: relative;
    z-index: 2;
}

.sense-business-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.52fr);
    align-items: end;
    gap: clamp(42px, 8vw, 132px);
}

.sense-business-title-group {
    max-width: 790px;
}

.sense-business-title-group .sense-eyebrow {
    margin: 0 0 23px;
}

.sense-business-heading h2 {
    max-width: 760px;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.02;
}

.sense-business-summary {
    margin-bottom: 5px;
    padding: 3px 0 3px 27px;
    border-left: 1px solid rgba(130, 202, 255, 0.36);
}

.sense-business-summary p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.7;
}

.sense-business-outcomes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 25px;
}

.sense-business-outcomes span {
    position: relative;
    padding-left: 12px;
    color: rgba(218, 241, 255, 0.85);
    font-size: 12px;
    letter-spacing: 0.04em;
}

.sense-business-outcomes span::before {
    position: absolute;
    top: 0.52em;
    left: 0;
    width: 4px;
    height: 4px;
    content: '';
    background: var(--sense-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 205, 255, 0.95);
}

.sense-business-pipeline {
    margin-top: clamp(56px, 6vw, 86px);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.sense-business-pipeline article {
    position: relative;
    min-height: 206px;
    padding: 23px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid rgba(158, 213, 255, 0.14);
    background: linear-gradient(135deg, rgba(18, 28, 40, 0.86), rgba(10, 14, 20, 0.68));
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.sense-business-pipeline article:hover {
    z-index: 1;
    border-color: rgba(81, 191, 255, 0.56);
    background: linear-gradient(135deg, rgba(19, 47, 78, 0.9), rgba(10, 17, 27, 0.86));
    transform: translateY(-5px);
}

.sense-business-pipeline em {
    position: absolute;
    top: 22px;
    right: 20px;
    color: rgba(116, 205, 255, 0.65);
    font-size: 11px;
    font-style: normal;
    letter-spacing: 0.12em;
}

.sense-business-pipeline b {
    margin-bottom: auto;
    color: rgba(149, 215, 255, 0.72);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.sense-business-pipeline span {
    font-size: 18px;
    font-weight: 620;
    letter-spacing: -0.025em;
}

.sense-business-pipeline small {
    min-height: 34px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    line-height: 1.55;
}

.sense-business-proof {
    max-width: 1080px;
    margin: 34px auto 0;
    padding-top: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 128px minmax(0, 1fr);
    align-items: stretch;
    border-top: 1px solid rgba(151, 211, 255, 0.13);
}

.sense-business-proof-card {
    min-height: 278px;
    padding: 24px 26px;
    border: 1px solid rgba(159, 218, 255, 0.16);
    background: linear-gradient(135deg, rgba(22, 34, 48, 0.82), rgba(9, 14, 21, 0.76));
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sense-business-proof-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(228, 246, 255, 0.9);
    font-size: 13px;
    font-weight: 650;
}

.sense-business-proof-card header small {
    color: rgba(126, 205, 255, 0.72);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.sense-proof-quote {
    margin: 22px 0 19px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: -0.015em;
}

.sense-business-proof dl {
    margin: 0;
    display: grid;
    gap: 0;
}

.sense-business-proof dl > div {
    padding: 9px 0;
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sense-business-proof dt,
.sense-business-proof dd {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
}

.sense-business-proof dt {
    color: rgba(255, 255, 255, 0.48);
}

.sense-business-proof dd {
    color: rgba(232, 247, 255, 0.87);
}

.sense-business-transfer {
    min-height: 278px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(112, 207, 255, 0.82);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-align: center;
}

.sense-business-transfer i {
    position: relative;
    width: 1px;
    height: 66px;
    background: linear-gradient(180deg, rgba(0, 203, 255, 0), rgba(0, 203, 255, 0.92), rgba(0, 203, 255, 0));
    box-shadow: 0 0 16px rgba(0, 189, 255, 0.36);
}

.sense-business-transfer i::after {
    position: absolute;
    right: -3px;
    bottom: 8px;
    width: 7px;
    height: 7px;
    content: '';
    border-right: 1px solid var(--sense-cyan);
    border-bottom: 1px solid var(--sense-cyan);
    transform: rotate(45deg);
}

.sense-proof-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 0;
    color: rgba(168, 223, 255, 0.73);
    font-size: 11px;
}

.sense-proof-status i {
    width: 5px;
    height: 5px;
    display: inline-block;
    background: var(--sense-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 205, 255, 0.85);
}

.sense-scenes {
    background: #fff;
}

.sense-call-feature {
    position: relative;
    min-height: 590px;
    margin-bottom: 28px;
    overflow: hidden;
    color: #fff;
    background: #111820;
    border-radius: 26px;
}

.sense-call-feature > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sense-call-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 8, 13, 0.98) 0%, rgba(4, 8, 13, 0.91) 34%, rgba(4, 8, 13, 0.35) 66%, transparent 100%);
}

.sense-call-content {
    position: relative;
    z-index: 2;
    width: min(610px, 54%);
    min-height: 590px;
    padding: clamp(38px, 5vw, 68px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sense-call-content .sense-eyebrow {
    color: var(--sense-cyan);
}

.sense-call-content h3 {
    margin: 0;
    font-size: clamp(38px, 4.1vw, 60px);
    font-weight: 650;
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.sense-call-lead {
    max-width: 485px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.sense-call-details {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.sense-call-details div {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 14px;
    align-items: baseline;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sense-call-details strong {
    color: #fff;
    font-size: 14px;
}

.sense-call-details span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.5;
}

.sense-call-compliance {
    margin: 18px 0 0;
    color: rgba(190, 223, 241, 0.55);
    font-size: 11px;
    line-height: 1.6;
}

.sense-call-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.sense-call-tags span {
    padding: 7px 11px;
    color: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 11px;
}

.sense-scene-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.sense-scene {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 22px;
    background: #111;
}

.sense-scene img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.03);
    transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.sense-scene::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.88) 100%);
}

.sense-scene:hover img {
    transform: scale(1.055);
    filter: saturate(0.95) contrast(1.03);
}

.sense-scene > div {
    position: absolute;
    inset: auto 24px 24px;
    z-index: 2;
    color: #fff;
}

.sense-scene p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.sense-scene h3 {
    margin: 0 0 9px;
    font-size: 25px;
    font-weight: 620;
}

.sense-scene span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.6;
}

.sense-design {
    min-height: 720px;
    padding: 0;
    color: #fff;
    background: #040608;
    overflow: hidden;
}

.sense-design::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 5, 8, 0.98) 0%, rgba(3, 5, 8, 0.9) 36%, transparent 68%);
}

.sense-design-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% center;
}

.sense-design-inner {
    position: relative;
    z-index: 3;
    min-height: 720px;
    padding-block: 100px;
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: center;
    gap: 80px;
}

.sense-design-copy h2 {
    font-size: clamp(50px, 5.2vw, 78px);
}

.sense-design-copy > p:not(.sense-eyebrow) {
    max-width: 450px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.9;
}

.sense-design-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.sense-design-points span {
    padding: 9px 14px;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-size: 12px;
}

.sense-state-demo {
    justify-self: end;
    width: min(410px, 100%);
    padding: 18px;
    background: rgba(0, 0, 0, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.sense-state-screen {
    min-height: 170px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at 70% 50%, rgba(0, 200, 255, 0.14), transparent 30%),
        #020306;
    border: 1px solid rgba(30, 151, 255, 0.34);
    border-radius: 16px;
    box-shadow: inset 0 0 34px rgba(0, 105, 255, 0.1);
}

.sense-state-screen > span {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.03em;
}

.sense-state-screen > small {
    margin-top: 8px;
    color: var(--sense-cyan);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sense-state-wave {
    height: 34px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.3;
}

.sense-state-wave i {
    width: 3px;
    height: 8px;
    background: var(--sense-cyan);
    border-radius: 99px;
}

.sense-state-wave.is-active {
    opacity: 1;
}

.sense-state-wave.is-active i {
    animation: sense-screen-wave 0.8s ease-in-out infinite alternate;
}

.sense-state-wave i:nth-child(2) { animation-delay: -0.2s; }
.sense-state-wave i:nth-child(3) { animation-delay: -0.4s; }
.sense-state-wave i:nth-child(4) { animation-delay: -0.1s; }
.sense-state-wave i:nth-child(5) { animation-delay: -0.5s; }
.sense-state-wave i:nth-child(6) { animation-delay: -0.25s; }

@keyframes sense-screen-wave {
    to { height: 30px; }
}

.sense-state-controls {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.sense-state-controls button {
    padding: 10px;
    color: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
}

.sense-state-controls button.active {
    color: #fff;
    border-color: rgba(0, 200, 255, 0.55);
    background: rgba(0, 200, 255, 0.1);
}

.sense-mindmap {
    background: #fff;
    overflow: hidden;
}

.sense-mindmap-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: clamp(40px, 8vw, 130px);
}

.sense-mindmap-heading h2,
.sense-specs-intro h2 {
    margin: 0;
    font-size: clamp(46px, 5vw, 74px);
    font-weight: 660;
    line-height: 1.02;
    letter-spacing: -0.07em;
}

.sense-mindmap-heading > p {
    margin: 0 0 7px;
    color: var(--sense-muted);
    font-size: 17px;
    line-height: 1.8;
}

.sense-mindmap-layout {
    margin-top: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: stretch;
}

.sense-mindmap-screen {
    min-height: 440px;
    margin: 0;
    padding: 22px;
    overflow: hidden;
    border: 1px solid #dce2ea;
    background:
        radial-gradient(circle at 72% 22%, rgba(11, 117, 255, 0.1), transparent 25%),
        #f8fafc;
    border-radius: 24px;
}

.sense-mindmap-screen > header {
    padding: 0 4px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e1e7ef;
    color: #1b212b;
    font-size: 13px;
    font-weight: 650;
}

.sense-mindmap-screen > header small {
    color: var(--sense-blue);
    font-size: 11px;
    font-weight: 600;
}

.sense-mindmap-map {
    min-height: 314px;
    padding: 22px 14px;
    display: grid;
    grid-template-areas:
        "goal root decision"
        "todo root risk";
    grid-template-columns: minmax(120px, 0.95fr) minmax(155px, 1.2fr) minmax(120px, 0.95fr);
    grid-template-rows: repeat(2, 1fr);
    column-gap: 46px;
    row-gap: 14px;
    align-items: center;
}

.sense-mindmap-root {
    grid-area: root;
    min-height: 116px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background:
        radial-gradient(circle at 75% 30%, rgba(48, 190, 255, 0.43), transparent 28%),
        linear-gradient(135deg, #0c1a2c, #07101e);
    border: 1px solid rgba(44, 169, 255, 0.42);
    border-radius: 16px;
    box-shadow: 0 18px 32px rgba(6, 33, 68, 0.16);
}

.sense-mindmap-root span {
    font-size: 17px;
    font-weight: 650;
    letter-spacing: -0.03em;
}

.sense-mindmap-root small {
    margin-top: 9px;
    color: rgba(196, 235, 255, 0.74);
    font-size: 11px;
}

.sense-mindmap-branch {
    position: relative;
    min-height: 78px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #dce3ec;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 13px;
    box-shadow: 0 9px 18px rgba(13, 36, 66, 0.05);
}

.sense-mindmap-branch b {
    color: #2c3543;
    font-size: 12px;
}

.sense-mindmap-branch span {
    margin-top: 6px;
    color: #727b88;
    font-size: 11px;
    line-height: 1.45;
}

.sense-mindmap-branch::after {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 1px;
    content: '';
    background: linear-gradient(90deg, rgba(12, 119, 255, 0.36), rgba(12, 119, 255, 0.08));
}

.sense-mindmap-branch-left::after { right: -46px; }
.sense-mindmap-branch-right::after { left: -46px; transform: rotate(180deg); }
.sense-mindmap-goal { grid-area: goal; }
.sense-mindmap-decision { grid-area: decision; }
.sense-mindmap-todo { grid-area: todo; }
.sense-mindmap-risk { grid-area: risk; }

.sense-mindmap-screen > footer {
    padding: 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #78818d;
    font-size: 11px;
    line-height: 1.45;
}

.sense-mindmap-screen > footer i {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    background: var(--sense-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(8, 120, 255, 0.1);
}

.sense-mindmap-copy {
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sense-mindmap-copy h3 {
    margin: 16px 0 28px;
    color: var(--sense-ink);
    font-size: clamp(27px, 2.8vw, 38px);
    font-weight: 640;
    line-height: 1.17;
    letter-spacing: -0.055em;
}

.sense-mindmap-copy ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sense-mindmap-copy li {
    padding: 15px 0;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    border-top: 1px solid var(--sense-line);
}

.sense-mindmap-copy li b {
    color: #1f2732;
    font-size: 13px;
}

.sense-mindmap-copy li span {
    color: var(--sense-muted);
    font-size: 13px;
    line-height: 1.55;
}

.sense-security {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 82% 9%, rgba(0, 134, 255, 0.27), transparent 26%),
        radial-gradient(circle at 22% 84%, rgba(0, 200, 255, 0.08), transparent 30%),
        #07101c;
}

.sense-security::before {
    position: absolute;
    inset: 0;
    content: '';
    pointer-events: none;
    opacity: 0.38;
    background-image: linear-gradient(rgba(173, 221, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(173, 221, 255, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
    mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
}

.sense-security .sense-eyebrow {
    color: #52b5ff;
}

.sense-security-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
    align-items: end;
    gap: clamp(60px, 10vw, 178px);
}

.sense-security-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(50px, 5.5vw, 82px);
    font-weight: 660;
    line-height: 0.94;
    letter-spacing: -0.075em;
}

.sense-security-promise {
    padding-bottom: 4px;
}

.sense-security-statement {
    margin: 0;
    color: #e8f6ff;
    font-size: clamp(24px, 2.25vw, 34px);
    font-weight: 610;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.sense-security-promise > p:not(.sense-security-statement) {
    max-width: 410px;
    margin: 20px 0 0;
    color: rgba(229, 242, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
}

.sense-security-trust {
    margin-top: 28px;
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    border-top: 1px solid rgba(137, 204, 255, 0.22);
}

.sense-security-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(228, 244, 255, 0.86);
    font-size: 12px;
    white-space: nowrap;
}

.sense-security-trust i {
    color: var(--sense-cyan);
    font-size: 11px;
}

.sense-security-stage {
    position: relative;
    z-index: 1;
    margin-top: clamp(52px, 6vw, 88px);
    padding: 26px 32px 18px;
    overflow: hidden;
    border: 1px solid rgba(152, 213, 255, 0.18);
    border-radius: 18px;
    background: linear-gradient(112deg, rgba(10, 22, 38, 0.9), rgba(10, 33, 64, 0.48));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.sense-security-stage::before {
    position: absolute;
    top: 50%;
    left: 17%;
    right: 17%;
    height: 1px;
    content: '';
    background: linear-gradient(90deg, transparent, rgba(68, 194, 255, 0.38), transparent);
}

.sense-security-stage-grid {
    display: grid;
    grid-template-columns: 1fr minmax(230px, 0.76fr) 1fr;
    align-items: center;
    gap: 30px;
}

.sense-security-stage-grid > span {
    position: relative;
    z-index: 1;
    color: rgba(220, 242, 255, 0.68);
    font-size: 13px;
    line-height: 1.55;
}

.sense-security-stage-grid > span:last-child {
    text-align: right;
}

.sense-security-stage-grid small,
.sense-security-stage-grid b small {
    display: block;
    margin-top: 3px;
    color: rgba(182, 222, 255, 0.44);
    font-size: 11px;
    font-weight: 400;
}

.sense-security-stage-grid b {
    position: relative;
    z-index: 1;
    min-height: 84px;
    padding: 16px 20px;
    display: grid;
    place-content: center;
    text-align: center;
    color: #f4fbff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    border: 1px solid rgba(67, 191, 255, 0.46);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(22, 91, 150, 0.54), rgba(6, 22, 43, 0.74));
    box-shadow: 0 0 0 5px rgba(0, 151, 255, 0.045), 0 0 40px rgba(0, 151, 255, 0.12);
}

.sense-security-stage-grid b i {
    margin-bottom: 5px;
    color: var(--sense-cyan);
    font-size: 15px;
}

.sense-security-stage > p {
    position: relative;
    z-index: 1;
    margin: 20px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(189, 222, 247, 0.54);
    font-size: 11px;
}

.sense-security-stage > p i {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--sense-cyan);
    box-shadow: 0 0 12px var(--sense-cyan);
}

.sense-security-grid {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.sense-security-grid article {
    position: relative;
    min-height: 292px;
    padding: 24px 24px 28px;
    overflow: hidden;
    border: 1px solid rgba(151, 211, 255, 0.14);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.sense-security-grid article::after {
    position: absolute;
    top: -34px;
    right: -34px;
    width: 94px;
    height: 94px;
    content: '';
    opacity: 0;
    border-radius: 50%;
    background: rgba(0, 177, 255, 0.22);
    filter: blur(18px);
    transition: opacity 260ms ease;
}

.sense-security-grid article:hover {
    transform: translateY(-5px);
    border-color: rgba(88, 192, 255, 0.45);
    background: linear-gradient(145deg, rgba(40, 124, 189, 0.18), rgba(255, 255, 255, 0.035));
}

.sense-security-grid article:hover::after {
    opacity: 1;
}

.sense-security-number {
    color: rgba(156, 212, 255, 0.45);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
}

.sense-security-grid i {
    position: absolute;
    top: 22px;
    right: 22px;
    color: var(--sense-cyan);
    font-size: 20px;
}

.sense-security-grid h3 {
    margin: 17px 0 9px;
    color: #fff;
    font-size: 18px;
    font-weight: 620;
    letter-spacing: -0.04em;
}

.sense-security-card-lead {
    min-height: 62px;
    margin: 42px 0 0;
    color: #e5f5ff !important;
    font-size: 20px !important;
    font-weight: 610;
    line-height: 1.16 !important;
    letter-spacing: -0.055em;
}

.sense-security-grid p {
    margin: 0;
    color: rgba(218, 238, 255, 0.58);
    font-size: 13px;
    line-height: 1.7;
}

.sense-specs {
    color: #fff;
    background:
        radial-gradient(circle at 76% 34%, rgba(8, 120, 255, 0.19), transparent 30%),
        #07090d;
    overflow: hidden;
}

.sense-specs-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
    gap: clamp(42px, 7vw, 112px);
    align-items: center;
}

.sense-specs-intro > p:not(.sense-eyebrow) {
    max-width: 370px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 16px;
    line-height: 1.85;
}

.sense-specs-intro > small {
    max-width: 350px;
    margin-top: 24px;
    display: block;
    color: rgba(180, 213, 233, 0.52);
    font-size: 11px;
    line-height: 1.65;
}

.sense-specs-content {
    display: grid;
    grid-template-columns: minmax(190px, 0.78fr) minmax(330px, 1.22fr);
    gap: 16px;
    align-items: stretch;
}

.sense-specs-device {
    position: relative;
    min-height: 364px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(162, 216, 255, 0.17);
    background:
        radial-gradient(circle at 58% 55%, rgba(8, 127, 255, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(20, 29, 42, 0.92), rgba(6, 9, 14, 0.78));
    border-radius: 20px;
}

.sense-specs-device img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
    transform: scale(0.92);
    filter: contrast(1.05) saturate(0.94);
}

.sense-specs-device figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    color: rgba(208, 238, 255, 0.66);
    font-size: 10px;
    letter-spacing: 0.08em;
}

.sense-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(162, 216, 255, 0.14);
    border-left: 1px solid rgba(162, 216, 255, 0.14);
}

.sense-specs-grid article {
    min-height: 121px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(162, 216, 255, 0.14);
    border-bottom: 1px solid rgba(162, 216, 255, 0.14);
    background: rgba(255, 255, 255, 0.025);
}

.sense-specs-grid span {
    color: rgba(142, 210, 255, 0.68);
    font-size: 11px;
}

.sense-specs-grid strong {
    margin-top: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 620;
    letter-spacing: -0.025em;
}

.sense-specs-grid small {
    margin-top: auto;
    padding-top: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    line-height: 1.5;
}

.sense-start {
    min-height: 720px;
    padding: 0;
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 70% 50%, rgba(0, 156, 255, 0.1), transparent 28%),
        #fff;
    overflow: hidden;
}

.sense-start-grid {
    position: relative;
    z-index: 2;
    min-height: 720px;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: 70px;
}

.sense-start-copy h2 {
    font-size: clamp(52px, 5.5vw, 84px);
}

.sense-start-copy > p:not(.sense-eyebrow) {
    margin: 30px 0 0;
    color: var(--sense-muted);
    font-size: 17px;
}

.sense-start-product {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: normal;
}

.sense-footer {
    padding: 54px 0;
    color: rgba(255, 255, 255, 0.74);
    background: #06080c;
}

.sense-footer .sense-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 48px;
}

.sense-footer .sense-brand-divider {
    background: rgba(255, 255, 255, 0.25);
}

.sense-footer .sense-brand-product {
    color: rgba(255, 255, 255, 0.72);
}

.sense-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
}

.sense-footer > .sense-shell > div {
    display: flex;
    gap: 22px;
    font-size: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    :root {
        --sense-shell: min(1080px, calc(100vw - 48px));
    }

    .sense-nav-links {
        display: none;
    }

    .sense-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sense-hero-copy h1 {
        font-size: clamp(50px, 6.4vw, 72px);
    }

    .sense-product-stage {
        min-height: 480px;
    }

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

    .sense-scene {
        min-height: 380px;
    }

    .sense-business-pipeline {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    :root {
        --sense-shell: calc(100vw - 32px);
        --sense-header-height: 58px;
    }

    .sense-nav {
        width: calc(100vw - 28px);
    }

    .sense-nav-back,
    .sense-nav-cta {
        display: none;
    }

    .sense-menu-toggle {
        display: grid;
        place-items: center;
    }

    .sense-mobile-menu {
        position: absolute;
        top: var(--sense-header-height);
        inset-inline: 0;
        padding: 18px 22px 24px;
        display: grid;
        gap: 2px;
        background: rgba(255, 255, 255, 0.97);
        border-bottom: 1px solid var(--sense-line);
        transform: translateY(-140%);
        transition: transform 260ms ease;
        z-index: -1;
    }

    .sense-mobile-menu.is-open {
        transform: translateY(0);
    }

    .sense-mobile-menu a {
        padding: 12px 4px;
        font-size: 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .sense-section {
        padding: 96px 0;
    }

    .sense-hero {
        min-height: auto;
    }

    .sense-hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-block: 112px 76px;
    }

    .sense-hero-copy {
        padding: 0;
    }

    .sense-hero-copy h1 {
        font-size: clamp(50px, 15vw, 72px);
    }

    .sense-hero-lead {
        font-size: clamp(34px, 10vw, 48px);
    }

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

    .sense-product-stage {
        height: 480px;
        min-height: 0;
    }

    .sense-product-stage img {
        object-position: center;
        transform: scale(0.96);
        transform-origin: 50% 52%;
    }

    .sense-product-stage figcaption,
    .sense-scroll-hint {
        display: none;
    }

    .sense-value-head,
    .sense-business-heading,
    .sense-design-inner,
    .sense-start-grid {
        grid-template-columns: 1fr;
    }

    .sense-value-head {
        gap: 34px;
    }

    .sense-value-head h2,
    .sense-section-heading h2,
    .sense-business-heading h2,
    .sense-design-copy h2,
    .sense-start-copy h2,
    .sense-mindmap-heading h2,
    .sense-specs-intro h2 {
        font-size: clamp(46px, 13vw, 68px);
    }

    .sense-value-flow {
        min-height: 610px;
        margin-top: 52px;
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .sense-value-flow article {
        padding-left: 20px;
    }

    .sense-value-flow p {
        max-width: 330px;
    }

    .sense-section-heading {
        align-items: flex-start;
        margin-bottom: 54px;
    }

    .sense-capability-grid {
        grid-template-columns: 1fr;
    }

    .sense-capability {
        min-height: 340px;
    }

    .sense-business-heading {
        gap: 34px;
    }

    .sense-business-summary {
        margin: 0;
        padding: 20px 0 0;
        border-top: 1px solid rgba(130, 202, 255, 0.3);
        border-left: 0;
    }

    .sense-business-outcomes {
        margin-top: 19px;
    }

    .sense-business-pipeline {
        margin-top: 52px;
        grid-template-columns: 1fr 1fr;
        overflow: visible;
    }

    .sense-business-proof {
        margin-top: 28px;
        padding-top: 28px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sense-business-transfer {
        min-height: 72px;
        flex-direction: row;
    }

    .sense-business-transfer i {
        width: 74px;
        height: 1px;
        background: linear-gradient(90deg, rgba(0, 203, 255, 0), rgba(0, 203, 255, 0.92), rgba(0, 203, 255, 0));
    }

    .sense-business-transfer i::after {
        top: -3px;
        right: 8px;
        bottom: auto;
        transform: rotate(-45deg);
    }

    .sense-business > canvas {
        display: none;
    }

    .sense-business-pipeline article:last-child {
        grid-column: 1 / -1;
    }

    .sense-scene-grid {
        grid-template-columns: 1fr;
    }

    .sense-call-feature,
    .sense-call-content {
        min-height: 720px;
    }

    .sense-call-feature::after {
        background: linear-gradient(180deg, rgba(4, 8, 13, 0.32) 0%, rgba(4, 8, 13, 0.8) 48%, rgba(4, 8, 13, 0.98) 100%);
    }

    .sense-call-feature > img {
        object-position: 64% center;
    }

    .sense-call-content {
        width: 100%;
        padding: 36px 30px;
        justify-content: flex-end;
    }

    .sense-call-content h3 {
        font-size: clamp(36px, 8vw, 50px);
    }

    .sense-scene {
        min-height: 430px;
    }

    .sense-design::after {
        background: linear-gradient(180deg, rgba(3, 5, 8, 0.98) 0%, rgba(3, 5, 8, 0.83) 62%, rgba(3, 5, 8, 0.48));
    }

    .sense-design-image {
        object-position: 62% center;
        opacity: 0.58;
    }

    .sense-design-inner {
        min-height: 900px;
        align-content: center;
        gap: 54px;
    }

    .sense-state-demo {
        justify-self: start;
    }

    .sense-mindmap-heading,
    .sense-mindmap-layout,
    .sense-specs-layout,
    .sense-specs-content {
        grid-template-columns: 1fr;
    }

    .sense-mindmap-heading {
        gap: 30px;
    }

    .sense-mindmap-heading > p {
        margin: 0;
        max-width: 470px;
    }

    .sense-mindmap-layout {
        margin-top: 48px;
        gap: 38px;
    }

    .sense-mindmap-screen {
        min-height: 560px;
    }

    .sense-mindmap-map {
        min-height: 414px;
        padding: 20px 0;
        grid-template-areas:
            "root"
            "goal"
            "decision"
            "todo"
            "risk";
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }

    .sense-mindmap-root {
        min-height: 102px;
    }

    .sense-mindmap-branch::after {
        display: none;
    }

    .sense-mindmap-copy {
        padding: 0;
    }

    .sense-specs-layout {
        gap: 42px;
    }

    .sense-specs-intro > p:not(.sense-eyebrow) {
        max-width: 500px;
    }

    .sense-specs-intro > small {
        max-width: 490px;
    }

    .sense-specs-device {
        min-height: 340px;
    }

    .sense-security-hero {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 36px;
    }

    .sense-security-promise {
        max-width: 520px;
    }

    .sense-security-stage {
        margin-top: 52px;
    }

    .sense-security-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sense-security-grid article {
        min-height: 272px;
    }

    .sense-start-grid {
        min-height: 980px;
        padding-block: 100px 60px;
    }

    .sense-start-product {
        height: 480px;
    }

    .sense-footer .sense-shell {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 520px) {
    .sense-brand-yunli {
        font-size: 14px;
    }

    .sense-brand-product {
        font-size: 13px;
    }

    .sense-hero-grid {
        padding-top: 96px;
    }

    .sense-kicker,
    .sense-eyebrow {
        font-size: 10px;
        letter-spacing: 0.12em;
    }

    .sense-section-heading h2,
    .sense-business-heading h2,
    .sense-start-copy h2,
    .sense-mindmap-heading h2,
    .sense-specs-intro h2 {
        font-size: 44px;
    }

    .sense-design-copy h2 {
        font-size: 40px;
    }

    .sense-security-heading h2 {
        font-size: 48px;
    }

    .sense-actions {
        align-items: stretch;
    }

    .sense-button {
        flex: 1;
        min-width: 0;
    }

    .sense-product-stage {
        height: 390px;
        margin-inline: -16px;
    }

    .sense-value-flow {
        min-height: 660px;
    }

    .sense-capability {
        min-height: 310px;
        padding: 28px;
    }

    .sense-capability h3 {
        margin-top: 58px;
        font-size: 30px;
    }

    .sense-business-pipeline,
    .sense-security-grid,
    .sense-specs-grid {
        grid-template-columns: 1fr;
    }

    .sense-business-pipeline article:last-child {
        grid-column: auto;
    }

    .sense-mindmap-screen {
        min-height: 548px;
        padding: 18px;
    }

    .sense-mindmap-screen > header {
        padding-bottom: 14px;
    }

    .sense-mindmap-map {
        min-height: 404px;
        padding: 16px 0;
    }

    .sense-mindmap-root span {
        font-size: 16px;
    }

    .sense-mindmap-copy li {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .sense-specs-device {
        min-height: 300px;
    }

    .sense-specs-grid article {
        min-height: 112px;
    }

    .sense-security-grid article,
    .sense-security-grid article:not(:first-child) {
        min-height: 250px;
        padding: 22px;
        border: 1px solid rgba(151, 211, 255, 0.14);
    }

    .sense-security-hero {
        gap: 30px;
    }

    .sense-security-promise > p:not(.sense-security-statement) {
        font-size: 13px;
    }

    .sense-security-trust {
        gap: 10px 14px;
    }

    .sense-security-stage {
        margin-top: 42px;
        padding: 20px;
    }

    .sense-security-stage::before {
        display: none;
    }

    .sense-security-stage-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sense-security-stage-grid > span,
    .sense-security-stage-grid > span:last-child {
        text-align: left;
    }

    .sense-security-stage-grid b {
        min-height: 78px;
        grid-row: 1;
    }

    .sense-security-stage > p {
        margin-top: 16px;
        font-size: 10px;
        line-height: 1.5;
    }

    .sense-security-card-lead {
        min-height: 0;
        margin-top: 36px;
        font-size: 19px !important;
    }

    .sense-scene {
        min-height: 360px;
    }

    .sense-call-feature,
    .sense-call-content {
        min-height: 700px;
    }

    .sense-call-content {
        padding: 28px 24px;
    }

    .sense-call-lead {
        margin-top: 18px;
        font-size: 14px;
    }

    .sense-call-details {
        margin-top: 20px;
    }

    .sense-call-details div {
        grid-template-columns: 72px 1fr;
        gap: 10px;
    }

    .sense-state-screen > span {
        font-size: 20px;
    }

    .sense-start-product {
        height: 390px;
        margin-inline: -16px;
        width: calc(100% + 32px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* 企业沟通治理：减少同级卡片竞争，突出一条主张与一项核心能力。 */
.sense-security {
    padding: clamp(104px, 10vw, 132px) 0 120px;
}

.sense-security-hero {
    grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
    align-items: start;
    gap: clamp(56px, 7vw, 96px);
}

.sense-security-heading h2 {
    max-width: 660px;
    font-size: clamp(48px, 4.65vw, 66px);
    line-height: 1.08;
    letter-spacing: -0.062em;
}

.sense-security-promise {
    padding: 10px 0 0;
}

.sense-security-statement {
    max-width: 360px;
    font-size: clamp(24px, 2vw, 29px);
    line-height: 1.25;
    letter-spacing: -0.045em;
}

.sense-security-promise > p:not(.sense-security-statement) {
    max-width: 440px;
    margin-top: 17px;
    font-size: 14px;
    line-height: 1.78;
}

.sense-security-trust {
    gap: 0 18px;
    margin-top: 21px;
    padding-top: 0;
    border-top: 0;
}

.sense-security-trust span {
    color: rgba(220, 241, 255, 0.72);
    font-size: 12px;
}

.sense-security-stage {
    margin-top: clamp(46px, 5vw, 64px);
    padding: 17px 0 19px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.sense-security-stage::before {
    top: 50%;
    left: 17%;
    width: 66%;
    background: linear-gradient(90deg, transparent, rgba(68, 194, 255, 0.42) 20%, rgba(68, 194, 255, 0.42) 80%, transparent);
}

.sense-security-stage-grid {
    grid-template-columns: 1fr minmax(246px, 0.84fr) 1fr;
    gap: 24px;
}

.sense-security-stage-grid > span {
    color: rgba(231, 246, 255, 0.84);
    font-size: 15px;
    font-weight: 600;
}

.sense-security-stage-grid small,
.sense-security-stage-grid b small {
    margin-top: 5px;
    font-size: 12px;
}

.sense-security-stage-grid b {
    min-height: 78px;
    font-size: 16px;
}

.sense-security-stage > p {
    justify-content: center;
    margin-top: 15px;
    color: rgba(188, 221, 247, 0.52);
    font-size: 11px;
}

.sense-security-stage > p i {
    display: none;
}

.sense-security-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    grid-template-rows: repeat(3, 86px);
    grid-auto-flow: row;
    gap: 10px 12px;
    margin-top: 38px;
}

.sense-security-grid article {
    min-height: 0;
    padding: 0 20px;
    border: 1px solid rgba(151, 211, 255, 0.13);
    border-radius: 0;
    background: rgba(15, 37, 61, 0.3);
    box-shadow: none;
}

.sense-security-grid article::after,
.sense-security-grid article:hover::after {
    display: none;
}

.sense-security-grid article:not(.sense-security-primary) {
    display: grid;
    grid-template-columns: 38px minmax(140px, 0.62fr) minmax(0, 1.38fr);
    align-items: center;
    column-gap: 14px;
    transition: border-color 220ms ease, background 220ms ease;
}

.sense-security-grid article:not(.sense-security-primary):hover {
    transform: none;
    border-color: rgba(88, 192, 255, 0.36);
    background: rgba(36, 104, 157, 0.16);
}

.sense-security-primary {
    grid-row: 1 / span 3;
    padding: 30px !important;
    border-radius: 14px !important;
    background: linear-gradient(140deg, rgba(29, 113, 179, 0.23), rgba(9, 25, 43, 0.5)) !important;
}

.sense-security-primary .sense-security-number {
    position: static;
}

.sense-security-card-lead {
    min-height: 0;
    max-width: 320px;
    margin: 42px 0 14px;
    color: #e9f7ff !important;
    font-size: clamp(23px, 2.05vw, 30px) !important;
    line-height: 1.16;
    letter-spacing: -0.055em;
}

.sense-security-grid h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
}

.sense-security-primary h3 {
    margin: 0 0 9px;
    color: rgba(151, 218, 255, 0.88);
    font-size: 16px;
}

.sense-security-grid article:not(.sense-security-primary) .sense-security-number {
    position: static;
    align-self: center;
}

.sense-security-grid article:not(.sense-security-primary) h3 {
    align-self: center;
}

.sense-security-grid article:not(.sense-security-primary) p:last-child {
    margin: 0;
    color: rgba(218, 238, 255, 0.63);
    font-size: 13px;
    line-height: 1.55;
}

.sense-security-primary > p:last-child {
    max-width: 330px;
    color: rgba(219, 239, 255, 0.68);
    font-size: 13px;
    line-height: 1.72;
}

@media (max-width: 1100px) {
    .sense-security-heading h2 {
        font-size: clamp(46px, 5.2vw, 58px);
    }

    .sense-security-grid {
        grid-template-columns: minmax(0, 4.4fr) minmax(0, 7.6fr);
    }

    .sense-security-grid article:not(.sense-security-primary) {
        grid-template-columns: 34px minmax(118px, 0.62fr) minmax(0, 1.38fr);
        column-gap: 10px;
        padding: 0 14px;
    }
}

@media (max-width: 760px) {
    .sense-security {
        padding: 80px 0 84px;
    }

    .sense-security-hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sense-security-heading h2 {
        max-width: 500px;
        font-size: clamp(38px, 11vw, 44px);
        line-height: 1.1;
    }

    .sense-security-promise {
        padding-top: 0;
    }

    .sense-security-statement {
        font-size: 23px;
    }

    .sense-security-trust {
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    .sense-security-stage {
        margin-top: 38px;
        padding: 0;
        border: 0;
    }

    .sense-security-stage::before {
        display: none;
    }

    .sense-security-stage-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sense-security-stage-grid > span,
    .sense-security-stage-grid > span:last-child {
        padding: 14px 0 14px 18px;
        border-left: 1px solid rgba(112, 203, 255, 0.25);
        text-align: left;
    }

    .sense-security-stage-grid b {
        min-height: 74px;
        padding: 17px 18px;
        grid-row: 1;
        font-size: 16px;
    }

    .sense-security-stage > p {
        justify-content: flex-start;
        margin-top: 14px;
        font-size: 11px;
        text-align: left;
    }

    .sense-security-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
        margin-top: 30px;
    }

    .sense-security-primary {
        grid-row: auto;
        min-height: 220px !important;
        padding: 26px !important;
    }

    .sense-security-card-lead {
        margin-top: 34px;
        font-size: 24px !important;
    }

    .sense-security-grid article:not(.sense-security-primary) {
        min-height: 92px !important;
        grid-template-columns: 32px minmax(108px, 0.65fr) minmax(0, 1.35fr);
        padding: 14px !important;
    }

    .sense-security-grid article:not(.sense-security-primary) p:last-child {
        font-size: 12px;
    }
}
