@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --color-bg: #f5f7fb;
    --color-surface: #ffffff;
    --color-primary: #2c7bff;
    --color-primary-deep: #0a1735;
    --color-primary-soft: #dcebff;
    --color-accent: #29c275;
    --color-accent-soft: #dff8ec;
    --color-text: #0f172a;
    --color-muted: #5f6f89;
    --color-line: #d7e1ef;
    --color-footer: #071938;
    --color-footer-soft: #10264f;
    --shadow-soft: 0 28px 60px rgba(10, 23, 53, 0.08);
    --shadow-card: 0 24px 48px rgba(15, 23, 42, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

img,
svg {
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

.site-shell {
    overflow-x: clip;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(10, 23, 53, 0.06);
}

.nav-wrap {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding: 18px 0;
}

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

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-size: 1.65rem;
    line-height: 1;
    letter-spacing: 0.06em;
}

.brand-copy small {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: var(--color-muted);
}

.brand-mark {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(44, 123, 255, 0.18), rgba(7, 25, 56, 0.08));
    box-shadow: inset 0 0 0 1px rgba(44, 123, 255, 0.15);
}

.brand-mark--image {
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.brand-mark__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.site-navigation {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-width: 0;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(10, 23, 53, 0.14);
    border-radius: 14px;
    color: var(--color-dark);
    background: #fff;
    cursor: pointer;
}

.menu-toggle:focus-visible {
    outline: 3px solid rgba(44, 123, 255, 0.28);
    outline-offset: 3px;
}

.menu-toggle__icon {
    display: grid;
    gap: 4px;
    width: 20px;
}

.menu-toggle__icon span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle__text {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.menu-toggle.is-open .menu-toggle__icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open .menu-toggle__icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-links a {
    position: relative;
    padding-bottom: 6px;
    font-size: 0.96rem;
    font-weight: 500;
    color: #24324b;
}

.nav-links a.is-active::after,
.nav-links a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--color-primary);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 6px;
    color: #24324b;
    font-size: 0.96rem;
    font-weight: 500;
    list-style: none;
    cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown summary:focus-visible {
    outline: 3px solid rgba(44, 123, 255, 0.24);
    outline-offset: 4px;
    border-radius: 6px;
}

.nav-dropdown__chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease;
}

.nav-dropdown[open] .nav-dropdown__chevron {
    transform: translateY(2px) rotate(225deg);
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 40;
    display: grid;
    min-width: 260px;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(10, 23, 53, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 44px rgba(7, 25, 56, 0.14);
}

.nav-dropdown__menu a {
    display: block;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-dropdown__menu a:hover {
    color: var(--color-primary);
    background: #eef5ff;
}

.nav-dropdown__menu a::after {
    display: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-size: 0.96rem;
    font-weight: 700;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

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

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, #3284ff, #1d65d6);
    box-shadow: 0 18px 28px rgba(44, 123, 255, 0.3);
}

.button--dark {
    color: #fff;
    background: var(--color-primary-deep);
    box-shadow: 0 16px 28px rgba(7, 25, 56, 0.2);
}

.button--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.04);
}

.button--ghost-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.26);
    background: transparent;
}

.button--whatsapp {
    color: #fff;
    background: linear-gradient(135deg, #24c06b, #15a95a);
    box-shadow: 0 16px 28px rgba(19, 168, 90, 0.24);
}

.button--whatsapp .icon {
    width: 1.2rem;
    height: 1.2rem;
    display: block;
}

.button--compact {
    min-height: 46px;
    padding: 0 22px;
}

.icon {
    width: 1.15rem;
    height: 1.15rem;
    flex: none;
}

.hero {
    position: relative;
    padding: 34px 0 64px;
    background:
        radial-gradient(circle at 12% 14%, rgba(44, 123, 255, 0.18), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.16), transparent 18%),
        linear-gradient(135deg, #071736 0%, #081d43 48%, #0a2047 100%);
    color: #fff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.14), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(460px, 1fr);
    gap: 36px;
    align-items: center;
}

.hero-copy {
    padding: 42px 0 18px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eyebrow {
    color: #6da6ff;
}

.hero h1 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2.75rem, 3vw + 1.8rem, 4.5rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.hero h1 span {
    color: #5a9dff;
}

.hero-description {
    max-width: 32rem;
    margin: 22px 0 0;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
}

.hero-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 0 0;
}

.hero-highlight__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: #6da6ff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-highlight h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.hero-highlight p {
    margin: 4px 0 0;
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.72);
}

.hero-visual {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-dots {
    position: absolute;
    top: 34px;
    left: -14px;
    width: 128px;
    height: 128px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 0);
    background-size: 16px 16px;
    opacity: 0.7;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
}

.hero-glow--one {
    width: 280px;
    height: 280px;
    top: 10%;
    right: 12%;
    background: rgba(44, 123, 255, 0.18);
}

.hero-glow--two {
    width: 200px;
    height: 200px;
    bottom: 12%;
    left: 18%;
    background: rgba(255, 255, 255, 0.1);
}

.device-mockup {
    position: relative;
    width: min(100%, 620px);
    z-index: 2;
}

.device-screen {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 28px;
    border: 12px solid #0f1827;
    background:
        linear-gradient(145deg, rgba(8, 29, 67, 0.95), rgba(9, 20, 43, 0.88)),
        linear-gradient(135deg, #17366c, #0a1735);
    box-shadow:
        0 30px 70px rgba(1, 8, 23, 0.42),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    aspect-ratio: 1.18 / 0.8;
}

.device-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 26%),
        linear-gradient(315deg, rgba(255, 255, 255, 0.1), transparent 24%);
    pointer-events: none;
}

.device-content {
    position: relative;
    z-index: 1;
    max-width: 260px;
}

.device-kicker {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.device-content h2 {
    margin: 14px 0 0;
    font-size: clamp(1.7rem, 1.5vw + 1rem, 2.4rem);
    line-height: 1.18;
    text-transform: uppercase;
}

.device-chip {
    display: inline-flex;
    margin-top: 18px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #3383ff, #1d66db);
}

.screen-scene {
    position: absolute;
    right: 30px;
    bottom: 28px;
    width: 40%;
    height: 45%;
}

.scene-window {
    position: absolute;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 30px rgba(2, 6, 23, 0.26);
}

.scene-window--wide {
    inset: 0 22% 12% 0;
}

.scene-window--tall {
    width: 34%;
    height: 92%;
    right: 0;
    top: 8%;
}

.scene-window--card {
    width: 62%;
    height: 22%;
    right: 12%;
    bottom: -4%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(44, 123, 255, 0.14));
}

.device-base {
    position: relative;
    width: 112%;
    height: 28px;
    margin: -4px auto 0;
    border-radius: 0 0 28px 28px;
    background: linear-gradient(180deg, #c9d3df, #8492a7);
    clip-path: polygon(7% 0, 93% 0, 100% 100%, 0 100%);
    box-shadow: 0 24px 24px rgba(1, 8, 23, 0.2);
}

.marketing-card {
    position: absolute;
    right: 8px;
    bottom: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(100%, 300px);
    padding: 22px 18px;
    border-radius: 22px;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
}

.marketing-brand {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 1.45rem;
    font-weight: 800;
    color: #13995b;
}

.marketing-card h3 {
    margin: 0;
    font-size: 1rem;
}

.marketing-card p {
    margin: 6px 0 0;
    font-size: 0.88rem;
    color: var(--color-muted);
}

.marketing-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    color: #13995b;
    background: var(--color-accent-soft);
}

.desk-plant {
    position: absolute;
    right: 8px;
    bottom: 92px;
    width: 110px;
    height: 150px;
    z-index: 1;
}

.plant-leaf {
    position: absolute;
    bottom: 42px;
    width: 26px;
    height: 80px;
    border-radius: 999px;
    background: linear-gradient(180deg, #1f9d5f, #114a33);
    transform-origin: bottom center;
}

.plant-leaf--one {
    left: 18px;
    transform: rotate(-14deg);
}

.plant-leaf--two {
    left: 42px;
    height: 96px;
}

.plant-leaf--three {
    left: 66px;
    transform: rotate(18deg);
}

.plant-pot {
    position: absolute;
    right: 8px;
    bottom: 0;
    width: 76px;
    height: 62px;
    border-radius: 18px 18px 24px 24px;
    background: linear-gradient(180deg, #ffffff, #d7dde7);
    box-shadow: 0 16px 28px rgba(7, 25, 56, 0.18);
}

.section {
    padding: 78px 0;
}

.section--light {
    background: #fff;
}

.section-heading {
    text-align: center;
    margin: 0 auto 34px;
    max-width: 760px;
}

.section-heading .section-kicker {
    margin-bottom: 10px;
    color: var(--color-primary-deep);
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.95rem, 1vw + 1.6rem, 2.9rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.challenge-section {
    background: #f6f8fc;
}

.reasons-section {
    background:
        radial-gradient(circle at 88% 12%, rgba(44, 123, 255, 0.08), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.feature-section-heading {
    max-width: 880px;
    margin: 0 auto 42px;
    text-align: center;
}

.feature-section-heading h2 {
    margin: 0;
    color: var(--color-primary-deep);
    font-size: clamp(2rem, 1.4vw + 1.55rem, 3rem);
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.feature-section-heading p {
    max-width: 800px;
    margin: 16px auto 0;
    color: var(--color-muted);
    font-size: 1.02rem;
}

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

.feature-card {
    min-width: 0;
    border: 1px solid rgba(10, 23, 53, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(10, 23, 53, 0.07), 0 2px 4px rgba(10, 23, 53, 0.04);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(44, 123, 255, 0.16);
    box-shadow: 0 20px 38px rgba(10, 23, 53, 0.1);
}

.feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.feature-card h3 {
    margin: 0;
    color: var(--color-primary-deep);
    font-size: 1.08rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin: 9px 0 0;
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.feature-card--challenge {
    min-height: 205px;
    padding: 26px;
    border-radius: 20px;
}

.feature-card--challenge .feature-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 15px;
    color: #f05e68;
    background: #fff1f2;
}

.feature-card--challenge .feature-card__icon .icon {
    width: 25px;
    height: 25px;
}

.challenge-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    margin: 42px auto 0;
    padding: 10px 20px;
    border-radius: 999px;
    color: #245998;
    background: #eaf5ff;
    font-size: 0.9rem;
    font-weight: 600;
}

.challenge-note span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #16b8d7;
    box-shadow: 0 0 0 5px rgba(22, 184, 215, 0.1);
}

.feature-card--reason {
    min-height: 276px;
    padding: 28px;
    border-radius: 18px;
}

.feature-card--reason .feature-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(145deg, #138cff, #056bde);
    box-shadow: 0 12px 22px rgba(5, 107, 222, 0.22);
}

.feature-card--reason .feature-card__icon .icon {
    width: 32px;
    height: 32px;
}

.feature-card--reason h3 {
    max-width: 18ch;
    font-size: 1.28rem;
}

.feature-card--reason p {
    margin-top: 12px;
    color: #334155;
    font-size: 0.96rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.service-card,
.portfolio-card,
.article-card,
.topic-card,
.cta-card {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.service-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.7fr);
    gap: 18px;
    padding: 30px;
    border: 1px solid rgba(10, 23, 53, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.96));
    scroll-margin-top: 110px;
}

.service-card--green {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 253, 247, 0.98));
}

.service-card__content {
    display: grid;
    align-content: start;
    gap: 18px;
}

.service-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 999px;
}

.service-card--blue .service-card__badge {
    color: var(--color-primary);
    background: var(--color-primary-soft);
}

.service-card--green .service-card__badge {
    color: var(--color-accent);
    background: var(--color-accent-soft);
}

.service-card h3 {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.18;
}

.service-card--blue h3 {
    color: #1f67d7;
}

.service-card--green h3 {
    color: #13995b;
}

.service-card p {
    margin: 10px 0 0;
    color: var(--color-muted);
}

.service-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 28px;
    color: #23314c;
    font-size: 0.97rem;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%, #fff 0 26%, transparent 27%),
        linear-gradient(135deg, #36c176, #24995d);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.32);
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-weight: 700;
}

.service-card--blue .inline-link {
    color: var(--color-primary);
}

.service-card--green .inline-link {
    color: var(--color-accent);
}

.service-art {
    position: relative;
    min-height: 240px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 68% 24%, rgba(44, 123, 255, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(225, 236, 251, 0.45));
    overflow: hidden;
}

.service-card--green .service-art {
    background:
        radial-gradient(circle at 68% 24%, rgba(36, 192, 107, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(225, 247, 236, 0.45));
}

.service-window {
    position: absolute;
}

.service-window {
    border-radius: 18px;
    border: 1px solid rgba(44, 123, 255, 0.12);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(209, 227, 255, 0.8));
    box-shadow: 0 16px 24px rgba(44, 123, 255, 0.12);
}

.service-window--main {
    left: 32px;
    bottom: 42px;
    width: 124px;
    height: 102px;
}

.service-window--side {
    left: 122px;
    bottom: 68px;
    width: 92px;
    height: 74px;
}

.service-window--panel {
    right: 28px;
    top: 38px;
    width: 126px;
    height: 164px;
}

.service-art--marketing {
    display: grid;
    place-items: center;
    padding: 30px;
}

.service-art--marketing::before,
.service-art--marketing::after {
    content: "";
    position: absolute;
    border-radius: 999px;
}

.service-art--marketing::before {
    top: 24px;
    right: 24px;
    width: 72px;
    height: 72px;
    border: 16px solid rgba(36, 192, 107, 0.12);
}

.service-art--marketing::after {
    left: 24px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    background: rgba(44, 123, 255, 0.08);
}

.marketing-dashboard {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr auto;
    width: min(100%, 270px);
    min-height: 170px;
    padding: 20px;
    border: 1px solid rgba(19, 153, 91, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 36px rgba(19, 153, 91, 0.14);
}

.marketing-dashboard__header {
    grid-column: 1 / -1;
    width: 44%;
    height: 9px;
    border-radius: 999px;
    background: #dce9f7;
}

.marketing-dashboard__chart {
    display: flex;
    align-items: end;
    gap: 9px;
    min-height: 88px;
    padding-top: 18px;
}

.marketing-dashboard__chart span {
    width: 18px;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #39ca7e, #179656);
}

.marketing-dashboard__chart span:nth-child(1) {
    height: 34%;
}

.marketing-dashboard__chart span:nth-child(2) {
    height: 52%;
}

.marketing-dashboard__chart span:nth-child(3) {
    height: 72%;
}

.marketing-dashboard__chart span:nth-child(4) {
    height: 96%;
}

.marketing-dashboard__metric {
    align-self: center;
    color: #13995b;
    font-size: 1.45rem;
    font-weight: 800;
}

.marketing-dashboard__label {
    grid-column: 1 / -1;
    color: var(--color-muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.portfolio-card,
.article-card {
    overflow: hidden;
    border: 1px solid rgba(10, 23, 53, 0.06);
    background: #fff;
}

.article-card {
    display: flex;
    flex-direction: column;
}

.article-card .card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.article-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.article-card .card-actions {
    margin-top: auto;
    padding-top: 16px;
}

.portfolio-thumb,
.article-thumb {
    position: relative;
    overflow: hidden;
}

.card-media-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.portfolio-thumb.has-image::after,
.article-thumb.has-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 25, 56, 0.04), rgba(7, 25, 56, 0.5));
    pointer-events: none;
}

.portfolio-thumb {
    min-height: 168px;
}

.portfolio-thumb--link {
    display: block;
    color: inherit;
}

.portfolio-thumb--link:focus-visible {
    outline: 3px solid rgba(44, 123, 255, 0.38);
    outline-offset: 4px;
}

.portfolio-thumb--link .card-media-image {
    transition: transform 0.28s ease;
}

.portfolio-thumb--link:hover .card-media-image {
    transform: scale(1.025);
}

.portfolio-thumb::before,
.article-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.18), transparent 22%);
}

.portfolio-thumb--steel {
    background: linear-gradient(135deg, #6d7f95, #253345 64%, #18283f);
}

.portfolio-thumb--gold {
    background: linear-gradient(135deg, #6c4210, #1e1624 64%, #090d1e);
}

.portfolio-thumb--emerald {
    background: linear-gradient(135deg, #0f5948, #0b2436 64%, #101c29);
}

.portfolio-thumb--slate {
    background: linear-gradient(135deg, #203d61, #102541 64%, #06101e);
}

.portfolio-thumb--sunset {
    background: linear-gradient(135deg, #f3b380, #5a80bd 58%, #112241);
}

.thumb-label {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.thumb-scene {
    position: absolute;
    inset: auto 16px 16px 16px;
    height: 96px;
}

.thumb-panel {
    position: absolute;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    box-shadow: 0 12px 20px rgba(7, 25, 56, 0.22);
}

.thumb-panel--wide {
    inset: 22px 20% 0 0;
}

.thumb-panel--medium {
    width: 30%;
    height: 72px;
    right: 0;
    top: 0;
}

.thumb-panel--small {
    width: 38%;
    height: 18px;
    right: 16%;
    bottom: 0;
}

.card-body {
    padding: 18px 18px 20px;
}

.card-body h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.card-body p {
    margin: 8px 0 0;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.metrics-strip {
    padding: 30px 0;
    color: #fff;
    background: linear-gradient(135deg, #071736, #081d43 60%, #092349);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.metric-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px 18px;
}

.metric-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: #5a9dff;
    background: rgba(255, 255, 255, 0.04);
}

.metric-item strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.metric-item p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.articles-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 24px;
    align-items: start;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.article-thumb {
    min-height: 170px;
    padding: 14px;
}

.article-thumb span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-primary-deep);
    background: rgba(255, 255, 255, 0.72);
}

.article-thumb--paper {
    background: linear-gradient(135deg, #b98f6e, #70442f 55%, #3f2d2a);
}

.article-thumb--office {
    background: linear-gradient(135deg, #cfd7e0, #5e6f86 50%, #27364c);
}

.article-thumb--security {
    background: linear-gradient(135deg, #3b7799, #0d2a47 60%, #091727);
}

.article-thumb--future {
    background: linear-gradient(135deg, #5087d0, #1d436c 58%, #0e2039);
}

.topic-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid rgba(10, 23, 53, 0.06);
}

.topic-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.topic-list {
    display: grid;
    gap: 12px;
    margin: 20px 0 28px;
    padding: 0;
    list-style: none;
}

.topic-list li {
    position: relative;
    padding-left: 16px;
    color: #31405a;
}

.topic-list li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.final-cta {
    position: relative;
    z-index: 1;
    margin-bottom: -82px;
    padding-top: 18px;
}

.cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 34px 42px;
    color: #fff;
    background: linear-gradient(135deg, #092349, #071736 65%);
}

.cta-copy h2 {
    margin: 0;
    font-size: clamp(1.7rem, 1vw + 1.35rem, 2.4rem);
    line-height: 1.15;
}

.cta-copy p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.site-footer {
    padding: 132px 0 28px;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 12% 10%, rgba(44, 123, 255, 0.12), transparent 22%),
        linear-gradient(180deg, #071736, #051126);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.brand--footer .brand-copy strong,
.brand--footer .brand-copy small {
    color: #fff;
}

.footer-brand p {
    max-width: 260px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column h3 {
    margin: 0 0 18px;
    font-size: 1rem;
    color: #fff;
}

.footer-column ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column a:hover,
.contact-list li span:hover {
    color: #fff;
}

.contact-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
}

.social-list {
    display: grid;
    justify-items: start;
    gap: 10px;
}

.social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    min-height: 44px;
    padding: 0 16px 0 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.88rem;
    font-weight: 600;
}

.social-list .icon--threads {
    width: 0.9rem;
    height: 0.9rem;
    object-fit: contain;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.card-meta {
    margin: 0 0 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5f82ba;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.inline-link--muted {
    color: var(--color-muted);
}

.portfolio-card--compact .card-body {
    padding-bottom: 18px;
}

.portfolio-card--detail .portfolio-thumb {
    min-height: 224px;
}

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 58px;
    background:
        radial-gradient(circle at 10% 8%, rgba(44, 123, 255, 0.16), transparent 24%),
        linear-gradient(135deg, #071736, #0a2047 60%, #0f2c5c);
    color: #fff;
}

.inner-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
    gap: 28px;
    align-items: center;
}

.inner-hero h1 {
    margin: 0;
    max-width: 13ch;
    font-size: clamp(2.35rem, 2vw + 1.6rem, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.inner-hero p {
    max-width: 38rem;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
}

.inner-hero__card {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.inner-hero__label {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
}

.inner-hero__card strong {
    display: block;
    margin-top: 16px;
    font-size: 2.4rem;
    line-height: 1;
}

.inner-hero__card p {
    margin-top: 12px;
}

.inner-hero--detail {
    padding-bottom: 42px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
}

.breadcrumbs strong {
    color: #fff;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
    align-items: end;
    margin-top: 24px;
}

.detail-hero h1 {
    max-width: 15ch;
}

.detail-pill {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-meta {
    display: grid;
    gap: 14px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-meta small {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.62);
}

.detail-meta strong {
    font-size: 1rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
    gap: 28px;
    align-items: start;
}

.detail-media__frame {
    position: relative;
    min-height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(10, 23, 53, 0.06);
    background-color: #fff;
    box-shadow: var(--shadow-card);
}

.detail-media__frame.has-image {
    display: grid;
    min-height: 0;
    aspect-ratio: 4 / 3;
    background: #eef2f7;
}

.detail-media__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-media__frame .thumb-scene {
    inset: auto 34px 34px 34px;
    height: 160px;
}

.portfolio-gallery {
    display: grid;
    gap: 14px;
}

.portfolio-gallery__stage {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(10, 23, 53, 0.06);
    border-radius: var(--radius-xl);
    background: #eef2f7;
    box-shadow: var(--shadow-card);
}

.portfolio-gallery__open {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.portfolio-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portfolio-gallery__zoom,
.portfolio-gallery__counter {
    position: absolute;
    z-index: 2;
    bottom: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(7, 25, 56, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.portfolio-gallery__zoom {
    left: 14px;
}

.portfolio-gallery__counter {
    right: 14px;
}

.gallery-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: #fff;
    background: rgba(7, 25, 56, 0.68);
    box-shadow: 0 10px 24px rgba(7, 25, 56, 0.18);
    cursor: pointer;
    transform: translateY(-50%);
}

.gallery-control-icon {
    display: block;
    width: 22px;
    height: 22px;
    margin: 0;
    pointer-events: none;
}

.gallery-arrow--previous {
    left: 14px;
}

.gallery-arrow--next {
    right: 14px;
}

.portfolio-gallery__thumbnails {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86px;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
}

.portfolio-gallery__thumbnail {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #eef2f7;
    cursor: pointer;
    opacity: 0.68;
}

.portfolio-gallery__thumbnail.is-active {
    border-color: var(--color-primary);
    opacity: 1;
}

.portfolio-gallery__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-lightbox {
    width: min(1100px, calc(100% - 32px));
    max-width: none;
    height: min(820px, calc(100dvh - 32px));
    max-height: none;
    padding: 0;
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    color: #fff;
    background: #050b16;
}

.gallery-lightbox::backdrop {
    background: rgba(2, 8, 20, 0.86);
    backdrop-filter: blur(6px);
}

.gallery-lightbox[open] {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    align-items: center;
}

.gallery-lightbox figure {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 24px 0 14px;
}

.gallery-lightbox figure img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
}

.gallery-lightbox figcaption {
    padding-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 0.82rem;
}

.gallery-lightbox__close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 14px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.gallery-lightbox__close .gallery-control-icon {
    width: 20px;
    height: 20px;
}

.gallery-lightbox__arrow {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.detail-content {
    padding: 32px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid rgba(10, 23, 53, 0.06);
    box-shadow: var(--shadow-card);
}

.detail-content h2 {
    margin: 0 0 18px;
    font-size: 1.55rem;
}

.rich-text {
    color: #2c3b56;
}

.rich-text p,
.rich-text br {
    line-height: 1.9;
}

.card-grid {
    display: grid;
    gap: 20px;
}

.card-grid--portfolio {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--articles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.articles-grid--page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.empty-state {
    grid-column: 1 / -1;
    padding: 34px 30px;
    border-radius: var(--radius-xl);
    border: 1px dashed rgba(44, 123, 255, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(228, 238, 254, 0.68));
    text-align: center;
}

.empty-state h3 {
    margin: 0;
    font-size: 1.3rem;
}

.empty-state p {
    margin: 10px 0 0;
    color: var(--color-muted);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: rise-in 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes rise-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .hero-grid,
    .service-grid,
    .articles-layout,
    .footer-grid,
    .inner-hero__grid,
    .detail-layout,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .articles-grid,
    .articles-grid--page,
    .card-grid--portfolio,
    .card-grid--articles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 980px) {
    .nav-wrap {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
        padding: 14px 0;
    }

    .site-menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .site-navigation {
        grid-column: 1 / -1;
        display: none;
        grid-template-columns: 1fr;
        justify-items: stretch;
        gap: 12px;
        width: 100%;
        padding: 8px 0 4px;
        border-top: 1px solid rgba(10, 23, 53, 0.08);
        text-align: left;
    }

    .site-navigation.is-open {
        display: grid;
        animation: mobile-menu-in 0.2s ease-out;
    }

    .nav-links {
        display: grid;
        justify-content: stretch;
        justify-items: stretch;
        align-items: stretch;
        gap: 0;
        width: 100%;
        text-align: left;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 8px;
        border-bottom: 1px solid rgba(10, 23, 53, 0.06);
        text-align: left;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown summary {
        width: 100%;
        justify-content: space-between;
        padding: 12px 8px;
        border-bottom: 1px solid rgba(10, 23, 53, 0.06);
        text-align: left;
    }

    .nav-dropdown__menu {
        position: static;
        min-width: 0;
        gap: 2px;
        margin: 0;
        padding: 6px 8px 8px 18px;
        border: 0;
        border-bottom: 1px solid rgba(10, 23, 53, 0.06);
        border-radius: 0;
        background: #f7faff;
        box-shadow: none;
    }

    .nav-dropdown__menu a {
        padding: 10px 12px;
        border-bottom: 0;
        white-space: normal;
    }

    .nav-links a.is-active::after,
    .nav-links a:hover::after {
        right: auto;
        width: 32px;
    }

    .site-navigation__cta {
        width: 100%;
    }

    .site-header.has-open-menu {
        box-shadow: 0 18px 36px rgba(7, 25, 56, 0.1);
    }

    .hero {
        padding-top: 18px;
    }

    .hero-highlights,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric-item:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-visual {
        min-height: 520px;
    }
}

@media (max-width: 860px) {
    .brand-copy strong {
        font-size: 1.4rem;
    }

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

    .portfolio-grid,
    .articles-grid,
    .articles-grid--page,
    .card-grid--portfolio,
    .card-grid--articles {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        max-width: none;
    }

    .marketing-card {
        right: 0;
        left: 0;
        margin: 0 auto;
        bottom: 10px;
    }

    .desk-plant {
        display: none;
    }

    .final-cta {
        margin-bottom: -52px;
    }

    .detail-content {
        padding: 24px 20px;
    }

    .detail-media__frame {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .site-header {
        position: sticky;
    }

    .brand {
        gap: 10px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-copy small {
        font-size: 0.62rem;
        letter-spacing: 0.16em;
    }

    .menu-toggle__text {
        display: none;
    }

    .site-menu-toggle {
        width: 44px;
        padding: 0 11px;
    }

    .portfolio-thumb,
    .article-thumb {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .portfolio-card--detail .portfolio-thumb {
        min-height: 0;
    }

    .portfolio-gallery__stage,
    .detail-media__frame.has-image {
        aspect-ratio: 1 / 1;
    }

    .portfolio-gallery__zoom {
        display: none;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .gallery-arrow--previous {
        left: 10px;
    }

    .gallery-arrow--next {
        right: 10px;
    }

    .gallery-lightbox {
        width: 100%;
        height: 100dvh;
        border-radius: 0;
    }

    .gallery-lightbox[open] {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
    }

    .gallery-lightbox figure {
        padding-top: 58px;
    }

    .gallery-lightbox__arrow {
        width: 38px;
        height: 38px;
    }

    .button {
        width: 100%;
    }

    .hero-copy {
        padding-top: 20px;
    }

    .hero-actions,
    .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 440px;
    }

    .device-screen {
        padding: 24px;
        border-width: 10px;
    }

    .device-content h2 {
        font-size: 1.45rem;
    }

    .screen-scene {
        width: 46%;
        height: 38%;
    }

    .service-card,
    .topic-card,
    .cta-card {
        padding: 24px 20px;
    }

    .feature-section-heading {
        margin-bottom: 30px;
    }

    .feature-section-heading p {
        font-size: 0.94rem;
    }

    .feature-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card--challenge,
    .feature-card--reason {
        min-height: 0;
        padding: 22px 20px;
    }

    .challenge-note {
        width: 100%;
        align-items: flex-start;
        margin-top: 28px;
        border-radius: 18px;
        text-align: left;
    }

    .challenge-note span {
        margin-top: 6px;
    }

    .metric-item {
        padding-inline: 6px;
    }

    .site-footer {
        padding-top: 110px;
    }
}

@keyframes mobile-menu-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-navigation.is-open {
        animation: none;
    }

    .menu-toggle__icon span {
        transition: none;
    }
}
