:root {
    --green: #087047;
    --dark-green: #024430;
    --cream: #f7f4ec;
    --brown: #b28a70;
    --caramel: #9c6548;
    --ink: #151515;
    --muted: #777;
    --orange: #d8752f;
    --navy: #101820;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

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

/* Fixed navigation remains simple so the product motion owns the page. */
.topbar {
    align-items: center;
    direction: ltr;
    display: flex;
    inset: 22px 42px auto 42px;
    justify-content: space-between;
    pointer-events: none;
    position: fixed;
    z-index: 20;
}

.brand,
.contact-btn {
    pointer-events: auto;
}

.brand {
    align-items: center;
    color: var(--dark-green);
    display: flex;
    font-size: 12px;
    font-weight: 850;
    gap: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand-mark {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    display: flex;
    height: 100px;
    justify-content: center;
    width: 100px;
}

.brand-mark img {
    display: block;
    filter: drop-shadow(0 5px 7px rgba(40, 22, 10, 0.18));
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.contact-btn {
    align-items: center;
    background: linear-gradient(145deg, #15110d, #050505);
    border: 1px solid rgba(216, 117, 47, 0.62);
    box-shadow:
        0 10px 22px rgba(18, 12, 8, 0.13),
        0 0 0 1px rgba(255, 214, 166, 0.08) inset;
    color: #e59654;
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    gap: 8px;
    min-height: 40px;
    padding: 10px 14px;
    text-transform: uppercase;
    transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.contact-btn:hover {
    border-color: rgba(242, 161, 91, 0.96);
    box-shadow:
        0 14px 28px rgba(18, 12, 8, 0.18),
        0 0 22px rgba(216, 117, 47, 0.18);
    color: #ffbd7a;
    transform: translateY(-2px);
}

.contact-btn svg {
    fill: currentColor;
    height: 16px;
    width: 16px;
}

.contact-btn span {
    line-height: 1;
}

/* Tall scroll wrapper + sticky 100vh stage, matching the prototype style. */
.scroll-root {
    height: 680vh;
    position: relative;
}

.sticky-stage {
    background: #fff;
    height: 100vh;
    overflow: hidden;
    position: sticky;
    top: 0;
}

.scene {
    direction: ltr;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: translateY(40px);
    transition: opacity 0.25s linear, transform 0.25s linear;
}

.scene.is-active {
    opacity: 1;
    transform: translateY(0);
}

.scene-services.is-active {
    z-index: 4;
}

.scene-final.is-active {
    z-index: 7;
}

.scene-services.is-persisting .availability-title {
    opacity: 0;
}

.hero-kicker {
    left: 50%;
    position: absolute;
    text-align: center;
    top: 13vh;
    transform: translateX(-50%);
    width: min(520px, calc(100% - 40px));
    z-index: 5;
}

.hero-kicker p {
    color: #1f2722;
    font-size: clamp(20px, 2.2vw, 34px);
    font-weight: 850;
    letter-spacing: -0.03em;
    margin: 0;
}

.hero-kicker span {
    color: var(--muted);
    display: block;
    font-size: clamp(15px, 1.4vw, 22px);
    font-weight: 850;
    letter-spacing: 0.14em;
    margin-top: 12px;
    text-transform: uppercase;
}

.hero-title {
    color: var(--green);
    left: 8vw;
    margin: 0;
    position: absolute;
    right: 8vw;
    text-align: center;
    top: 25vh;
}

.hero-title h1 {
    font-size: clamp(58px, 10vw, 150px);
    font-weight: 1000;
    letter-spacing: -0.07em;
    line-height: 0.82;
    margin: 0;
}

/* Scene 2: personal positioning and compact metrics card. */
.copy-block {
    left: 8vw;
    position: absolute;
    top: 24vh;
    width: min(560px, 44vw);
}

.eyebrow {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.copy-block h2 {
    font-size: clamp(44px, 5.5vw, 88px);
    font-weight: 1000;
    letter-spacing: -0.06em;
    line-height: 0.92;
    margin: 0 0 14px;
}

.copy-block p,
.article-card p,
.style-copy p,
.final-panel p {
    color: #555;
    line-height: 1.7;
}

.copy-block p {
    color: var(--green);
    font-size: clamp(30px, 4vw, 68px);
    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 0.94;
    margin: 0;
}

.browser-stack {
    height: 360px;
    position: absolute;
    right: 10vw;
    top: 22vh;
    width: min(470px, 38vw);
}

.browser-card {
    --browser-x: 0px;
    --browser-y: 0px;
    --browser-r: 0deg;
    background: #fdfdfb;
    border: 2px solid #202020;
    border-radius: 18px;
    box-shadow: 0 20px 35px rgba(22, 28, 22, 0.1);
    height: 210px;
    overflow: hidden;
    position: absolute;
    transform: translate(var(--browser-x), var(--browser-y)) rotate(var(--browser-r));
    width: min(330px, 100%);
}

.browser-one {
    left: 0;
    top: 0;
    z-index: 3;
}

.browser-two {
    left: 42px;
    top: 46px;
    z-index: 2;
}

.browser-three {
    left: 84px;
    top: 92px;
    z-index: 1;
}

.browser-bar {
    align-items: center;
    background: #f2f2ee;
    border-bottom: 1px solid #d9d9d4;
    display: flex;
    gap: 7px;
    height: 34px;
    padding: 0 14px;
}

.browser-bar span {
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

.browser-bar span:nth-child(1) {
    background: #ff5f57;
}

.browser-bar span:nth-child(2) {
    background: #febc2e;
}

.browser-bar span:nth-child(3) {
    background: #28c840;
}

.browser-content {
    padding: 28px;
}

.browser-content strong {
    display: block;
    font-size: 24px;
    font-weight: 1000;
    margin-bottom: 18px;
}

.browser-content i {
    background: #111;
    display: block;
    height: 1px;
    margin: 13px 0;
    width: 68%;
}

.browser-content i:nth-of-type(2) {
    width: 46%;
}

.browser-content em {
    color: #4c4c4c;
    display: block;
    font-size: 12px;
    font-style: normal;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Scene 3: dashboard/story section with oversized moving word. */
.big-ghost {
    color: var(--brown);
    font-size: clamp(76px, 14vw, 215px);
    font-weight: 1000;
    left: 4vw;
    letter-spacing: -0.08em;
    line-height: 0.78;
    margin: 0;
    opacity: 0.86;
    position: absolute;
    top: 7vh;
}

.article-card {
    bottom: 15vh;
    left: 8vw;
    position: absolute;
    width: 340px;
}

.award-frame {
    aspect-ratio: 16 / 9;
    border: 4px solid rgba(224, 196, 137, 0.78);
    box-shadow:
        0 18px 34px rgba(70, 45, 18, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.72) inset,
        0 0 28px rgba(217, 184, 111, 0.16);
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
    height: auto;
    width: 300px;
}

.award-frame::before {
    background:
        linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 244, 209, 0.68) 48%, rgba(255, 255, 255, 0.14) 58%, transparent 74%);
    content: "";
    inset: -45% -70%;
    opacity: 0;
    position: absolute;
    transform: translateX(-48%) rotate(8deg);
    z-index: 2;
    animation: awardShine 5.8s ease-in-out infinite;
}

.award-frame::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 42%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.award-photo {
    display: block;
    filter: saturate(1.04) contrast(1.03);
    height: 100%;
    object-fit: cover;
    object-position: 42% 48%;
    transform: scale(1.01);
    transition: filter 300ms ease;
    width: 100%;
}

.award-frame:hover .award-photo {
    filter: saturate(1.1) contrast(1.05) brightness(1.03);
}

@keyframes awardShine {
    0%,
    42% {
        opacity: 0;
        transform: translateX(-52%) rotate(8deg);
    }

    54% {
        opacity: 0.9;
    }

    72%,
    100% {
        opacity: 0;
        transform: translateX(52%) rotate(8deg);
    }
}

.article-card h3,
.style-copy h3 {
    font-size: 18px;
    margin: 0 0 8px;
}

.style-copy {
    position: absolute;
    right: 12vw;
    top: 49vh;
    width: 320px;
}

/* Scene 4: floating technology logos. */
.tech-cloud {
    inset: 0;
    position: absolute;
}

.tech-badge {
    --float-x: 0px;
    --float-y: 20px;
    align-items: center;
    animation: badgeFloat 6.5s ease-in-out infinite;
    animation-delay: var(--delay);
    background: transparent;
    border: 0;
    color: #111;
    display: flex;
    filter: drop-shadow(0 20px 22px rgba(21, 14, 8, 0.12));
    height: clamp(58px, 5.8vw, 98px);
    justify-content: center;
    padding: 0;
    position: absolute;
    width: clamp(58px, 5.8vw, 98px);
}

.tech-badge svg {
    display: block;
    height: 100%;
    overflow: visible;
    width: 100%;
}

.badge-laravel {
    color: #ff4b11;
    height: clamp(74px, 8vw, 126px);
    left: 25vw;
    top: 15vh;
    width: clamp(74px, 8vw, 126px);
}

.badge-laravel svg,
.badge-react svg,
.badge-js svg,
.badge-openai svg,
.badge-livewire svg,
.badge-api svg,
.badge-cube svg,
.badge-grafana svg,
.badge-claude svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 5;
}

.badge-react {
    --float-y: -20px;
    color: #39c5ef;
    right: 31vw;
    top: 12vh;
}

.badge-livewire {
    color: #ff7030;
    height: clamp(68px, 6.5vw, 108px);
    left: 6vw;
    top: 56vh;
    width: clamp(68px, 6.5vw, 108px);
}

.badge-livewire svg {
    fill: #ff7030;
    stroke: #ff7030;
    stroke-width: 3;
}

.badge-livewire path {
    fill: #fff;
    stroke: #fff;
}

.badge-js {
    --float-x: 16px;
    color: #63a82d;
    left: 35vw;
    top: 31vh;
}

.badge-js text {
    fill: currentColor;
    font-size: 24px;
    font-weight: 900;
    stroke: none;
}

.badge-openai {
    --float-x: -16px;
    color: #111;
    left: 27vw;
    top: 45vh;
}

.badge-python {
    --float-y: -18px;
    height: clamp(68px, 6vw, 110px);
    left: 21vw;
    top: 68vh;
    width: clamp(68px, 6vw, 110px);
}

.badge-python .python-blue {
    fill: #3778b8;
}

.badge-python .python-orange {
    fill: #ff7331;
}

.badge-python circle {
    fill: #fff;
}

.badge-api {
    --float-x: 20px;
    color: #f05a1f;
    left: 36vw;
    top: 78vh;
}

.badge-cube {
    --float-y: -20px;
    color: #111;
    filter: drop-shadow(0 22px 18px rgba(0, 0, 0, 0.12));
    right: 23vw;
    top: 35vh;
}

.badge-cube path:nth-child(1) {
    fill: rgba(255, 255, 255, 0.82);
}

.badge-cube path:nth-child(2) {
    fill: rgba(0, 0, 0, 0.18);
}

.badge-grafana {
    --float-x: -18px;
    color: #ff6b18;
    right: 9vw;
    top: 41vh;
}

.badge-grafana path:first-child {
    fill: #ff8b17;
    stroke: #ff5c12;
}

.badge-grafana path:last-child {
    stroke: #fff;
    stroke-width: 4;
}

.badge-claude {
    animation: badgeFloat 6.5s ease-in-out infinite, claudeSpin 12s linear infinite;
    animation-delay: var(--delay), 0s;
    color: #cf7b4d;
    height: clamp(64px, 6.4vw, 106px);
    left: 63vw;
    padding: 0;
    top: 60vh;
    transform-origin: center;
    width: clamp(64px, 6.4vw, 106px);
}

.badge-claude svg {
    stroke: #bf663a;
    stroke-width: 4;
}

.badge-claude path {
    fill: #d98b65;
}

.badge-claude circle {
    fill: #fffaf3;
    stroke: #d98b65;
    stroke-width: 3;
}

@keyframes badgeFloat {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: var(--float-x) var(--float-y);
    }
}

@keyframes claudeSpin {
    to {
        rotate: 360deg;
    }
}

/* Scene 5: device ecosystem where the phone gets locked in place. */
.availability-title {
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 900;
    left: 50%;
    position: absolute;
    top: 27vh;
    transform: translateX(-50%);
}

.ecosystem-lineup {
    align-items: flex-end;
    bottom: 16vh;
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 170px minmax(220px, 0.72fr);
    gap: clamp(20px, 3.8vw, 62px);
    justify-content: space-between;
    left: 5vw;
    position: absolute;
    right: 5vw;
}

.desktop-device,
.ipad-device {
    position: relative;
}

.device-image-frame {
    background: transparent;
    border: 0;
    filter: drop-shadow(0 30px 26px rgba(19, 22, 26, 0.12));
}

.device-image-frame img {
    display: block;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    user-select: none;
}

.desktop-device {
    width: min(37vw, 560px);
}

.phone-dock-space {
    align-self: end;
    height: 280px;
    position: relative;
    width: 170px;
}

.phone-dock-space::after {
    background: rgba(8, 112, 71, 0.12);
    border-radius: 50%;
    bottom: -24px;
    content: "";
    filter: blur(9px);
    height: 28px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 138px;
}

.ipad-device {
    width: min(24vw, 330px);
}

/* Scene 6: final CTA. */
.final-panel {
    background: #EDE4D8;
    padding: 42px;
    position: absolute;
    right: 10vw;
    top: 10vh;
    width: min(620px, 72vw);
    z-index: 8;
}

.final-panel h2 {
    font-size: clamp(42px, 6vw, 100px);
    font-weight: 1000;
    letter-spacing: -0.07em;
    line-height: 0.82;
    margin: 0 0 14px;
}

.final-panel h2 span {
    display: block;
}

.final-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.final-links a {
    align-items: center;
    background:
        linear-gradient(145deg, #15110d, #050505);
    border: 1px solid rgba(216, 117, 47, 0.62);
    box-shadow:
        0 10px 22px rgba(18, 12, 8, 0.13),
        0 0 0 1px rgba(255, 214, 166, 0.08) inset;
    color: #e59654;
    display: inline-flex;
    font-size: 12px;
    font-weight: 850;
    gap: 8px;
    min-height: 40px;
    padding: 10px 14px;
    text-transform: uppercase;
    transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.final-links a:hover {
    border-color: rgba(242, 161, 91, 0.96);
    box-shadow:
        0 14px 28px rgba(18, 12, 8, 0.18),
        0 0 22px rgba(216, 117, 47, 0.18);
    color: #ffbd7a;
    transform: translateY(-2px);
}

.final-links svg {
    fill: currentColor;
    height: 17px;
    width: 17px;
}

.final-links span {
    line-height: 1;
}

.final-copyright {
    background: rgba(237, 228, 216, 0.72);
    border: 1px solid rgba(216, 117, 47, 0.22);
    bottom: 0;
    box-shadow: 0 12px 24px rgba(24, 17, 11, 0.08);
    color: rgba(21, 17, 13, 0.76);
    font-size: 12px;
    font-weight: 800;
    left: 50%;
    letter-spacing: 0.06em;
    margin: 0;
    padding: 8px 18px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 9;
}

/* CSS-only central object: the moving mobile phone. */
.product-phone {
    --x: 50vw;
    --y: 52vh;
    --r: -14deg;
    --s: 1;
    --phone-opacity: 1;
    filter: drop-shadow(28px 26px 30px rgba(30, 20, 16, 0.18));
    height: 350px;
    left: var(--x);
    opacity: var(--phone-opacity);
    pointer-events: none;
    position: absolute;
    top: var(--y);
    transform: translate(-50%, -50%) rotate(var(--r)) scale(var(--s));
    transform-origin: center 60%;
    transition: filter 0.2s linear, opacity 0.2s linear;
    width: 172px;
    z-index: 6;
}

.phone-body {
    background: linear-gradient(145deg, #f2a15b, #d8752f 46%, #9e4d22);
    border: 1px solid rgba(117, 58, 23, 0.42);
    border-radius: 34px;
    box-shadow: inset -10px 0 18px rgba(98, 42, 13, 0.24);
    height: 100%;
    overflow: hidden;
    padding: 9px;
    position: absolute;
    width: 100%;
}

.phone-body::before {
    background:
        radial-gradient(circle at 50% 34%, rgba(216, 117, 47, 0.16), transparent 7rem),
        linear-gradient(160deg, #101419, #050607);
    border: 1px solid rgba(255, 244, 226, 0.12);
    border-radius: 27px;
    content: "";
    inset: 9px;
    position: absolute;
}

.phone-body::after {
    background: linear-gradient(180deg, #ef9b52, #a94f20);
    border-radius: 0 28px 28px 0;
    content: "";
    height: calc(100% - 22px);
    position: absolute;
    right: -9px;
    top: 11px;
    width: 14px;
}

.phone-side {
    left: -5px;
    position: absolute;
    top: 92px;
    z-index: 3;
}

.phone-side span {
    background: linear-gradient(180deg, #ef9a51, #b85a25);
    border-radius: 999px;
    display: block;
    height: 34px;
    margin-bottom: 12px;
    width: 4px;
}

.dynamic-island {
    background: #050608;
    border-radius: 999px;
    height: 22px;
    left: 50%;
    position: absolute;
    top: 20px;
    transform: translateX(-50%);
    width: 76px;
    z-index: 5;
}

.phone-screen-art {
    border-radius: 27px;
    inset: 9px;
    overflow: hidden;
    position: absolute;
    z-index: 3;
}

.phone-screen-art::before {
    animation: phoneArtGlow 6.4s ease-in-out infinite;
    background:
        radial-gradient(circle at 62% 36%, rgba(216, 117, 47, 0.28), transparent 26%),
        linear-gradient(115deg, transparent 0%, rgba(255, 235, 205, 0.03) 36%, rgba(255, 218, 171, 0.42) 49%, rgba(216, 117, 47, 0.12) 58%, transparent 74%);
    content: "";
    inset: -42% -80%;
    opacity: 0;
    position: absolute;
    transform: translateX(-45%) rotate(12deg);
    z-index: 2;
}

.phone-screen-art::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent 36%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.phone-screen-art img {
    display: block;
    filter: saturate(1.04) contrast(1.04);
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.005);
    width: 100%;
}

@keyframes phoneArtGlow {
    0%,
    38% {
        opacity: 0;
        transform: translateX(-48%) rotate(12deg);
    }

    52% {
        opacity: 1;
    }

    76%,
    100% {
        opacity: 0;
        transform: translateX(48%) rotate(12deg);
    }
}

.phone-shadow {
    background: rgba(0, 0, 0, 0.13);
    border-radius: 50%;
    bottom: -30px;
    filter: blur(8px);
    height: 24px;
    left: 22px;
    position: absolute;
    transform: rotate(14deg);
    width: 130px;
}

.scroll-hint {
    bottom: 20px;
    color: #777;
    font-size: 12px;
    letter-spacing: 0.18em;
    position: fixed;
    right: 24px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    z-index: 30;
}

.scroll-hint::before {
    background: #999;
    content: "";
    display: block;
    height: 54px;
    margin: 0 auto 10px;
    width: 1px;
}

@media (max-width: 760px) {
    .topbar {
        inset: 16px 18px auto 18px;
    }

    .contact-btn {
        min-height: 36px;
        padding: 9px 11px;
    }

    .contact-btn svg {
        height: 15px;
        width: 15px;
    }

    .hero-title {
        top: 25vh;
    }

    .hero-title h1 {
        font-size: clamp(46px, 14vw, 74px);
    }

    .hero-kicker {
        top: 12vh;
    }

    .hero-kicker p {
        font-size: clamp(17px, 5vw, 24px);
    }

    .hero-kicker span {
        font-size: 12px;
    }

    .product-phone {
        height: 268px;
        width: 132px;
    }

    .phone-body {
        border-radius: 28px;
    }

    .phone-body::before {
        border-radius: 22px;
    }

    .dynamic-island {
        height: 18px;
        top: 17px;
        width: 62px;
    }

    .phone-screen-art {
        border-radius: 22px;
        inset: 9px;
    }

    .copy-block {
        left: 7vw;
        top: 15vh;
        width: 86vw;
    }

    .copy-block h2 {
        font-size: clamp(34px, 10vw, 54px);
    }

    .copy-block p {
        font-size: clamp(30px, 9vw, 48px);
    }

    .browser-stack {
        height: 300px;
        left: 8vw;
        right: auto;
        top: 48vh;
        width: 84vw;
    }

    .browser-card {
        height: 166px;
        width: 235px;
    }

    .browser-two {
        left: 28px;
        top: 34px;
    }

    .browser-three {
        left: 56px;
        top: 68px;
    }

    .browser-content {
        padding: 18px;
    }

    .browser-content strong {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .style-copy {
        right: 7vw;
        top: 60vh;
        width: 280px;
    }

    .article-card {
        bottom: 9vh;
        left: 7vw;
        width: 280px;
    }

    .award-frame {
        width: 230px;
    }

    .tech-badge {
        height: 54px;
        width: 54px;
    }

    .badge-laravel {
        height: 72px;
        left: 10vw;
        top: 18vh;
        width: 72px;
    }

    .badge-react {
        right: 14vw;
        top: 17vh;
    }

    .badge-livewire {
        height: 60px;
        left: 6vw;
        top: 57vh;
        width: 60px;
    }

    .badge-openai {
        left: 13vw;
        top: 43vh;
    }

    .badge-js {
        height: 56px;
        left: 29vw;
        top: 32vh;
        width: 56px;
    }

    .badge-python {
        height: 58px;
        left: 22vw;
        top: 69vh;
        width: 58px;
    }

    .badge-api {
        left: 39vw;
        top: 78vh;
    }

    .badge-cube {
        right: 18vw;
        top: 37vh;
    }

    .badge-grafana {
        right: 7vw;
        top: 50vh;
    }

    .badge-claude {
        height: 64px;
        left: auto;
        right: 24vw;
        top: 63vh;
        width: 64px;
    }

    .ecosystem-lineup {
        bottom: 14vh;
        gap: 18px;
        grid-template-columns: minmax(118px, 1fr) 86px minmax(96px, 0.82fr);
        left: 4vw;
        right: 4vw;
    }

    .desktop-device {
        width: min(38vw, 190px);
    }

    .phone-dock-space {
        height: 210px;
        width: 86px;
    }

    .ipad-device {
        width: min(28vw, 128px);
    }

    .final-panel {
        left: 6vw;
        padding: 28px;
        right: auto;
        top: 12vh;
        width: 88vw;
    }

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

    .final-links a {
        justify-content: center;
        padding: 10px;
    }

    .final-copyright {
        bottom: 0;
        font-size: 10px;
        letter-spacing: 0.06em;
        line-height: 1.35;
        max-width: 88vw;
        padding: 8px 12px;
        white-space: normal;
        width: max-content;
    }

    .scroll-hint {
        display: none;
    }
}

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

    .scene {
        transition: none;
    }

    .award-frame::before {
        animation: none;
    }

    .phone-screen-art::before {
        animation: none;
    }

    .tech-badge,
    .badge-claude {
        animation: none;
    }
}
