:root {
    --ck-home-navy: #173f68;
    --ck-home-blue: #246da3;
    --ck-home-sky: #eaf6ff;
    --ck-home-ink: #102a43;
    --ck-home-muted: #61758a;
    --ck-home-orange: #f5821f;
    --ck-home-yellow: #ffd85c;
    --ck-home-green: #2da889;
    --ck-home-line: #dbe6ef;
    --ck-home-surface: #f6f9fc;
}

.ck-home-refresh .site-content > .ast-container {
    display: block;
    max-width: none;
    padding: 0;
}

.ck-home-refresh #primary,
.ck-home-refresh .site-main,
.ck-home-refresh .entry-content {
    width: 100%;
    margin: 0;
}

.ck-home-refresh .entry-content > .ck-home {
    width: 100%;
    max-width: none;
    margin: 0;
}

.ck-home-refresh .entry-header,
.ck-home-refresh #secondary {
    display: none;
}

.ck-home {
    overflow: hidden;
    color: var(--ck-home-ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.ck-home a {
    color: inherit;
    text-decoration: none;
}

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

.ck-home-eyebrow {
    margin: 0 0 10px;
    color: var(--ck-home-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ck-home h1,
.ck-home h2,
.ck-home h3,
.ck-home p {
    margin-top: 0;
}

.ck-home-hero {
    padding: 54px clamp(20px, 5vw, 74px) 0;
    background:
        radial-gradient(circle at 13% 10%, rgba(255, 216, 92, .42), transparent 23%),
        radial-gradient(circle at 86% 17%, rgba(76, 184, 255, .22), transparent 25%),
        linear-gradient(180deg, #f4fbff 0%, #fff 76%);
}

.ck-home-hero__intro {
    max-width: 850px;
    margin: 0 auto 34px;
    text-align: center;
}

.ck-home-hero__intro h1 {
    max-width: 840px;
    margin: 0 auto 16px;
    color: var(--ck-home-navy);
    font-size: clamp(38px, 5.2vw, 72px);
    font-weight: 850;
    letter-spacing: -.045em;
    line-height: 1.03;
}

.ck-home-hero__intro > p:not(.ck-home-eyebrow) {
    max-width: 720px;
    margin: 0 auto;
    color: var(--ck-home-muted);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.65;
}

.ck-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.ck-home-hero__intro .ck-home-actions {
    justify-content: center;
    margin-top: 25px;
}

.ck-home-button {
    display: inline-flex;
    min-height: 48px;
    padding: 13px 22px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.ck-home-button--primary {
    color: #fff !important;
    background: var(--ck-home-navy);
    box-shadow: 0 12px 24px rgba(23, 63, 104, .18);
}

.ck-home-button--secondary {
    border-color: var(--ck-home-line);
    color: var(--ck-home-navy) !important;
    background: rgba(255, 255, 255, .8);
}

.ck-home-hero__tiles {
    display: grid;
    max-width: 1320px;
    min-height: 520px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3px;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
    box-shadow: 0 22px 55px rgba(22, 59, 91, .14);
}

.ck-home-hero-tile {
    position: relative;
    display: flex;
    min-height: 520px;
    overflow: hidden;
    align-items: flex-end;
    isolation: isolate;
}

.ck-home-hero-tile > img {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transform: scale(1.015);
    transition: filter .45s ease, transform .6s ease;
}

.ck-home-hero-tile--kites > img {
    object-position: 62% center;
}

.ck-home-hero-tile__shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 25, 42, .02) 32%, rgba(6, 25, 42, .84) 100%);
}

.ck-home-hero-tile__content {
    display: grid;
    width: 100%;
    padding: 34px;
    color: #fff;
    gap: 8px;
}

.ck-home-hero-tile__content strong {
    font-size: clamp(27px, 2.5vw, 40px);
    line-height: 1.08;
}

.ck-home-hero-tile__content small {
    max-width: 360px;
    color: rgba(255,255,255,.83);
    font-size: 14px;
    line-height: 1.55;
}

.ck-home-hero-tile__content em,
.ck-home-bento__copy em {
    margin-top: 5px;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
    .ck-home-hero-tile:hover > img {
        filter: grayscale(0);
        transform: scale(1.055);
    }
}

@media (hover: none), (pointer: coarse) {
    .ck-home-hero-tile > img {
        filter: none;
    }
}

.ck-home-proof {
    display: grid;
    max-width: 1180px;
    margin: 0 auto;
    padding: 25px 28px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--ck-home-line);
    border-top: 0;
    border-radius: 0 0 22px 22px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(22, 59, 91, .08);
}

.ck-home-proof > div {
    display: grid;
    padding: 4px 22px;
    gap: 3px;
    border-right: 1px solid var(--ck-home-line);
}

.ck-home-proof > div:last-child {
    border-right: 0;
}

.ck-home-proof strong {
    color: var(--ck-home-navy);
    font-size: 18px;
}

.ck-home-proof span {
    color: var(--ck-home-muted);
    font-size: 13px;
    line-height: 1.45;
}

.ck-home-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 104px 28px;
}

.ck-home-section__heading {
    display: grid;
    margin-bottom: 34px;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 40px;
    align-items: end;
}

.ck-home-section__heading h2,
.ck-home-oem h2,
.ck-home-final-cta h2 {
    margin-bottom: 0;
    color: var(--ck-home-navy);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 850;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.ck-home-section__heading > p {
    margin-bottom: 4px;
    color: var(--ck-home-muted);
    font-size: 16px;
    line-height: 1.7;
}

.ck-home-bento {
    display: grid;
    min-height: 730px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(220px, 1fr)) minmax(230px, .9fr);
    gap: 16px;
}

.ck-home-bento__tile {
    position: relative;
    display: flex;
    min-height: 230px;
    overflow: hidden;
    border: 1px solid rgba(23, 63, 104, .08);
    border-radius: 24px;
    align-items: flex-end;
    isolation: isolate;
    transition: transform .25s ease, box-shadow .25s ease;
}

.ck-home-bento__tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(23, 63, 104, .14);
}

.ck-home-bento__tile > img {
    position: absolute;
    z-index: -1;
    right: 2%;
    bottom: 4%;
    width: 64%;
    height: 78%;
    object-fit: contain;
    transition: transform .35s ease;
}

.ck-home-bento__tile:hover > img {
    transform: rotate(1.5deg) scale(1.04);
}

.ck-home-bento__copy {
    display: grid;
    z-index: 1;
    max-width: 58%;
    padding: 28px;
    gap: 8px;
}

.ck-home-bento__copy strong {
    color: var(--ck-home-navy);
    font-size: clamp(22px, 2vw, 31px);
    line-height: 1.12;
}

.ck-home-bento__copy small {
    color: var(--ck-home-muted);
    font-size: 14px;
    line-height: 1.55;
}

.ck-home-bento__copy em {
    color: var(--ck-home-blue);
}

.ck-home-bento__tile--diamond {
    grid-column: span 7;
    grid-row: span 2;
    background: linear-gradient(140deg, #fff5c9, #fffdfa);
}

.ck-home-bento__tile--diamond > img {
    width: 72%;
    height: 76%;
}

.ck-home-bento__tile--delta {
    grid-column: span 5;
    background: linear-gradient(140deg, #dff4ff, #f7fcff);
}

.ck-home-bento__tile--animal {
    grid-column: span 5;
    background: linear-gradient(140deg, #f2e6ff, #fff9fd);
}

.ck-home-bento__tile--rokkaku {
    grid-column: span 5;
    background: linear-gradient(140deg, #e5f7ed, #fbfffd);
}

.ck-home-bento__tile--custom {
    grid-column: span 7;
    background: linear-gradient(140deg, #ffe6d4, #fffaf5);
}

.ck-home-featured {
    max-width: none;
    padding-right: max(28px, calc((100vw - 1184px) / 2));
    padding-left: max(28px, calc((100vw - 1184px) / 2));
    background: var(--ck-home-surface);
}

.ck-home-section__heading--products {
    grid-template-columns: minmax(0, 1fr) auto;
}

.ck-home-section__heading--products > a {
    padding-bottom: 7px;
    color: var(--ck-home-blue);
    font-size: 15px;
    font-weight: 800;
}

.ck-home-finder {
    display: flex;
    margin: -4px 0 28px;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
}

.ck-home-finder > span {
    margin-right: 4px;
    color: var(--ck-home-muted);
    font-size: 14px;
    font-weight: 700;
}

.ck-home-finder button {
    min-height: 40px;
    padding: 9px 15px;
    border: 1px solid var(--ck-home-line);
    border-radius: 999px;
    color: var(--ck-home-navy);
    background: #fff;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.ck-home-finder button[aria-pressed="true"] {
    border-color: var(--ck-home-navy);
    color: #fff;
    background: var(--ck-home-navy);
}

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

.ck-home-product {
    display: flex;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--ck-home-line);
    border-radius: 20px;
    background: #fff;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease;
}

.ck-home-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(23, 63, 104, .12);
}

.ck-home-product__image {
    position: relative;
    display: grid;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 18px;
    place-items: center;
    background: linear-gradient(145deg, #eef4f9, #fff);
}

.ck-home-product__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
}

.ck-home-product:hover .ck-home-product__image img {
    transform: scale(1.035);
}

.ck-home-product__image > span {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--ck-home-navy);
    background: rgba(255,255,255,.9);
    box-shadow: 0 5px 15px rgba(23,63,104,.08);
    font-size: 11px;
    font-weight: 800;
}

.ck-home-product__body {
    display: flex;
    padding: 19px;
    flex: 1;
    flex-direction: column;
}

.ck-home-product__model,
.ck-home-product__note {
    color: var(--ck-home-muted);
    font-size: 12px;
}

.ck-home-product__model {
    margin-bottom: 7px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.ck-home-product h3 {
    margin: 0 0 8px;
    color: var(--ck-home-navy);
    font-size: 19px;
    font-weight: 820;
    line-height: 1.25;
}

.ck-home-product h3 a:hover {
    color: var(--ck-home-orange);
}

.ck-home-product__note {
    margin-bottom: 16px;
}

.ck-home-product__actions {
    display: grid;
    margin-top: auto;
    grid-template-columns: .8fr 1.2fr;
    gap: 8px;
}

.ck-home-product__actions a,
.ck-home-product__actions button {
    display: inline-flex;
    min-height: 42px;
    padding: 10px 9px;
    border: 1px solid var(--ck-home-line);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
}

.ck-home-product__actions a {
    color: var(--ck-home-navy);
    background: #fff;
}

.ck-home-product__actions button {
    border-color: var(--ck-home-navy);
    color: #fff;
    background: var(--ck-home-navy);
}

.ck-home-product__actions button.is-added {
    border-color: var(--ck-home-green);
    background: var(--ck-home-green);
}

.ck-home-product__feedback {
    min-height: 16px;
    margin: 8px 0 -5px;
    color: var(--ck-home-green);
    font-size: 11px;
    line-height: 1.35;
}

.ck-home-oem {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 70px;
    align-items: center;
}

.ck-home-oem__intro > p:not(.ck-home-eyebrow) {
    margin: 20px 0 24px;
    color: var(--ck-home-muted);
    font-size: 16px;
    line-height: 1.75;
}

.ck-home-process {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
}

.ck-home-process li {
    display: grid;
    min-height: 170px;
    padding: 23px;
    border: 1px solid var(--ck-home-line);
    border-radius: 18px;
    background: #fff;
    grid-template-columns: auto 1fr;
    gap: 14px;
}

.ck-home-process li > span {
    display: grid;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    color: var(--ck-home-navy);
    background: var(--ck-home-yellow);
    place-items: center;
    font-size: 12px;
    font-weight: 850;
}

.ck-home-process strong {
    display: block;
    margin: 5px 0 8px;
    color: var(--ck-home-navy);
    font-size: 17px;
}

.ck-home-process p {
    margin-bottom: 0;
    color: var(--ck-home-muted);
    font-size: 13px;
    line-height: 1.55;
}

.ck-home-final-cta {
    display: grid;
    max-width: 1240px;
    margin: 0 auto 90px;
    padding: 54px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 0, rgba(255,216,92,.32), transparent 28%),
        linear-gradient(135deg, #173f68, #246da3);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 46px;
    align-items: center;
}

.ck-home-final-cta .ck-home-eyebrow {
    color: var(--ck-home-yellow);
}

.ck-home-final-cta h2 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(30px, 3.5vw, 48px);
}

.ck-home-final-cta p:not(.ck-home-eyebrow) {
    max-width: 720px;
    margin: 17px 0 0;
    color: rgba(255,255,255,.78);
    line-height: 1.65;
}

.ck-home-button--light {
    color: var(--ck-home-navy) !important;
    background: #fff;
}

.ck-home-button--orange {
    color: #fff !important;
    background: var(--ck-home-orange);
}

.ck-home a:focus-visible,
.ck-home button:focus-visible {
    outline: 3px solid var(--ck-home-yellow);
    outline-offset: 3px;
}

@media (max-width: 1050px) {
    .ck-home-hero__tiles {
        min-height: 440px;
    }
    .ck-home-hero-tile {
        min-height: 440px;
    }
    .ck-home-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ck-home-proof > div:nth-child(2) {
        border-right: 0;
    }
    .ck-home-proof > div:nth-child(n+3) {
        padding-top: 16px;
        border-top: 1px solid var(--ck-home-line);
    }
    .ck-home-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ck-home-oem {
        gap: 40px;
    }
    .ck-home-final-cta {
        margin-right: 28px;
        margin-left: 28px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .ck-home-hero {
        padding: 38px 16px 0;
    }
    .ck-home-hero__intro {
        margin-bottom: 25px;
    }
    .ck-home-hero__intro h1 {
        font-size: clamp(36px, 11vw, 51px);
    }
    .ck-home-actions,
    .ck-home-hero__intro .ck-home-actions {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
    }
    .ck-home-hero__tiles {
        min-height: 0;
        grid-template-columns: 1fr;
        border-radius: 22px 22px 0 0;
    }
    .ck-home-hero-tile {
        min-height: 335px;
    }
    .ck-home-hero-tile > img {
        filter: none;
    }
    .ck-home-hero-tile__content {
        padding: 25px;
    }
    .ck-home-proof {
        margin-right: 16px;
        margin-left: 16px;
        padding: 18px;
        grid-template-columns: 1fr;
    }
    .ck-home-proof > div,
    .ck-home-proof > div:nth-child(n+3) {
        padding: 12px 6px;
        border-top: 1px solid var(--ck-home-line);
        border-right: 0;
    }
    .ck-home-proof > div:first-child {
        border-top: 0;
    }
    .ck-home-section {
        padding: 76px 18px;
    }
    .ck-home-section__heading,
    .ck-home-section__heading--products {
        grid-template-columns: 1fr;
        gap: 17px;
    }
    .ck-home-section__heading h2,
    .ck-home-oem h2,
    .ck-home-final-cta h2 {
        font-size: clamp(31px, 9vw, 42px);
    }
    .ck-home-bento {
        display: grid;
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }
    .ck-home-bento__tile,
    .ck-home-bento__tile--diamond,
    .ck-home-bento__tile--delta,
    .ck-home-bento__tile--animal,
    .ck-home-bento__tile--rokkaku,
    .ck-home-bento__tile--custom {
        min-height: 330px;
        grid-column: auto;
        grid-row: auto;
    }
    .ck-home-bento__copy {
        max-width: 72%;
        padding: 22px;
    }
    .ck-home-bento__tile > img,
    .ck-home-bento__tile--diamond > img {
        width: 67%;
        height: 68%;
    }
    .ck-home-featured {
        padding-right: 18px;
        padding-left: 18px;
    }
    .ck-home-finder {
        overflow-x: auto;
        padding-bottom: 7px;
        flex-wrap: nowrap;
        scrollbar-width: thin;
    }
    .ck-home-finder > span,
    .ck-home-finder button {
        flex: 0 0 auto;
    }
    .ck-home-products {
        grid-template-columns: 1fr;
    }
    .ck-home-product {
        max-width: 520px;
        margin: 0 auto;
    }
    .ck-home-oem {
        grid-template-columns: 1fr;
    }
    .ck-home-process {
        grid-template-columns: 1fr;
    }
    .ck-home-process li {
        min-height: 0;
    }
    .ck-home-final-cta {
        margin: 0 16px 68px;
        padding: 34px 23px;
        border-radius: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ck-home *,
    .ck-home *::before,
    .ck-home *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}
