/*
 * SMART Global — Japanese SMART visual alignment
 *
 * This layer deliberately follows the current Japanese SMART service:
 * compact typography, two-tier navigation, ruled sections, a framed search
 * area, rounded opportunity cards, and restrained navy/blue accents.
 */

:root {
    --ink: #142034;
    --ink-deep: #4b4b4b;
    --blue: #0a3291;
    --blue-bright: #00afec;
    --paper: #fbfbfb;
    --paper-warm: #f6f9fc;
    --text: #263246;
    --muted: #697386;
    --line: #cfd6e2;
    --accent: #ed9022;
    --container: 1200px;
    --shadow: 0 12px 30px rgba(20, 32, 52, .07);
    --type-caption: .75rem;
    --type-meta: .8125rem;
    --type-control: .875rem;
    --type-body: 1rem;
    --type-subheading: 1.125rem;
    --type-card-heading: 1.25rem;
}

body {
    background: #fff;
    color: var(--text);
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: 0;
}

.container {
    width: min(calc(100% - 48px), var(--container));
}

.eyebrow {
    display: block;
    margin-bottom: 11px;
    color: #7d8798;
    font-size: var(--type-caption);
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.35;
    text-transform: uppercase;
}

.eyebrow > span {
    display: none;
}

.button {
    min-height: 52px;
    border-radius: 0;
    padding: 13px 24px;
    font-size: var(--type-control);
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}

.button:hover {
    transform: none;
}

.button--primary {
    background: var(--ink);
}

.button--primary:hover {
    background: var(--blue);
}

.button--ghost,
.button--outline {
    border-color: #98a1af;
    background: #fff;
}

.button--ghost:hover,
.button--outline:hover {
    border-color: var(--blue);
    background: var(--blue);
}

.button--enquiry {
    min-width: 315px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
}

.button--enquiry:hover {
    background: #d77913;
}

.text-link {
    gap: 10px;
    font-size: var(--type-control);
    text-decoration-color: currentColor;
    transition: opacity .2s ease;
}

.text-link:hover {
    gap: 10px;
    opacity: .68;
}

.section {
    padding: 78px 0;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading h2 {
    max-width: 760px;
    margin-bottom: 14px;
    font-size: clamp(1.65rem, 2.35vw, 2.05rem);
    line-height: 1.35;
}

.section-heading--center::after {
    display: block;
    width: 72px;
    height: 2px;
    margin-top: 24px;
    background: var(--ink);
    content: "";
}

.section-heading--center > p:last-of-type:not(.eyebrow) {
    max-width: 620px;
    color: var(--muted);
}

/* Two-tier service header */
.site-header {
    position: sticky;
    height: 118px;
    border-bottom: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: none;
    box-shadow: none;
    transition: background-color .34s ease, border-color .34s ease, box-shadow .34s ease, backdrop-filter .34s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 6px 18px rgba(10, 50, 145, .06);
}

.site-header__main {
    height: 72px;
    border-bottom: 1px solid #e4e8f0;
}

.site-header__inner {
    height: 72px;
}

.site-header__brand-group {
    gap: 18px;
}

.strike-brand img {
    width: 132px;
}

.site-header__divider {
    height: 36px;
    background: #cfd5df;
}

.smart-brand {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
}

.smart-brand span {
    margin: 0;
}

.smart-brand__lockup {
    display: flex;
    align-items: center;
    gap: 12px;
}

.smart-brand__lockup img,
.smart-brand img {
    width: 98px;
}

.smart-brand__copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    white-space: nowrap;
}

.smart-brand__tagline {
    width: auto;
    margin-bottom: 0 !important;
    color: #5f6d80 !important;
    font-size: var(--type-caption) !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    line-height: 1.35 !important;
    white-space: nowrap;
}

.site-header__actions {
    display: flex;
    min-width: 0;
    height: 100%;
    align-items: center;
    margin-left: auto;
}

.header-search,
.header-explore {
    display: inline-flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e4e8f0;
    color: var(--ink);
    font-size: var(--type-control);
    font-weight: 700;
}

.header-search {
    gap: 10px;
    padding: 0 23px;
}

.header-search__icon {
    width: 18px;
    height: 18px;
    background: url("../images/icons/search.svg") center / contain no-repeat;
}

.header-explore {
    gap: 17px;
    min-width: 175px;
    border-right: 1px solid #e4e8f0;
    background: var(--ink);
    color: #fff;
}

.header-explore:hover {
    background: var(--blue);
}

.site-header__nav-row {
    height: 46px;
    border-bottom: 1px solid #e4e8f0;
    background: #fff;
}

.site-nav {
    display: grid;
    height: 46px;
    max-width: 760px;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
}

.site-nav > a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e4e8f0;
    color: var(--ink);
    font-size: var(--type-control);
    font-weight: 700;
}

.site-nav > a:last-child {
    border-right: 1px solid #e4e8f0;
}

/* Compact Japanese SMART-style hero */
.hero {
    border-bottom: 1px solid var(--line);
    background: #fbfbfb;
}

.hero::after {
    display: none;
}

.hero__inner {
    position: relative;
    display: grid;
    min-height: 500px;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    align-items: center;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 64px;
}

.hero__copy {
    position: relative;
    z-index: 2;
}

.hero__kicker {
    margin-bottom: 12px;
    color: #59677a;
    font-size: var(--type-meta);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero__copy h1 {
    max-width: 760px;
    margin-bottom: 23px;
    font-size: clamp(2.55rem, 4.1vw, 3.45rem);
    line-height: 1.3;
}

.hero__copy h1 > span {
    display: block;
}

.hero__brand-line {
    position: relative;
    display: flex !important;
    width: fit-content;
    align-items: center;
    gap: 14px;
}

.hero__brand-logo {
    --smart-palette-wipe-height: 100%;
    --smart-headline-line-left: #52bcde;
    --smart-headline-line-right: #7e97a1;
    --smart-headline-next-left: #52bcde;
    --smart-headline-next-right: #7e97a1;
    position: relative;
    display: block;
    width: clamp(190px, 20vw, 270px);
    flex: 0 0 auto;
    cursor: pointer;
    line-height: 0;
    white-space: nowrap;
}

.hero__brand-logo:focus-visible {
    outline: 2px solid var(--smart-headline-line-left, #52bcde);
    outline-offset: 8px;
}

.hero__brand-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.hero__brand-logo::after {
    position: absolute;
    right: 2.826%;
    bottom: -16px;
    left: 2.355%;
    height: 8px;
    background: linear-gradient(90deg, var(--smart-headline-line-left, #52bcde) 0 50%, var(--smart-headline-line-right, #7e97a1) 50% 100%);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% var(--smart-palette-wipe-height);
    box-shadow: 0 8px 16px rgba(20, 32, 52, .1);
    content: "";
    pointer-events: none;
}

.hero__brand-logo.is-palette-animating::after {
    background-image:
        linear-gradient(90deg, var(--smart-headline-next-left, #52bcde) 0 50%, var(--smart-headline-next-right, #7e97a1) 50% 100%),
        linear-gradient(90deg, var(--smart-headline-line-left, #52bcde) 0 50%, var(--smart-headline-line-right, #7e97a1) 50% 100%);
    background-size: 0 var(--smart-palette-wipe-height), 100% var(--smart-palette-wipe-height);
    animation: smartPaletteWipe .84s cubic-bezier(.65, 0, .35, 1) forwards;
}

@keyframes smartPaletteWipe {
    0% {
        background-size: 0 var(--smart-palette-wipe-height), 100% var(--smart-palette-wipe-height);
    }

    50% {
        background-size: 50% var(--smart-palette-wipe-height), 100% var(--smart-palette-wipe-height);
    }

    100% {
        background-size: 100% var(--smart-palette-wipe-height), 100% var(--smart-palette-wipe-height);
    }
}

.hero__lead {
    max-width: 660px;
    margin-bottom: 28px;
    color: #4f5d70;
    font-size: var(--type-body);
    line-height: 1.9;
}

.hero__actions .button {
    min-width: 240px;
}

.hero__actions .button--ghost {
    border-width: 2px;
    border-color: var(--ink);
}

.hero-news {
    position: relative;
    z-index: 2;
    min-width: 0;
    align-self: center;
}

.hero-news__link {
    display: block;
    width: 100%;
    padding: 24px;
    border: 1px solid #eef1f5;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    color: var(--ink);
    transition: box-shadow .3s ease, transform .3s ease;
}

.hero-news__link:hover {
    box-shadow: 0 10px 22px rgba(15, 29, 47, .12);
    color: var(--ink);
    transform: translateY(-2px);
}

.hero-news__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.hero-news__category {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-size: var(--type-control);
    font-weight: 700;
}

.hero-news__category::before {
    width: 12px;
    height: 3px;
    margin-right: 8px;
    background: var(--ink);
    content: "";
}

.hero-news__date {
    color: #7e97a1;
    font-size: var(--type-caption);
    font-weight: 600;
    letter-spacing: .04em;
}

.hero-news__title {
    display: block;
    margin: 0;
    color: var(--ink);
    font-size: var(--type-body);
    font-weight: 700;
    line-height: 1.5;
}

.brand-scene {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 75%;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 100px;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-50%);
}

.brand-scene__column {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    gap: 65px;
    transform: rotate(45deg);
    transform-origin: center;
}

.brand-scene__group {
    display: flex;
    flex-shrink: 0;
    gap: 11px;
}

.brand-scene__block {
    display: flex;
    width: 18px;
    height: 80px;
    flex-shrink: 0;
    flex-direction: column;
    overflow: hidden;
}

.brand-scene__block > span {
    flex: 1;
}

.brand-scene__block > span:first-child {
    background: var(--brand-scene-top);
}

.brand-scene__block > span:last-child {
    background: var(--brand-scene-bottom);
}

.brand-scene__block--1 { --brand-scene-top: #52bcde; --brand-scene-bottom: #7e97a1; }
.brand-scene__block--2 { --brand-scene-top: #fec317; --brand-scene-bottom: #eae8f2; }
.brand-scene__block--3 { --brand-scene-top: #cc7426; --brand-scene-bottom: #bbb49d; }
.brand-scene__block--4 { --brand-scene-top: #cc5b33; --brand-scene-bottom: #7e97a1; }
.brand-scene__block--5 { --brand-scene-top: #0085ca; --brand-scene-bottom: #d5b489; }
.brand-scene__block--6 { --brand-scene-top: #f43254; --brand-scene-bottom: #bbb49d; }
.brand-scene__block--7 { --brand-scene-top: #52bcde; --brand-scene-bottom: #c18c22; }
.brand-scene__block--8 { --brand-scene-top: #9b3b65; --brand-scene-bottom: #f8d28b; }
.brand-scene__block--9 { --brand-scene-top: #009370; --brand-scene-bottom: #ffb994; }
.brand-scene__block--10 { --brand-scene-top: #52bcde; --brand-scene-bottom: #bbb49d; }
.brand-scene__block--11 { --brand-scene-top: #bd85d6; --brand-scene-bottom: #cc5b33; }
.brand-scene__block--12 { --brand-scene-top: #3e61a1; --brand-scene-bottom: #ece776; }
.brand-scene__block--13 { --brand-scene-top: #e6556c; --brand-scene-bottom: #f8d28b; }
.brand-scene__block--14 { --brand-scene-top: #ff5a34; --brand-scene-bottom: #ffb994; }
.brand-scene__block--15 { --brand-scene-top: #7b8f65; --brand-scene-bottom: #009370; }
.brand-scene__block--16 { --brand-scene-top: #6373c2; --brand-scene-bottom: #eae8f2; }

@media (max-width: 1200px) {
    .brand-scene {
        left: 36%;
        width: 160%;
        gap: 80px;
    }

    .brand-scene__column {
        gap: 55px;
    }

    .brand-scene__group {
        gap: 10px;
    }

    .brand-scene__block {
        width: 16px;
        height: 70px;
    }
}

@media (max-width: 1024px) {
    .brand-scene {
        left: 40%;
        width: 182%;
    }

    .brand-scene__column {
        gap: 45px;
    }

    .brand-scene__group {
        gap: 8px;
    }

    .brand-scene__block {
        width: 14px;
        height: 60px;
    }
}

/* Framed search */
.search-dock {
    z-index: 1;
    margin-top: 0;
    padding: 72px 0 78px;
    background: #fff;
}

.search-panel {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.search-panel__heading {
    border: 0;
}

.search-panel__heading h2 {
    font-size: clamp(1.65rem, 2.35vw, 2.05rem);
}

.opportunity-search {
    display: grid;
    min-height: 82px;
    grid-template-columns: 1.65fr repeat(3, 1fr) 176px;
    align-items: stretch;
    gap: 0;
    border: 3px solid var(--ink);
    background: #fff;
}

.opportunity-search .field {
    display: grid;
    align-content: center;
    gap: 2px;
    min-width: 0;
    padding: 10px 15px;
    border-right: 1px solid #cdd3dc;
}

.opportunity-search .field > span:first-child {
    color: #697486;
    font-size: var(--type-caption);
    line-height: 1.5;
}

.opportunity-search .field input,
.opportunity-search .field select {
    height: 36px;
    border: 0;
    padding-left: 0;
    background-color: transparent;
    box-shadow: none;
    font-size: var(--type-body);
}

.opportunity-search .field input:focus,
.opportunity-search .field select:focus {
    box-shadow: none;
}

.opportunity-search .field select {
    padding-right: 30px;
    background-position: calc(100% - 12px) 15px, calc(100% - 7px) 15px;
}

.opportunity-search .field__input-wrap--search::after {
    top: 50%;
    left: 0;
    width: 22px;
    height: 22px;
}

.opportunity-search .field__input-wrap--search input {
    padding-right: 0;
    padding-left: 34px;
}

.search-panel__submit {
    width: 100%;
    height: 100%;
    min-height: 76px;
    border: 0;
}

/* Japanese SMART opportunity cards */
.section--opportunities {
    padding-top: 78px;
    border-top: 1px solid var(--line);
    background: #fbfbfb;
}

.opportunity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 20px;
}

.opportunity-card {
    min-height: 0;
    overflow: visible;
    border: 1px solid #cfcfcf;
    border-radius: 20px;
    padding: 24px 24px 90px;
    text-align: center;
}

.opportunity-card:hover {
    border-color: #cfcfcf;
    box-shadow: none;
    transform: none;
}

.opportunity-card__header {
    margin: 0;
    padding: 0 36px;
}

.opportunity-card__code {
    display: block;
    margin: 0;
    color: var(--blue);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
}

.opportunity-card h3.opportunity-card__industry {
    min-height: 0;
    margin: 8px 0 0;
    padding: 0;
    border: 0;
    color: var(--blue);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
}

.opportunity-card__summary {
    margin: 20px 0 0;
    padding-top: 22px;
    border-top: 1px solid #cfcfcf;
    color: var(--ink);
    font-size: .95rem;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
}

.opportunity-card__facts {
    display: block;
    margin: 20px 0 26px;
    border: 0;
    text-align: left;
}

.opportunity-card__facts > div {
    display: flex;
    gap: 0;
    padding: 0;
    border: 0;
}

.opportunity-card__facts > div + div {
    margin-top: 14px;
}

.opportunity-card__facts dt {
    flex: 0 0 90px;
    padding-right: 20px;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.6;
}

.opportunity-card__facts dd {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.6;
}

.opportunity-card__link {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 36px;
    left: 0;
    display: inline-flex;
    width: fit-content;
    min-height: 0;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 10px 46px;
    border: 1px solid var(--blue);
    border-radius: 999px;
    color: var(--blue);
    font-size: var(--type-control);
    font-weight: 700;
    transition: background-color .2s ease, color .2s ease;
}

.opportunity-card__link:hover,
.opportunity-card__link:focus-visible {
    background: var(--blue);
    color: #fff;
}

.section-action {
    margin-top: 38px;
}

/* Reasons, flow, origin and FAQ */
.section--why {
    background: #fff;
    color: var(--text);
}

.section--why::after {
    display: none;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-list li {
    display: block;
    min-height: 245px;
    padding: 28px 26px;
    border: 1px solid #cfd4dc;
}

.benefit-list li:last-child {
    border-bottom: 1px solid #cfd4dc;
}

.benefit-list > li > span {
    display: grid;
    width: 36px;
    height: 36px;
    margin-bottom: 40px;
    place-items: center;
    background: var(--ink);
    color: #fff;
    font-size: var(--type-caption);
    line-height: 1.5;
}

.benefit-list h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: var(--type-card-heading);
    line-height: 1.45;
}

.benefit-list p {
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.8;
}

.section--process {
    border-top: 1px solid var(--line);
    background: #fbfbfb;
}

.process-list {
    gap: 18px;
    border: 0;
}

.process-list li {
    min-height: 245px;
    padding: 27px 24px;
    border: 1px solid #cfd4dc !important;
    background: #fff;
}

.process-list li::after {
    display: none !important;
}

.process-list span {
    display: grid;
    width: 36px;
    height: 36px;
    margin-bottom: 47px;
    place-items: center;
    background: var(--ink);
    color: #fff;
    font-size: var(--type-caption);
    line-height: 1.5;
}

.process-list h3 {
    font-size: var(--type-card-heading);
    line-height: 1.45;
}

.process-list p {
    font-size: var(--type-body);
    line-height: 1.8;
}

.section--origin {
    border-top: 1px solid var(--line);
    background: #fff;
}

.origin-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(45px, 7vw, 90px);
}

.origin-grid__image {
    padding: 12px;
    background: #f7f8fb;
    box-shadow: none;
}

.origin-grid__image span {
    font-size: var(--type-caption);
    line-height: 1.5;
}

.origin-grid__copy h2 {
    margin-bottom: 22px;
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    line-height: 1.4;
}

.origin-grid__copy > p:last-of-type {
    font-size: var(--type-body);
    line-height: 1.8;
}

.origin-grid__copy .button--outline {
    border-width: 2px;
    border-color: var(--ink);
}

.section--faq {
    border-top: 1px solid var(--line);
    background: #fbfbfb;
}

.faq-list {
    display: grid;
    width: min(100%, 760px);
    gap: 12px;
    margin-inline: auto;
    border: 0;
}

.faq-list details {
    border: 1px solid #d3d8e0;
    background: #fff;
}

.faq-list summary {
    padding: 21px 55px 21px 24px;
    font-size: var(--type-subheading);
    line-height: 1.55;
}

.faq-list summary span,
.faq-list summary span::after {
    right: 22px;
}

.faq-list details p {
    padding: 0 55px 22px 24px;
    font-size: var(--type-body);
    line-height: 1.8;
}

.closing-cta,
.closing-cta--compact {
    padding: 68px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.closing-cta h2,
.closing-cta--compact h2 {
    max-width: 720px;
    color: var(--ink);
    font-size: clamp(1.65rem, 2.6vw, 2.2rem);
    line-height: 1.4;
}

.closing-cta__inner {
    align-items: center;
}

/* Footer */
.site-footer {
    padding: 72px 0 24px;
    background: #4b4b4b;
    color: #d1d1d1;
}

.site-footer__brand p {
    color: #c8c8c8;
    font-size: var(--type-body);
    line-height: 1.8;
}

.site-footer__heading,
.site-footer__bottom {
    font-size: var(--type-caption);
    line-height: 1.5;
}

.site-footer__links a {
    color: #c8c8c8;
    font-size: var(--type-control);
    line-height: 1.55;
}

.site-footer__bottom {
    border-color: rgba(255, 255, 255, .17);
}

/* Opportunity index */
.page-hero {
    background: #fff;
    color: var(--text);
}

.page-hero__pattern {
    display: none;
}

.page-hero__inner {
    min-height: 265px;
    align-items: center;
    padding-top: 52px;
    padding-bottom: 52px;
}

.page-hero .breadcrumbs {
    margin-bottom: 25px;
}

.breadcrumbs {
    font-size: var(--type-caption);
    line-height: 1.5;
}

.page-hero h1 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: clamp(2rem, 3.8vw, 3rem);
}

.page-hero__inner > div:first-child > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.8;
}

.page-hero__count {
    align-items: center;
    border-left: 1px solid var(--line);
}

.page-hero__count strong {
    color: var(--blue);
    font-size: 2.8rem;
    font-weight: 700;
}

.page-hero__count span {
    color: #6e7888;
    font-size: var(--type-caption);
    line-height: 1.5;
}

.listing-section {
    padding: 34px 0 86px;
    background: #f6f9fc;
}

.filters {
    position: static;
    border: 3px solid var(--ink);
    background: #fff;
}

.filters__head {
    min-height: 58px;
    padding: 14px 18px;
}

.filters__head h2 {
    font-size: var(--type-subheading);
    line-height: 1.5;
}

.filters__head > a {
    font-size: var(--type-control);
}

.filters form {
    display: block;
    padding: 0;
}

.filters__search-row {
    display: grid;
    min-height: 96px;
    grid-template-columns: minmax(0, 1fr) 176px;
    align-items: stretch;
    border-top: 1px solid #cdd3dc;
}

.filters form .field {
    align-content: center;
    gap: 2px;
    min-width: 0;
    padding: 12px 18px;
}

.filters form .field > span:first-child {
    font-size: var(--type-caption);
    line-height: 1.5;
}

.filters form .field input,
.filters form .field select {
    height: 42px;
    border: 0;
    padding-left: 0;
    background-color: transparent;
    box-shadow: none;
    font-size: var(--type-body);
}

.filters form .field select {
    padding-right: 28px;
    background-position: calc(100% - 12px) 18px, calc(100% - 7px) 18px;
}

.filters form .field__input-wrap--search::after {
    top: 50%;
    left: 8px;
    width: 26px;
    height: 26px;
}

.filters form .field__input-wrap--search input {
    padding-right: 0;
    padding-left: 48px;
    font-size: var(--type-subheading);
}

.filters__advanced {
    border-top: 1px solid #cdd3dc;
}

.filters__advanced summary {
    position: relative;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 54px 14px 18px;
    cursor: pointer;
    list-style: none;
}

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

.filters__advanced summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    content: "";
    transform: translateY(-70%) rotate(45deg);
    transition: transform .2s ease;
}

.filters__advanced[open] summary::after {
    transform: translateY(-30%) rotate(225deg);
}

.filters__advanced summary span:first-child {
    color: var(--ink);
    font-size: var(--type-control);
    font-weight: 700;
}

.filters__advanced summary span:last-child {
    color: #68758a;
    font-size: var(--type-caption);
}

.filters__advanced-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #e0e5ec;
    background: #f8fafc;
}

.filters__advanced-fields .field {
    min-height: 78px;
    border-right: 1px solid #d9dfe8;
}

.filters__advanced-fields .field:last-child {
    border-right: 0;
}

.filters__submit {
    height: 100%;
    min-height: 95px;
    margin: 0;
    border: 0;
    font-size: var(--type-body);
    letter-spacing: .02em;
}

.filters__submit.is-loading {
    cursor: wait;
    opacity: .78;
}

.listing-results {
    position: relative;
}

.search-loading {
    position: absolute;
    z-index: 5;
    inset: 0;
    display: grid;
    min-height: 280px;
    align-content: start;
    justify-items: center;
    padding: 92px 24px 40px;
    background: rgba(246, 249, 252, .92);
    color: var(--ink);
    text-align: center;
}

.search-loading[hidden] {
    display: none;
}

.search-loading__spinner {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    border: 3px solid #d7dfeb;
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: opportunitySearchSpin .8s linear infinite;
}

.search-loading strong {
    font-size: var(--type-subheading);
    line-height: 1.45;
}

.search-loading > span:last-child {
    margin-top: 7px;
    color: #59667a;
    font-size: var(--type-control);
    line-height: 1.55;
}

@keyframes opportunitySearchSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .search-loading__spinner {
        animation: none;
    }
}

.listing-toolbar {
    align-items: flex-end;
    margin-bottom: 27px;
    padding-bottom: 19px;
    border-bottom: 1px solid var(--line);
}

.listing-toolbar p {
    color: var(--ink);
    font-size: var(--type-control);
    line-height: 1.55;
}

.listing-toolbar p strong {
    color: var(--blue);
    font-size: 2.8rem;
    font-weight: 700;
}

.active-filters span {
    background: #e7edf7;
    font-size: var(--type-caption);
    line-height: 1.5;
}

.sort-form label {
    font-size: var(--type-control);
    line-height: 1.55;
}

.sort-form select {
    width: 220px;
    font-size: var(--type-body);
}

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

.opportunity-grid--results .opportunity-card {
    min-height: 0;
}

.pagination__page,
.pagination__arrow {
    border-radius: 50%;
    font-size: var(--type-control);
}

/* Opportunity detail */
.detail-breadcrumb-wrap {
    padding-top: 22px;
    border-bottom: 1px solid #edf1f6;
    background: #fff;
}

.detail-section {
    padding: 36px 0 82px;
    background: #fff;
}

.detail-content {
    width: min(calc(100% - 48px), 1040px);
}

.detail-layout {
    display: block;
}

.detail-sheet {
    position: relative;
    background: #f7f8fb;
    padding: 48px 46px 52px;
}

.detail-sheet__new {
    position: absolute;
    top: -27px;
    left: 28px;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: var(--type-caption);
    font-weight: 700;
    line-height: 1;
}

.detail-sheet__heading {
    margin-bottom: 10px;
    text-align: center;
}

.detail-sheet__code {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 700;
}

.detail-sheet__code span {
    color: var(--blue);
    font-size: 1.0625rem;
}

.detail-sheet__heading h1 {
    margin: 0;
    color: var(--ink);
    font-size: 1.5rem;
    line-height: 1.4;
}

.detail-sheet__status {
    display: flex;
    width: 105px;
    height: 30px;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
    border-radius: 3px;
    color: #fff;
    font-size: .87rem;
    font-weight: 700;
    line-height: 1;
}

.detail-sheet__status.is-open {
    background: #6c84bd;
}

.detail-sheet__status.is-closed {
    background: #959595;
}

.detail-facts {
    display: block;
    margin-top: 10px;
    border: 0;
}

.detail-facts > div,
.detail-facts > div:nth-child(odd),
.detail-facts > div:nth-child(even) {
    display: flex;
    width: 100%;
    min-height: 0;
    align-items: flex-start;
    gap: 0;
    padding: 26px 0;
    border: 0;
    border-bottom: 1px solid #cfcfcf;
}

.detail-facts dt {
    flex: 0 0 163px;
    padding-right: 14px;
    color: var(--blue);
    font-size: var(--type-body);
    font-weight: 700;
    line-height: 1.8;
}

.detail-facts dd {
    min-width: 0;
    font-size: var(--type-body);
    font-weight: 500;
    line-height: 1.8;
}

.detail-facts > .detail-facts__narrative {
    display: block;
}

.detail-facts__narrative dt {
    margin-bottom: 12px;
    padding-right: 0;
}

.detail-facts__narrative .prose {
    max-width: 75ch;
}

.prose {
    font-size: var(--type-body);
    line-height: 1.8;
}

.enquiry-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 35px;
    margin-top: 26px;
    padding: 30px 32px;
    border: 1px solid #d5dae2;
    border-top: 4px solid var(--accent);
    background: #fff;
    text-align: left;
}

.enquiry-panel__label {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: var(--type-caption);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.enquiry-panel h2 {
    margin-bottom: 16px;
    color: var(--blue);
    font-size: 1.4rem;
    line-height: 1.45;
}

.enquiry-panel__copy > p:not(.enquiry-panel__label) {
    margin-bottom: 0;
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.8;
}

.enquiry-panel .button--enquiry {
    min-width: 315px;
    border: 2px solid var(--accent);
}

.detail-back {
    display: inline-flex;
    gap: 9px;
    margin: 24px 0 0;
    color: var(--blue);
    font-size: var(--type-control);
    font-weight: 700;
}

.related-section {
    background: #fbfbfb;
}

/* About */
.about-hero {
    background: linear-gradient(90deg, #fff3bd 0 50%, #eee8fa 50% 100%);
}

.about-hero__inner {
    min-height: 500px;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    padding-top: 58px;
    padding-bottom: 58px;
}

.about-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(2.7rem, 4.5vw, 4.25rem);
    line-height: 1.18;
}

.about-hero__mark {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.about-hero__mark img {
    width: 100%;
    margin: 0;
}

.about-intro__grid {
    grid-template-columns: .75fr 1.25fr;
    gap: clamp(50px, 8vw, 110px);
}

.about-intro h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.4;
}

.about-intro__text {
    padding-top: 25px;
    border-top: 2px solid var(--ink);
}

.about-intro__text p {
    line-height: 2;
}

.about-history {
    border-top: 1px solid var(--line);
    background: #fff;
    color: var(--text);
}

.about-history__grid {
    gap: 65px;
}

.about-history__visual {
    margin: 65px 0;
    border: 1px solid var(--line);
    background: #f7f8fb;
}

.about-history__timeline {
    padding: 75px 0;
}

.about-history__timeline h2 {
    color: var(--ink);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.about-history__timeline li {
    border-color: var(--line);
}

.about-history__timeline li:last-child {
    border-color: var(--line);
}

.about-history__timeline li > span {
    color: var(--blue);
}

.about-history__timeline h3 {
    color: var(--ink);
}

.about-history__timeline li p {
    color: var(--muted);
}

.about-pillars {
    border-top: 1px solid var(--line);
    background: #fbfbfb;
}

.pillar-grid article {
    min-height: 285px;
}

.about-strike {
    border-top: 1px solid var(--line);
}

.about-strike h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.4;
}

@media (max-width: 1080px) {
    .hero__inner {
        grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
        gap: 35px;
    }

    .hero__copy h1 {
        font-size: 2.55rem;
    }

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

    .opportunity-search .field {
        min-height: 72px;
        border-bottom: 1px solid #cdd3dc;
    }

    .opportunity-search .field:nth-of-type(even) {
        border-right: 0;
    }

    .field--keyword {
        grid-column: auto;
    }

    .search-panel__submit {
        grid-column: 1 / -1;
        min-height: 58px;
    }

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

    .benefit-list {
        gap: 14px;
    }

}

@media (max-width: 768px) {
    .container,
    .detail-content {
        width: min(calc(100% - 36px), var(--container));
    }

    .section {
        padding: 48px 0;
    }

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

    .section-heading h2 {
        font-size: 1.45rem;
    }

    .section-heading--center::after {
        display: none;
    }

    .site-header {
        height: 110px;
    }

    .site-header__main,
    .site-header__inner {
        height: 60px;
    }

    .site-header__inner {
        gap: 10px;
    }

    .site-header__brand-group {
        gap: 9px;
    }

    .strike-brand img {
        width: 92px;
    }

    .site-header__divider {
        height: 29px;
    }

    .smart-brand__lockup img,
    .smart-brand img {
        width: 76px;
    }

    .smart-brand__lockup {
        gap: 8px;
    }

    .smart-brand__copy {
        gap: 0;
    }

    .smart-brand__tagline {
        display: none;
    }

    .site-header__actions {
        flex: 0 0 auto;
    }

    .header-search,
    .header-explore {
        width: 40px;
        min-width: 40px;
        padding: 0;
        font-size: 0;
    }

    .header-search__icon {
        width: 17px;
        height: 17px;
    }

    .header-explore span {
        font-size: .95rem;
    }

    .site-header__nav-row,
    .site-nav {
        height: 50px;
    }

    .site-nav {
        position: static;
        display: grid;
        width: 100%;
        max-width: none;
        overflow: visible;
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
        background: #fff;
    }

    .site-nav > a {
        padding: 0 5px;
        border-bottom: 0;
        color: var(--ink);
        font-size: var(--type-meta);
        text-align: center;
    }

    .site-nav > a::after {
        display: block !important;
    }

    .hero__inner {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 18px;
        padding-bottom: 44px;
    }

    .hero-news {
        order: -1;
    }

    .brand-scene {
        display: none;
    }

    .hero__kicker {
        font-size: var(--type-meta);
    }

    .hero__copy h1 {
        margin-bottom: 19px;
        font-size: clamp(1.72rem, 8.5vw, 2.15rem);
        line-height: 1.42;
    }

    .hero__brand-line {
        gap: 8px;
    }

    .hero__brand-logo {
        width: 155px;
    }

    .hero__lead {
        margin-bottom: 23px;
        font-size: var(--type-body);
        line-height: 1.85;
    }

    .hero__actions {
        display: grid;
    }

    .hero__actions .button {
        width: 100%;
        min-width: 0;
    }

    .search-dock {
        padding: 48px 0;
    }

    .opportunity-search {
        grid-template-columns: 1fr;
    }

    .opportunity-search .field,
    .opportunity-search .field:nth-of-type(even) {
        min-height: 66px;
        border-right: 0;
        border-bottom: 1px solid #cdd3dc;
    }

    .opportunity-search .field input,
    .opportunity-search .field select,
    .filters form .field input,
    .filters form .field select,
    .sort-form select {
        font-size: var(--type-body);
    }

    .search-panel__submit {
        grid-column: auto;
        min-height: 58px;
    }

    .section--opportunities {
        padding-top: 48px;
    }

    .opportunity-grid {
        grid-template-columns: 1fr;
    }

    .opportunity-grid--home {
        width: calc(100% + 18px);
        grid-auto-columns: 80vw;
        grid-template-columns: none;
        grid-auto-flow: column;
        gap: 14px;
        overflow-x: auto;
        padding: 0 18px 15px 0;
        scroll-snap-type: x mandatory;
    }

    .opportunity-grid--home .opportunity-card {
        scroll-snap-align: start;
    }

    .opportunity-card,
    .opportunity-grid--results .opportunity-card {
        min-height: 0;
        padding: 24px 20px 84px;
    }

    .benefit-list {
        grid-template-columns: 1fr;
    }

    .benefit-list li {
        min-height: 0;
    }

    .benefit-list > li > span {
        margin-bottom: 25px;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .process-list li {
        min-height: 0;
    }

    .process-list span {
        margin-bottom: 25px;
    }

    .origin-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .origin-grid__image {
        box-shadow: none;
    }

    .faq-list summary {
        padding: 18px 48px 18px 18px;
        font-size: var(--type-subheading);
    }

    .faq-list summary span,
    .faq-list summary span::after {
        right: 17px;
    }

    .faq-list details p {
        padding: 0 20px 18px;
        font-size: var(--type-body);
    }

    .closing-cta,
    .closing-cta--compact {
        padding: 48px 0;
    }

    .closing-cta__inner {
        align-items: stretch;
        flex-direction: column;
        gap: 26px;
    }

    .closing-cta .button {
        width: 100%;
    }

    .page-hero__inner {
        min-height: 235px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 22px;
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .page-hero h1 {
        font-size: 1.95rem;
    }

    .page-hero__count {
        align-items: flex-start;
        padding: 0;
        border-left: 0;
    }

    .page-hero__count strong {
        font-size: 2.2rem;
    }

    .listing-section {
        padding: 28px 0 60px;
    }

    .filters {
        margin-bottom: 0;
    }

    .filters__head {
        min-height: 54px;
    }

    .filters__search-row {
        grid-template-columns: 1fr;
    }

    .filters form .field--keyword {
        min-height: 90px;
        padding: 12px 14px;
    }

    .filters form .field__input-wrap--search input {
        padding-left: 44px;
        font-size: var(--type-body);
    }

    .filters__submit {
        min-height: 58px;
    }

    .filters__advanced summary {
        min-height: 62px;
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
        padding: 12px 48px 12px 14px;
    }

    .filters__advanced summary::after {
        right: 18px;
    }

    .filters__advanced-fields {
        grid-template-columns: 1fr;
    }

    .filters__advanced-fields .field,
    .filters__advanced-fields .field:last-child {
        min-height: 70px;
        border-right: 0;
        border-bottom: 1px solid #d9dfe8;
    }

    .filters__advanced-fields .field:last-child {
        border-bottom: 0;
    }

    .listing-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .listing-toolbar p strong {
        font-size: 2.2rem;
    }

    .sort-form,
    .sort-form label,
    .sort-form select {
        width: 100%;
    }

    .sort-form label {
        align-items: flex-start;
        flex-direction: column;
    }

    .opportunity-grid--results {
        grid-template-columns: 1fr;
    }

    .detail-section {
        padding: 28px 0 56px;
    }

    .detail-sheet {
        padding: 40px 21px 28px;
    }

    .detail-sheet__heading h1 {
        font-size: 1.4rem;
    }

    .detail-facts > div,
    .detail-facts > div:nth-child(even),
    .detail-facts > div:nth-child(odd) {
        display: block;
        min-height: 0;
        padding: 18px 0;
    }

    .detail-facts dt {
        margin-bottom: 5px;
        padding-right: 0;
    }

    .detail-facts dd {
        width: 100%;
    }

    .enquiry-panel {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 20px;
        padding: 25px 21px;
        text-align: center;
    }

    .enquiry-panel .button--enquiry {
        width: 100%;
        min-width: 0;
    }

    .about-hero {
        background: linear-gradient(180deg, #fff3bd 0 52%, #eee8fa 52% 100%);
    }

    .about-hero__inner {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 42px;
        padding-bottom: 45px;
    }

    .about-hero h1 {
        font-size: 2.35rem;
    }

    .about-hero__mark {
        max-width: none;
    }

    .about-intro__grid,
    .about-history__grid,
    .about-strike__grid {
        grid-template-columns: 1fr;
    }

    .about-intro h2,
    .about-history__timeline h2,
    .about-strike h2 {
        font-size: 1.65rem;
    }

    .about-history__grid {
        gap: 0;
    }

    .about-history__visual {
        margin: 48px 0 0;
    }

    .about-history__timeline {
        padding: 45px 0 52px;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .pillar-grid article {
        min-height: 0;
    }

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

    .site-footer-visual__logo {
        width: 174px;
        max-width: 174px;
        min-width: 0;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .container,
    .detail-content {
        width: min(calc(100% - 28px), var(--container));
    }

    .strike-brand img {
        width: 82px;
    }

    .smart-brand__lockup img,
    .smart-brand img {
        width: 68px;
    }

    .site-header__brand-group {
        gap: 7px;
    }

    .smart-brand__lockup {
        gap: 5px;
    }

    .site-nav > a {
        font-size: var(--type-meta);
    }

    .hero__copy h1 {
        font-size: 1.65rem;
    }

    .hero__brand-logo {
        width: 140px;
    }

    .opportunity-grid--home {
        width: calc(100% + 14px);
        grid-auto-columns: 84vw;
        padding-right: 14px;
    }
}

/* About SMART — English adaptation of the Japanese SMART history page */
.page-about {
    background: #f6f9fc;
}

.smart-about {
    --about-ink: #142034;
    --about-muted: #5f6d80;
    --about-blue: #0a3291;
    --about-sun: #fec317;
    --about-line: #d9dfeb;
    color: var(--about-ink);
    letter-spacing: 0;
}

.smart-about *,
.smart-about *::before,
.smart-about *::after {
    box-sizing: border-box;
    letter-spacing: 0;
}

.smart-about img {
    max-width: 100%;
    height: auto;
}

.smart-about__eyebrow,
.smart-about__article-kicker {
    margin: 0;
    color: #959595;
    font-size: var(--type-caption);
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
}

.smart-about__hero {
    border-bottom: 1px solid var(--about-line);
    background:
        linear-gradient(90deg, rgba(254, 195, 23, .18) 0 50%, rgba(234, 232, 242, .68) 50% 100%),
        #fff;
}

.smart-about__hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(340px, .96fr);
    gap: 46px;
    align-items: center;
    padding-top: 88px;
    padding-bottom: 82px;
}

.smart-about__hero-copy {
    max-width: 610px;
    min-width: 0;
}

.smart-about__hero h1 {
    margin: 14px 0 0;
    font-size: clamp(3rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.02;
}

.smart-about__lead {
    max-width: 560px;
    margin: 26px 0 0;
    color: #26344d;
    font-size: var(--type-body);
    line-height: 1.8;
}

.smart-about__hero-visual {
    position: relative;
    width: min(720px, 100%);
    aspect-ratio: 1.91 / 1;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(20, 32, 52, .12);
    background: #fff;
    box-shadow: 0 24px 60px rgba(20, 32, 52, .08);
    transform: translateX(-32px);
}

.smart-about__hero-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smart-about__article {
    background: #fff;
    padding: 96px 0 112px;
}

.container.smart-about__article-inner {
    width: min(700px, calc(100% - 48px));
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

.smart-about__article-main {
    min-width: 0;
}

.smart-about__article-main > h2 {
    margin: 64px 0 0;
    border-top: 2px solid var(--about-ink);
    padding-top: 24px;
    font-size: clamp(1.7rem, 2.7vw, 2.25rem);
    font-weight: 700;
    line-height: 1.55;
}

.smart-about__article-kicker + h2 {
    margin-top: 16px;
}

.smart-about__article-main > p {
    margin: 20px 0 0;
    color: #26344d;
    font-size: var(--type-body);
    line-height: 1.8;
}

.smart-about__quote {
    position: relative;
    margin: 54px auto 56px;
    border-top: 1px solid var(--about-line);
    border-bottom: 1px solid var(--about-line);
    background: transparent;
    padding: 36px 34px;
    text-align: center;
}

.smart-about__quote::before,
.smart-about__quote::after {
    position: absolute;
    color: rgba(10, 50, 145, .18);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.smart-about__quote::before {
    top: 8px;
    left: 18px;
    content: "“";
}

.smart-about__quote::after {
    right: 18px;
    bottom: 8px;
    content: "”";
    transform: translateY(42%);
}

.smart-about__quote p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--about-ink);
    font-size: 1.24rem;
    font-weight: 700;
    line-height: 2;
}

.smart-about__archive {
    width: min(680px, calc(100vw - 48px));
    margin-top: 42px;
    margin-left: 50%;
    transform: translateX(-50%);
}

.smart-about__archive-frame {
    background: #f1f4f8;
    padding: 22px;
}

.smart-about__archive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
}

.smart-about__archive-visual {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    border: 1px solid var(--about-line);
    background: #fff;
    padding: 14px;
}

.smart-about__archive-visual img {
    display: block;
    width: 100%;
    border: 1px solid #c8d4e2;
    background: #f6f7fb;
}

.smart-about__archive-message {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    border: 3px double #41b4e4;
    background: #fffff0;
    padding: 28px 30px;
}

.smart-about__archive-translation {
    margin: 0 0 16px;
    color: #7c8798;
    font-size: var(--type-caption);
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
}

.smart-about__archive-message h3 {
    margin: 0;
    color: #41b4e4;
    font-size: var(--type-subheading);
    font-style: italic;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.smart-about__archive-translation-body {
    margin: 22px 0 0;
    border: 0;
    padding: 0;
}

.smart-about__archive-translation-body p {
    margin: 16px 0 0;
    color: #26344d;
    font-size: var(--type-body);
    font-style: normal;
    line-height: 1.9;
}

.smart-about__archive-translation-body p:first-child {
    margin-top: 0;
}

.smart-about__archive-translation-body .smart-about__archive-introduction {
    color: #41b4e4;
    font-size: var(--type-caption);
    font-weight: 800;
    letter-spacing: .18em;
    text-align: center;
    text-transform: uppercase;
}

.smart-about__archive-note {
    margin: 18px 0 0;
    border-top: 1px solid #d6dde8;
    padding-top: 14px;
    color: #8c96a5;
    font-size: var(--type-caption);
    line-height: 1.8;
    text-align: center;
}

.smart-about__archive-note a {
    color: #727d8e;
    font-weight: 400;
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.smart-about__closing {
    margin-top: 54px;
    border-top: 1px solid var(--about-line);
    padding-top: 30px;
    text-align: center;
}

.smart-about__closing-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 0 auto;
}

.smart-about__closing-brand img:first-child {
    width: min(180px, 45%);
}

.smart-about__closing-brand img:last-child {
    width: min(116px, 30%);
}

.smart-about__closing-brand span {
    color: #8993a2;
    font-size: var(--type-caption);
    font-weight: 700;
}

.smart-about__origin-link {
    display: grid;
    width: min(700px, 100%);
    grid-template-columns: minmax(0, 1fr) 292px;
    margin: 100px auto 0;
    overflow: hidden;
    border: 1px solid #d8dde5;
    border-radius: 10px;
    background: #fff;
    color: var(--about-ink);
    text-align: left;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.smart-about__origin-link:hover,
.smart-about__origin-link:focus-visible {
    border-color: rgba(10, 50, 145, .48);
    box-shadow: 0 12px 28px rgba(20, 32, 52, .1);
    color: var(--about-ink);
    opacity: 1;
    transform: translateY(-2px);
}

.smart-about__origin-link:focus-visible {
    outline: 2px solid var(--about-blue);
    outline-offset: 3px;
}

.smart-about__origin-link-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 18px 16px;
}

.smart-about__origin-link-copy strong {
    font-size: var(--type-card-heading);
    font-weight: 700;
    line-height: 1.45;
}

.smart-about__origin-link-copy > span {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    color: #697487;
    font-size: var(--type-control);
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.smart-about__origin-link-copy small {
    margin-top: auto;
    padding-top: 8px;
    color: #26344d;
    font-size: var(--type-caption);
    line-height: 1.5;
}

.smart-about__origin-link-visual {
    display: flex;
    min-width: 0;
    aspect-ratio: 1200 / 630;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-left: 1px solid #edf0f4;
    background: #fff;
}

.smart-about__origin-link-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smart-about__flow {
    border-top: 1px solid var(--about-line);
    background: #fbfbfb;
    padding: 72px 0;
}

.smart-about__section-head {
    margin-bottom: 36px;
}

.smart-about__section-head h2 {
    max-width: 850px;
    margin: 10px 0 0;
    font-size: clamp(1.7rem, 2.7vw, 2.25rem);
    line-height: 1.5;
}

.smart-about__step-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.smart-about__step-list li {
    display: flex;
    min-width: 0;
    min-height: 250px;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #d9dfeb;
    background: #fff;
    padding: 28px;
}

.smart-about__step-list li > span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    background: var(--about-ink);
    color: #fff;
    font-size: var(--type-caption);
    font-weight: 800;
}

.smart-about__step-list h3 {
    margin: 22px 0 0;
    font-size: var(--type-card-heading);
    line-height: 1.45;
}

.smart-about__step-list p {
    margin: 12px 0 0;
    color: var(--about-muted);
    font-size: var(--type-body);
    line-height: 1.8;
}

.smart-about__step-list a {
    margin-top: auto;
    padding-top: 18px;
    color: var(--about-blue);
    font-size: var(--type-control);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.smart-about__cta {
    background: #fff;
    padding: 72px 0 86px;
}

.smart-about__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    border: 2px solid var(--about-ink);
    background:
        linear-gradient(90deg, rgba(254, 195, 23, .18) 0 50%, rgba(234, 232, 242, .72) 50% 100%),
        #fff;
    padding: 46px 52px;
}

.smart-about__cta-inner > div {
    min-width: 0;
}

.smart-about__cta h2 {
    max-width: 720px;
    margin: 12px 0 0;
    font-size: 2rem;
    line-height: 1.55;
}

.smart-about__cta .button {
    flex: 0 0 auto;
}

.about-breadcrumbs {
    border-top: 1px solid #e1e5ec;
    background: #fff;
    padding: 20px 0;
}

.about-breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8a94a4;
    font-size: var(--type-caption);
    line-height: 1.5;
}

.about-breadcrumbs a {
    color: #556276;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1024px) {
    .smart-about__hero-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .smart-about__hero-visual {
        width: min(760px, 100%);
        transform: none;
    }

    .smart-about__cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .smart-about__hero-inner {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .smart-about__hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.1rem);
    }

    .smart-about__lead {
        font-size: var(--type-body);
    }

    .smart-about__hero-visual {
        aspect-ratio: 1.44 / 1;
    }

    .smart-about__article,
    .smart-about__cta {
        padding: 54px 0;
    }

    .container.smart-about__article-inner {
        width: min(700px, calc(100% - 36px));
    }

    .smart-about__article-main > h2 {
        margin-top: 48px;
        padding-top: 20px;
        font-size: 1.58rem;
    }

    .smart-about__article-main > p {
        font-size: var(--type-body);
        line-height: 2;
    }

    .smart-about__quote {
        margin: 34px 0 38px;
        padding: 22px;
    }

    .smart-about__quote p {
        font-size: 1.08rem;
    }

    .smart-about__archive {
        width: 100%;
        margin-top: 46px;
        margin-left: 0;
        transform: none;
    }

    .smart-about__archive-frame {
        padding: 12px;
    }

    .smart-about__archive-grid {
        gap: 28px;
    }

    .smart-about__archive-visual {
        padding: 10px;
    }

    .smart-about__archive-message {
        padding: 24px 20px;
    }

    .smart-about__archive-message h3 {
        font-size: var(--type-subheading);
    }

    .smart-about__archive-translation-body p {
        font-size: var(--type-body);
    }

    .smart-about__archive-note {
        font-size: var(--type-caption);
    }

    .smart-about__origin-link {
        grid-template-columns: minmax(0, 1fr) 270px;
        margin-top: 80px;
    }

    .smart-about__origin-link-copy {
        padding: 14px;
    }

    .smart-about__origin-link-copy strong {
        font-size: var(--type-card-heading);
    }

    .smart-about__origin-link-copy > span {
        font-size: var(--type-control);
        line-height: 1.55;
    }

    .smart-about__flow {
        padding: 54px 0;
    }

    .smart-about__step-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .smart-about__step-list li {
        display: grid;
        min-height: 0;
        grid-template-columns: 34px minmax(0, 1fr);
        column-gap: 16px;
        padding: 22px;
    }

    .smart-about__step-list h3,
    .smart-about__step-list p,
    .smart-about__step-list a {
        grid-column: 2;
    }

    .smart-about__step-list h3 {
        margin-top: 2px;
    }

    .smart-about__step-list p {
        margin-top: 8px;
    }

    .smart-about__step-list a {
        margin-top: 0;
        padding-top: 12px;
    }

    .smart-about__cta-inner {
        padding: 32px 24px;
    }

    .smart-about__cta h2 {
        font-size: 1.55rem;
    }

    .smart-about__cta .button {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .smart-about__origin-link {
        width: min(320px, 100%);
        grid-template-columns: minmax(0, 1fr) 150px;
        margin-top: 64px;
    }

    .smart-about__origin-link-copy {
        padding: 10px;
    }

    .smart-about__origin-link-copy strong {
        display: -webkit-box;
        overflow: hidden;
        font-size: var(--type-card-heading);
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .smart-about__origin-link-copy > span {
        display: none;
    }

    .smart-about__origin-link-copy small {
        padding-top: 6px;
    }
}

@media (max-width: 420px) {
    .smart-about__hero h1 {
        font-size: 2.45rem;
    }

    .container.smart-about__article-inner {
        width: calc(100% - 28px);
    }
}

/* Second-pass alignment with the Japanese SMART service */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.site-header__actions {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 0;
    margin-left: 34px;
}

.header-keyword-search {
    position: relative;
    display: flex;
    width: min(31vw, 390px);
    height: 42px;
    align-items: stretch;
    margin-right: 18px;
    border: 1px solid #ccd2dc;
    background: #fff;
}

.header-keyword-search::before {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 15px;
    height: 15px;
    background: url("../images/icons/search.svg") center / contain no-repeat;
    content: "";
    pointer-events: none;
    transform: translateY(-50%);
}

.header-keyword-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: 0 16px 0 42px;
    outline: 0;
    color: var(--ink);
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.2;
}

.header-keyword-search input::placeholder {
    color: #6b7688;
    font-weight: 700;
}

.opportunity-search .field input::placeholder,
.filters form .field input::placeholder {
    color: #808999;
    font-weight: 700;
}

.header-keyword-search:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(10, 50, 145, .1);
}

.header-service-link {
    display: inline-flex;
    height: 100%;
    align-items: center;
    padding: 0 18px;
    border-left: 1px solid #e4e8f0;
    color: var(--ink);
    font-size: var(--type-control);
    font-weight: 700;
    white-space: nowrap;
}

.header-explore {
    min-width: 160px;
    background: var(--accent);
}

.header-explore:hover {
    background: #d77913;
}

.header-search--mobile,
.menu-toggle,
.mobile-navigation {
    display: none;
}

.site-nav {
    display: flex;
    width: min(calc(100% - 48px), var(--container));
    max-width: none;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.site-nav > a {
    height: 46px;
    padding: 0 clamp(14px, 2vw, 30px);
    border: 0;
    font-size: var(--type-control);
    white-space: nowrap;
}

.site-nav > a:last-child {
    border-right: 0;
}

.hero {
    border-bottom: 0;
    background: #fbfbfb;
}

.hero__inner {
    min-height: 485px;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 40px;
    padding-top: 52px;
    padding-bottom: 52px;
}

.hero-news {
    overflow: visible;
    padding: 0;
}

.hero-news__thumbnail {
    display: block;
    aspect-ratio: 1.91 / 1;
    overflow: hidden;
    margin: 0 0 16px;
    border: 1px solid #eef5f8;
    background: #f3f1ed;
}

.hero-news__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-dock {
    padding: 48px 0 66px;
    background: #fbfbfb;
}

.search-panel__heading {
    align-items: flex-start;
    margin-bottom: 25px;
    text-align: left;
}

.search-panel__heading::after {
    display: none;
}

.opportunity-search--simple {
    min-height: 82px;
    grid-template-columns: minmax(0, 1fr) 176px;
}

.opportunity-search--simple .field {
    min-height: 76px;
    border-right: 1px solid #cdd3dc;
    border-bottom: 0;
}

.opportunity-search--simple .search-panel__submit {
    grid-column: auto;
    min-height: 76px;
}

.search-suggestions {
    display: grid;
    grid-template-columns: 205px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
    margin-top: 22px;
}

.search-suggestions--filters {
    grid-template-columns: 160px minmax(0, 1fr);
    margin: 20px 0 58px;
    padding: 0 4px;
}

.search-suggestions > p {
    margin: 0;
    color: var(--ink);
    font-size: var(--type-control);
    line-height: 1.55;
    font-weight: 700;
}

.search-suggestions ul {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 12px 28px;
    list-style: none;
}

.search-suggestions li {
    display: flex;
}

.search-suggestions a {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 68px;
    align-items: center;
    padding: 10px 28px 10px 0;
    border-bottom: 1px solid #d6dbe3;
    color: #40506a;
    font-size: var(--type-control);
    font-weight: 600;
    line-height: 1.55;
}

.search-suggestions a::after {
    position: absolute;
    top: 50%;
    right: 2px;
    color: var(--blue);
    content: "→";
    transform: translateY(-50%);
}

.section--opportunities {
    padding-top: 58px;
    border-top: 0;
    background: #fbfbfb;
}

.opportunity-grid {
    padding-top: 29px;
}

.opportunity-card__status {
    position: absolute;
    z-index: 2;
    top: -27px;
    left: 0;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: var(--type-caption);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
}

.section-action--cases {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

#industry-filter,
#location-filter,
#search-title,
#how-it-works {
    scroll-margin-top: 140px;
}

@media (max-width: 1120px) and (min-width: 861px) {
    .header-service-link {
        display: none;
    }

    .header-keyword-search {
        width: auto;
        min-width: 220px;
        flex: 1;
    }
}

@media (max-width: 860px) {
    .site-header {
        height: 110px;
    }

    .site-header__main,
    .site-header__inner {
        height: 60px;
    }

    .site-header__inner {
        gap: 8px;
    }

    .site-header__actions {
        height: 60px;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .header-keyword-search,
    .header-service-link,
    .header-explore {
        display: none;
    }

    .header-search--mobile,
    .menu-toggle {
        display: flex;
        width: 48px;
        min-width: 48px;
        height: 60px;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 0;
        border-left: 1px solid #e4e8f0;
        background: #fff;
        font-size: 0;
    }

    .menu-toggle {
        gap: 0;
        border-right: 1px solid #e4e8f0;
    }

    .menu-toggle__label {
        display: none;
    }

    .menu-toggle__lines {
        display: grid;
        width: 21px;
        gap: 5px;
    }

    .menu-toggle__lines i {
        display: block;
        width: 100%;
        height: 1.5px;
        background: var(--ink);
        transition: transform .2s ease, opacity .2s ease;
    }

    .site-header__nav-row,
    .site-nav {
        height: 50px;
    }

    .site-nav {
        position: static;
        top: auto;
        right: auto;
        left: auto;
        display: grid;
        width: 100%;
        max-width: none;
        overflow: visible;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 0;
        background: #fff;
    }

    .site-nav > a {
        display: none;
        height: 50px;
        padding: 0 5px;
        border: 0;
        border-left: 1px solid #e4e8f0;
        color: var(--ink);
        font-size: var(--type-meta);
        text-align: center;
    }

    .site-nav > .site-nav__quick {
        display: flex;
    }

    .site-nav > .site-nav__quick:last-of-type {
        border-right: 1px solid #e4e8f0;
    }

    .site-nav > a::after {
        display: block !important;
    }

    .mobile-navigation {
        position: fixed;
        z-index: 110;
        top: 110px;
        right: 0;
        left: 0;
        display: none;
        height: calc(100dvh - 110px);
        align-items: stretch;
        flex-direction: column;
        overflow-y: auto;
        padding: 20px 24px 34px;
        background: var(--ink);
    }

    .mobile-navigation.is-open {
        display: flex;
    }

    .mobile-navigation a {
        padding: 17px 2px;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        color: #fff;
        font-size: var(--type-control);
        font-weight: 700;
    }
}

@media (max-width: 768px) {
    .hero__inner {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
        padding-top: 16px;
        padding-bottom: 18px;
    }

    .hero-news {
        display: block;
        width: 100%;
        margin: 0 0 30px;
    }

    .search-suggestions,
    .search-suggestions--filters {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .search-suggestions--filters {
        margin: 18px 0 42px;
        padding: 0;
    }

    .search-suggestions ul,
    .search-suggestions--filters ul {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .search-suggestions a {
        min-height: 0;
    }

    .hero-news__link {
        position: relative;
        display: flex;
        max-width: none;
        flex-wrap: wrap;
        align-items: center;
        gap: 3px 10px;
        overflow: hidden;
        padding: 10px 118px 10px 14px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    }

    .hero-news__link::after {
        position: absolute;
        top: 50%;
        right: 12px;
        color: #8a93a5;
        content: "›";
        font-size: 1.05rem;
        line-height: 1;
        transform: translateY(-50%);
    }

    .hero-news__link:hover {
        transform: none;
    }

    .hero-news__thumbnail {
        position: absolute;
        top: 50%;
        right: 30px;
        width: 76px;
        margin: 0;
        transform: translateY(-50%);
    }

    .hero-news__meta {
        width: 100%;
        flex: 0 0 100%;
        justify-content: flex-start;
        gap: 10px;
        margin: 0;
    }

    .hero-news__category {
        font-size: var(--type-control);
    }

    .hero-news__date {
        font-size: var(--type-caption);
    }

    .hero-news__category::before {
        width: 8px;
        margin-right: 5px;
    }

    .hero-news__title {
        width: 100%;
        min-width: 0;
        flex: 0 0 100%;
        overflow: visible;
        font-size: var(--type-body);
        font-weight: 700;
        line-height: 1.4;
        text-overflow: clip;
        white-space: normal;
    }

    .page-home .hero .hero__actions,
    .search-dock,
    .page-home .section--opportunities .section-heading {
        display: none !important;
    }

    .hero__lead {
        margin-bottom: 0;
    }

    .page-home .section--opportunities {
        padding-top: 18px;
        border-top: 0;
    }

    .opportunity-grid--home {
        width: calc(100% + 18px);
        grid-auto-columns: 80%;
        padding: 29px 18px 15px 0;
        scroll-padding-left: 2px;
        scrollbar-width: none;
    }

    .opportunity-grid--home::-webkit-scrollbar {
        display: none;
    }

    .opportunity-grid--results {
        padding-top: 29px;
    }

    .section-action--cases {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 26px;
    }

    .section-action--cases .button {
        min-width: 0;
        padding: 11px 8px;
        font-size: var(--type-control);
    }
}

@media (max-width: 420px) {
    .site-header__brand-group {
        min-width: 0;
    }

    .header-search--mobile,
    .menu-toggle {
        width: 42px;
        min-width: 42px;
    }

    .opportunity-grid--home {
        width: calc(100% + 14px);
        grid-auto-columns: 80%;
        padding-right: 14px;
    }
}

/* Japanese SMART-style global navigation menus */
.site-header__nav-row {
    position: relative;
}

.site-nav__dropdown {
    position: static;
    height: 46px;
    color: var(--ink);
}

.site-nav__dropdown > summary {
    position: relative;
    display: flex;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(14px, 2vw, 30px);
    color: inherit;
    cursor: pointer;
    font-size: var(--type-control);
    font-weight: 700;
    list-style: none;
    white-space: nowrap;
}

.site-nav__dropdown > summary::-webkit-details-marker {
    display: none;
}

.site-nav__dropdown > summary::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--blue);
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .2s ease;
}

.site-nav__dropdown > summary > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.site-nav__dropdown > summary > span::after {
    display: block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s ease;
}

.site-nav__dropdown[open] > summary,
.site-nav__dropdown > summary:hover,
.site-nav__dropdown > summary:focus-visible {
    color: var(--blue);
}

.site-nav__dropdown[open] > summary::after,
.site-nav__dropdown > summary:hover::after,
.site-nav__dropdown > summary:focus-visible::after {
    transform: scaleX(1);
}

.site-nav__dropdown[open] > summary > span::after {
    transform: translateY(2px) rotate(225deg);
}

.site-nav__dropdown > summary:focus-visible {
    outline: 2px solid rgba(10, 50, 145, .25);
    outline-offset: -3px;
}

.site-nav__dropdown-panel {
    position: absolute;
    z-index: 120;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - 118px);
    max-height: calc(100dvh - 118px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-top: 1px solid #e4e8f0;
    border-bottom: 1px solid #d9dfeb;
    background: #fff;
    box-shadow: 0 22px 34px rgba(20, 32, 52, .12);
}

.site-nav__dropdown-inner {
    padding-top: 24px;
    padding-bottom: 28px;
}

.site-nav__dropdown-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 16px;
}

.site-nav__dropdown-heading > div {
    display: grid;
    gap: 2px;
}

.site-nav__dropdown-heading > div > span {
    color: #858f9f;
    font-size: var(--type-caption);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-nav__dropdown-heading strong {
    color: var(--ink);
    font-size: 1.2rem;
    line-height: 1.35;
}

.site-nav__dropdown-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--blue);
    font-size: var(--type-control);
    font-weight: 700;
}

.site-nav__dropdown-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 8px;
    list-style: none;
}

.site-nav__dropdown-list--industry {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-nav__dropdown-list--location {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-nav__dropdown-list a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 12px;
    border: 1px solid #e1e6f0;
    background: #fff;
    color: var(--ink);
    font-size: var(--type-control);
    font-weight: 700;
    line-height: 1.35;
    transition: border-color .2s ease, color .2s ease;
}

.site-nav__dropdown-list--location a {
    min-height: 72px;
    align-items: flex-start;
}

.site-nav__dropdown-list a:hover,
.site-nav__dropdown-list a:focus-visible {
    border-color: var(--blue);
    color: var(--blue);
    outline: 0;
}

.site-nav__dropdown-industry-main {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
}

.site-nav__dropdown-industry-main > span:last-child {
    min-width: 0;
}

.site-nav__dropdown-industry-icon {
    display: block;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    object-fit: contain;
    transition: opacity .2s ease, transform .2s ease;
}

.site-nav__dropdown-list a:hover .site-nav__dropdown-industry-icon,
.site-nav__dropdown-list a:focus-visible .site-nav__dropdown-industry-icon {
    transform: translateY(-1px);
}

.site-nav__dropdown-location-text {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.site-nav__dropdown-list small.site-nav__dropdown-location-help {
    flex: initial;
    color: #66758a;
    font-size: var(--type-caption);
    font-weight: 500;
    line-height: 1.45;
    white-space: normal;
}

.site-nav__dropdown-list small {
    flex: 0 0 auto;
    color: #6e7b8e;
    font-size: var(--type-caption);
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 1080px) and (min-width: 861px) {
    .site-nav__dropdown-list--industry {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .site-nav > .site-nav__dropdown.site-nav__quick {
        display: block;
        height: 50px;
        border-left: 1px solid #e4e8f0;
    }

    .site-nav__dropdown > summary {
        width: 100%;
        height: 50px;
        padding: 0 4px;
        font-size: var(--type-meta);
        text-align: center;
    }

    .site-nav__dropdown > summary > span {
        gap: 5px;
    }

    .site-nav__dropdown-panel {
        top: 100%;
        max-height: calc(100vh - 110px);
        max-height: calc(100dvh - 110px);
    }

    .site-nav__dropdown-inner {
        padding-top: 18px;
        padding-bottom: 22px;
    }

    .site-nav__dropdown-heading {
        align-items: center;
        margin-bottom: 13px;
    }

    .site-nav__dropdown-heading strong {
        font-size: 1rem;
    }

    .site-nav__dropdown-list--industry,
    .site-nav__dropdown-list--location {
        grid-template-columns: 1fr;
    }

    .site-nav__dropdown-list a {
        min-height: 44px;
        padding: 8px 10px;
        font-size: var(--type-control);
    }

    .site-nav__dropdown-industry-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 420px) {
    .site-nav__dropdown > summary,
    .site-nav > a {
        font-size: var(--type-meta);
    }

    .site-nav__dropdown-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 520px) {
    .strike-brand img {
        width: 82px;
    }

    .smart-brand__lockup img,
    .smart-brand img {
        width: 68px;
    }

    .site-header__brand-group {
        gap: 6px;
    }

    .smart-brand__lockup {
        gap: 5px;
    }

    .smart-brand__copy {
        gap: 0;
    }

    .header-search--mobile,
    .menu-toggle {
        width: 42px;
        min-width: 42px;
    }
}

@media (max-width: 450px) {
    .strike-brand img {
        width: 72px;
    }

    .smart-brand__lockup img,
    .smart-brand img {
        width: 60px;
    }

    .site-header__brand-group {
        gap: 5px;
    }

    .smart-brand__lockup {
        gap: 3px;
    }

    .header-search--mobile,
    .menu-toggle {
        width: 34px;
        min-width: 34px;
    }
}

@media (max-width: 370px) {
    .strike-brand img {
        width: 64px;
    }

    .smart-brand__lockup img,
    .smart-brand img {
        width: 52px;
    }

    .site-header__brand-group {
        gap: 4px;
    }

    .smart-brand__lockup {
        gap: 2px;
    }

    .smart-brand__copy {
        gap: 0;
    }

    .header-search--mobile,
    .menu-toggle {
        width: 32px;
        min-width: 32px;
    }
}

@media (max-width: 340px) {
    .strike-brand img {
        width: 58px;
    }

    .smart-brand__lockup img,
    .smart-brand img {
        width: 46px;
    }

    .site-header__brand-group {
        gap: 3px;
    }

    .smart-brand__lockup {
        gap: 2px;
    }

    .header-search--mobile,
    .menu-toggle {
        width: 30px;
        min-width: 30px;
    }
}
