:root {
    --canvas: #f7f4ec;
    --canvas-deep: #eee9dd;
    --ink: #071a2d;
    --ink-raised: #0e2942;
    --orange: #ff5a36;
    --orange-text: #b93218;
    --orange-soft: #ffb09d;
    --blue: #4569dc;
    --blue-deep: #2447b2;
    --blue-pale: #e3e9f7;
    --white: #fffefa;
    --text-muted: #56616d;
    --line: rgba(7, 26, 45, 0.16);
    --line-light: rgba(255, 255, 255, 0.16);
    --content-width: 1180px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ease-out: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
    min-width: 320px;
    scroll-behavior: smooth;
    background: var(--canvas);
}

body {
    min-height: 100vh;
    margin: 0;
    background:
        linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(7, 26, 45, 0.025) 50%, transparent calc(50% + 1px)),
        radial-gradient(circle at 100% 0, rgba(69, 105, 220, 0.09), transparent 32rem),
        var(--canvas);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 14px;
    left: 14px;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    background: var(--ink);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 750;
    text-decoration: none;
    transform: translateY(-180%);
    transition: transform 160ms var(--ease-out);
}

.skip-link:focus {
    transform: translateY(0);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: relative;
    border-bottom: 1px solid var(--line);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: max(16px, calc((100% - var(--content-width)) / 2));
    width: 72px;
    height: 2px;
    background: var(--orange);
}

.site-header__inner,
main,
.site-footer {
    width: min(calc(100% - 40px), var(--content-width));
    margin-inline: auto;
}

.site-header__inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    width: clamp(208px, 23vw, 270px);
}

.brand img {
    display: block;
    width: 100%;
    height: auto;
}

.since-badge {
    position: relative;
    margin: 0;
    padding-left: 18px;
    color: #33475a;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.since-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--orange);
    transform: translateY(-50%) rotate(45deg);
}

main {
    padding-top: clamp(38px, 5.5vw, 66px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
    grid-template-rows: auto auto;
    column-gap: clamp(46px, 8vw, 112px);
    align-items: end;
    padding-bottom: clamp(32px, 4.5vw, 52px);
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    grid-column: 1 / -1;
    margin: 0 0 clamp(16px, 2vw, 24px);
    color: var(--orange-text);
    font-size: clamp(0.66rem, 1vw, 0.76rem);
    font-weight: 850;
    letter-spacing: 0.19em;
    line-height: 1.5;
    text-transform: uppercase;
}

.eyebrow span {
    padding-inline: 0.42em;
    color: rgba(7, 26, 45, 0.32);
}

h1 {
    margin: 0;
    font-size: clamp(3.35rem, 7.2vw, 5.8rem);
    font-weight: 780;
    letter-spacing: -0.065em;
    line-height: 0.9;
    text-wrap: balance;
}

.hero__intro {
    position: relative;
    max-width: 420px;
    margin: 0 0 2px;
    padding: 3px 0 3px 24px;
    border-left: 2px solid var(--orange);
    color: var(--text-muted);
    font-size: clamp(0.96rem, 1.35vw, 1.08rem);
    line-height: 1.7;
}

.shop-section {
    padding-top: clamp(24px, 3.2vw, 36px);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 28px);
}

.shop-card-shell {
    min-width: 0;
}

.shop-card {
    position: relative;
    min-height: 398px;
    height: 100%;
    padding: clamp(27px, 3vw, 38px);
    border: 1px solid transparent;
    border-radius: 18px;
    display: block;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    isolation: isolate;
    transform: translateY(0);
    transition:
        transform 220ms var(--ease-out),
        border-color 220ms var(--ease-out),
        box-shadow 220ms var(--ease-out);
}

.shop-card::before,
.shop-card::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.shop-card::before {
    z-index: 3;
    top: 0;
    left: clamp(27px, 3vw, 38px);
    width: 76px;
    height: 3px;
    background: var(--orange);
}

.shop-card::after {
    z-index: 0;
    inset: 0;
    opacity: 0.8;
}

.shop-card:hover {
    transform: translateY(-4px);
}

.shop-card:focus-visible {
    outline: none;
    transform: translateY(-2px);
    box-shadow:
        0 0 0 3px var(--canvas),
        0 0 0 6px var(--orange),
        0 30px 70px -34px rgba(7, 26, 45, 0.65);
}

.shop-main {
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(145deg, #061725 0%, var(--ink-raised) 100%);
    color: var(--white);
    box-shadow: 0 28px 64px -36px rgba(7, 26, 45, 0.85);
}

.shop-main::after {
    background:
        linear-gradient(115deg, transparent 45%, rgba(255, 90, 54, 0.07) 72%, rgba(255, 90, 54, 0.17) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: auto, 42px 100%;
}

.shop-main:hover {
    border-color: rgba(255, 90, 54, 0.62);
    box-shadow: 0 35px 76px -38px rgba(7, 26, 45, 0.95);
}

.shop-outlet {
    border-color: rgba(36, 71, 178, 0.22);
    background: linear-gradient(145deg, #edf1f9 0%, #dbe3f5 100%);
    color: var(--ink);
    box-shadow: 0 28px 64px -40px rgba(34, 65, 145, 0.55);
}

.shop-outlet::before {
    background: var(--blue);
}

.shop-outlet::after {
    background:
        linear-gradient(115deg, transparent 44%, rgba(69, 105, 220, 0.08) 72%, rgba(69, 105, 220, 0.18) 100%),
        linear-gradient(90deg, rgba(7, 26, 45, 0.035) 1px, transparent 1px);
    background-size: auto, 42px 100%;
}

.shop-outlet:hover {
    border-color: rgba(36, 71, 178, 0.52);
    box-shadow: 0 35px 76px -40px rgba(34, 65, 145, 0.72);
}

.shop-outlet:focus-visible {
    box-shadow:
        0 0 0 3px var(--canvas),
        0 0 0 6px var(--blue),
        0 30px 70px -34px rgba(34, 65, 145, 0.72);
}

.shop-card__content {
    position: relative;
    z-index: 2;
    min-height: 320px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.shop-card__meta {
    width: 100%;
    padding-bottom: 21px;
    border-bottom: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.shop-main .shop-card__meta {
    border-bottom-color: var(--line-light);
}

.shop-outlet .shop-card__meta {
    border-bottom-color: rgba(7, 26, 45, 0.14);
}

.shop-card__number {
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.2em;
}

.shop-main .shop-card__number {
    color: var(--orange-soft);
}

.shop-outlet .shop-card__number {
    color: var(--blue-deep);
}

.shop-card__badge {
    padding-left: 12px;
    border-left: 2px solid currentColor;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.25;
    text-align: right;
    text-transform: uppercase;
}

.shop-main .shop-card__badge {
    color: rgba(255, 255, 255, 0.7);
}

.shop-outlet .shop-card__badge {
    color: #324762;
}

.shop-card__copy {
    max-width: 78%;
    margin-top: clamp(29px, 3.4vw, 40px);
    display: block;
}

.shop-card__title {
    margin: 0;
    display: block;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 760;
    letter-spacing: -0.052em;
    line-height: 1.02;
    text-wrap: balance;
}

.shop-card__description {
    max-width: 420px;
    margin-top: 13px;
    display: block;
    font-size: 0.91rem;
    line-height: 1.65;
}

.shop-main .shop-card__description {
    color: rgba(255, 255, 255, 0.66);
}

.shop-outlet .shop-card__description {
    color: #465870;
}

.shop-card__benefits {
    width: 100%;
    margin: 27px 0 28px;
    padding: 0;
    display: grid;
    gap: 7px;
    list-style: none;
    font-size: 0.78rem;
    font-weight: 590;
}

.shop-card__benefits li {
    position: relative;
    padding-left: 23px;
}

.shop-card__benefits li::before {
    content: '';
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 12px;
    height: 1px;
    background: currentColor;
}

.shop-main .shop-card__benefits {
    color: rgba(255, 255, 255, 0.82);
}

.shop-main .shop-card__benefits li::before {
    background: var(--orange);
}

.shop-outlet .shop-card__benefits {
    color: #2f435b;
}

.shop-outlet .shop-card__benefits li::before {
    background: var(--blue);
}

.shop-card__cta {
    width: min(100%, 240px);
    min-height: 48px;
    margin-top: auto;
    padding: 0 0 0 18px;
    border: 1px solid transparent;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.shop-card__cta > span {
    width: 48px;
    align-self: stretch;
    border-left: 1px solid currentColor;
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    line-height: 1;
    transition: transform 180ms var(--ease-out);
}

.shop-main .shop-card__cta {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--ink);
}

.shop-outlet .shop-card__cta {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.shop-main:hover .shop-card__cta,
.shop-main:focus-visible .shop-card__cta {
    border-color: var(--white);
    background: var(--white);
}

.shop-outlet:hover .shop-card__cta,
.shop-outlet:focus-visible .shop-card__cta {
    border-color: var(--blue);
    background: var(--blue);
}

.shop-card:hover .shop-card__cta > span,
.shop-card:focus-visible .shop-card__cta > span {
    transform: translateX(3px);
}

.shop-card__art {
    position: absolute;
    z-index: 1;
    top: 82px;
    right: -38px;
    width: 226px;
    height: 214px;
    border: 0;
    border-radius: 0;
    display: block;
    overflow: hidden;
    color: currentColor;
    opacity: 0.15;
    transform: skewX(-9deg);
}

.shop-card__art,
.shop-card__art::before {
    background: repeating-linear-gradient(90deg, currentColor 0 1px, transparent 1px 17px);
}

.shop-card__art::before,
.shop-card__art::after,
.shop-card__art span {
    content: '';
    position: absolute;
    display: block;
}

.shop-card__art::before {
    inset: 26px 30px;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    opacity: 0.92;
}

.shop-card__art::after {
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: currentColor;
}

.shop-card__art span {
    right: 38px;
    bottom: 36px;
    width: 66px;
    height: 12px;
    background: currentColor;
}

.shop-main .shop-card__art {
    color: var(--orange);
    opacity: 0.2;
}

.shop-outlet .shop-card__art {
    top: 66px;
    color: var(--blue-deep);
    opacity: 0.17;
    transform: skewX(9deg);
}

.about {
    margin-top: clamp(48px, 7vw, 82px);
    padding-block: clamp(42px, 6vw, 68px);
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(44px, 8vw, 112px);
    align-items: start;
}

.about__label {
    margin: 0 0 18px;
    color: var(--orange-text);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.about__label span {
    padding-inline: 0.5em;
    color: rgba(7, 26, 45, 0.3);
}

.about h2 {
    max-width: 540px;
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 3.55rem);
    font-weight: 760;
    letter-spacing: -0.052em;
    line-height: 1.03;
    text-wrap: balance;
}

.about__copy {
    display: grid;
    gap: 20px;
}

.about__copy p {
    max-width: 590px;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.8;
}

.about__copy p:first-child {
    color: #273b4e;
    font-size: 1.04rem;
    font-weight: 560;
}

.about + .trust {
    margin-top: 0;
}

.trust {
    margin-top: clamp(30px, 4.2vw, 48px);
    padding: 20px clamp(20px, 3vw, 30px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: var(--ink);
    color: var(--white);
}

.trust p {
    margin: 0;
    font-size: 0.83rem;
    font-weight: 760;
    letter-spacing: -0.01em;
}

.trust ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.64rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    list-style: none;
    text-transform: uppercase;
}

.trust li {
    display: flex;
    align-items: center;
}

.trust li + li::before {
    content: '';
    width: 1px;
    height: 14px;
    margin-inline: 18px;
    background: rgba(255, 255, 255, 0.2);
}

.site-footer {
    min-height: 78px;
    display: flex;
    align-items: center;
}

.site-footer p {
    margin: 0;
    color: #525e69;
    font-size: 0.67rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer span {
    padding-inline: 0.45em;
    color: var(--orange);
}

@media (max-width: 920px) {
    .hero {
        grid-template-columns: minmax(0, 1.25fr) minmax(245px, 0.75fr);
        column-gap: 42px;
    }

    .shop-card__copy {
        max-width: 86%;
    }
}

@media (max-width: 760px) {
    .site-header__inner {
        min-height: 78px;
    }

    .brand {
        width: clamp(184px, 53vw, 226px);
    }

    main {
        padding-top: 34px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-bottom: 34px;
    }

    .eyebrow,
    h1,
    .hero__intro {
        grid-column: 1;
    }

    .hero__intro {
        max-width: 560px;
        margin-top: 24px;
    }

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

    .shop-card {
        min-height: 390px;
    }

    .shop-card__copy {
        max-width: 74%;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .trust ul {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .site-header__inner,
    main,
    .site-footer {
        width: calc(100% - 32px);
    }

    .site-header::after {
        left: 16px;
    }

    .since-badge {
        padding-left: 14px;
        font-size: 0.58rem;
        letter-spacing: 0.11em;
    }

    .shop-card {
        min-height: 0;
        padding: 25px 22px;
    }

    .shop-card::before {
        left: 22px;
        width: 54px;
    }

    .shop-card__content {
        min-height: 350px;
    }

    .shop-card__copy {
        max-width: 100%;
    }

    .shop-card__description {
        max-width: 88%;
    }

    .shop-card__art {
        right: -92px;
        opacity: 0.09;
    }

    .shop-card__cta {
        width: 100%;
    }

    .trust li + li::before {
        margin-inline: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
