:root {
    --paper: #eef6ff;
    --ink: #0f172a;
    --muted: #6f809b;
    --soft: #8aa0be;
    --blue: #3478f6;
    --blue-deep: #2367e8;
    --line: rgba(76, 125, 196, 0.16);
    --glass: rgba(248, 252, 255, 0.56);
    --glass-strong: rgba(255, 255, 255, 0.68);
    --shadow-soft: 0 28px 90px rgba(51, 112, 204, 0.16);
    --shadow-card: 0 18px 58px rgba(51, 112, 204, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Inter", "Noto Sans SC", system-ui, sans-serif;
    background: radial-gradient(circle, rgba(52, 120, 246, 0.08) 1px, transparent 1.5px),
    var(--paper);
    background-size: 28px 28px, auto;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

.design-shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.site-bg-video,
.ripple-canvas,
.ripple-lens,
.site-bg-scrim {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.site-bg-video {
    z-index: 0;
    object-fit: cover;
    opacity: 0.9;
    filter: saturate(1.08) contrast(1.02) brightness(1.04);
}

.ripple-canvas {
    z-index: 0;
    display: none;
    opacity: 0.92;
}

.ripple-lens {
    z-index: 0;
    display: block;
    opacity: 0;
    --ripple-x: 50vw;
    --ripple-y: 50vh;
    background: radial-gradient(circle at var(--ripple-x) var(--ripple-y),
      rgba(255, 255, 255, 0.3) 0 1.4rem,
      rgba(83, 153, 255, 0.2) 1.7rem 3.4rem,
      rgba(83, 153, 255, 0.1) 3.8rem 5.8rem,
      transparent 6.4rem),
    radial-gradient(circle at var(--ripple-x) var(--ripple-y),
      transparent 0 3.2rem,
      rgba(255, 255, 255, 0.24) 3.4rem 3.55rem,
      transparent 3.75rem 5.1rem,
      rgba(52, 120, 246, 0.2) 5.3rem 5.45rem,
      transparent 5.7rem);
    mix-blend-mode: soft-light;
    filter: blur(0.4px) saturate(1.2);
    transition: opacity 0.18s ease;
}

.ripple-fallback-active .ripple-lens,
.ripple-pointer-active .ripple-lens {
    opacity: 1;
}

.has-ripple-bg .ripple-canvas {
    display: block;
}

.has-ripple-bg .site-bg-video {
    opacity: 0.01;
}

.site-bg-scrim {
    z-index: 1;
    background: radial-gradient(circle at 66% 22%, rgba(52, 120, 246, 0.08), transparent 24rem),
    linear-gradient(90deg, rgba(238, 246, 255, 0.52) 0%, rgba(238, 246, 255, 0.28) 46%, rgba(238, 246, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(238, 246, 255, 0.04), rgba(238, 246, 255, 0.42));
}

.design-nav,
main {
    position: relative;
    z-index: 2;
}

.design-nav {
    position: fixed;
    left: 50%;
    top: 18px;
    width: min(1660px, calc(100% - 72px));
    min-height: 84px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 12px 16px 12px 18px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    background: rgba(248, 251, 255, 0.58);
    box-shadow: 0 18px 60px rgba(61, 115, 197, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
}

.design-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 900;
}

.brand-logo {
    width: 154px;
    height: auto;
    display: block;
    flex: 0 0 auto;
    mix-blend-mode: multiply;
}

.footer-logo {
    width: 176px;
}

.brand-cube {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    color: var(--blue);
    background: radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.95), transparent 38%),
    linear-gradient(145deg, #ffffff, #e8f2ff);
    box-shadow: 0 14px 32px rgba(52, 120, 246, 0.18);
    font-size: 17px;
    font-weight: 950;
}

.design-brand small {
    display: block;
    margin-top: 2px;
    color: #8b9ab4;
    font-size: 12px;
}

.design-nav nav {
    display: flex;
    gap: 32px;
    color: #58677f;
    font-size: 15px;
    font-weight: 700;
}

.design-nav nav a {
    transition: color 0.2s ease;
}

.design-nav nav a:hover {
    color: var(--blue);
}

.nav-pill,
.primary-action,
.contact-section a {
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(180deg, #4b8bff, var(--blue-deep));
    box-shadow: 0 16px 38px rgba(52, 120, 246, 0.28);
    font-weight: 800;
}

.nav-pill {
    justify-self: end;
    min-height: 54px;
    padding: 0 24px;
    font-size: 14px;
}

.poster-hero {
    position: relative;
    min-height: 100vh;
    padding: 128px 28px 34px;
}

.hero-panel {
    width: min(1780px, 100%);
    min-height: calc(100vh - 162px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    gap: 74px;
    align-items: center;
    padding: clamp(42px, 5vw, 88px);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 62px;
    background: rgba(248, 252, 255, 0);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(22px);
}

.hero-meta,
.kicker {
    width: fit-content;
    margin: 0 0 24px;
    padding: 10px 16px;
    border: 1px solid rgba(52, 120, 246, 0.2);
    border-radius: 999px;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 14px 38px rgba(52, 120, 246, 0.1);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.04em;
}

.hero-content h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(48px, 5.8vw, 112px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero-gradient-text {
    display: inline-block;
    background: linear-gradient(90deg, #0597ff 0%, #39bfff 48%, #bfefff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-copy {
    max-width: 760px;
    margin: 30px 0 0;
    color: #5f708d;
    font-size: clamp(18px, 1.35vw, 24px);
    line-height: 1.78;
}

.hero-actions,
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.hero-actions {
    margin-top: 36px;
}

.primary-action,
.secondary-action {
    min-height: 58px;
    padding: 0 24px;
    font-size: 16px;
}

.primary-action {
    gap: 10px;
}

.secondary-action,
.hero-tags span {
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(76, 125, 196, 0.16);
    border-radius: 999px;
    color: #52647d;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 12px 32px rgba(51, 112, 204, 0.08);
    font-weight: 700;
}

.secondary-action {
    min-height: 58px;
    padding: 0 24px;
}

.hero-tags {
    margin-top: 40px;
}

.hero-tags span {
    min-height: 42px;
    padding: 0 16px;
    color: #6c7e98;
    font-size: 14px;
}

.product-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 42px;
    background: radial-gradient(circle at 100% 0%, rgba(52, 120, 246, 0.16), transparent 20rem),
    rgba(255, 255, 255, 0.54);
    box-shadow: 0 34px 94px rgba(51, 112, 204, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(22px);
}

.window-top {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 34px;
    border-bottom: 1px solid rgba(76, 125, 196, 0.13);
    color: #8ca0bb;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.traffic-lights {
    display: flex;
    gap: 10px;
}

.traffic-lights span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.traffic-lights span:nth-child(1) {
    background: #ff8f8f;
}

.traffic-lights span:nth-child(2) {
    background: #ffd15c;
}

.traffic-lights span:nth-child(3) {
    background: #62d99a;
}

.window-body {
    display: grid;
    gap: 18px;
    padding: 34px;
}

.system-card {
    min-height: 92px;
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid rgba(76, 125, 196, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 16px 42px rgba(51, 112, 204, 0.08);
}

.system-card.active {
    border-color: rgba(52, 120, 246, 0.24);
    background: rgba(244, 249, 255, 0.62);
}

.ui-icon {
    width: 54px;
    height: 54px;
    display: block;
    border: 1px solid rgba(52, 120, 246, 0.16);
    border-radius: 18px;
    background: radial-gradient(circle at 50% 50%, rgba(52, 120, 246, 0.18) 0 22%, transparent 24%),
    rgba(235, 244, 255, 0.78);
}

.system-card b {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.system-card p,
.mini-dashboard small {
    margin: 0;
    color: #8a9bb5;
    line-height: 1.5;
}

.system-card i {
    display: inline-grid;
    min-width: 58px;
    min-height: 34px;
    place-items: center;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(235, 244, 255, 0.9);
    font-style: normal;
    font-weight: 800;
}

.mini-dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mini-dashboard div {
    min-height: 112px;
    padding: 20px;
    border: 1px solid rgba(76, 125, 196, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.58);
}

.mini-dashboard strong {
    display: block;
    margin-top: 12px;
    color: var(--blue);
    font-size: 38px;
    line-height: 1;
}

.hero-strip {
    width: min(1680px, calc(100% - 56px));
    margin: 22px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 22px;
    align-items: center;
    color: #657792;
    font-size: 13px;
    font-weight: 850;
}

.hero-strip strong {
    color: rgba(15, 23, 42, 0.26);
    font-size: clamp(58px, 7vw, 132px);
    line-height: 0.82;
    letter-spacing: -0.07em;
}

.ticker,
.intent-section,
.work-section,
.service-section,
.scenario-section,
.method-section,
.contact-section,
.workspace-section,
.site-footer {
    width: min(1380px, calc(100% - 56px));
    margin: 72px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 52px;
    background: var(--glass);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(24px);
}

.ticker {
    width: min(1660px, calc(100% - 72px));
    margin-top: 28px;
    overflow: hidden;
    color: var(--blue);
}

.ticker div {
    width: max-content;
    display: flex;
    animation: drift 26s linear infinite;
}

.ticker span {
    padding: 18px 34px;
    font-size: clamp(18px, 2vw, 34px);
    font-weight: 850;
    white-space: nowrap;
}

@keyframes drift {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-42%);
    }
}

.intent-section,
.work-section,
.service-section,
.scenario-section,
.method-section,
.contact-section,
.workspace-section,
.site-footer {
    padding: clamp(38px, 5vw, 76px);
}

.intent-grid,
.method-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: start;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 42px;
}

.intent-grid h2,
.section-head h2,
.scenario-section h2,
.method-section h2,
.contact-section h2 {
    margin: 0;
    font-size: clamp(34px, 4.8vw, 74px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.intent-list {
    display: grid;
    gap: 14px;
}

.intent-list p,
.scenario-grid article,
.method-board article,
.service-stack article {
    border: 1px solid rgba(76, 125, 196, 0.12);
    background: var(--glass-strong);
    box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.intent-list p {
    margin: 0;
    padding: 22px 24px;
    border-radius: 24px;
    color: #60718c;
    font-size: 18px;
    line-height: 1.68;
}

.service-stack {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding-top: 92px;
}

.service-stack::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 43px;
    border-top: 1px dashed rgba(52, 120, 246, 0.26);
}

.service-stack article {
    position: relative;
    min-height: 332px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 38px 28px;
    border-radius: 32px;
    text-align: center;
}

.service-stack span {
    position: absolute;
    top: -12px;
    left: 50%;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    transform: translateX(-50%);
    border: 7px solid rgba(255, 255, 255, 0.76);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(180deg, #5b96ff, var(--blue-deep));
    box-shadow: 0 20px 44px rgba(52, 120, 246, 0.24);
    font-size: 19px;
    font-weight: 950;
}

.service-stack h3,
.scenario-grid h3,
.method-board h3 {
    margin: 0;
    font-size: clamp(23px, 2vw, 32px);
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.service-stack p,
.scenario-grid p,
.method-board p,
.contact-section p,
.work-card span {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.76;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.scenario-grid article {
    min-height: 280px;
    padding: 34px;
    border-radius: 32px;
}

.scenario-grid span {
    display: inline-grid;
    min-height: 36px;
    place-items: center;
    margin-bottom: 34px;
    padding: 0 14px;
    border: 1px solid rgba(52, 120, 246, 0.18);
    border-radius: 999px;
    color: var(--blue);
    background: rgba(235, 244, 255, 0.76);
    font-size: 13px;
    font-weight: 850;
}

.method-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.method-board article {
    min-height: 260px;
    padding: 34px;
    border-radius: 32px;
}

.method-board strong {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 42px;
    border: 6px solid rgba(235, 244, 255, 0.95);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(180deg, #5b96ff, var(--blue-deep));
    box-shadow: 0 16px 34px rgba(52, 120, 246, 0.22);
    font-size: 15px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 320px;
    gap: 18px;
}

.work-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 32px;
    color: #fff;
    background: #102033;
    box-shadow: 0 24px 70px rgba(16, 24, 40, 0.16);
}

.work-card.tall {
    grid-column: span 2;
    grid-row: span 2;
}

.work-card.wide {
    grid-column: span 2;
}

.work-card img,
.work-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.76;
    transition: transform 0.55s ease, opacity 0.55s ease;
}

.work-card .work-hover-video {
    opacity: 0;
}

.work-card.hover-video-card:hover img {
    opacity: 0;
}

.work-card.hover-video-card:hover .work-hover-video {
    opacity: 0.92;
}

.work-card:hover img,
.work-card:hover video {
    transform: scale(1.045);
    opacity: 0.92;
}

.work-card div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px;
    background: linear-gradient(180deg, transparent, rgba(6, 15, 28, 0.86));
}

.work-card p {
    margin: 0 0 10px;
    color: #d6e6ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.work-card h3 {
    max-width: 620px;
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.08;
}

.work-card span {
    color: rgba(238, 246, 255, 0.84);
}

.contact-section {
    margin-bottom: 92px;
    text-align: center;
}

.contact-section p {
    max-width: 760px;
    margin: 24px auto 30px;
}

.contact-section a {
    min-height: 58px;
    padding: 0 26px;
}

.workspace-section {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
    gap: 70px;
    align-items: center;
}

.workspace-copy h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(38px, 4.8vw, 78px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.workspace-copy > p {
    max-width: 650px;
    margin: 28px 0 0;
    color: #60718c;
    font-size: 19px;
    line-height: 1.75;
}

.workspace-copy ul {
    display: grid;
    gap: 14px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.workspace-copy li {
    position: relative;
    padding-left: 28px;
    color: #60718c;
    font-size: 16px;
    line-height: 1.55;
}

.workspace-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 14px;
    height: 14px;
    border: 4px solid rgba(235, 244, 255, 0.96);
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 8px 18px rgba(52, 120, 246, 0.22);
}

.integration-cloud {
    display: grid;
    grid-template-columns: repeat(3, minmax(96px, 1fr));
    gap: 20px;
    padding: 22px;
}

.integration-cloud span {
    min-height: 112px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(76, 125, 196, 0.12);
    border-radius: 28px;
    color: #46617d;
    background: radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.95), transparent 38%),
    rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.94);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.integration-cloud span:nth-child(1),
.integration-cloud span:nth-child(5),
.integration-cloud span:nth-child(9) {
    color: var(--blue);
}

.site-footer {
    margin-bottom: 34px;
    display: grid;
    grid-template-columns: 1.1fr 1.8fr 1fr;
    gap: 56px;
    align-items: start;
}

.footer-brand p {
    max-width: 270px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.footer-links div {
    display: grid;
    gap: 12px;
}

.footer-links strong,
.footer-subscribe label,
.footer-wechat strong {
    color: var(--ink);
    font-size: 14px;
    font-weight: 850;
}

.footer-links a {
    color: #70819c;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-subscribe {
    display: grid;
    gap: 14px;
}

.footer-subscribe div {
    min-height: 48px;
    display: grid;
    grid-template-columns: 1fr 46px;
    align-items: center;
    border: 1px solid rgba(76, 125, 196, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 12px 28px rgba(51, 112, 204, 0.07);
}

.footer-subscribe input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 16px;
    color: var(--ink);
    background: transparent;
    font: inherit;
}

.footer-subscribe input::placeholder {
    color: #9aabc2;
}

.footer-subscribe button {
    width: 38px;
    height: 38px;
    margin-right: 5px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(180deg, #5b96ff, var(--blue-deep));
    box-shadow: 0 10px 24px rgba(52, 120, 246, 0.22);
    font-size: 18px;
    cursor: pointer;
}

.footer-wechat {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.footer-wechat img {
    display: block;
    width: min(156px, 100%);
    height: auto;
    padding: 10px;
    border: 1px solid rgba(76, 125, 196, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 28px rgba(51, 112, 204, 0.08);
}

.footer-wechat p {
    max-width: 180px;
    margin: 0;
    color: #70819c;
    font-size: 13px;
    line-height: 1.55;
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(76, 125, 196, 0.12);
    color: #91a0b7;
    font-size: 13px;
}

.footer-bottom span:first-child {
    margin-right: auto;
}

@media (max-width: 1180px) {
    .hero-panel {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .product-window {
        max-width: 760px;
    }

    .design-nav {
        grid-template-columns: 1fr auto;
        width: calc(100% - 28px);
    }

    .design-nav nav {
        display: none;
    }

    .intent-grid,
    .method-section,
    .scenario-grid,
    .workspace-section,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .service-stack {
        grid-template-columns: 1fr 1fr;
    }

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

    .work-card.tall,
    .work-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .design-nav {
        top: 10px;
        min-height: 66px;
    }

    .brand-cube {
        width: 42px;
        height: 42px;
    }

    .brand-logo {
        width: 124px;
    }

    .footer-logo {
        width: 150px;
    }

    .design-brand small {
        display: none;
    }

    .nav-pill {
        min-height: 46px;
        padding: 0 14px;
        font-size: 12px;
    }

    .poster-hero {
        padding: 90px 10px 22px;
    }

    .hero-panel {
        min-height: 0;
        padding: 34px 20px;
        border-radius: 34px;
    }

    .hero-content h1 {
        font-size: 44px;
        line-height: 1.05;
    }

    .hero-copy,
    .intent-list p {
        font-size: 16px;
    }

    .hero-actions,
    .hero-tags {
        align-items: stretch;
    }

    .primary-action,
    .secondary-action,
    .hero-tags span {
        width: 100%;
    }

    .product-window {
        border-radius: 28px;
    }

    .window-top,
    .window-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .system-card,
    .mini-dashboard {
        grid-template-columns: 1fr;
    }

    .hero-strip {
        display: none;
    }

    .ticker,
    .intent-section,
    .work-section,
    .service-section,
    .scenario-section,
    .method-section,
    .contact-section,
    .workspace-section,
    .site-footer {
        width: calc(100% - 20px);
        margin-top: 28px;
        padding: 34px 20px;
        border-radius: 34px;
    }

    .ticker {
        padding: 0;
    }

    .section-head {
        display: block;
    }

    .intent-grid h2,
    .section-head h2,
    .scenario-section h2,
    .method-section h2,
    .contact-section h2 {
        font-size: 38px;
        line-height: 1.08;
    }

    .service-stack {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 0;
    }

    .service-stack::before {
        display: none;
    }

    .service-stack span {
        position: static;
        transform: none;
        width: 58px;
        height: 58px;
        border-width: 5px;
    }

    .service-stack article {
        min-height: 0;
        align-items: flex-start;
        text-align: left;
    }

    .scenario-grid,
    .method-board,
    .work-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-auto-rows: 300px;
    }

    .work-card.tall,
    .work-card.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .integration-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        padding: 0;
    }

    .integration-cloud span {
        min-height: 88px;
        border-radius: 22px;
        font-size: 16px;
    }

    .footer-bottom {
        display: grid;
        gap: 12px;
    }

    .footer-bottom span:first-child {
        margin-right: 0;
    }
}
