/* SideWorks — shared visual system. No external fonts or runtime dependencies. */
* {
    box-sizing:border-box;
}

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

body {
    margin:0;
    background:var(--canvas);
    color:var(--ink);
    font:500 var(--text-body)/var(--line-body) var(--font-sans);
    -webkit-font-smoothing:antialiased;
}

h1,h2,h3,p,ul,ol {
    margin:0;
}

h1,h2,h3 {
    line-height:var(--line-heading);
    font-weight:700;
    letter-spacing:-.025em;
}

h1 {
    font-size:clamp(46px,5.5vw,76px);
}

h1 span {
    color:var(--blue);
}

h2 {
    font-size:clamp(30px,3.2vw,44px);
}

h3 {
    font-size:21px;
    letter-spacing:-.025em;
}

p {
    color:var(--muted);
}

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

button,summary,a {
    -webkit-tap-highlight-color:transparent;
}

button,input {
    font:inherit;
}

button,summary {
    cursor:pointer;
}

button {
    color:inherit;
}

img {
    max-width:100%;
    height:auto;
    display:block;
}

picture {
    display:block;
}

button {
    border:0;
}

a,button,summary {
    touch-action:manipulation;
}

a:focus-visible,button:focus-visible,summary:focus-visible {
    outline:3px solid var(--blue);
    outline-offset:5px;
    border-radius:5px;
}

::selection {
    background:#c9dcff;
}

summary {
    list-style:none;
}

summary::-webkit-details-marker {
    display:none;
}

[hidden] {
    display:none!important;
}

.container {
    width:min(var(--container),calc(100% - 96px));
    margin-inline:auto;
}

.section {
    padding-block:78px;
}

.icon {
    width:22px;
    height:22px;
    flex-shrink:0;
    vertical-align:middle;
}

.status-dot {
    width:7px;
    height:7px;
    background:var(--blue);
    border-radius:50%;
    box-shadow:0 0 0 5px #eaf0fe;
}

.button .icon {
    width:19px;
    height:19px;
}

.text-link {
    color:var(--blue);
    font-size:var(--text-link);
    font-weight:600;
    display:inline-flex;
    gap:12px;
    align-items:center;
    line-height:1.5;
}

.text-link .icon {
    width:18px;
}

.text-link:hover {
    text-decoration:underline;
    text-underline-offset:5px;
}

.skip-link {
    position:fixed;
    top:8px;
    left:8px;
    z-index:200;
    background:white;
    padding:10px 20px;
    transform:translateY(-150%);
}

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

.brand {
    display:inline-flex;
    align-items:center;
    gap:7px;
    font-size:25px;
    font-weight:700;
    letter-spacing:-1.2px;
    flex-shrink:0;
}

.brand img {
    object-fit:contain;
}

.brand-dot {
    color:var(--blue);
}

.home-hero {
    padding-top:73px;
    padding-bottom:0;
}

.home-hero-grid {
    display:grid;
    grid-template-columns:1.7fr 1fr;
    gap:48px;
    align-items:end;
    margin-top:27px;
}

.home-hero h1 {
    font-size:clamp(56px,6.65vw,92px);
    letter-spacing:-.062em;
    line-height:1.03;
}

.home-intro {
    padding-bottom:6px;
    max-width:320px;
    margin-left:auto;
}

.home-intro>p {
    font-size:17px;
    line-height:1.75;
    margin-bottom:23px;
}

.home-intro .text-link {
    font-size:13px;
}

.hero-rule {
    display:flex;
    margin-top:54px;
    height:2px;
    gap:5px;
}

.hero-rule span:first-child {
    width:80px;
    background:var(--blue);
}

.hero-rule span:nth-child(2) {
    width:36px;
    background:#09c4d3;
}

.hero-rule span:last-child {
    flex:1;
    background:var(--line);
}

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

.section-heading .eyebrow {
    margin-bottom:15px;
}

.section-heading h2 {
    font-size:34px;
    letter-spacing:-.04em;
}

.section-aside {
    font-size:14px;
    max-width:310px;
    line-height:1.8;
}

.catalog {
    padding-top:43px;
    padding-bottom:0;
}

.catalog .section-heading {
    margin-bottom:27px;
}

.catalog .section-heading h2 {
    font-size:28px;
}

.catalog .section-aside {
    font-size:13px;
}

.product-card {
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    overflow:hidden;
    box-shadow:0 8px 30px #26384f04;
}

.product-card-copy {
    padding:40px;
}

.product-identity {
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:27px;
    font-size:14px;
    font-weight:600;
    line-height:1.4;
    letter-spacing:-.015em;
}

.product-identity img {
    background:#f0f5ff;
    border-radius:12px;
    padding:7px;
    width:48px;
    height:48px;
}

.product-identity small {
    display:block;
    font-size:12px;
    font-weight:400;
    color:var(--muted);
    margin-top:2px;
}

.product-card h3 {
    font-size:43px;
    line-height:1.09;
    letter-spacing:-.047em;
    margin-bottom:19px;
}

.product-card-copy>p {
    font-size:14px;
    max-width:330px;
    line-height:1.8;
}

.check-list {
    padding:0;
    list-style:none;
    margin:21px 0 27px;
    display:grid;
    gap:7px;
    font-size:12px;
    color:var(--muted);
}

.check-list li {
    display:flex;
    align-items:center;
    gap:9px;
}

.check-list .icon {
    color:var(--blue);
    width:15px;
    height:15px;
}

.product-card-visual {
    background:#edf4ff;
    padding:32px 30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:28px;
    position:relative;
    border-left:1px solid #e3ecfa;
}

.visual-label {
    display:flex;
    gap:9px;
    align-items:center;
    color:#405e8a;
    font-size:9px;
    font-weight:650;
    letter-spacing:.12em;
}

.visual-label .icon {
    width:17px;
    height:17px;
}

.screenshot-link {
    display:block;
    position:relative;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #d3e3f5;
    box-shadow:0 14px 36px #172f6512;
}

.screenshot-link img {
    width:100%;
    height:auto;
}

.zoom-cue {
    position:absolute;
    bottom:10px;
    right:10px;
    display:grid;
    place-items:center;
    width:33px;
    height:33px;
    border-radius:7px;
    background:#ffffffec;
    box-shadow:0 2px 8px #17233b1a;
    color:#17233b;
}

.zoom-cue .icon {
    width:17px;
    height:17px;
}

.screenshot-link:hover .zoom-cue {
    background:var(--blue);
    color:#fff;
}

.visual-caption {
    font-size:12px;
    text-align:center;
    color:#526b8e;
}

.product-card-mobile {
    grid-column:1/-1;
    display:flex;
    align-items:center;
    gap:9px;
    padding:15px 40px;
    border-top:1px solid var(--line);
    font-size:12px;
    background:#fff;
}

.product-card-mobile>.icon {
    width:16px;
    height:16px;
    color:var(--muted);
}

.product-card-mobile a {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex:1;
    color:var(--muted);
}

.product-card-mobile a:hover {
    color:var(--blue);
}

.product-card-mobile a>.icon {
    width:17px;
}

.principles {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:52px;
    margin-top:40px;
}

.feature-icon {
    width:43px;
    height:43px;
    display:grid;
    place-items:center;
    border:1px solid #dce5f2;
    background:#f1f5fc;
    color:var(--blue);
    border-radius:11px;
    margin-bottom:20px;
}

.feature-icon .icon {
    width:22px;
    height:22px;
}

.principles h3 {
    font-size:19px;
    margin-bottom:12px;
}

.principles p {
    font-size:14px;
    line-height:1.8;
    max-width:310px;
}

.contact-strip {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    border-top:1px solid var(--line);
    margin-top:57px;
    padding-top:28px;
}

.contact-strip p {
    font-size:14px;
}

.breadcrumb {
    padding-top:29px;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:12px;
    color:var(--muted);
}

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

.breadcrumb>span:nth-child(2) {
    color:#8693a6;
}

.product-hero {
    padding-top:45px;
    padding-bottom:67px;
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:56px;
    align-items:center;
}

.product-hero h1 {
    font-size:clamp(42px,4.4vw,61px);
    line-height:1.07;
    margin-top:21px;
    letter-spacing:-.055em;
}

.intro {
    font-size:17px;
    line-height:1.8;
    margin-top:24px;
    max-width:530px;
}

.product-hero .intro {
    font-size:16px;
    margin-bottom:27px;
    max-width:420px;
}

.cta-note {
    display:block;
    font-size:11px;
    color:var(--muted);
    margin-top:12px;
}

.mobile-hint {
    font-size:12px;
    margin-top:23px;
}

.mobile-hint a {
    color:var(--blue);
    font-weight:550;
    margin-left:3px;
}

.mobile-hint .icon {
    width:14px;
    height:14px;
    margin-left:3px;
}

.product-gallery {
    padding:24px 18px 0;
    background:#edf4ff;
    border-radius:20px;
    border:1px solid #deE8f6;
}

.gallery-panels {
    min-width:0;
}

.gallery-controls {
    display:flex;
    gap:5px;
    justify-content:center;
    margin-top:19px;
    padding:0 0 18px;
    flex-wrap:wrap;
}

.gallery-controls button {
    background:transparent;
    color:var(--muted);
    border:1px solid transparent;
    font-size:11px;
    padding:8px 12px;
    min-height:38px;
    border-radius:7px;
    transition:background .15s;
}

.gallery-controls button:hover {
    color:var(--blue);
    background:#ffffff8c;
}

.gallery-controls button[aria-pressed=true] {
    background:white;
    color:var(--blue);
    border-color:#dce6f6;
    box-shadow:0 2px 5px #17233b05;
}

.video-link {
    margin:0 -18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    font-size:12px;
    border-top:1px solid #dce6f6;
    padding:14px;
    color:var(--muted);
}

.video-link:hover {
    color:var(--blue);
}

.video-link .icon {
    width:17px;
}

.video-link .icon:first-child {
    color:var(--blue);
}

.video-link .icon:last-child {
    width:13px;
    margin-left:3px;
}

.gallery-fallback {
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    font-size:12px;
    margin:15px;
}

.use-cases {
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    padding-block:26px;
    text-align:center;
}

.use-cases .eyebrow {
    justify-content:center;
    font-size:9px;
}

.use-cases ul {
    padding:0;
    list-style:none;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:16px 28px;
    margin-top:12px;
    color:#44546c;
    font-size:13px;
    font-weight:500;
}

.use-cases li+li:before {
    content:"/";
    color:#b8c3d2;
    margin-right:28px;
}

.features-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:42px 52px;
    margin-top:41px;
}

.features-grid h3 {
    font-size:19px;
    margin-bottom:12px;
}

.features-grid p {
    font-size:14px;
    line-height:1.85;
}

.steps-section {
    background:#edf3fc;
    border-block:1px solid #dfe7f3;
}

.steps-section h2 {
    margin-top:15px;
}

.steps-grid {
    list-style:none;
    padding:0;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:54px;
    margin-top:42px;
}

.step-number {
    font-size:12px;
    letter-spacing:.07em;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:36px;
    height:36px;
    border:1px solid #c9d9f2;
    border-radius:50%;
    color:var(--blue);
    margin-bottom:23px;
}

.steps-grid h3 {
    font-size:20px;
    margin-bottom:14px;
}

.steps-grid p {
    font-size:14px;
    line-height:1.85;
}

.walkthrough-row {
    border-top:1px solid #d0dced;
    margin-top:36px;
    padding-top:23px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:22px;
    font-size:13px;
    color:var(--muted);
}

.mobile-promo {
    display:grid;
    grid-template-columns:.7fr 1.3fr;
    border:1px solid var(--line);
    background:#fff;
    border-radius:var(--radius);
    overflow:hidden;
}

.mobile-promo>div:last-child {
    padding:45px 48px 45px 16px;
}

.mobile-promo h2 {
    font-size:35px;
    margin:16px 0;
}

.mobile-promo p:not(.eyebrow) {
    font-size:14px;
    line-height:1.85;
    max-width:550px;
}

.mobile-promo .small-note {
    font-size:12px!important;
    margin-top:12px;
}

.mobile-promo .text-link {
    margin-top:22px;
}

.mobile-promo-art {
    position:relative;
    display:grid;
    place-items:center;
    min-height:320px;
    overflow:hidden;
}

.orbit {
    position:absolute;
    border:1px solid #e0e9f9;
    border-radius:50%;
    width:210px;
    height:210px;
}

.orbit-two {
    width:300px;
    height:300px;
}

.phone-symbol {
    position:relative;
    transform:rotate(-9deg);
    color:#b5caed;
    background:white;
    border-radius:35px;
}

.phone-symbol>.icon {
    height:205px;
    width:130px;
    stroke-width:.7;
}

.phone-symbol img {
    position:absolute;
    top:75px;
    left:43px;
}

.sync-symbol {
    position:absolute;
    top:50%;
    left:calc(50% + 56px);
    border:1px solid #dae5f7;
    box-shadow:0 5px 20px #17233b09;
    background:white;
    width:47px;
    height:47px;
    border-radius:14px;
    display:grid;
    place-items:center;
    color:var(--blue);
    transform:rotate(7deg);
}

.closing-section {
    padding-bottom:80px;
}

.closing-panel {
    text-align:center;
    border:1px solid #dce6f7;
    border-radius:var(--radius);
    background:#edf3ff;
    padding:45px 30px;
}

.closing-panel>img {
    margin:0 auto 22px;
}

.closing-panel h2 {
    font-size:36px;
    max-width:570px;
    margin:auto;
}

.closing-panel p {
    margin-top:17px;
    font-size:15px;
}

.closing-panel .button {
    margin-top:25px;
}

.mobile-hero {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    padding-top:49px;
    padding-bottom:66px;
}

.mobile-hero h1 {
    font-size:65px;
    margin-top:18px;
}

.mobile-hero .intro {
    font-size:16px;
    margin-bottom:28px;
}

.library-diagram {
    border:1px solid #dce6f7;
    border-radius:24px;
    padding:42px 24px;
    background:#eef4fe;
}

.library-diagram>.eyebrow {
    justify-content:center;
    font-size:9px;
}

.diagram-devices {
    display:flex;
    align-items:center;
    margin:45px 0 34px;
    justify-content:center;
}

.diagram-devices>div:not(.diagram-library) {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
    font-size:11px;
    color:var(--muted);
    width:100px;
}

.diagram-devices>div>.icon {
    width:49px;
    height:49px;
    stroke-width:1.1;
    color:#46699f;
}

.diagram-library {
    border:1px solid #dce7f8;
    background:#fff;
    border-radius:19px;
    padding:11px;
    flex-shrink:0;
    box-shadow:0 8px 25px #17233b08;
}

.diagram-connector {
    height:1px;
    min-width:20px;
    flex:1;
    background:#adc4e9;
    max-width:35px;
    margin-bottom:32px;
}

.diagram-sync {
    border-top:1px solid #dae5f6;
    padding-top:22px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:9px;
}

.diagram-sync>.icon {
    width:15px;
    color:var(--blue);
}

.diagram-sync p {
    font-size:11px;
}

.setup-steps {
    list-style:none;
    padding:0;
    border-top:1px solid var(--line);
}

.setup-steps li {
    display:grid;
    grid-template-columns:80px 1fr;
    gap:20px;
    border-bottom:1px solid var(--line);
    padding:29px 0;
}

.setup-steps .step-number {
    margin:0;
}

.setup-steps h3 {
    font-size:21px;
    margin-bottom:12px;
}

.setup-steps p {
    font-size:14px;
    max-width:760px;
}

.setup-steps .text-link {
    margin-top:15px;
}

.desktop-experience {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}

.desktop-experience>div>p:not(.eyebrow) {
    margin:23px 0;
    font-size:15px;
}

.desktop-experience .desktop-setup {
    background:white;
    padding:34px;
    border:1px solid #dae4f3;
    border-radius:18px;
}

.desktop-setup h3 {
    font-size:21px;
}

.desktop-setup ol {
    padding-left:20px;
    margin:23px 0;
    font-size:14px;
    color:var(--muted);
}

.desktop-setup li {
    padding-left:8px;
    margin-top:14px;
}

.desktop-setup li::marker {
    color:var(--blue);
    font-size:12px;
}


.support-hero {
    padding-top:77px;
    padding-bottom:56px;
}

.support-hero h1 {
    margin-top:24px;
    font-size:70px;
}

.support-hero .intro {
    max-width:550px;
}

.support-hero .button {
    margin-top:28px;
}

.support-options {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-bottom:70px;
}

.support-options article {
    border:1px solid var(--line);
    border-radius:20px;
    background:white;
    padding:34px;
}

.support-options h2 {
    font-size:29px;
}

.support-options p {
    font-size:15px;
    margin:18px 0 23px;
    max-width:460px;
}


.page-not-found .support-hero {
    min-height:65vh;
}

.image-dialog {
    padding:45px 8px 8px;
    border:1px solid #ffffff40;
    border-radius:13px;
    background:#111d31;
    width:min(1280px,96vw);
    max-width:96vw;
    max-height:94vh;
    overflow:auto;
}

.image-dialog::backdrop {
    background:#0e182be8;
    backdrop-filter:blur(5px);
}

.image-dialog>img {
    width:100%;
    height:auto;
    border-radius:7px;
}

.dialog-close {
    position:absolute;
    top:4px;
    right:5px;
    background:transparent;
    color:#fff;
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
}

.dialog-open {
    overflow:hidden;
}

@media(min-width:1450px) {
    .container {
        --container:1280px;
    }
    .home-hero {
        padding-top:85px;
    }
    .home-hero-grid {
        margin-top:32px;
    }
    .product-card-copy {
        padding:45px 48px;
    }
    .product-card-visual {
        padding-inline:40px;
    }
    .product-hero {
        gap:65px;
    }
    .product-hero h1 {
        font-size:67px;
    }
}

@media(max-width:1100px) {
    .container {
        width:calc(100% - 64px);
    }
    .home-hero-grid {
        grid-template-columns:1.6fr 1fr;
        gap:30px;
    }
    .home-hero h1 {
        font-size:7vw;
    }
    .home-intro>p {
        font-size:15px;
    }
    .product-card-copy {
        padding:32px;
    }
    .product-card-visual {
        padding:26px 23px;
        gap:22px;
    }
    .product-card h3 {
        font-size:36px;
    }
    .product-card-mobile {
        padding-inline:32px;
    }
    .product-hero {
        gap:30px;
    }
    .product-hero h1 {
        font-size:49px;
    }
    .product-hero .intro {
        font-size:15px;
    }
    .gallery-controls button {
        font-size:10px;
        padding:8px;
    }
    .section-heading h2 {
        font-size:31px;
    }
    .mobile-hero {
        gap:35px;
    }
    .mobile-hero h1 {
        font-size:55px;
    }
    .diagram-connector {
        min-width:10px;
    }
    .diagram-devices>div:not(.diagram-library) {
        width:85px;
    }
    .diagram-library {
        padding:8px;
    }
    .diagram-library img {
        width:44px;
    }
    .mobile-promo>div:last-child {
        padding-right:35px;
    }
    .desktop-experience {
        gap:50px;
    }
}

@media(max-width:850px) {
    .home-hero-grid {
        grid-template-columns:1fr;
        gap:22px;
    }
    .home-hero h1 {
        font-size:76px;
    }
    .home-intro {
        margin-left:0;
        max-width:510px;
        display:flex;
        gap:24px;
        align-items:center;
    }
    .home-intro>p {
        margin-bottom:0;
        flex:1;
    }
    .home-intro .text-link {
        max-width:155px;
        flex-shrink:0;
    }
    .home-hero {
        padding-top:53px;
    }
    .hero-rule {
        margin-top:36px;
    }
    .product-card {
        grid-template-columns:1fr 1fr;
    }
    .product-card h3 {
        font-size:34px;
    }
    .product-card-copy {
        padding:28px;
    }
    .product-card-copy>p {
        font-size:13px;
    }
    .product-card-visual {
        padding:20px 15px;
    }
    .visual-label {
        font-size:8px;
        letter-spacing:.06em;
    }
    .check-list {
        font-size:11px;
    }
    .section {
        padding-block:60px;
    }
    .catalog {
        padding-top:36px;
        padding-bottom:0;
    }
    .section-aside {
        max-width:240px;
        font-size:13px;
    }
    .principles {
        gap:26px;
    }
    .product-hero {
        grid-template-columns:1fr;
        padding-block:36px 40px;
    }
    .product-hero-copy {
        max-width:600px;
    }
    .product-hero h1 {
        font-size:62px;
    }
    .product-hero .intro {
        max-width:560px;
        font-size:16px;
    }
    .product-gallery {
        max-width:650px;
        width:100%;
        margin-top:10px;
    }
    .gallery-controls button {
        font-size:12px;
        padding-inline:15px;
    }
    .features-grid {
        grid-template-columns:1fr 1fr;
        gap:35px;
    }
    .use-cases li+li:before {
        display:none;
    }
    .steps-grid {
        gap:28px;
    }
    .steps-grid h3 {
        font-size:18px;
    }
    .mobile-promo {
        grid-template-columns:.6fr 1fr;
    }
    .mobile-promo h2 {
        font-size:31px;
    }
    .mobile-promo>div:last-child {
        padding:32px 28px 32px 8px;
    }
    .mobile-hero {
        grid-template-columns:1fr;
    }
    .mobile-hero>div:first-child {
        max-width:580px;
    }
    .library-diagram {
        max-width:650px;
    }
    .diagram-devices>div:not(.diagram-library) {
        width:130px;
    }
    .diagram-connector {
        max-width:80px;
    }
    .mobile-hero h1 {
        font-size:65px;
    }
    .desktop-experience {
        gap:30px;
    }
    .desktop-experience h2 {
        font-size:31px;
    }
    .desktop-experience .desktop-setup {
        padding:26px;
    }
    .closing-section {
        padding-bottom:60px;
    }
}

@media(max-width:600px) {
    .container {
        width:calc(100% - 40px);
    }
    .brand {
        font-size:23px;
        gap:4px;
    }
    .brand>img {
        width:33px;
        height:33px;
    }
    .home-hero {
        padding-top:40px;
    }
    .home-hero-grid {
        margin-top:24px;
        gap:22px;
    }
    .home-hero h1 {
        font-size:clamp(38px,10.7vw,62px);
        letter-spacing:-.06em;
        line-height:1.08;
    }
    .home-intro {
        display:block;
        max-width:400px;
        padding:0;
    }
    .home-intro>p {
        font-size:15px;
        line-height:1.8;
        max-width:355px;
    }
    .home-intro .text-link {
        max-width:none;
        margin-top:21px;
        font-size:12px;
    }
    .hero-rule {
        margin-top:35px;
    }
    .section {
        padding-block:44px;
    }
    .catalog {
        padding-top:30px;
        padding-bottom:0;
    }
    .section-heading {
        display:block;
        margin-bottom:25px;
    }
    .section-heading .eyebrow {
        margin-bottom:13px;
    }
    .section-heading h2,.catalog .section-heading h2 {
        font-size:27px;
        max-width:320px;
    }
    .section-aside {
        max-width:360px;
        margin-top:15px;
        font-size:13px;
    }
    .catalog .section-aside {
        display:none;
    }
    .product-card {
        grid-template-columns:1fr;
        border-radius:17px;
    }
    .product-card-copy {
        padding:27px;
    }
    .product-identity {
        margin-bottom:23px;
        font-size:13px;
    }
    .product-card h3 {
        font-size:39px;
        margin-bottom:16px;
    }
    .product-card-copy>p {
        font-size:14px;
        max-width:360px;
    }
    .check-list {
        font-size:12px;
        gap:9px;
        margin-top:21px;
    }
    .product-card-copy>.button {
        font-size:13px;
    }
    .product-card-visual {
        padding:22px 18px;
        border-left:0;
        border-top:1px solid #dce6f6;
        gap:18px;
    }
    .visual-label {
        font-size:9px;
    }
    .visual-caption {
        font-size:11px;
    }
    .product-card-mobile {
        padding:16px 20px;
        align-items:flex-start;
        font-size:11px;
    }
    .product-card-mobile>.icon {
        margin-top:2px;
    }
    .product-card-mobile a {
        gap:14px;
        line-height:1.7;
    }
    .principles {
        grid-template-columns:1fr;
        gap:27px;
        margin-top:30px;
    }
    .principles article {
        display:grid;
        grid-template-columns:43px 1fr;
        gap:0 17px;
    }
    .principles .feature-icon {
        grid-row:1/3;
        margin:0;
    }
    .principles h3 {
        font-size:18px;
        margin:3px 0 9px;
    }
    .principles p {
        font-size:13px;
    }
    .contact-strip {
        display:block;
        margin-top:35px;
        padding-top:25px;
    }
    .contact-strip p {
        font-size:13px;
        margin-bottom:13px;
    }
    .breadcrumb {
        padding-top:22px;
        font-size:11px;
    }
    .product-hero {
        padding-top:29px;
        padding-bottom:32px;
        gap:25px;
    }
    .product-hero h1 {
        font-size:clamp(39px,11vw,58px);
        margin-top:17px;
        max-width:420px;
    }
    .product-hero .intro {
        font-size:15px;
        line-height:1.8;
        margin-top:20px;
        margin-bottom:23px;
    }
    .cta-note {
        font-size:10px;
    }
    .mobile-hint {
        margin-top:18px;
        font-size:12px;
    }
    .product-gallery {
        padding:14px 12px 0;
        border-radius:15px;
        margin-top:2px;
    }
    .gallery-controls {
        gap:1px;
        margin-top:12px;
        padding-bottom:12px;
    }
    .gallery-controls button {
        font-size:10px;
        padding:7px 10px;
        min-height:38px;
    }
    .video-link {
        margin-inline:-12px;
        font-size:11px;
        padding:11px;
    }
    .use-cases {
        padding-block:22px;
    }
    .use-cases .eyebrow {
        font-size:8px;
    }
    .use-cases ul {
        gap:8px 18px;
        font-size:11px;
    }
    .features-grid {
        grid-template-columns:1fr;
        gap:28px;
        margin-top:30px;
    }
    .features-grid article {
        display:grid;
        grid-template-columns:43px 1fr;
        gap:0 17px;
    }
    .features-grid .feature-icon {
        grid-row:1/3;
        margin:0;
    }
    .features-grid h3 {
        font-size:18px;
        margin:3px 0 9px;
    }
    .features-grid p {
        font-size:13px;
    }
    .steps-section h2 {
        font-size:30px;
        max-width:330px;
    }
    .steps-grid {
        grid-template-columns:1fr;
        gap:25px;
        margin-top:28px;
    }
    .steps-grid li {
        display:grid;
        grid-template-columns:36px 1fr;
        gap:0 18px;
    }
    .steps-grid .step-number {
        grid-row:1/3;
        margin:0;
    }
    .steps-grid h3 {
        margin:6px 0 11px;
    }
    .steps-grid p {
        font-size:13px;
    }
    .walkthrough-row {
        display:block;
        margin-top:28px;
        padding-top:20px;
        font-size:12px;
    }
    .walkthrough-row .text-link {
        margin-top:12px;
        display:flex;
        width:fit-content;
        font-size:13px;
    }
    .mobile-promo {
        grid-template-columns:1fr;
    }
    .mobile-promo-art {
        min-height:210px;
    }
    .phone-symbol>.icon {
        height:158px;
        width:101px;
    }
    .phone-symbol img {
        width:34px;
        height:34px;
        top:58px;
        left:34px;
    }
    .orbit-one {
        width:155px;
        height:155px;
    }
    .orbit-two {
        width:230px;
        height:230px;
    }
    .sync-symbol {
        left:calc(50% + 43px);
        width:38px;
        height:38px;
        border-radius:11px;
    }
    .mobile-promo>div:last-child {
        padding:8px 24px 30px;
    }
    .mobile-promo h2 {
        font-size:31px;
    }
    .mobile-promo p:not(.eyebrow) {
        font-size:13px;
    }
    .mobile-promo .small-note {
        font-size:11px!important;
    }
    .closing-section {
        padding-bottom:44px;
    }
    .closing-panel {
        padding:30px 22px;
        border-radius:18px;
    }
    .closing-panel h2 {
        font-size:30px;
    }
    .closing-panel p {
        font-size:13px;
    }
    .closing-panel>img {
        width:45px;
        height:45px;
    }
    .mobile-hero {
        padding-top:31px;
        padding-bottom:35px;
        gap:32px;
    }
    .mobile-hero h1 {
        font-size:clamp(43px,11vw,60px);
    }
    .mobile-hero .intro {
        font-size:15px;
    }
    .library-diagram {
        padding:28px 18px;
        border-radius:17px;
    }
    .library-diagram>.eyebrow {
        font-size:8px;
    }
    .diagram-devices {
        margin-block:33px 25px;
    }
    .diagram-devices>div:not(.diagram-library) {
        font-size:9px;
        width:86px;
        gap:12px;
    }
    .diagram-devices>div>.icon {
        width:37px;
        height:37px;
    }
    .diagram-library {
        padding:7px;
        border-radius:12px;
    }
    .diagram-library img {
        width:36px;
        height:36px;
    }
    .diagram-sync {
        padding-top:17px;
        gap:6px;
    }
    .diagram-sync p {
        font-size:10px;
    }
    .setup-steps li {
        grid-template-columns:36px 1fr;
        gap:18px;
        padding-block:24px;
    }
    .setup-steps h3 {
        font-size:19px;
        margin-top:6px;
    }
    .setup-steps p {
        font-size:13px;
    }
    .desktop-experience {
        grid-template-columns:1fr;
        gap:30px;
    }
    .desktop-experience>div>p:not(.eyebrow) {
        font-size:14px;
    }
    .desktop-experience .desktop-setup {
        padding:24px;
    }
    .desktop-setup h3 {
        font-size:20px;
    }
    .desktop-setup li {
        font-size:13px;
    }

    .support-hero {
        padding-top:43px;
        padding-bottom:35px;
    }
    .support-hero h1 {
        font-size:clamp(41px,11vw,60px);
        margin-top:20px;
    }
    .support-hero .intro {
        font-size:15px;
        margin-top:21px;
    }
    .support-options {
        grid-template-columns:1fr;
        gap:18px;
        margin-bottom:44px;
    }
    .support-options article {
        padding:25px;
    }
    .support-options h2 {
        font-size:25px;
    }
    .support-options p {
        font-size:14px;
    }

    .image-dialog {
        padding-top:45px;
        width:96vw;
        max-height:92vh;
    }
    .image-dialog>img {
        min-width:750px;
        max-width:none;
        width:100%;
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior:auto;
    }
    *,*::before,*::after {
        transition:none!important;
        animation:none!important;
    }
}
