.sight-page {
    --sight-text: #1d1d1f;
    --sight-muted: #4f5257;
    --sight-soft: #f5f5f5;
    --sight-soft-alt: #e4e4e6;
    --sight-dark: #3f3f42;
    --sight-darker: #202023;
    --sight-accent: #101013;
    background: #ffffff;
    color: var(--sight-text);
    overflow: hidden;
}

.sight-page section {
    padding: clamp(72px, 9vw, 120px) 0;
}

.sight-container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.sight-container--wide {
    width: min(1240px, 94vw);
}

.sight-container--split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(32px, 6vw, 72px);
}

.sight-hero {
    background: #ffffff;
    color: var(--sight-text);
    position: relative;
    overflow: hidden;
    padding: clamp(120px, 18vw, 180px) 0;
}

.sight-hero::after {
    display: none;
}

.sight-hero .sight-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(24px, 6vw, 48px);
    z-index: 1;
}

.sight-hero__body {
    max-width: min(640px, 90vw);
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(16px, 3vw, 24px);
    width: 100%;
}

.sight-hero__title {
    font-size: clamp(4rem, 6vw, 5.6rem);
    font-weight: 700;
    margin: 28px 0 24px;
    line-height: 1.12;
    color: var(--sight-text);
}

.sight-hero__title-break {
    display: block;
}

.sight-hero__lead {
    font-size: clamp(1.6rem, 2vw, 1.9rem);
    line-height: 1.7;
    margin-bottom: 0;
    width: 100% !important;
    max-width: none !important;
    flex: 0 0 100%;
    align-self: stretch;
    text-align: center;
    color: var(--sight-muted);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.sight-page .sight-hero__lead {
    margin-bottom: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

.sight-hero__actions,
.sight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
}

.sight-hero__actions {
    justify-content: center;
}

.sight-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 999px;
    border: 1px solid var(--sight-accent);
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    cursor: pointer;
    color: var(--sight-accent);
    background: transparent;
}

.sight-button--primary {
    background: var(--sight-accent);
    color: #ffffff;
    box-shadow: none;
}

.sight-button--primary:hover {
    transform: translateY(-1px);
    background: #1a1a1f;
}

.sight-button--ghost {
    background: transparent;
    color: var(--sight-accent);
    border-color: var(--sight-accent);
}

.sight-button--ghost:hover {
    background: var(--sight-accent);
    color: #ffffff;
}

.sight-button--inverse {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

.sight-button--inverse:hover {
    background: rgba(255, 255, 255, 0.08);
}

.sight-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sight-accent);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.sight-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: currentColor;
    opacity: 0.45;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform-origin: left center;
}

.sight-actions .sight-link::after {
    content: none;
}

.sight-link:hover::after {
    opacity: 1;
    transform: scaleX(1.04);
}

.sight-visual-card {
    background: #f3f3f4;
    border-radius: 20px;
    padding: 0;
    border: 1px solid var(--sight-soft-alt);
    box-shadow: none;
}

.sight-visual-card--large {
    padding: clamp(20px, 3vw, 36px);
}

.sight-visual-card--shadow {
    box-shadow: 0 12px 40px rgba(20, 21, 23, 0.08);
    border: 1px solid rgba(20, 21, 23, 0.06);
    background: #ffffff;
}

.sight-visual-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.sight-section__visual,
.sight-feature__visual,
.sight-hero__visual {
    display: flex;
    justify-content: center;
    width: 100%;
}

.sight-hero__visual .sight-visual-card,
.sight-feature__visual .sight-visual-card {
    width: min(520px, 100%);
}

.sight-hero__visual {
    display: none;
}

.sight-section__title {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    line-height: 1.25;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--sight-text);
}

.sight-section__body,
.sight-feature__intro {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--sight-muted);
}

.sight-list {
    list-style: none;
    padding: 0;
    margin: clamp(28px, 4vw, 40px) 0;
    display: grid;
    gap: 16px;
}

.sight-list--columns {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sight-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    color: var(--sight-text);
}

.sight-list__item .material-symbols-rounded {
    font-size: 2.4rem;
    color: var(--sight-accent);
    line-height: 1;
    margin-top: 2px;
}

.sight-data {
    background: #4a4a4d;
    color: #ffffff;
    border-top: none;
}

.sight-data .sight-section__body,
.sight-data .sight-list__item {
    color: rgba(255, 255, 255, 0.8);
}

.sight-data .sight-list__item .material-symbols-rounded {
    color: rgba(255, 255, 255, 0.8);
}

.sight-data .sight-section__title {
    color: #ffffff;
}

.sight-data .sight-link {
    color: rgba(255, 255, 255, 0.9);
}

.sight-data .sight-link::after {
    background: currentColor;
}

.sight-data .sight-visual-card {
    background: #1e2732;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sight-data .sight-section__content {
    max-width: 520px;
}

.sight-data .sight-container--split {
    align-items: start;
}

.sight-insights {
    background: #ffffff;
}

.sight-insights .sight-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(32px, 6vw, 56px);
}

.sight-insights__header {
    max-width: min(720px, 90vw);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 18px);
}

.sight-insights__header .sight-section__title {
    margin-bottom: 0;
}

.sight-insights__visual {
    width: 100%;
}

.sight-insights__visual .sight-visual-card {
    max-width: min(960px, 100%);
    margin: 0 auto;
    border-radius: 32px;
    border: none;
    background: #081a35;
    box-shadow: 0 24px 60px rgba(13, 23, 46, 0.25);
    overflow: hidden;
}

.sight-insights__visual .sight-visual-card img {
    display: block;
}

.sight-feature {
    background: var(--sight-soft);
    color: var(--sight-text);
}

.sight-feature__title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 16px;
    color: inherit;
}

.sight-feature__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sight-feature--dark {
    background: var(--sight-dark);
    color: #ffffff;
}

.sight-feature--dark .sight-feature__intro,
.sight-feature--dark .sight-list__item,
.sight-feature--dark .sight-link {
    color: rgba(255, 255, 255, 0.78);
}

.sight-feature--dark .sight-list__item .material-symbols-rounded {
    color: rgba(255, 255, 255, 0.85);
}

.sight-feature--dark .sight-visual-card {
    background: #24262b;
    border-color: rgba(255, 255, 255, 0.06);
}

.sight-feature--kpi .sight-container--split {
    align-items: center;
    gap: clamp(32px, 7vw, 88px);
}

.sight-feature--kpi .sight-feature__visual {
    display: flex;
    justify-content: center;
}

.sight-feature--kpi .sight-visual-card,
#sight-correlation .sight-visual-card,
#sight-impact .sight-visual-card {
    max-width: min(520px, 46vw);
    width: 100%;
    border-radius: 32px;
    border: none;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(12, 18, 32, 0.35);
    overflow: hidden;
}

.sight-feature--kpi .sight-visual-card--large,
#sight-correlation .sight-visual-card--large,
#sight-impact .sight-visual-card--large {
    padding: 0;
}

.sight-feature--kpi .sight-visual-card img,
#sight-correlation .sight-visual-card img,
#sight-impact .sight-visual-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}

#sight-correlation .sight-list--columns,
#sight-impact .sight-list--columns {
    grid-template-columns: 1fr;
}

.sight-feature--kpi .sight-feature__body {
    max-width: 520px;
    gap: clamp(16px, 3vw, 28px);
}

.sight-feature--kpi .sight-feature__intro {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.6rem;
    line-height: 1.7;
}

.sight-feature--kpi .sight-tag {
    /* background: rgba(255, 255, 255, 0.12); */
    color: #ffffff;
}

.sight-feature--kpi .sight-list {
    margin: 8px 0 clamp(20px, 3vw, 28px);
    gap: 14px;
}

.sight-feature--kpi .sight-actions {
    gap: 18px;
}

.sight-feature--kpi .sight-button--primary {
    background: #ffffff;
    color: #2c2c2f;
    border-color: #ffffff;
}

.sight-feature--kpi .sight-button--primary:hover {
    background: #f3f3f5;
    color: #1f1f23;
}

.sight-feature--kpi .sight-link {
    color: rgba(255, 255, 255, 0.85);
}

.sight-feature--dark .sight-button--primary {
    background: #f7f7f9;
    color: var(--sight-accent);
    border-color: #f7f7f9;
}

.sight-feature--dark .sight-button--primary:hover {
    background: #e4e4e6;
    color: var(--sight-accent);
}

.sight-feature--light {
    background: #ffffff;
}

/* Trio layout - image | text | image */
.sight-feature--trio .sight-container--wide {
    width: min(1480px, 96vw);
}

.sight-trio {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: clamp(32px, 4vw, 48px);
    align-items: center;
}

.sight-trio__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sight-trio__image .sight-visual-card {
    max-width: 100%;
    width: 100%;
    border-radius: 24px;
    border: none;
    background: #ffffff;
    box-shadow: 0 24px 56px rgba(12, 18, 32, 0.32);
    overflow: hidden;
}

.sight-trio__image .sight-visual-card--large {
    padding: 0;
}

.sight-trio__image .sight-visual-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}

.sight-trio__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: clamp(8px, 2vw, 24px);
}

.sight-trio__content .sight-tag {
    color: black;
}

.sight-trio__content .sight-feature__title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin-bottom: 8px;
}

.sight-trio__content .sight-feature__intro {
    font-size: 1.6rem;
    line-height: 1.8;
}

.sight-trio__content .sight-list {
    margin: clamp(20px, 3vw, 32px) 0;
    gap: 16px;
}

.sight-trio__content .sight-actions {
    margin-top: clamp(12px, 2vw, 20px);
}

@media (max-width: 1024px) {
    .sight-trio {
        grid-template-columns: 1fr 1fr;
        gap: clamp(24px, 4vw, 40px);
    }

    .sight-trio__content {
        grid-column: 1 / -1;
        order: -1;
        max-width: 600px;
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    .sight-trio {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .sight-trio__content {
        order: 0;
    }

    .sight-trio__image:first-child {
        order: -1;
    }
}

.sight-feature--reverse .sight-container--split {
    direction: rtl;
}

.sight-feature--reverse .sight-feature__body,
.sight-feature--reverse .sight-feature__visual {
    direction: ltr;
}

.sight-strategy {
    background: #ffffff;
    border-top: 1px solid var(--sight-soft-alt);
    padding-bottom: 0;
}

.sight-strategy__header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: clamp(24px, 8vw, 120px);
    max-width: none;
    margin-bottom: clamp(56px, 9vw, 112px);
}

.sight-strategy__header .sight-section__title,
.sight-strategy__header .sight-section__body {
    margin: 0;
}

.sight-strategy__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(24px, 6vw, 80px);
    align-items: center;
}

.sight-strategy__item {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: clamp(16px, 4vw, 28px);
}

.sight-strategy__item .material-symbols-rounded {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--sight-text);
    background: transparent;
    width: clamp(48px, 5vw, 60px);
    height: clamp(48px, 5vw, 60px);
    display: grid;
    place-items: center;
}

.sight-strategy__item h3 {
    margin: 0;
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    font-weight: 600;
}

.sight-strategy .sight-gallery {
    /* margin-top: clamp(24px, 5vw, 64px); */
    padding-block-start: clamp(40px, 6vw, 72px);
    /* padding-block-end: clamp(72px, 10vw, 120px); */
    border-top: none;
}

.sight-strategy .sight-gallery .sight-container--wide {
    width: min(1200px, 96vw);
    padding-bottom: none;
}

.sight-strategy .sight-gallery .sight-gallery__viewport {
    max-width: none;
    margin: 0 auto;
}

.sight-gallery {
    background: #ffffff;
    color: var(--sight-text);
    /* padding-block: clamp(64px, 7vw, 96px); */
    border-top: 1px solid var(--sight-soft-alt);
}

.sight-gallery .sight-container--wide {
    width: 100%;
    max-width: none;
    /* padding-inline: clamp(24px, 6vw, 120px); */
}

.sight-gallery__viewport {
    position: relative;
    overflow: hidden;
    border-radius: clamp(12px, 2vw, 20px);
    outline: none;
}

.sight-gallery__viewport:focus-visible {
    outline: 2px solid var(--sight-accent);
    outline-offset: 4px;
}

.sight-gallery__track {
    display: flex;
    transform: translate3d(0, 0, 0);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.sight-gallery__item {
    flex: 0 0 100%;
    padding: 0;
}

.sight-gallery__item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: clamp(12px, 2vw, 20px);
}

.sight-gallery__pagination {
    display: flex;
    justify-content: center;
    gap: clamp(14px, 3vw, 24px);
    margin-top: clamp(28px, 4vw, 44px);
}

.sight-gallery__dot {
    appearance: none;
    border: none;
    padding: 0;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(16, 16, 19, 0.22);
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.sight-gallery__dot:hover {
    transform: scale(1.12);
}

.sight-gallery__dot.is-active {
    background: var(--sight-accent);
    transform: scale(1.35);
}

.sight-gallery__dot:focus-visible {
    outline: 2px solid var(--sight-accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .sight-gallery__track {
        transition: none;
    }
}

.sight-cta {
    background: var(--sight-soft);
}

.sight-cta__inner {
    background: #ffffff;
    color: var(--sight-text);
    border-radius: 24px;
    padding: clamp(32px, 5vw, 48px);
    display: grid;
    gap: clamp(24px, 4vw, 32px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--sight-soft-alt);
    box-shadow: none;
}

.sight-cta__copy h2 {
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
    margin-bottom: 16px;
    color: var(--sight-text);
}

.sight-cta__copy p {
    color: var(--sight-muted);
    line-height: 1.7;
}

.sight-cta__form {
    display: grid;
    gap: 24px;
}



.sight-input {
    display: grid;
    gap: 8px;
}

.sight-input__label {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sight-muted);
}

.sight-input input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--sight-soft-alt);
    padding: 16px 18px;
    font-size: 1.5rem;
    color: var(--sight-text);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sight-input input::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.sight-input input:focus {
    outline: none;
    border-color: var(--sight-accent);
    box-shadow: 0 0 0 3px rgba(16, 16, 19, 0.12);
}

.sight-cta__form .sight-button {
    width: fit-content;
}

.sight-cta__disclaimer {
    font-size: 1.3rem;
    color: var(--sight-muted);
}

.js-sight-scroll {
    scroll-behavior: smooth;
}

.sight-page [data-sight-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.sight-page [data-sight-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {

    .sight-container--split,
    .sight-cta__inner {
        grid-template-columns: 1fr;
    }

    .sight-feature--reverse .sight-container--split {
        direction: ltr;
    }

    .sight-feature__visual {
        order: -1;
    }

    .sight-cta__form .sight-button {
        width: 100%;
    }

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

@media (max-width: 640px) {
    .sight-page section {
        padding: clamp(56px, 12vw, 72px) 0;
    }

    .sight-hero__actions,
    .sight-actions {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .sight-button {
        width: 100%;
    }

}

.sight-strategy--dark {
    background: var(--sight-dark);
    color: #ffffff;
    border-top: none;
}

.sight-strategy--dark .sight-section__title,
.sight-strategy--dark h3 {
    color: #ffffff;
}

.sight-strategy--dark .sight-section__body {
    color: rgba(255, 255, 255, 0.78);
}

.sight-strategy--dark .sight-strategy__item .material-symbols-rounded {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.sight-strategy--dark .sight-gallery {
    background: var(--sight-dark);
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sight-cta--dark {
    background: var(--sight-dark);
}

.sight-cta--dark .sight-cta__inner {
    background: #24262b;
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.sight-cta--dark .sight-cta__copy h2 {
    color: #ffffff;
}

.sight-cta--dark .sight-cta__copy p {
    color: rgba(255, 255, 255, 0.78);
}