:root {
    --page-bg: #f3efe7;
    --page-bg-strong: #ebe4d8;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --surface-deep: #152018;
    --surface-app: #0b0d0c;
    --ink: #152018;
    --ink-soft: #414a42;
    --ink-muted: #5d665d;
    --line: rgba(21, 32, 24, 0.12);
    --line-strong: rgba(21, 32, 24, 0.2);
    --accent: #78c11d;
    --accent-deep: #2f6a37;
    --accent-wash: rgba(120, 193, 29, 0.14);
    --chat-in: #1e84e4;
    --chat-out: #2b2c36;
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 38px;
    --radius-xl: 52px;
    --shadow-soft: 0 18px 40px rgba(21, 32, 24, 0.08);
    --shadow-card: 0 30px 60px rgba(17, 24, 18, 0.16);
    --shadow-device: 0 35px 65px rgba(10, 14, 11, 0.35);
    --space-1: 0.5rem;
    --space-2: 0.75rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-7: 4.5rem;
    --space-8: 6rem;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    font-family: "Barlow", "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at 10% 10%, rgba(120, 193, 29, 0.18), transparent 22%),
        radial-gradient(circle at 88% 16%, rgba(47, 106, 55, 0.14), transparent 26%),
        linear-gradient(180deg, var(--page-bg) 0%, var(--page-bg-strong) 100%);
}

a {
    color: inherit;
}

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

button,
input {
    font: inherit;
}

.page-backdrop {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 24%),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.25), transparent 40%);
}

.site-header,
.page-shell,
.site-footer {
    position: relative;
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: 1.4rem 0;
}

.brand img {
    width: 135px;
    height: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    text-decoration: none;
}

.brand-mark {
    position: relative;
    width: 31px;
    height: 38px;
    background-image: url("/images/dribx-logo-36.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 143px 38px;
    flex: none;
    transform: translateY(6px);
}

.brand-mark-core {
    display: none;
}

.brand-mark-notch {
    display: none;
}

.brand-wordmark {
    color: #1f2c22;
    font-family: "Barlow Semi Condensed", "Barlow", sans-serif;
    font-size: 2.26rem;
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1;
}

.brand-wordmark span {
    color: #5ea613;
}

.brand-inline {
    display: inline-block;
    color: inherit;
    font: inherit;
    letter-spacing: -0.055em;
    white-space: nowrap;
}

.brand-inline span {
    color: #5ea613;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.site-nav a {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 600;
}

.lang-link {
    color: var(--ink);
}

.site-nav a:focus-visible,
.button:focus-visible,
.faq-item summary:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent-deep);
    outline-offset: 3px;
}

.page-shell {
    padding: var(--space-5) 0 var(--space-8);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    min-height: 72vh;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 var(--space-2);
    color: var(--accent-deep);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Barlow Semi Condensed", "Barlow", sans-serif;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 10ch;
    font-size: clamp(3.4rem, 7.5vw, 5.8rem);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

h3 {
    font-size: clamp(1.55rem, 2vw, 2rem);
}

.hero-lede,
.section p,
.faq-item p,
.plain-list,
.step-list {
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.72;
    font-weight: 500;
}

.hero-lede {
    max-width: 37rem;
    margin-top: var(--space-4);
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 1.45rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--ink);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.button-primary:hover {
    background: #111913;
}

.button-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.64);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.84);
}

.hero-media {
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.hero-device-cluster {
    position: relative;
    width: min(100%, 720px);
    max-width: 100%;
    padding: 2rem 0 4rem 2rem;
}

.mockup-scale-shell,
.mockup-scale-body {
    width: 100%;
}

.mockup-scale-body {
    position: relative;
}

.device-frame {
    border-radius: 32px;
    background: linear-gradient(180deg, #202624 0%, #111513 100%);
    box-shadow: var(--shadow-device);
}

.desktop-frame {
    overflow: hidden;
}

.mobile-frame {
    position: absolute;
    right: -22px;
    bottom: 0;
    width: 264px;
    padding: 10px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.device-frame-mobile-only {
    width: min(100%, 294px);
    padding: 10px;
    overflow: hidden;
}

.device-frame-wide {
    overflow: hidden;
}

.app-shell {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 430px;
    background: var(--surface-app);
    color: #ffffff;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.mobile-shell {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 420px;
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
}

.mobile-rail {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.95rem;
    background: linear-gradient(180deg, #385c05 0%, #2c4a03 100%);
    border-radius: 24px 0 0 24px;
}

.mobile-rail-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.mobile-chat {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 1rem 1rem 1rem 0.95rem;
}

.app-sidebar {
    padding: 1.2rem 1.1rem 1.2rem 1rem;
    background: linear-gradient(180deg, #385c05 0%, #2c4a03 100%);
}

.sidebar-toolbar {
    display: flex;
    gap: 0.75rem;
}

.sidebar-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-icon,
.sidebar-add,
.compose-icon-img,
.compose-send-img {
    display: block;
    width: 18px;
    height: 18px;
}

.compact-sidebar {
    min-width: 214px;
}

.sidebar-contact {
    margin-top: 1rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.sidebar-contact-phone {
    margin-top: 0.1rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.04rem;
    white-space: nowrap;
}

.sidebar-search-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.sidebar-search {
    flex: 1;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #26332b;
    font-size: 0.94rem;
    white-space: nowrap;
}

.sidebar-add {
    width: 22px;
    height: 22px;
}

.sidebar-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.3rem;
    width: 100%;
    max-width: 100%;
    font-size: 0.88rem;
    font-variant-numeric: tabular-nums;
}

.sidebar-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: space-between;
    gap: 0.3rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0.32rem 0.42rem;
    border-radius: 12px;
    position: relative;
    isolation: isolate;
    color: rgba(255, 255, 255, 0.86);
}

.sidebar-item-active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    z-index: -1;
}

.sidebar-item-main {
    display: grid;
    grid-template-columns: 10px 104px;
    align-items: center;
    column-gap: 0.3rem;
    white-space: nowrap;
    min-width: 0;
    overflow: hidden;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.sidebar-item-main > span:last-child {
    display: block;
    width: auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-status-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    flex: none;
}

.sidebar-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(120, 193, 29, 0.14);
}

.sidebar-date {
    display: block;
    width: 56px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.64rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.chat-surface {
    display: flex;
    flex-direction: column;
    padding: 1.4rem;
}

.device-frame-wide .chat-surface {
    padding-left: 1.92rem;
}

.chat-header,
.mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.chat-header strong,
.mobile-top strong {
    font-size: 1.15rem;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.chat-header span,
.mobile-top span {
    padding: 0.36rem 0.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: #0d1310;
    font-size: 0.85rem;
    font-weight: 700;
}

.mobile-top strong {
    font-size: 1.06rem;
}

.chat-date {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0.35rem 0 0.7rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.84rem;
    text-align: center;
}

.chat-date::before,
.chat-date::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.chat-row {
    display: flex;
    margin-bottom: 0.7rem;
}

.chat-row-left {
    justify-content: flex-start;
}

.chat-row-right {
    justify-content: flex-end;
}

.bubble {
    display: inline-flex;
    max-width: 72%;
    padding: 0.78rem 1rem;
    border-radius: 18px;
    font-size: 0.94rem;
    line-height: 1.35;
}

.bubble-in {
    background: var(--chat-in);
}

.bubble-out {
    background: var(--chat-out);
}

.chat-compose {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.3rem;
}

.mobile-compose {
    margin-top: auto;
    padding-top: 0.35rem;
}

.compose-field {
    flex: 1;
    min-height: 42px;
    padding: 0.72rem 0.9rem;
    border-radius: 18px;
    background: #2b2c36;
}

.compose-counter {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    white-space: nowrap;
}

.section {
    position: relative;
    padding-top: var(--space-8);
}

.section-header {
    margin-bottom: var(--space-5);
}

.section-header-narrow {
    max-width: 38rem;
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: var(--space-5);
    align-items: end;
}

.intro-copy p:first-child {
    margin-top: 0;
}

.support-line {
    color: var(--accent-deep);
    font-weight: 600;
}

.experience-row {
    display: grid;
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
    padding: 2rem 0;
}

.experience-row + .experience-row {
    border-top: 1px solid var(--line);
}

.experience-row-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.76fr);
}

.experience-row-reverse .experience-copy {
    order: 2;
}

.experience-row-reverse .experience-media {
    order: 1;
}

.experience-copy p {
    margin-bottom: 0;
}

.experience-media {
    display: flex;
    justify-content: center;
    min-width: 0;
}

.section-tools {
    padding-top: calc(var(--space-8) + 1rem);
}

.tools-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: start;
}

.plain-list {
    margin: var(--space-4) 0 0;
    padding: 0;
    list-style: none;
}

.plain-list li {
    display: grid;
    grid-template-columns: 1.22rem minmax(0, 1fr);
    gap: 0.9rem;
    align-items: flex-start;
}

.plain-list li + li {
    margin-top: 0.75rem;
}

.plain-list li::before {
    content: "";
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.44rem;
    align-self: start;
    background-image: url("/images/dribx-logo-36.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 4.12rem 1.1rem;
}

.tool-mockups {
    display: grid;
    gap: 1rem;
    max-width: 100%;
}

.tool-card {
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background: linear-gradient(180deg, #314b06 0%, #243702 100%);
    color: #ffffff;
    box-shadow: var(--shadow-card);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.tool-card-light {
    background: linear-gradient(180deg, #2a3908 0%, #1d2a04 100%);
}

.tool-scene {
    position: relative;
}

.tool-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.68);
}

.tool-nav-active {
    color: #ffffff;
    font-weight: 700;
}

.tool-content {
    display: grid;
    gap: 0.8rem;
}

.tool-line {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.tool-input,
.tool-pill,
.tool-textarea {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
}

.tool-input {
    min-height: 2.7rem;
}

.tool-input-text {
    display: flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    color: #101810;
    line-height: 1.35;
}

.tool-heading {
    margin-bottom: 1rem;
    font-weight: 700;
}

.tool-pill {
    display: inline-flex;
    padding: 0.5rem 0.7rem;
    color: #101810;
    font-weight: 700;
}

.tool-textarea {
    min-height: 7rem;
    margin-top: 0.9rem;
    padding: 1rem;
    color: #101810;
}

.tool-counter {
    margin-top: 0.75rem;
    text-align: right;
    color: rgba(255, 255, 255, 0.72);
}

.tool-overlay {
    position: absolute;
    right: -0.5rem;
    bottom: -2rem;
    width: min(100%, 360px);
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: linear-gradient(180deg, #375804 0%, #2b4704 100%);
    color: #ffffff;
    box-shadow: var(--shadow-card);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.tool-overlay-title {
    margin-bottom: 1rem;
    text-align: center;
    font-family: "Barlow Semi Condensed", "Barlow", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.tool-overlay-item + .tool-overlay-item {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-overlay-item strong {
    display: inline-block;
    margin-right: 0.45rem;
}

.tool-overlay-item span {
    color: rgba(255, 255, 255, 0.82);
}

.section-setup {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: start;
}

.setup-layout p:first-child {
    margin-top: 0;
}

.step-list {
    display: grid;
    gap: 1rem;
    margin: var(--space-4) 0 0;
    padding: 0;
    counter-reset: steps;
    list-style: none;
}

.step-list li {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.step-list li::before {
    counter-increment: steps;
    content: counter(steps);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: var(--accent-wash);
    color: var(--accent-deep);
    font-family: "Barlow Semi Condensed", "Barlow", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    align-self: start;
    margin-top: 0.18rem;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.35rem 0;
    cursor: pointer;
    list-style: none;
    font-size: 1.18rem;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--accent-deep);
    font-size: 1.6rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin: 0 0 1.35rem;
    max-width: 52rem;
}

.section-closing {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-4);
    align-items: end;
    padding: 3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(120, 193, 29, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: var(--shadow-soft);
}

.closing-copy p {
    max-width: 42rem;
    margin-bottom: 0;
}

.site-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1.5rem 0 var(--space-5);
    border-top: 1px solid var(--line);
    color: var(--ink-muted);
    font-size: 0.98rem;
}

.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.site-footer a {
    text-decoration: none;
}

.site-footer-copy {
    margin: 0;
}

.site-footer-copy a {
    text-decoration: none;
}

.site-footer-copy span {
    margin-left: 0.35rem;
}

.panel {
    padding: clamp(1.8rem, 2vw, 2.6rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
}

.legal-panel {
    max-width: 860px;
}

.legal-title {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.legal-section + .legal-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
    .hero,
    .section-intro,
    .tools-layout,
    .section-setup,
    .experience-row,
    .experience-row-reverse,
    .section-closing {
        grid-template-columns: 1fr;
    }

    .experience-row-reverse .experience-copy,
    .experience-row-reverse .experience-media {
        order: initial;
    }

    .hero {
        min-height: auto;
        padding-top: 1rem;
    }

    .hero-media {
        justify-content: center;
    }

    .section-closing {
        padding: 2rem;
    }
}

@media (max-width: 760px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-device-cluster {
        padding: 0 0 4rem;
    }

    .mobile-frame {
        right: -12px;
        width: 208px;
    }

    .app-shell {
        grid-template-columns: 132px minmax(0, 1fr);
    }

    .app-sidebar {
        padding: 1rem 0.7rem;
    }
}

@media (max-width: 560px) {
    .site-header,
    .page-shell,
    .site-footer {
        width: min(calc(100% - 1.25rem), var(--max-width));
    }

    .page-shell {
        padding-top: 1rem;
        padding-bottom: 4.5rem;
    }

    .hero-copy,
    .intro-copy,
    .tools-copy,
    .setup-layout,
    .closing-copy {
        width: 100%;
        max-width: 20rem;
        min-width: 0;
    }

    h1 {
        max-width: none;
        font-size: clamp(2.85rem, 13vw, 4.2rem);
    }

    h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .hero-actions,
    .site-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-lede,
    .section p,
    .faq-item p,
    .plain-list,
    .step-list {
        max-width: 100%;
        font-size: 1rem;
    }

    .hero-device-cluster {
        max-width: 362px;
        margin: 0 auto;
        padding: 0 0 2.1rem;
    }

    .mockup-scale-shell-hero {
        width: min(100%, 360px);
        height: 320px;
        margin: 0 auto;
        overflow: hidden;
    }

    .mockup-scale-shell-wide {
        width: min(100%, 360px);
        height: 304px;
        margin: 0 auto;
        overflow: hidden;
    }

    .mockup-scale-body-hero {
        width: 582.65625px;
        transform: scale(0.615);
        transform-origin: top left;
    }

    .mockup-scale-body-wide {
        width: 637.71875px;
        transform: scale(0.564);
        transform-origin: top left;
    }

    .mockup-scale-body-hero .app-shell,
    .mockup-scale-body-wide .app-shell {
        grid-template-columns: 236px minmax(0, 1fr);
    }

    .mobile-frame {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(100%, 172px);
        margin: -1.4rem 0 0 auto;
    }

    .hero-device-cluster .mobile-frame {
        display: none;
    }

    .mobile-shell {
        grid-template-columns: 28px minmax(0, 1fr);
    }

    .mobile-chat {
        padding: 0.9rem 0.85rem 0.9rem 0.75rem;
    }

    .mobile-rail {
        padding-top: 0.82rem;
    }

    .mobile-rail-icon {
        width: 14px;
        height: 14px;
    }

    .device-frame-mobile-only .bubble,
    .mobile-frame .bubble {
        max-width: 78%;
        padding: 0.58rem 0.68rem;
        font-size: 0.72rem;
        border-radius: 14px;
    }

    .device-frame-mobile-only .chat-row,
    .mobile-frame .chat-row {
        margin-bottom: 0.45rem;
    }

    .device-frame-mobile-only .chat-compose,
    .mobile-frame .chat-compose {
        gap: 0.45rem;
        padding-top: 0.55rem;
    }

    .device-frame-mobile-only .compose-icon-img,
    .device-frame-mobile-only .compose-send-img,
    .mobile-frame .compose-icon-img,
    .mobile-frame .compose-send-img {
        width: 16px;
        height: 16px;
    }

    .device-frame-mobile-only .compose-counter,
    .mobile-frame .compose-counter {
        font-size: 0.64rem;
    }

    .device-frame-mobile-only .compose-field,
    .mobile-frame .compose-field {
        min-height: 34px;
        padding: 0.5rem 0.65rem;
        font-size: 0.72rem;
        border-radius: 12px;
    }

    .mobile-top strong {
        font-size: 0.8rem;
    }

    .mobile-top span {
        padding: 0.2rem 0.34rem;
        font-size: 0.64rem;
    }

    .tool-overlay {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 0.9rem;
    }

    .site-footer-links {
        flex-direction: column;
        gap: 0.55rem;
    }

    .brand-wordmark {
        font-size: 2.02rem;
    }

    .brand-mark {
        width: 29px;
        height: 35px;
        background-size: 131px 35px;
        transform: translateY(5px);
    }

}
