:root {
    --navy: #08285c;
    --blue: #075fc5;
    --cyan: #19aee2;
    --ink: #172f4d;
    --copy: #40546b;
    --line: #dce6f0;
    --pale: #f5faff;
    --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.refined-demo {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
}
.refined-demo img { display: block; max-width: 100%; }
.demo-container { width: min(1220px, calc(100% - 64px)); margin: 0 auto; }
.demo-skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 9px 14px; color: #fff; background: var(--navy); transform: translateY(-150%); }
.demo-skip-link:focus { transform: translateY(0); }

.demo-header { position: sticky; z-index: 100; top: 0; height: 72px; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); }
.demo-header-inner { display: flex; align-items: center; justify-content: space-between; width: min(1360px, calc(100% - 48px)); height: 100%; margin: 0 auto; }
.demo-logo { display: inline-flex; align-items: center; gap: 9px; color: var(--navy); font-size: 24px; font-weight: 800; letter-spacing: -.02em; text-decoration: none; }
.demo-logo img { width: 33px; height: 33px; object-fit: contain; }
.demo-navigation { display: flex; align-items: center; gap: 25px; }
.demo-navigation a { color: #24384e; font-size: 14px; font-weight: 700; white-space: nowrap; text-decoration: none; }
.demo-navigation a[aria-current="page"] { color: var(--blue); }
.demo-navigation a > i { margin-left: 3px; font-size: 9px; }
.demo-navigation a:hover { color: var(--blue); }
.demo-navigation .demo-nav-contact, .demo-navigation .demo-nav-consult { display: inline-flex; align-items: center; justify-content: center; height: 38px; padding: 0 16px; border: 1px solid var(--blue); border-radius: 4px; color: var(--blue); }
.demo-navigation .demo-nav-consult { margin-left: -14px; padding-inline: 22px; background: var(--navy); border-color: var(--navy); color: #fff; }
.demo-menu-button { display: none; width: 42px; height: 42px; border: 0; background: transparent; }
.demo-menu-button span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--navy); }

.demo-hero {
    position: relative;
    min-height: 610px;
    background: #fff;
    border-bottom: 1px solid #e7eef6;
    isolation: isolate;
    overflow: hidden;
}
.demo-hero::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(135deg, #fff 0%, #f8fbfe 100%);
    content: "";
}
.demo-hero::after {
    content: none;
}
.demo-hero-visual {
    position: absolute;
    z-index: 1;
    inset: 0 0 62px;
    pointer-events: none;
}
.demo-hero-media,
.demo-hero-poster,
.demo-hero-poster img,
.demo-hero-video,
.demo-hero-media-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.demo-hero-media { overflow: hidden; background: #fff; }
.demo-hero-poster { display: block; }
.demo-hero-poster img,
.demo-hero-video {
    object-fit: cover;
    object-position: center;
}
.demo-hero-video {
    z-index: 1;
    opacity: 0;
    transform: none;
    transition: opacity .8s ease;
}
.demo-hero-media.is-playing .demo-hero-video { opacity: 1; }
.demo-hero-media.is-fallback .demo-hero-video { display: none; }
.demo-hero-media-shade {
    z-index: 2;
    background:
        linear-gradient(90deg, #fff 0%, rgba(255,255,255,.98) 27%, rgba(255,255,255,.76) 38%, rgba(255,255,255,.18) 52%, rgba(255,255,255,0) 64%),
        linear-gradient(180deg, rgba(255,255,255,.02) 58%, rgba(240,247,252,.28) 100%);
}
.demo-hero-copy { position: relative; z-index: 3; padding-top: 90px; padding-bottom: 126px; }
.demo-hero h1 { margin: 0; color: var(--navy); font-size: clamp(42px, 4.1vw, 58px); font-weight: 800; line-height: 1.42; letter-spacing: .01em; }
.demo-hero-lead { max-width: 620px; margin: 18px 0 0; color: #334a62; font-size: 16px; font-weight: 500; line-height: 1.9; }
.demo-button-row { display: flex; gap: 14px; margin-top: 28px; }
.demo-button { display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; min-width: 178px; min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 4px; font-size: 14px; font-weight: 700; text-decoration: none; }
.demo-button-primary { background: linear-gradient(100deg, #092b6f, #0758bc); color: #fff; box-shadow: 0 7px 16px rgba(7,71,155,.18); }
.demo-button-secondary { min-width: 210px; background: #fff; border-color: #8aafe2; color: var(--blue); }
.demo-hero-taxonomy {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 62px;
    padding-inline: max(32px, calc((100vw - 1220px) / 2));
    border-top: 1px solid rgba(8,40,92,.12);
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(12px);
}
.demo-hero-taxonomy a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    border-left: 1px solid rgba(8,40,92,.09);
    color: #35516e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-align: center;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
}
.demo-hero-taxonomy a:last-child { border-right: 1px solid rgba(8,40,92,.09); }
.demo-hero-taxonomy a:hover,
.demo-hero-taxonomy a:focus-visible { background: rgba(7,95,197,.05); color: var(--blue); }
body.demo-hero-motion-ready .demo-hero-copy > h1,
body.demo-hero-motion-ready .demo-hero-copy > .demo-hero-lead,
body.demo-hero-motion-ready .demo-hero-copy > .demo-button-row {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    animation: demo-hero-copy-in .8s cubic-bezier(.22,1,.36,1) forwards;
}
body.demo-hero-motion-ready .demo-hero-copy > .demo-hero-lead { animation-delay: .16s; }
body.demo-hero-motion-ready .demo-hero-copy > .demo-button-row { animation-delay: .32s; }
@keyframes demo-hero-copy-in { to { opacity: 1; transform: none; } }

.demo-foundation { padding: 58px 0 0; }
.demo-section-heading { color: var(--ink); }
.demo-section-heading-center { max-width: 970px; margin: 0 auto; text-align: center; }
.demo-section-heading h2 { margin: 0; color: var(--navy); font-size: 31px; font-weight: 800; line-height: 1.55; letter-spacing: .03em; }
.demo-section-heading p { margin: 12px 0 0; color: var(--copy); font-size: 15px; font-weight: 500; line-height: 1.9; }
.demo-foundation-points { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 42px; }
.demo-foundation-points > div { display: grid; justify-items: center; min-height: 140px; padding: 8px 24px 18px; border-left: 1px solid var(--line); text-align: center; }
.demo-foundation-points > div:first-child { border-left: 0; }
.demo-icon { display: block; object-fit: contain; }
.demo-icon-foundation { width: 48px; height: 48px; }
.demo-foundation-points h3 { margin: 18px 0 0; color: #26476b; font-size: 15px; line-height: 1.7; }
.demo-section-divider { height: 1px; margin: 42px 0 28px; background: var(--line); }
.demo-services-heading h2 { font-size: 27px; }
.demo-services-heading p { margin-top: 4px; }
.demo-service-strip { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 28px; border: 1px solid var(--line); border-radius: 7px; overflow: hidden; }
.demo-service-strip a { display: flex; flex-direction: column; align-items: center; min-height: 252px; padding: 28px 16px 23px; border-left: 1px solid var(--line); background: #fff; color: inherit; text-align: center; text-decoration: none; }
.demo-service-strip a:first-child { border-left: 0; }
.demo-service-strip a:hover { background: var(--pale); }
.demo-icon-service { width: 64px; height: 64px; }
.demo-service-strip h3 { margin: 10px 0 0; color: var(--navy); font-size: 16px; line-height: 1.55; }
.demo-service-strip p { margin: 13px 0 0; color: #506278; font-size: 14px; line-height: 1.8; }

.demo-approach { padding-bottom: 58px; }
.demo-approach .demo-section-divider, .demo-projects .demo-section-divider, .demo-philosophy .demo-section-divider { margin-top: 56px; }
.demo-approach .demo-section-heading h2 { font-size: 28px; }
.demo-approach .demo-section-heading p { margin-top: 4px; }
.demo-approach-steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; }
.demo-approach-steps::before { position: absolute; top: 20px; left: 17%; right: 17%; border-top: 2px dotted #b8cce3; content: ""; }
.demo-approach-steps article { position: relative; display: flex; flex-direction: column; align-items: center; padding: 0 28px; text-align: center; }
.demo-step-number { position: relative; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #0870cf; color: #fff; font-size: 12px; font-weight: 800; }
.demo-icon-approach { width: 58px; height: 58px; margin-top: 28px; }
.demo-approach-steps h3 { margin: 17px 0 0; color: var(--navy); font-size: 17px; }
.demo-approach-steps p { margin: 8px 0 0; color: #53657a; font-size: 14px; line-height: 1.8; }

.demo-projects { padding-bottom: 56px; }
.demo-projects .demo-section-heading h2 { font-size: 29px; }
.demo-project-carousel { position: relative; margin: 30px 20px 0; }
.demo-project-viewport { border: 1px solid #cfdce9; border-radius: 6px; overflow: hidden; }
.demo-project-track { display: flex; transform: translate3d(-100%, 0, 0); transition: transform .62s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.demo-project-slide { display: grid; grid-template-columns: 1fr 1fr; min-height: 304px; background: #fff; }
.demo-project-track .demo-project-slide { flex: 0 0 100%; }
.demo-project-slide[hidden] { display: none; }
.demo-project-slide > img { width: 100%; height: 100%; min-height: 304px; object-fit: cover; }
.demo-project-slide > div { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 34px 42px; }
.demo-project-target { display: inline-block; margin: 0 0 12px; padding: 4px 10px; background: #0871d7; color: #fff; font-size: 13px; font-weight: 700; }
.demo-project-slide h3 { margin: 0; color: var(--navy); font-size: 27px; line-height: 1.55; }
.demo-project-slide > div > p:not(.demo-project-target) { margin: 13px 0 0; color: #52657a; font-size: 15px; line-height: 1.85; }
.demo-project-slide > div > a { display: inline-flex; align-items: center; justify-content: space-between; min-width: 190px; margin-top: 19px; padding: 9px 14px; border: 1px solid #8bafe0; border-radius: 4px; color: var(--blue); font-size: 14px; font-weight: 700; text-decoration: none; }
.demo-carousel-button { position: absolute; z-index: 2; top: 50%; display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 0; border-radius: 50%; background: var(--navy); color: #fff; cursor: pointer; transform: translateY(-50%); }
.demo-carousel-prev { left: -20px; }
.demo-carousel-next { right: -20px; }
.demo-project-note { max-width: 960px; margin: 28px auto 0; color: #65778b; font-size: 13px; line-height: 1.8; text-align: center; }

.demo-philosophy { padding-bottom: 62px; }
.demo-philosophy .demo-section-heading h2 { font-size: 29px; }
.demo-philosophy .demo-section-heading p { margin-top: 3px; }
.demo-story-list { display: grid; gap: 12px; margin-top: 28px; }
.demo-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 215px; border: 1px solid #d5e0eb; border-radius: 6px; overflow: hidden; }
.demo-story figure { margin: 0; min-height: 215px; }
.demo-story figure img { width: 100%; height: 100%; min-height: 215px; object-fit: cover; }
.demo-story > div { display: grid; grid-template-columns: 66px 1fr; align-items: center; gap: 18px; padding: 30px 44px; background: #fff; }
.demo-icon-story { width: 54px; height: 54px; }
.demo-story h3 { margin: 0; color: var(--navy); font-size: 20px; }
.demo-story p { margin: 10px 0 0; color: #52657a; font-size: 15px; line-height: 1.85; }
.demo-story-reverse figure { order: 2; }

.demo-partners { position: relative; padding: 54px 0 48px; border-top: 1px solid var(--line); overflow: hidden; }
.demo-partners::after { position: absolute; z-index: -1; right: -80px; bottom: -90px; width: 500px; height: 280px; background-image: radial-gradient(circle, rgba(31,123,211,.22) 1px, transparent 1.5px); background-size: 27px 27px; opacity: .55; transform: rotate(-8deg); content: ""; }
.demo-partner-inner { display: grid; grid-template-columns: 150px minmax(0, 620px); justify-content: center; align-items: center; gap: 30px; text-align: center; }
.demo-icon-partner { width: 92px; height: 92px; justify-self: center; }
.demo-partner-inner h2 { margin: 0; color: var(--navy); font-size: 29px; }
.demo-partner-inner p { margin: 8px 0 17px; color: #40556d; font-size: 15px; line-height: 1.85; }
.demo-partner-inner .demo-button { min-width: 310px; min-height: 44px; }

.demo-final-cta { padding: 0 0 45px; }
.demo-final-cta-inner { position: relative; display: grid; grid-template-columns: 112px 1fr auto; align-items: center; min-height: 170px; padding: 26px 42px; border-radius: 6px; background: radial-gradient(circle at 75% 120%, rgba(91,220,255,.48), transparent 38%), linear-gradient(105deg, #0860c9, #0081d7 54%, #19b7df); color: #fff; overflow: hidden; }
.demo-final-cta-inner::before, .demo-final-cta-inner::after { position: absolute; right: -4%; width: 70%; height: 100px; border-top: 1px solid rgba(255,255,255,.28); border-radius: 50%; content: ""; transform: rotate(-6deg); }
.demo-final-cta-inner::before { top: 52%; }
.demo-final-cta-inner::after { top: 69%; right: -12%; }
.demo-cta-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 92px; height: 92px; border-radius: 50%; background: #fff; color: #1574d0; font-size: 43px; }
.demo-icon-cta { width: 56px; height: 56px; }
.demo-final-cta-inner > div:nth-child(2) { position: relative; z-index: 1; }
.demo-final-cta h2 { margin: 0; font-size: 27px; line-height: 1.4; }
.demo-final-cta p { margin: 8px 0 0; font-size: 14px; line-height: 1.8; }
.demo-button-light { position: relative; z-index: 1; min-width: 150px; background: #fff; color: var(--blue); }

.demo-footer { padding: 42px 0 0; background: #fff; border-top: 1px solid var(--line); }
.demo-footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 0; padding-bottom: 34px; }
.demo-footer-grid > div { padding: 0 22px; border-left: 1px solid var(--line); }
.demo-footer-grid > div:first-child { padding-left: 0; border-left: 0; }
.demo-footer-brand p { color: #53677c; font-size: 13px; line-height: 1.8; }
.demo-footer-brand > a:last-child { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; padding: 7px 12px; border: 1px solid #8bafe0; border-radius: 4px; color: var(--blue); font-size: 13px; text-decoration: none; }
.demo-footer-grid h3 { margin: 0 0 12px; color: var(--navy); font-size: 14px; }
.demo-footer-grid h3.demo-footer-subhead { margin-top: 24px; }
.demo-footer-grid > div:not(.demo-footer-brand) a { display: block; margin: 7px 0; color: #50637a; font-size: 13px; line-height: 1.6; text-decoration: none; }
.demo-footer-bottom { display: flex; justify-content: flex-end; align-items: center; min-height: 54px; border-top: 1px solid var(--line); color: #718195; font-size: 12px; }
.demo-footer-bottom span:first-child { display: flex; gap: 26px; }
.demo-footer-bottom a { color: inherit; text-decoration: none; }

@media (max-width: 1100px) {
    .demo-navigation { gap: 15px; }
    .demo-navigation a { font-size: 13px; }
    .demo-navigation .demo-nav-contact { display: none; }
    .demo-service-strip { grid-template-columns: repeat(3, 1fr); }
    .demo-service-strip a:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); }
    .demo-service-strip a:nth-child(5), .demo-service-strip a:nth-child(6) { border-top: 1px solid var(--line); }
    .demo-footer-grid { grid-template-columns: 1.35fr repeat(4, 1fr); row-gap: 30px; }
}

@media (max-width: 820px) {
    .demo-container { width: min(100% - 36px, 680px); }
    .demo-header { height: 64px; }
    .demo-header-inner { width: calc(100% - 28px); }
    .demo-menu-button { display: block; }
    .demo-navigation { position: absolute; top: 64px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 18px 18px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 12px 22px rgba(14,50,85,.10); }
    .demo-navigation.demo-nav-open { display: flex; }
    .demo-navigation a { padding: 11px 8px; font-size: 14px; }
    .demo-navigation .demo-nav-contact, .demo-navigation .demo-nav-consult { display: flex; margin: 6px 0 0; }
    .demo-hero { min-height: 720px; }
    .demo-hero-copy { position: relative; padding-top: 48px; padding-bottom: 250px; }
    .demo-hero-visual { inset: 0 0 56px; }
    .demo-hero-media-shade { background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.98) 38%, rgba(255,255,255,.68) 49%, rgba(255,255,255,.08) 62%, rgba(255,255,255,0) 74%); }
    .demo-hero-taxonomy { grid-template-columns: repeat(5, max-content); justify-content: start; min-height: 56px; padding-inline: 18px; overflow-x: auto; }
    .demo-hero-taxonomy a { min-width: 142px; }
    .demo-hero h1 { font-size: clamp(32px, 9vw, 43px); line-height: 1.42; }
    .demo-hero-lead { font-size: 15px; }
    .demo-hero-lead br { display: none; }
    .demo-button-row { flex-direction: column; align-items: flex-start; }
    .demo-button { width: min(100%, 280px); }
    .demo-section-heading h2, .demo-services-heading h2, .demo-approach .demo-section-heading h2, .demo-projects .demo-section-heading h2, .demo-philosophy .demo-section-heading h2 { font-size: 24px; }
    .demo-section-heading p br { display: none; }
    .demo-foundation-points { grid-template-columns: repeat(2, 1fr); }
    .demo-foundation-points > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
    .demo-foundation-points > div:nth-child(4) { border-top: 1px solid var(--line); padding-top: 24px; }
    .demo-service-strip { grid-template-columns: repeat(2, 1fr); }
    .demo-service-strip a:nth-child(odd) { border-left: 0; }
    .demo-service-strip a:nth-child(n+3) { border-top: 1px solid var(--line); }
    .demo-service-strip a:nth-child(4) { border-left: 1px solid var(--line); }
    .demo-approach-steps { grid-template-columns: 1fr; gap: 34px; }
    .demo-approach-steps::before { display: none; }
    .demo-project-carousel { margin-inline: 10px; }
    .demo-project-slide { display: flex; flex-direction: column; }
    .demo-project-slide > img { flex: 0 0 auto; height: clamp(220px, 55vw, 300px); min-height: 0; max-height: none; }
    .demo-project-slide > div { padding: 28px 26px; }
    .demo-project-slide h3 { font-size: 23px; }
    .demo-carousel-button { top: calc(clamp(220px, 55vw, 300px) / 2); }
    .demo-story { grid-template-columns: 1fr; }
    .demo-story figure, .demo-story figure img { min-height: 230px; max-height: 280px; }
    .demo-story > div { min-height: 190px; padding: 28px 26px; }
    .demo-story-reverse figure { order: 0; }
    .demo-partner-inner { grid-template-columns: 1fr; gap: 18px; }
    .demo-icon-partner { width: 78px; height: 78px; }
    .demo-partner-inner h2 { font-size: 25px; }
    .demo-partner-inner .demo-button { width: auto; max-width: 100%; min-width: 0; }
    .demo-final-cta-inner { grid-template-columns: 76px 1fr; gap: 18px; padding: 26px; }
    .demo-cta-icon { width: 70px; height: 70px; font-size: 34px; }
    .demo-final-cta h2 { font-size: 23px; }
    .demo-final-cta .demo-button-light { grid-column: 1 / -1; width: 180px; }
    .demo-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .demo-footer-grid > div:nth-child(odd) { padding-left: 0; border-left: 0; }
}

@media (max-width: 520px) {
    .demo-container { width: calc(100% - 30px); }
    .demo-logo { font-size: 20px; }
    .demo-logo img { width: 28px; height: 28px; }
    .demo-hero { min-height: 700px; }
    .demo-hero-copy { padding-top: 38px; padding-bottom: 250px; }
    .demo-hero h1 { font-size: 31px; }
    .demo-section-heading h2, .demo-services-heading h2, .demo-approach .demo-section-heading h2, .demo-projects .demo-section-heading h2, .demo-philosophy .demo-section-heading h2 { font-size: 21px; letter-spacing: 0; }
    .demo-section-heading p { font-size: 14px; }
    .demo-foundation { padding-top: 45px; }
    .demo-foundation-points { margin-top: 28px; }
    .demo-foundation-points > div { min-height: 135px; padding-inline: 10px; }
    .demo-icon-foundation { width: 44px; height: 44px; }
    .demo-foundation-points h3 { font-size: 14px; }
    .demo-service-strip { grid-template-columns: 1fr; }
    .demo-service-strip a { min-height: 210px; border-top: 1px solid var(--line); border-left: 0 !important; }
    .demo-service-strip a:first-child { border-top: 0; }
    .demo-project-slide > img { height: clamp(195px, 60vw, 240px); min-height: 0; max-height: none; }
    .demo-carousel-button { width: 34px; height: 34px; }
    .demo-carousel-button { top: calc(clamp(195px, 60vw, 240px) / 2); }
    .demo-carousel-prev { left: -17px; }
    .demo-carousel-next { right: -17px; }
    .demo-story > div { grid-template-columns: 48px 1fr; gap: 14px; padding: 24px 20px; }
    .demo-story > div > i { font-size: 37px; }
    .demo-story h3 { font-size: 18px; }
    .demo-partner-inner p br, .demo-final-cta p br { display: none; }
    .demo-final-cta-inner { grid-template-columns: 1fr; text-align: center; }
    .demo-cta-icon { margin: 0 auto; }
    .demo-final-cta .demo-button-light { grid-column: auto; justify-self: center; }
    .demo-footer-grid { grid-template-columns: 1fr; }
    .demo-footer-grid > div { padding: 22px 0; border-top: 1px solid var(--line); border-left: 0; }
    .demo-footer-grid > div:first-child { border-top: 0; }
    .demo-footer-bottom { align-items: flex-start; justify-content: flex-start; flex-direction: column; gap: 10px; padding: 16px 0; }
    .demo-footer-bottom span:first-child { flex-direction: column; gap: 5px; }
}

body.demo-reveal-ready .demo-reveal {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(0, 30px, 0) scale(.985);
    transition:
        opacity .72s cubic-bezier(.22, 1, .36, 1),
        filter .72s cubic-bezier(.22, 1, .36, 1),
        transform .82s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--demo-reveal-delay, 0ms);
    will-change: opacity, filter, transform;
}

body.demo-reveal-ready .demo-reveal.demo-reveal-divider {
    filter: none;
    transform: scaleX(.12);
    transform-origin: center;
}

body.demo-reveal-ready .demo-reveal.demo-reveal-visible {
    opacity: 1;
    filter: none;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .demo-hero-video { display: none; }
    .demo-project-track { animation: none; transition: none; }
    body.demo-hero-motion-ready .demo-hero-copy > h1,
    body.demo-hero-motion-ready .demo-hero-copy > .demo-hero-lead,
    body.demo-hero-motion-ready .demo-hero-copy > .demo-button-row { opacity: 1; transform: none; animation: none; }
    body.demo-reveal-ready .demo-reveal {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}
