:root {
    --sf-bg: #f7f8fc;
    --sf-surface: #ffffff;
    --sf-surface-soft: #f2f5fb;
    --sf-text: #111827;
    --sf-muted: #667085;
    --sf-subtle: #98a2b3;
    --sf-line: #e4e8f0;
    --sf-line-strong: #d4dae6;
    --sf-primary: #5b5cf0;
    --sf-primary-dark: #4745dd;
    --sf-cyan: #0eacd0;
    --sf-teal: #0c8f85;
    --sf-green: #16a36a;
    --sf-amber: #d98a12;
    --sf-danger: #e3495b;
    --sf-navy: #101a33;
    --sf-container: 1240px;
    --sf-shadow-sm: 0 8px 24px rgba(16, 24, 40, .06);
    --sf-shadow-md: 0 18px 55px rgba(16, 24, 40, .10);
    --sf-shadow-lg: 0 30px 80px rgba(15, 23, 42, .16);
    --sf-radius-sm: 12px;
    --sf-radius: 18px;
    --sf-radius-lg: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--sf-text);
    background:
        radial-gradient(circle at 8% 9%, rgba(39, 191, 226, .10), transparent 24rem),
        radial-gradient(circle at 92% 7%, rgba(111, 91, 244, .11), transparent 28rem),
        var(--sf-bg);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: .35;
    background-image:
        linear-gradient(rgba(66, 78, 110, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(66, 78, 110, .035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, #000 0, transparent 78%);
}

button,
input,
a {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

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

img,
svg {
    display: block;
}

[hidden] {
    display: none !important;
}

.sf-icon {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
}

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

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

.sf-skip-link {
    position: fixed;
    top: 10px;
    left: 12px;
    z-index: 999;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 10px;
    color: #fff;
    background: var(--sf-navy);
    transition: transform .18s ease;
}

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

.sf-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 17px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 760;
    line-height: 1;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

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

.sf-button:active {
    transform: translateY(0);
}

.sf-button:focus-visible,
.sf-nav a:focus-visible,
.sf-language button:focus-visible,
.sf-filter-group button:focus-visible,
.sf-menu-button:focus-visible,
.sf-modal-close:focus-visible {
    outline: 3px solid rgba(91, 92, 240, .22);
    outline-offset: 2px;
}

.sf-button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--sf-primary) 0%, #536ee8 54%, var(--sf-cyan) 100%);
    box-shadow: 0 12px 25px rgba(77, 91, 224, .22);
}

.sf-button-primary:hover {
    box-shadow: 0 16px 32px rgba(77, 91, 224, .29);
}

.sf-button-secondary {
    color: #273451;
    background: rgba(255, 255, 255, .88);
    border-color: var(--sf-line-strong);
    box-shadow: 0 5px 14px rgba(16, 24, 40, .04);
}

.sf-button-secondary:hover {
    border-color: rgba(91, 92, 240, .35);
    color: var(--sf-primary-dark);
}

.sf-button-quiet {
    min-height: 40px;
    padding: 9px 13px;
    color: #344054;
    background: transparent;
    border-color: var(--sf-line);
}

.sf-button-light {
    color: #14213d;
    background: #fff;
    border-color: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
}

.sf-button-accent {
    color: #fff;
    background: linear-gradient(135deg, #7868ff, #25b8dc);
    box-shadow: 0 12px 30px rgba(51, 132, 219, .26);
}

.sf-button-outline-light {
    color: #fff;
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .24);
}

.sf-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 13px 0;
    border-bottom: 1px solid transparent;
    background: rgba(247, 248, 252, .76);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    transition: padding .2s ease, border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.sf-header.is-scrolled {
    padding: 8px 0;
    border-color: rgba(214, 220, 232, .88);
    background: rgba(255, 255, 255, .91);
    box-shadow: 0 8px 30px rgba(16, 24, 40, .06);
}

.sf-header-inner {
    min-height: 54px;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(320px, 1fr);
    align-items: center;
    gap: 20px;
}

.sf-brand {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.sf-brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(139, 160, 199, .25);
    border-radius: 14px;
    background: linear-gradient(145deg, #fff, #edf5ff);
    box-shadow: 0 7px 18px rgba(35, 74, 135, .09);
}

.sf-brand-mark img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

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

.sf-brand-copy strong {
    font-size: 14px;
    letter-spacing: -.01em;
}

.sf-brand-copy small {
    color: var(--sf-muted);
    font-size: 11.5px;
}

.sf-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(212, 218, 230, .9);
    border-radius: 14px;
    background: rgba(255, 255, 255, .68);
}

.sf-nav a {
    padding: 8px 13px;
    border-radius: 10px;
    color: #5d677c;
    font-size: 13.5px;
    font-weight: 680;
    transition: color .16s ease, background-color .16s ease;
}

.sf-nav a:hover {
    color: var(--sf-primary-dark);
    background: #f2f1ff;
}

.sf-nav-mobile-actions {
    display: none;
}

.sf-header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.sf-language {
    display: flex;
    padding: 3px;
    border: 1px solid var(--sf-line);
    border-radius: 11px;
    background: rgba(255, 255, 255, .78);
}

.sf-language button {
    min-width: 34px;
    height: 32px;
    padding: 0 8px;
    border: 0;
    border-radius: 8px;
    color: #667085;
    background: transparent;
    font-size: 11px;
    font-weight: 800;
}

.sf-language button.is-active {
    color: var(--sf-primary-dark);
    background: #eeedff;
}

.sf-menu-button {
    width: 42px;
    height: 42px;
    display: none;
    place-items: center;
    border: 1px solid var(--sf-line);
    border-radius: 12px;
    color: #344054;
    background: #fff;
}

.sf-hero {
    position: relative;
    overflow: hidden;
    overflow: clip;
    padding: 46px 0 34px;
    isolation: isolate;
}

.sf-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: -2;
    width: min(92%, 1160px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(94, 105, 143, .22), transparent);
}

.sf-hero-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.sf-hero-orb-one {
    top: 12px;
    left: -150px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(14, 172, 208, .12), transparent 68%);
}

.sf-hero-orb-two {
    top: -80px;
    right: -120px;
    width: 430px;
    height: 430px;
    background: radial-gradient(circle, rgba(91, 92, 240, .14), transparent 68%);
}

.sf-hero-grid {
    min-height: 438px;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
    align-items: center;
    gap: clamp(42px, 6vw, 78px);
}

.sf-hero-copy {
    max-width: 680px;
}

.sf-eyebrow,
.sf-section-kicker,
.sf-overline {
    color: var(--sf-primary);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .115em;
    text-transform: uppercase;
}

.sf-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 10px;
    border: 1px solid rgba(91, 92, 240, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
}

.sf-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sf-green);
    box-shadow: 0 0 0 5px rgba(22, 163, 106, .11);
}

.sf-hero h1 {
    max-width: 660px;
    margin: 20px 0 16px;
    color: #111827;
    font-size: clamp(46px, 5.25vw, 70px);
    font-weight: 880;
    letter-spacing: -.058em;
    line-height: .99;
}

.sf-hero h1 span {
    display: block;
}

.sf-gradient-text {
    padding-bottom: .07em;
    color: transparent;
    background: linear-gradient(102deg, #5b5cf0 0%, #5575e7 46%, #0eacd0 92%);
    -webkit-background-clip: text;
    background-clip: text;
}

.sf-hero-copy > p {
    max-width: 610px;
    margin: 0 0 22px;
    color: var(--sf-muted);
    font-size: 17px;
    line-height: 1.7;
}

.sf-hero-search {
    max-width: 620px;
    min-height: 58px;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 6px 7px 6px 17px;
    border: 1px solid var(--sf-line-strong);
    border-radius: 17px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 14px 42px rgba(40, 52, 84, .09);
    transition: border-color .18s ease, box-shadow .18s ease;
}

.sf-hero-search:focus-within {
    border-color: rgba(91, 92, 240, .55);
    box-shadow: 0 16px 46px rgba(67, 74, 178, .14), 0 0 0 4px rgba(91, 92, 240, .08);
}

.sf-hero-search > .sf-icon {
    color: #697386;
}

.sf-hero-search input,
.sf-catalog-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--sf-text);
    background: transparent;
}

.sf-hero-search input::placeholder,
.sf-catalog-search input::placeholder {
    color: #9aa3b3;
}

.sf-hero-search button {
    min-width: 88px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--sf-navy);
    font-weight: 760;
}

.sf-hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.sf-proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 19px 0 0;
    padding: 0;
    color: #596579;
    list-style: none;
    font-size: 12.5px;
    font-weight: 660;
}

.sf-proof-list li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.sf-proof-list .sf-icon {
    width: 16px;
    height: 16px;
    color: var(--sf-teal);
}

.sf-featured-wrap {
    position: relative;
    width: min(100%, 520px);
    justify-self: end;
    padding: 18px 0 20px 22px;
}

.sf-featured-glow {
    position: absolute;
    inset: 12% 7% 6% 10%;
    z-index: -1;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(91, 92, 240, .26), rgba(14, 172, 208, .2));
    filter: blur(38px);
}

.sf-featured-card {
    position: relative;
    min-height: 392px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(136, 151, 185, .24);
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 8%, rgba(109, 99, 255, .45), transparent 34%),
        radial-gradient(circle at 4% 92%, rgba(16, 173, 207, .31), transparent 42%),
        linear-gradient(145deg, #17233f 0%, #11182f 58%, #10172b 100%);
    box-shadow: var(--sf-shadow-lg);
}

.sf-featured-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom right, #000, transparent 70%);
}

.sf-featured-top,
.sf-featured-product,
.sf-featured-facts,
.sf-featured-actions {
    position: relative;
    z-index: 1;
}

.sf-featured-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.sf-featured-live,
.sf-featured-mode,
.sf-mode-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: rgba(255, 255, 255, .84);
    background: rgba(255, 255, 255, .07);
    font-size: 10.5px;
    font-weight: 760;
}

.sf-featured-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, .13);
}

.sf-featured-product {
    display: grid;
    grid-template-columns: 102px minmax(0, 1fr);
    align-items: center;
    gap: 19px;
    margin-top: 25px;
}

.sf-featured-art {
    position: relative;
    width: 102px;
    height: 102px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 25px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .22);
}

.sf-featured-art img {
    width: 82px;
    height: 82px;
    border-radius: 19px;
    object-fit: contain;
}

.sf-featured-badge {
    position: absolute;
    right: -7px;
    bottom: -7px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 3px solid #192440;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--sf-primary), var(--sf-cyan));
}

.sf-featured-badge .sf-icon {
    width: 15px;
    height: 15px;
    fill: currentColor;
    stroke-width: 1.3;
}

.sf-overline {
    color: #8eddf0;
}

.sf-featured-product h2 {
    display: -webkit-box;
    max-width: 320px;
    margin: 7px 0 0;
    overflow: hidden;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.027em;
    line-height: 1.23;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sf-featured-product p {
    display: -webkit-box;
    margin: 8px 0 0;
    overflow: hidden;
    color: rgba(225, 232, 247, .66);
    font-size: 12.5px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sf-featured-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
}

.sf-featured-facts > div {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .055);
}

.sf-featured-facts span,
.sf-featured-facts strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-featured-facts span {
    color: rgba(208, 219, 240, .58);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.sf-featured-facts strong {
    margin-top: 4px;
    color: #fff;
    font-size: 12.5px;
}

.sf-featured-actions {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 9px;
    margin-top: 18px;
}

.sf-featured-card.is-loading [data-featured-name],
.sf-featured-card.is-loading [data-featured-description],
.sf-featured-card.is-loading .sf-featured-facts strong {
    animation: sfPulse 1.25s ease-in-out infinite alternate;
}

.sf-floating-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 14px;
    color: #273451;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 34px rgba(22, 33, 62, .14);
    backdrop-filter: blur(12px);
}

.sf-floating-chip > .sf-icon {
    width: 30px;
    height: 30px;
    padding: 7px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--sf-primary), var(--sf-cyan));
}

.sf-floating-chip span {
    display: grid;
}

.sf-floating-chip strong {
    font-size: 11px;
}

.sf-floating-chip small {
    color: var(--sf-muted);
    font-size: 9.5px;
}

.sf-floating-chip-one {
    top: 2px;
    right: -28px;
}

.sf-floating-chip-two {
    right: -13px;
    bottom: 0;
}

.sf-value-strip {
    padding: 6px 0 14px;
}

.sf-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--sf-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .76);
    box-shadow: var(--sf-shadow-sm);
}

.sf-value-grid > div {
    position: relative;
    min-height: 78px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 12px;
    padding: 15px 22px;
}

.sf-value-grid > div + div {
    border-left: 1px solid var(--sf-line);
}

.sf-value-grid > div > span {
    grid-row: 1 / span 2;
    align-self: center;
    color: var(--sf-primary);
    font-size: 12px;
    font-weight: 850;
}

.sf-value-grid strong {
    font-size: 13px;
}

.sf-value-grid small {
    margin-top: 2px;
    color: var(--sf-muted);
    font-size: 11.5px;
}

.sf-section {
    padding: 72px 0;
}

.sf-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 27px;
}

.sf-section-heading h2,
.sf-delivery-card h3,
.sf-steps-intro h2,
.sf-free-copy h2,
.sf-support-card h2 {
    margin: 8px 0 0;
    color: #131b2c;
    font-weight: 830;
    letter-spacing: -.035em;
    line-height: 1.12;
}

.sf-section-heading h2,
.sf-steps-intro h2,
.sf-free-copy h2,
.sf-support-card h2 {
    font-size: clamp(30px, 3.2vw, 42px);
}

.sf-section-heading p {
    max-width: 700px;
    margin: 10px 0 0;
    color: var(--sf-muted);
}

.sf-text-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
    color: var(--sf-primary-dark);
    font-size: 13px;
    font-weight: 760;
}

.sf-text-link .sf-icon {
    width: 16px;
    height: 16px;
}

.sf-catalog {
    padding-top: 60px;
}

.sf-catalog-toolbar {
    min-height: 68px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto auto;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid var(--sf-line);
    border-radius: 17px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 8px 22px rgba(16, 24, 40, .045);
}

.sf-catalog-search {
    min-height: 46px;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid var(--sf-line);
    border-radius: 12px;
    background: #fff;
}

.sf-catalog-search:focus-within {
    border-color: rgba(91, 92, 240, .45);
    box-shadow: 0 0 0 4px rgba(91, 92, 240, .07);
}

.sf-catalog-search .sf-icon {
    color: var(--sf-muted);
}

.sf-filter-group {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
    background: #f0f2f7;
}

.sf-filter-group button {
    height: 38px;
    padding: 0 13px;
    border: 0;
    border-radius: 9px;
    color: #687386;
    background: transparent;
    font-size: 12px;
    font-weight: 760;
}

.sf-filter-group button.is-active {
    color: #3737bb;
    background: #fff;
    box-shadow: 0 3px 10px rgba(26, 34, 55, .08);
}

.sf-result-count {
    padding: 0 8px;
    color: var(--sf-muted);
    font-size: 11.5px;
    white-space: nowrap;
}

.sf-result-count strong {
    color: var(--sf-text);
}

.sf-catalog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 0;
    align-items: start;
    gap: 0;
    transition: grid-template-columns .24s ease, gap .24s ease;
}

.sf-catalog-layout.has-help {
    grid-template-columns: minmax(0, 1fr) 315px;
    gap: 18px;
}

.sf-catalog-layout:not(.has-help) .sf-catalog-help {
    display: none;
}

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

.sf-catalog-layout.is-single .sf-plan-grid {
    grid-template-columns: minmax(0, 1fr);
}

.sf-catalog-layout.is-two .sf-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sf-catalog-layout.has-help .sf-plan-grid {
    grid-template-columns: minmax(0, 1fr);
}

.sf-product-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--sf-line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 32px rgba(16, 24, 40, .055);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

@media (min-width: 1121px) {
    .sf-catalog-layout.has-help .sf-product-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(230px, .72fr);
        grid-template-areas:
            "product-top product-meta"
            "product-description product-meta"
            "product-footer product-footer";
        column-gap: 22px;
    }

    .sf-catalog-layout.has-help .sf-product-top {
        grid-area: product-top;
    }

    .sf-catalog-layout.has-help .sf-product-description {
        grid-area: product-description;
        min-height: 0;
    }

    .sf-catalog-layout.has-help .sf-product-meta {
        grid-area: product-meta;
        align-self: start;
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .sf-catalog-layout.has-help .sf-product-meta > div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 12px 14px;
    }

    .sf-catalog-layout.has-help .sf-product-footer {
        grid-area: product-footer;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--sf-line);
    }
}

@media (min-width: 1024px) {
    .sf-catalog-layout.is-single .sf-product-card {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(240px, .62fr) minmax(215px, .52fr);
        grid-template-areas:
            "single-top single-meta single-footer"
            "single-description single-meta single-footer";
        column-gap: 24px;
        align-items: stretch;
        padding: 22px;
    }

    .sf-catalog-layout.is-single .sf-product-top {
        grid-area: single-top;
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .sf-catalog-layout.is-single .sf-product-art {
        width: 96px;
        height: 96px;
    }

    .sf-catalog-layout.is-single .sf-product-art img {
        width: 78px;
        height: 78px;
    }

    .sf-catalog-layout.is-single .sf-product-card h3 {
        font-size: 18px;
    }

    .sf-catalog-layout.is-single .sf-product-description {
        grid-area: single-description;
        align-self: end;
        min-height: 0;
        margin-top: 10px;
    }

    .sf-catalog-layout.is-single .sf-product-meta {
        grid-area: single-meta;
        grid-template-columns: 1fr;
        align-self: stretch;
        margin-top: 0;
    }

    .sf-catalog-layout.is-single .sf-product-meta > div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 13px 15px;
    }

    .sf-catalog-layout.is-single .sf-product-footer {
        grid-area: single-footer;
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
        margin-top: 0;
        padding: 3px 0 3px 23px;
        border-top: 0;
        border-left: 1px solid var(--sf-line);
    }

    .sf-catalog-layout.is-single .sf-product-price strong {
        font-size: 24px;
    }

    .sf-catalog-layout.is-single .sf-product-actions {
        width: 100%;
    }

    .sf-catalog-layout.is-single .sf-product-rent {
        flex: 1;
    }
}

@media (min-width: 1440px) {
    .sf-catalog-layout:not(.is-single):not(.is-two) .sf-plan-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.sf-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 92, 240, .26);
    box-shadow: 0 20px 44px rgba(30, 42, 75, .11);
}

.sf-product-top {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
}

.sf-product-art {
    position: relative;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #e6e9f1;
    border-radius: 19px;
    background: linear-gradient(145deg, #f4f7fb, #fff);
}

.sf-product-art::after {
    content: "";
    position: absolute;
    inset: auto -25% -48% 15%;
    height: 70%;
    border-radius: 50%;
    background: rgba(91, 92, 240, .11);
    filter: blur(14px);
}

.sf-product-art img {
    position: relative;
    z-index: 1;
    width: 68px;
    height: 68px;
    border-radius: 15px;
    object-fit: contain;
}

.sf-product-heading {
    min-width: 0;
}

.sf-product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 7px;
}

.sf-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 7px;
    border-radius: 999px;
    color: #526076;
    background: #f1f3f7;
    font-size: 9.5px;
    font-weight: 780;
}

.sf-product-badge .sf-icon {
    width: 12px;
    height: 12px;
}

.sf-product-badge.is-auto {
    color: #047c77;
    background: #e9fbf8;
}

.sf-product-badge.is-manual {
    color: #9a5d05;
    background: #fff5df;
}

.sf-product-card h3 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #182033;
    font-size: 15.5px;
    font-weight: 790;
    letter-spacing: -.018em;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sf-product-description {
    display: -webkit-box;
    min-height: 42px;
    margin: 13px 0 0;
    overflow: hidden;
    color: var(--sf-muted);
    font-size: 12px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sf-product-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 15px;
}

.sf-product-meta > div {
    min-width: 0;
    padding: 9px 10px;
    border: 1px solid #e7eaf1;
    border-radius: 11px;
    background: #f8f9fc;
}

.sf-product-meta span,
.sf-product-meta strong {
    display: block;
}

.sf-product-meta span {
    color: var(--sf-subtle);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.sf-product-meta strong {
    margin-top: 3px;
    overflow: hidden;
    color: #344054;
    font-size: 10.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
}

.sf-product-price {
    min-width: 0;
}

.sf-product-price span,
.sf-product-price small {
    display: block;
    color: var(--sf-muted);
    font-size: 9.5px;
}

.sf-product-price strong {
    display: block;
    margin-top: 1px;
    color: #111827;
    font-size: 19px;
    letter-spacing: -.03em;
    line-height: 1.2;
}

.sf-product-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sf-product-detail {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--sf-line-strong);
    border-radius: 11px;
    color: #43506a;
    background: #fff;
}

.sf-product-detail .sf-icon {
    width: 17px;
    height: 17px;
}

.sf-product-rent {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 11px;
    font-size: 11px;
}

.sf-catalog-help {
    min-width: 0;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(91, 92, 240, .15);
    border-radius: 20px;
    background:
        radial-gradient(circle at 90% 4%, rgba(91, 92, 240, .13), transparent 35%),
        linear-gradient(145deg, #f7f6ff, #f2f9fd);
}

.sf-help-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--sf-primary), var(--sf-cyan));
    box-shadow: 0 12px 28px rgba(71, 69, 221, .21);
}

.sf-catalog-help h3 {
    margin: 7px 0 8px;
    color: #182033;
    font-size: 20px;
    line-height: 1.25;
}

.sf-catalog-help > p {
    margin: 0;
    color: var(--sf-muted);
    font-size: 12px;
}

.sf-help-rows {
    display: grid;
    gap: 8px;
    margin: 17px 0;
}

.sf-help-rows > div {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 9px;
    border: 1px solid rgba(216, 221, 233, .8);
    border-radius: 12px;
    background: rgba(255, 255, 255, .76);
}

.sf-help-rows .sf-icon {
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 10px;
    color: var(--sf-primary);
    background: #efefff;
}

.sf-help-rows span {
    display: grid;
}

.sf-help-rows strong {
    font-size: 11px;
}

.sf-help-rows small {
    color: var(--sf-muted);
    font-size: 9.5px;
}

.sf-catalog-help > .sf-button {
    width: 100%;
}

.sf-empty-state {
    max-width: 580px;
    margin: 30px auto 0;
    padding: 35px;
    text-align: center;
    border: 1px dashed var(--sf-line-strong);
    border-radius: 20px;
    background: rgba(255, 255, 255, .7);
}

.sf-empty-state > .sf-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 13px;
    padding: 9px;
    border-radius: 12px;
    color: var(--sf-primary);
    background: #eeeeff;
}

.sf-empty-state h3 {
    margin: 0;
}

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

.sf-skeleton {
    border-radius: 10px;
    background: linear-gradient(90deg, #eef1f6 25%, #f7f8fb 48%, #eef1f6 72%);
    background-size: 220% 100%;
    animation: sfSkeleton 1.25s ease-in-out infinite;
}

.sf-skeleton-art {
    width: 82px;
    height: 82px;
}

.sf-skeleton-line {
    height: 13px;
    margin-top: 13px;
}

.sf-skeleton-line-short {
    width: 62%;
}

.sf-skeleton-button {
    width: 110px;
    height: 38px;
    margin: 22px 0 0 auto;
}

.sf-delivery {
    background:
        radial-gradient(circle at 16% 44%, rgba(14, 172, 208, .07), transparent 24rem),
        radial-gradient(circle at 88% 62%, rgba(91, 92, 240, .07), transparent 26rem);
}

.sf-section-heading-compact {
    max-width: 760px;
}

.sf-delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sf-delivery-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    padding: 29px;
    border: 1px solid var(--sf-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--sf-shadow-sm);
}

.sf-delivery-card::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -75px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(91, 92, 240, .08);
}

.sf-delivery-manual::after {
    background: rgba(217, 138, 18, .1);
}

.sf-delivery-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg, var(--sf-primary), var(--sf-cyan));
    box-shadow: 0 14px 28px rgba(64, 91, 205, .2);
}

.sf-delivery-manual .sf-delivery-icon {
    background: linear-gradient(135deg, #f2a62f, #e36b57);
}

.sf-delivery-number {
    position: absolute;
    top: 24px;
    right: 27px;
    color: #d7dce7;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.sf-delivery-card h3 {
    margin-top: 24px;
    font-size: 27px;
}

.sf-delivery-card > p {
    max-width: 590px;
    margin: 10px 0 0;
    color: var(--sf-muted);
}

.sf-delivery-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 21px 0 0;
    padding: 0;
    list-style: none;
}

.sf-delivery-card li {
    padding: 7px 10px;
    border: 1px solid var(--sf-line);
    border-radius: 999px;
    color: #536076;
    background: #f8f9fc;
    font-size: 10.5px;
    font-weight: 700;
}

.sf-steps {
    padding-top: 34px;
}

.sf-steps-shell {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    overflow: hidden;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 14%, rgba(54, 199, 230, .21), transparent 32%),
        radial-gradient(circle at 88% 92%, rgba(111, 91, 244, .24), transparent 35%),
        #111a31;
    box-shadow: var(--sf-shadow-md);
}

.sf-steps-intro {
    padding: 44px;
}

.sf-steps-intro .sf-section-kicker {
    color: #82e3f2;
}

.sf-steps-intro h2 {
    color: #fff;
}

.sf-steps-intro > p {
    margin: 14px 0 24px;
    color: rgba(225, 232, 247, .68);
}

.sf-steps-list {
    display: grid;
    margin: 0;
    padding: 29px;
    list-style: none;
    background: rgba(255, 255, 255, .035);
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.sf-steps-list li {
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
    background: rgba(255, 255, 255, .045);
}

.sf-steps-list li + li {
    margin-top: 9px;
}

.sf-steps-list li > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #6a61f2, #24b2d6);
    font-weight: 850;
}

.sf-steps-list strong {
    font-size: 13px;
}

.sf-steps-list p {
    margin: 3px 0 0;
    color: rgba(225, 232, 247, .64);
    font-size: 11.5px;
}

.sf-free-section {
    padding-top: 28px;
}

.sf-free-card {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr) 260px;
    align-items: center;
    gap: 32px;
    overflow: hidden;
    padding: 29px;
    border: 1px solid var(--sf-line);
    border-radius: 26px;
    background:
        radial-gradient(circle at 12% 50%, rgba(14, 172, 208, .12), transparent 25%),
        radial-gradient(circle at 92% 25%, rgba(91, 92, 240, .10), transparent 28%),
        rgba(255, 255, 255, .92);
    box-shadow: var(--sf-shadow-sm);
}

.sf-free-art {
    position: relative;
    min-height: 220px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(91, 92, 240, .12);
    border-radius: 22px;
    background: linear-gradient(145deg, #f2f5ff, #ecfbfd);
}

.sf-free-halo {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(91, 92, 240, .2), rgba(14, 172, 208, .18));
    filter: blur(17px);
}

.sf-free-art img {
    position: relative;
    z-index: 1;
    width: 138px;
    height: 138px;
    border-radius: 30px;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 17px 38px rgba(30, 49, 90, .16);
}

.sf-free-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 8px;
    border-radius: 999px;
    color: #067b76;
    background: #def8f4;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .08em;
}

.sf-free-copy h2 {
    font-size: 31px;
}

.sf-free-copy > p {
    max-width: 570px;
    margin: 11px 0 0;
    color: var(--sf-muted);
}

.sf-free-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 21px;
}

.sf-free-note {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 17px;
    border: 1px solid rgba(91, 92, 240, .12);
    border-radius: 16px;
    background: rgba(242, 242, 255, .78);
}

.sf-free-note > .sf-icon {
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: 12px;
    color: var(--sf-primary);
    background: #fff;
}

.sf-free-note p {
    display: grid;
    gap: 4px;
    margin: 0;
}

.sf-free-note strong {
    font-size: 11.5px;
}

.sf-free-note span {
    color: var(--sf-muted);
    font-size: 10px;
}

.sf-support-section {
    padding-top: 12px;
}

.sf-support-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    overflow: hidden;
    padding: 36px 40px;
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(93, 220, 239, .19), transparent 26%),
        linear-gradient(120deg, #171d37, #25235a 56%, #123b53);
}

.sf-support-card .sf-section-kicker {
    color: #89e5f2;
}

.sf-support-card h2 {
    color: #fff;
    font-size: 30px;
}

.sf-support-card p {
    max-width: 690px;
    margin: 9px 0 0;
    color: rgba(229, 235, 247, .68);
}

.sf-support-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 9px;
}

.sf-footer {
    margin-top: 26px;
    padding: 58px 0 24px;
    border-top: 1px solid var(--sf-line);
    background: rgba(255, 255, 255, .58);
}

.sf-footer-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.5fr) repeat(3, minmax(130px, .55fr));
    gap: 36px;
}

.sf-footer-brand > p {
    max-width: 430px;
    margin: 16px 0 0;
    color: var(--sf-muted);
    font-size: 12.5px;
}

.sf-footer-grid > div:not(.sf-footer-brand) {
    display: grid;
    align-content: start;
    gap: 9px;
}

.sf-footer-grid > div:not(.sf-footer-brand) > strong {
    margin-bottom: 4px;
    color: #1f2937;
    font-size: 12px;
}

.sf-footer-grid > div:not(.sf-footer-brand) > a {
    width: fit-content;
    color: var(--sf-muted);
    font-size: 11.5px;
}

.sf-footer-grid > div:not(.sf-footer-brand) > a:hover {
    color: var(--sf-primary-dark);
}

.sf-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid var(--sf-line);
    color: var(--sf-muted);
    font-size: 10.5px;
}

.sf-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: 20px;
}

.sf-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 35, .64);
    backdrop-filter: blur(7px);
}

.sf-modal-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 590px);
    max-height: min(760px, calc(100vh - 40px));
    overflow-y: auto;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(9, 16, 35, .28);
}

.sf-modal-close {
    position: absolute;
    top: 17px;
    right: 17px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--sf-line);
    border-radius: 12px;
    color: #475467;
    background: #fff;
}

.sf-modal-product {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    padding-right: 42px;
}

.sf-modal-product img {
    width: 76px;
    height: 76px;
    border: 1px solid var(--sf-line);
    border-radius: 18px;
    object-fit: contain;
    background: #f7f9fc;
}

.sf-modal .sf-mode-pill {
    color: var(--sf-primary-dark);
    background: #efefff;
    border-color: #e0e0ff;
}

.sf-modal-product h2 {
    margin: 7px 0 0;
    font-size: 22px;
    line-height: 1.25;
}

.sf-modal-description {
    margin: 19px 0 0;
    color: var(--sf-muted);
    font-size: 13px;
}

.sf-modal-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 20px;
}

.sf-modal-facts > div {
    padding: 13px;
    border: 1px solid var(--sf-line);
    border-radius: 13px;
    background: #f8f9fc;
}

.sf-modal-facts span,
.sf-modal-facts strong {
    display: block;
}

.sf-modal-facts span,
.sf-modal-periods > span,
.sf-modal-footer span {
    color: var(--sf-muted);
    font-size: 9.5px;
    font-weight: 760;
    text-transform: uppercase;
}

.sf-modal-facts strong {
    margin-top: 4px;
    font-size: 12px;
}

.sf-modal-periods {
    margin-top: 19px;
}

.sf-modal-periods > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 8px;
}

.sf-period-chip {
    padding: 7px 9px;
    border: 1px solid var(--sf-line);
    border-radius: 10px;
    color: #42506a;
    background: #fff;
    font-size: 10.5px;
    font-weight: 700;
}

.sf-period-chip strong {
    color: #111827;
}

.sf-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--sf-line);
}

.sf-modal-footer strong {
    display: block;
    margin-top: 2px;
    font-size: 22px;
}

body.sf-modal-open {
    overflow: hidden;
}

@keyframes sfSkeleton {
    from { background-position: 100% 0; }
    to { background-position: -100% 0; }
}

@keyframes sfPulse {
    from { opacity: .52; }
    to { opacity: 1; }
}

@media (max-width: 1120px) {
    .sf-header-inner {
        grid-template-columns: minmax(205px, 1fr) auto minmax(260px, 1fr);
        gap: 12px;
    }

    .sf-nav a {
        padding-inline: 10px;
    }

    .sf-language {
        display: none;
    }

    .sf-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
        gap: 36px;
    }

    .sf-floating-chip-one {
        right: 0;
    }

    .sf-floating-chip-two {
        right: 7px;
    }

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

    .sf-free-card {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .sf-free-note {
        grid-column: 1 / -1;
    }
}

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

    .sf-header-inner {
        grid-template-columns: 1fr auto;
    }

    .sf-nav {
        position: absolute;
        top: calc(100% + 7px);
        left: 15px;
        right: 15px;
        display: none;
        padding: 8px;
        border-radius: 16px;
        background: rgba(255, 255, 255, .98);
        box-shadow: var(--sf-shadow-md);
    }

    .sf-nav.is-open {
        display: grid;
    }

    .sf-nav a {
        padding: 11px 13px;
    }

    .sf-nav-mobile-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 4px;
        padding-top: 10px;
        border-top: 1px solid var(--sf-line);
    }

    .sf-nav-mobile-actions .sf-language {
        grid-column: 1 / -1;
        display: flex;
        width: 100%;
    }

    .sf-nav-mobile-actions .sf-language button {
        flex: 1;
        min-height: 38px;
    }

    .sf-nav-mobile-actions .sf-button {
        min-height: 43px;
    }

    .sf-nav-mobile-actions .sf-login,
    .sf-nav-mobile-actions .sf-register {
        display: inline-flex;
    }

    .sf-nav-mobile-actions .sf-register,
    .sf-nav-mobile-actions .sf-register:hover {
        color: #fff;
    }

    .sf-menu-button {
        display: grid;
    }

    .sf-login {
        display: none;
    }

    .sf-language {
        display: flex;
    }

    .sf-hero {
        padding-top: 32px;
    }

    .sf-hero-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 31px;
    }

    .sf-hero-copy {
        max-width: 760px;
        text-align: center;
    }

    .sf-eyebrow,
    .sf-hero-search {
        margin-inline: auto;
    }

    .sf-hero h1 {
        max-width: 760px;
        margin-inline: auto;
        font-size: clamp(43px, 8vw, 66px);
    }

    .sf-hero-copy > p {
        margin-inline: auto;
    }

    .sf-hero-links,
    .sf-proof-list {
        justify-content: center;
    }

    .sf-featured-wrap {
        width: min(100%, 610px);
        justify-self: center;
        padding-left: 0;
    }

    .sf-floating-chip-one {
        right: -10px;
    }

    .sf-value-grid {
        grid-template-columns: 1fr;
    }

    .sf-value-grid > div + div {
        border-top: 1px solid var(--sf-line);
        border-left: 0;
    }

    .sf-catalog-toolbar {
        grid-template-columns: 1fr auto;
    }

    .sf-result-count {
        grid-column: 1 / -1;
        padding-bottom: 3px;
        text-align: right;
    }

    .sf-catalog-layout.has-help {
        grid-template-columns: 1fr;
    }

    .sf-catalog-help {
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 15px;
        align-items: start;
    }

    .sf-catalog-help .sf-help-icon {
        grid-row: 1 / span 3;
        margin: 0;
    }

    .sf-catalog-help .sf-section-kicker,
    .sf-catalog-help h3,
    .sf-catalog-help > p,
    .sf-catalog-help .sf-help-rows,
    .sf-catalog-help > .sf-button {
        grid-column: 2;
    }

    .sf-catalog-help h3 {
        margin-top: 4px;
    }

    .sf-delivery-grid {
        grid-template-columns: 1fr;
    }

    .sf-steps-shell {
        grid-template-columns: 1fr;
    }

    .sf-steps-list {
        border-top: 1px solid rgba(255, 255, 255, .08);
        border-left: 0;
    }

    .sf-support-card {
        align-items: start;
        flex-direction: column;
    }

    .sf-footer-grid {
        grid-template-columns: 1.5fr repeat(2, .6fr);
    }

    .sf-footer-grid > div:last-child {
        grid-column: 2;
    }
}

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

    .sf-header {
        padding: 8px 0;
    }

    .sf-header-inner {
        min-height: 50px;
    }

    .sf-brand-mark {
        width: 41px;
        height: 41px;
        border-radius: 12px;
    }

    .sf-brand-mark img {
        width: 34px;
        height: 34px;
    }

    .sf-brand-copy strong {
        font-size: 12.5px;
    }

    .sf-brand-copy small {
        font-size: 10px;
    }

    .sf-register,
    .sf-language {
        display: none;
    }

    .sf-hero {
        padding: 27px 0 22px;
    }

    .sf-hero-grid {
        gap: 24px;
    }

    .sf-eyebrow {
        font-size: 9.5px;
    }

    .sf-hero h1 {
        margin-top: 16px;
        font-size: clamp(38px, 12vw, 51px);
        letter-spacing: -.052em;
    }

    .sf-hero-copy > p {
        margin-bottom: 17px;
        font-size: 14px;
        line-height: 1.6;
    }

    .sf-hero-search {
        min-height: 54px;
        grid-template-columns: 20px minmax(0, 1fr);
        padding-right: 13px;
    }

    .sf-hero-search button {
        grid-column: 1 / -1;
        width: 100%;
        margin: 0 0 5px;
    }

    .sf-hero-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .sf-hero-links .sf-button {
        min-width: 0;
        padding-inline: 10px;
        white-space: normal;
        text-align: center;
    }

    .sf-proof-list {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: start;
        width: fit-content;
        margin-inline: auto;
    }

    .sf-featured-wrap {
        padding: 0;
    }

    .sf-featured-card {
        min-height: 0;
        padding: 18px;
        border-radius: 23px;
    }

    .sf-featured-product {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 13px;
        margin-top: 19px;
    }

    .sf-featured-art {
        width: 76px;
        height: 76px;
        border-radius: 19px;
    }

    .sf-featured-art img {
        width: 62px;
        height: 62px;
        border-radius: 14px;
    }

    .sf-featured-product h2 {
        font-size: 17px;
    }

    .sf-featured-facts {
        grid-template-columns: 1fr 1fr;
    }

    .sf-featured-facts > div:last-child {
        grid-column: 1 / -1;
    }

    .sf-featured-actions {
        grid-template-columns: 1fr;
    }

    .sf-floating-chip {
        display: none;
    }

    .sf-value-strip {
        padding-top: 12px;
    }

    .sf-value-grid > div {
        min-height: 70px;
        padding: 12px 17px;
    }

    .sf-section {
        padding: 53px 0;
    }

    .sf-section-heading {
        align-items: start;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .sf-section-heading h2,
    .sf-steps-intro h2,
    .sf-free-copy h2,
    .sf-support-card h2 {
        font-size: 29px;
    }

    .sf-section-heading p {
        font-size: 13px;
    }

    .sf-catalog {
        padding-top: 45px;
    }

    .sf-catalog-toolbar {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sf-filter-group {
        width: 100%;
        overflow-x: auto;
    }

    .sf-filter-group button {
        flex: 1 0 auto;
    }

    .sf-result-count {
        grid-column: auto;
        text-align: left;
    }

    .sf-plan-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sf-product-card {
        padding: 15px;
    }

    .sf-product-description {
        min-height: 0;
    }

    .sf-catalog-help {
        display: block;
        padding: 18px;
    }

    .sf-catalog-help .sf-help-icon {
        margin-bottom: 14px;
    }

    .sf-delivery-card {
        min-height: 0;
        padding: 22px;
    }

    .sf-delivery-card h3 {
        font-size: 23px;
    }

    .sf-delivery-card ul {
        display: grid;
    }

    .sf-steps-intro,
    .sf-steps-list {
        padding: 23px;
    }

    .sf-steps-list li {
        padding: 13px;
    }

    .sf-free-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 18px;
    }

    .sf-free-art {
        min-height: 205px;
    }

    .sf-free-note {
        grid-column: auto;
    }

    .sf-free-actions {
        display: grid;
    }

    .sf-support-card {
        padding: 26px 22px;
    }

    .sf-support-actions {
        width: 100%;
        display: grid;
    }

    .sf-footer {
        padding-top: 45px;
    }

    .sf-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 27px 20px;
    }

    .sf-footer-brand {
        grid-column: 1 / -1;
    }

    .sf-footer-grid > div:last-child {
        grid-column: auto;
    }

    .sf-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .sf-modal {
        align-items: end;
        padding: 0;
    }

    .sf-modal-panel {
        width: 100%;
        max-height: 88vh;
        padding: 20px;
        border-radius: 24px 24px 0 0;
    }

    .sf-modal-product {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .sf-modal-product img {
        width: 64px;
        height: 64px;
    }

    .sf-modal-product h2 {
        font-size: 18px;
    }
}

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

/* Storefront V2 — midnight marketplace */
:root {
    --sf-bg: #edf2fb;
    --sf-surface: #ffffff;
    --sf-surface-soft: #f3f6fd;
    --sf-text: #101828;
    --sf-muted: #66748d;
    --sf-subtle: #94a3b8;
    --sf-line: #dbe3f0;
    --sf-line-strong: #cbd6e7;
    --sf-primary: #7457f5;
    --sf-primary-dark: #5b3fe3;
    --sf-cyan: #19bde0;
    --sf-teal: #0ca89b;
    --sf-green: #18af77;
    --sf-amber: #e99a22;
    --sf-danger: #ed5870;
    --sf-navy: #081426;
    --sf-navy-soft: #0e1d34;
    --sf-container: 1320px;
    --sf-shadow-sm: 0 10px 28px rgba(20, 38, 72, .07);
    --sf-shadow-md: 0 22px 58px rgba(16, 32, 66, .12);
    --sf-shadow-lg: 0 34px 90px rgba(4, 13, 30, .28);
    --sf-radius-sm: 13px;
    --sf-radius: 20px;
    --sf-radius-lg: 32px;
}

body {
    color: var(--sf-text);
    background:
        radial-gradient(circle at 6% 2%, rgba(25, 189, 224, .17), transparent 29rem),
        radial-gradient(circle at 92% 6%, rgba(116, 87, 245, .20), transparent 34rem),
        linear-gradient(180deg, #071321 0, #0a1729 660px, #edf2fb 660px, #edf2fb 100%);
    font-family: "Be Vietnam Pro", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
}

body::before {
    z-index: -1;
    opacity: .48;
    background-image:
        linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, #000 0, transparent 740px);
}

.sf-button {
    min-height: 46px;
    border-radius: 14px;
    font-weight: 700;
}

.sf-button-primary {
    background: linear-gradient(135deg, #7657f7 0%, #506fec 52%, #15b9d7 100%);
    box-shadow: 0 13px 30px rgba(79, 94, 229, .28);
}

.sf-button-secondary {
    color: #2e3e5b;
    background: #fff;
    border-color: #d5dfed;
}

.sf-header,
.sf-header.is-scrolled {
    padding: 10px 0;
    border-color: rgba(255, 255, 255, .08);
    color: #fff;
    background: rgba(7, 18, 33, .82);
    box-shadow: 0 10px 34px rgba(2, 8, 23, .14);
    backdrop-filter: blur(20px) saturate(135%);
    -webkit-backdrop-filter: blur(20px) saturate(135%);
}

.sf-header-inner {
    min-height: 54px;
}

.sf-header .sf-brand-mark {
    border-color: rgba(255, 255, 255, .14);
    background: linear-gradient(145deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .07));
    box-shadow: none;
}

.sf-header .sf-brand-copy strong {
    color: #fff;
}

.sf-header .sf-brand-copy small {
    color: #90a3bd;
}

.sf-header .sf-nav {
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
    background: rgba(255, 255, 255, .045);
}

.sf-header .sf-nav > a {
    color: #aebbd0;
    font-weight: 600;
}

.sf-header .sf-nav > a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.sf-header .sf-language {
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .055);
}

.sf-header .sf-language button {
    color: #9eacc0;
}

.sf-header .sf-language button.is-active {
    color: #fff;
    background: rgba(116, 87, 245, .72);
}

.sf-header .sf-button-quiet {
    color: #dce6f4;
    border-color: rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .035);
}

.sf-header .sf-menu-button {
    color: #fff;
    border-color: rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .06);
}

.sf-hero {
    padding: 24px 0 44px;
}

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

.sf-hero-orb-one {
    top: -120px;
    left: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(19, 193, 221, .21), transparent 66%);
}

.sf-hero-orb-two {
    top: -170px;
    right: -80px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(118, 87, 247, .25), transparent 65%);
}

.sf-hero-grid {
    min-height: 520px;
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
    gap: clamp(36px, 5vw, 70px);
    padding: clamp(40px, 4.5vw, 68px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 36px;
    background:
        radial-gradient(circle at 94% 0, rgba(124, 92, 255, .30), transparent 36%),
        radial-gradient(circle at 4% 100%, rgba(21, 185, 215, .18), transparent 42%),
        linear-gradient(145deg, rgba(17, 33, 58, .98), rgba(8, 20, 38, .98));
    box-shadow: 0 36px 90px rgba(1, 8, 22, .30);
}

.sf-hero-copy {
    max-width: 630px;
}

.sf-eyebrow {
    color: #bfd0e7;
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .055);
    font-weight: 700;
}

.sf-live-dot {
    background: #2ee2a2;
    box-shadow: 0 0 0 5px rgba(46, 226, 162, .12), 0 0 22px rgba(46, 226, 162, .42);
}

.sf-hero h1 {
    max-width: 650px;
    margin: 23px 0 18px;
    color: #f8fbff;
    font-size: clamp(45px, 4.6vw, 66px);
    font-weight: 800;
    letter-spacing: -.048em;
    line-height: 1.01;
}

.sf-gradient-text {
    padding-bottom: .11em;
    background: linear-gradient(101deg, #9c88ff 0%, #6e8cff 43%, #24cce8 92%);
    -webkit-background-clip: text;
    background-clip: text;
}

.sf-hero-copy > p {
    max-width: 560px;
    margin-bottom: 25px;
    color: #9fb0c8;
    font-size: 16px;
    line-height: 1.7;
}

.sf-hero-search {
    max-width: 590px;
    min-height: 60px;
    border-color: rgba(255, 255, 255, .11);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 18px 45px rgba(0, 6, 20, .26);
}

.sf-hero-search:focus-within {
    border-color: rgba(107, 111, 255, .76);
    box-shadow: 0 18px 46px rgba(0, 7, 25, .28), 0 0 0 4px rgba(112, 90, 248, .16);
}

.sf-hero-search button {
    background: linear-gradient(135deg, #6f56ed, #345ce0);
}

.sf-hero-links {
    margin-top: 17px;
}

.sf-hero-links .sf-button-secondary {
    color: #e5edf8;
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .055);
    box-shadow: none;
}

.sf-utility-stage {
    position: relative;
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 28px;
    background: rgba(255, 255, 255, .045);
    box-shadow: inset 0 1px rgba(255, 255, 255, .04), 0 24px 60px rgba(0, 5, 20, .18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.sf-utility-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(circle at 100% 0, rgba(103, 78, 238, .13), transparent 32%),
        linear-gradient(120deg, rgba(255, 255, 255, .025), transparent 45%);
}

.sf-utility-stage-head,
.sf-utility-grid {
    position: relative;
    z-index: 1;
}

.sf-utility-stage-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.sf-utility-stage .sf-overline {
    color: #88dcf0;
    font-weight: 700;
}

.sf-utility-stage h2 {
    margin: 5px 0 0;
    color: #fff;
    font-size: clamp(23px, 2vw, 29px);
    font-weight: 700;
    letter-spacing: -.035em;
}

.sf-utility-status {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border: 1px solid rgba(46, 226, 162, .19);
    border-radius: 999px;
    color: #b7ead7;
    background: rgba(30, 184, 128, .08);
    font-size: 10px;
    font-weight: 600;
}

.sf-utility-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ee2a2;
    box-shadow: 0 0 0 4px rgba(46, 226, 162, .10);
}

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

.sf-utility-card {
    --utility-color: #7457f5;
    min-width: 0;
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    color: #fff;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--utility-color) 13%, rgba(255, 255, 255, .055)), rgba(255, 255, 255, .035));
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.sf-utility-card.is-violet { --utility-color: #8b6dff; }
.sf-utility-card.is-cyan { --utility-color: #20c8e8; }
.sf-utility-card.is-amber { --utility-color: #ffb547; }
.sf-utility-card.is-emerald { --utility-color: #29d19b; }
.sf-utility-card.is-coral { --utility-color: #ff6f82; }
.sf-utility-card.is-blue { --utility-color: #4f8dff; }

.sf-utility-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--utility-color) 40%, transparent);
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(145deg, color-mix(in srgb, var(--utility-color) 92%, #fff 8%), color-mix(in srgb, var(--utility-color) 62%, #0c1830));
    box-shadow: 0 12px 24px color-mix(in srgb, var(--utility-color) 20%, transparent);
}

.sf-utility-icon .sf-icon {
    width: 22px;
    height: 22px;
}

.sf-utility-icon .sf-icon:has(path[d^="M16.8"]) {
    fill: currentColor;
    stroke-width: 1.25;
}

.sf-utility-card > span:last-child {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.sf-utility-card strong,
.sf-utility-card small {
    overflow: hidden;
    text-overflow: ellipsis;
}

.sf-utility-card strong {
    color: #f8fbff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.sf-utility-card small {
    color: #9fb0c8;
    font-size: 10.5px;
    line-height: 1.45;
}

@media (hover: hover) {
    .sf-utility-card:hover {
        transform: translateY(-3px);
        border-color: color-mix(in srgb, var(--utility-color) 38%, rgba(255, 255, 255, .14));
        background: linear-gradient(135deg, color-mix(in srgb, var(--utility-color) 20%, rgba(255, 255, 255, .07)), rgba(255, 255, 255, .055));
        box-shadow: 0 16px 32px rgba(0, 6, 22, .22);
    }
}

.sf-section {
    padding: 58px 0;
}

.sf-catalog {
    position: relative;
    padding-top: 66px;
    background:
        radial-gradient(circle at 95% 8%, rgba(116, 87, 245, .09), transparent 24rem),
        radial-gradient(circle at 4% 82%, rgba(25, 189, 224, .08), transparent 26rem);
}

.sf-section-heading {
    align-items: center;
    margin-bottom: 25px;
}

.sf-section-kicker {
    color: #6950e4;
    font-weight: 700;
}

.sf-section-heading h2,
.sf-journey-head h2 {
    margin: 7px 0 0;
    color: #101828;
    font-size: clamp(31px, 3vw, 43px);
    font-weight: 750;
    letter-spacing: -.043em;
    line-height: 1.12;
}

.sf-section-heading p {
    margin-top: 8px;
    font-size: 13.5px;
}

.sf-catalog-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sf-result-count {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    padding: 8px 11px;
    border: 1px solid #d6e0ee;
    border-radius: 999px;
    color: #66748d;
    background: rgba(255, 255, 255, .70);
    font-size: 10.5px;
    font-weight: 600;
}

.sf-result-count strong {
    color: #5b3fe3;
    font-size: 13px;
}

.sf-text-link {
    min-height: 42px;
    padding: 9px 13px;
    border: 1px solid #d4deec;
    border-radius: 13px;
    color: #344560;
    background: rgba(255, 255, 255, .72);
    font-weight: 650;
}

.sf-catalog-toolbar {
    min-height: auto;
    display: flex;
    justify-content: flex-start;
    margin: 0 0 17px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.sf-filter-group {
    flex-wrap: wrap;
    padding: 4px;
    border: 1px solid #d7e0ed;
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
}

.sf-filter-group button {
    min-height: 36px;
    border-radius: 10px;
    font-weight: 600;
}

.sf-filter-group button.is-active {
    color: #fff;
    background: linear-gradient(135deg, #7457f5, #4e7be9);
    box-shadow: 0 7px 18px rgba(87, 78, 220, .20);
}

.sf-catalog-layout,
.sf-catalog-layout.has-help {
    display: block;
}

.sf-plan-grid,
.sf-catalog-layout.is-single .sf-plan-grid,
.sf-catalog-layout.is-two .sf-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sf-catalog-layout.is-single .sf-plan-grid {
    grid-template-columns: 1fr;
}

.sf-catalog-layout.is-two .sf-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sf-product-card,
.sf-catalog-layout.is-single .sf-product-card {
    min-width: 0;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 24px;
    color: #f8fbff;
    background:
        radial-gradient(circle at 95% 0, rgba(116, 87, 245, .27), transparent 30%),
        radial-gradient(circle at 2% 100%, rgba(25, 189, 224, .14), transparent 34%),
        linear-gradient(145deg, #13243d 0%, #0a1729 100%);
    box-shadow: 0 25px 58px rgba(18, 34, 65, .17);
}

.sf-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(135deg, #000, transparent 68%);
}

.sf-product-card > * {
    position: relative;
    z-index: 1;
}

@media (hover: hover) {
    .sf-product-card:hover {
        transform: translateY(-4px);
        border-color: rgba(112, 126, 255, .30);
        box-shadow: 0 30px 70px rgba(13, 29, 58, .23);
    }
}

.sf-product-top,
.sf-catalog-layout.is-single .sf-product-top {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 16px;
}

.sf-product-art,
.sf-catalog-layout.is-single .sf-product-art {
    width: 84px;
    height: 84px;
    padding: 8px;
    border-color: rgba(255, 255, 255, .13);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(237, 244, 255, .94));
    box-shadow: 0 15px 34px rgba(0, 5, 18, .24);
}

.sf-product-art img,
.sf-catalog-layout.is-single .sf-product-art img {
    width: 66px;
    height: 66px;
    border-radius: 14px;
}

.sf-product-badges {
    gap: 6px;
    margin-bottom: 8px;
}

.sf-product-badge {
    min-height: 24px;
    padding: 5px 8px;
    border-color: rgba(255, 255, 255, .10);
    color: #bac8dd;
    background: rgba(255, 255, 255, .055);
    font-size: 9px;
    font-weight: 600;
}

.sf-product-badge.is-auto {
    color: #79eed2;
    border-color: rgba(41, 209, 155, .22);
    background: rgba(41, 209, 155, .09);
}

.sf-product-badge.is-manual {
    color: #ffc18a;
    border-color: rgba(255, 181, 71, .22);
    background: rgba(255, 181, 71, .09);
}

.sf-product-card h3,
.sf-catalog-layout.is-single .sf-product-card h3 {
    max-width: 740px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.34;
}

.sf-product-description,
.sf-catalog-layout.is-single .sf-product-description {
    min-height: 0;
    margin: 18px 0 0;
    color: #9fb0c8;
    font-size: 12px;
    line-height: 1.65;
    -webkit-line-clamp: 2;
}

.sf-product-periods {
    margin-top: 18px;
}

.sf-product-periods > strong {
    display: block;
    margin-bottom: 8px;
    color: #71839c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.sf-product-periods > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.sf-product-periods span {
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 10px;
    color: #d7e2f0;
    background: rgba(255, 255, 255, .055);
    font-size: 10px;
    font-weight: 600;
}

.sf-product-footer,
.sf-catalog-layout.is-single .sf-product-footer {
    align-items: end;
    margin-top: auto;
    padding-top: 20px;
    border-color: rgba(255, 255, 255, .09);
}

.sf-product-price span {
    color: #71839c;
}

.sf-product-price strong,
.sf-catalog-layout.is-single .sf-product-price strong {
    color: #fff;
    font-size: 27px;
    font-weight: 750;
}

.sf-product-price small {
    color: #9fb0c8;
}

.sf-product-actions,
.sf-catalog-layout.is-single .sf-product-actions {
    display: flex;
    gap: 8px;
}

.sf-product-detail,
.sf-catalog-layout.is-single .sf-product-detail {
    width: auto;
    min-height: 44px;
    padding: 10px 13px;
    color: #dce6f5;
    border-color: rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .055);
    box-shadow: none;
}

.sf-product-detail .sf-icon {
    width: 17px;
    height: 17px;
}

.sf-product-rent,
.sf-catalog-layout.is-single .sf-product-rent {
    min-width: 125px;
}

@media (min-width: 860px) {
    .sf-catalog-layout.is-single .sf-product-card {
        min-height: 292px;
        display: grid;
        grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr);
        grid-template-areas:
            "product periods"
            "description periods"
            "footer footer";
        column-gap: 38px;
        padding: 28px;
    }

    .sf-catalog-layout.is-single .sf-product-top {
        grid-area: product;
    }

    .sf-catalog-layout.is-single .sf-product-description {
        grid-area: description;
        align-self: start;
        margin-top: 14px;
    }

    .sf-catalog-layout.is-single .sf-product-periods {
        grid-area: periods;
        align-self: center;
        margin: 0;
        padding: 22px;
        border: 1px solid rgba(255, 255, 255, .09);
        border-radius: 18px;
        background: rgba(255, 255, 255, .035);
    }

    .sf-catalog-layout.is-single .sf-product-periods > div {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sf-catalog-layout.is-single .sf-product-periods span {
        text-align: center;
    }

    .sf-catalog-layout.is-single .sf-product-footer {
        grid-area: footer;
    }
}

.sf-empty-state {
    border-color: #d4deec;
    border-radius: 22px;
    background: rgba(255, 255, 255, .72);
}

.sf-journey {
    padding: 12px 0 72px;
}

.sf-journey-shell {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 3.4vw, 46px);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 32px;
    color: #fff;
    background:
        radial-gradient(circle at 94% 8%, rgba(113, 83, 245, .30), transparent 31%),
        radial-gradient(circle at 5% 100%, rgba(28, 196, 222, .18), transparent 38%),
        linear-gradient(145deg, #12233d, #091629);
    box-shadow: 0 28px 70px rgba(14, 29, 57, .19);
}

.sf-journey-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background-image:
        linear-gradient(rgba(255, 255, 255, .027) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .027) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(120deg, #000, transparent 72%);
}

.sf-journey-head,
.sf-journey-list {
    position: relative;
    z-index: 1;
}

.sf-journey-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.sf-journey-head .sf-section-kicker {
    color: #8be1f1;
}

.sf-journey-head h2 {
    color: #fff;
}

.sf-journey-actions {
    display: flex;
    gap: 9px;
}

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

.sf-journey-list li {
    --journey-color: #8b6dff;
    position: relative;
    min-width: 0;
    min-height: 132px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-content: center;
    gap: 12px;
    padding: 19px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--journey-color) 10%, rgba(255, 255, 255, .055)), rgba(255, 255, 255, .032));
}

.sf-journey-list li.is-violet { --journey-color: #8b6dff; }
.sf-journey-list li.is-cyan { --journey-color: #20c8e8; }
.sf-journey-list li.is-emerald { --journey-color: #29d19b; }

.sf-journey-number {
    position: absolute;
    top: 9px;
    right: 12px;
    color: color-mix(in srgb, var(--journey-color) 45%, transparent);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -.05em;
}

.sf-journey-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--journey-color) 35%, transparent);
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(145deg, var(--journey-color), color-mix(in srgb, var(--journey-color) 60%, #0a1730));
}

.sf-journey-icon .sf-icon {
    width: 21px;
    height: 21px;
}

.sf-journey-list strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.sf-journey-list p {
    margin: 5px 0 0;
    color: #9fb0c8;
    font-size: 11px;
    line-height: 1.5;
}

.sf-footer {
    padding: 56px 0 23px;
    color: #cbd7e8;
    background:
        radial-gradient(circle at 14% 100%, rgba(25, 189, 224, .10), transparent 25rem),
        linear-gradient(180deg, #091629, #06111f);
}

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

.sf-footer .sf-brand-copy small,
.sf-footer-brand p,
.sf-footer-grid a,
.sf-footer-bottom {
    color: #8294ad;
}

.sf-footer-grid > div > strong {
    color: #f5f8fd;
}

.sf-footer-grid a:hover {
    color: #65d2e8;
}

.sf-modal-backdrop {
    background: rgba(1, 8, 20, .76);
    backdrop-filter: blur(8px);
}

.sf-modal-panel {
    color: #e9f0fa;
    border-color: rgba(255, 255, 255, .10);
    background:
        radial-gradient(circle at 100% 0, rgba(116, 87, 245, .24), transparent 33%),
        linear-gradient(145deg, #13243e, #091629);
    box-shadow: 0 36px 90px rgba(0, 6, 20, .42);
}

.sf-modal-product h2,
.sf-modal-footer strong {
    color: #fff;
}

.sf-modal-description {
    color: #9fb0c8;
}

.sf-modal-facts > div {
    border-color: rgba(255, 255, 255, .09);
    background: rgba(255, 255, 255, .045);
}

.sf-modal-facts span,
.sf-modal-periods > span,
.sf-modal-footer span {
    color: #71839c;
}

.sf-period-chip {
    color: #dce6f4;
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .05);
}

.sf-period-chip strong {
    color: #fff;
}

.sf-modal-footer {
    border-color: rgba(255, 255, 255, .09);
}

.sf-modal-close {
    color: #fff;
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
}

@media (max-width: 1120px) {
    .sf-hero-grid {
        grid-template-columns: minmax(0, .84fr) minmax(440px, 1.16fr);
        gap: 30px;
        padding: 42px;
    }

    .sf-utility-card {
        min-height: 96px;
        padding: 13px;
    }

    .sf-utility-icon {
        width: 44px;
        height: 44px;
    }
}

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

    .sf-header-inner {
        grid-template-columns: 1fr auto;
    }

    .sf-header .sf-nav {
        position: absolute;
        top: calc(100% + 7px);
        left: 15px;
        right: 15px;
        display: none;
        padding: 9px;
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 18px;
        background: rgba(10, 24, 43, .98);
        box-shadow: 0 24px 55px rgba(0, 6, 20, .34);
    }

    .sf-header .sf-nav.is-open {
        display: grid;
    }

    .sf-header .sf-nav > a {
        padding: 11px 13px;
    }

    .sf-header .sf-nav-mobile-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 6px;
        padding-top: 11px;
        border-color: rgba(255, 255, 255, .09);
    }

    .sf-header .sf-nav-mobile-actions .sf-language {
        grid-column: 1 / -1;
        display: flex;
        width: 100%;
    }

    .sf-header .sf-menu-button {
        display: grid;
    }

    .sf-header-actions .sf-login {
        display: none;
    }

    .sf-hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 48px;
    }

    .sf-hero-copy {
        max-width: 720px;
    }

    .sf-utility-stage {
        width: 100%;
    }

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

    .sf-plan-grid,
    .sf-catalog-layout.is-single .sf-plan-grid,
    .sf-catalog-layout.is-two .sf-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sf-catalog-layout.is-single .sf-plan-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body {
        background:
            radial-gradient(circle at 0 0, rgba(25, 189, 224, .15), transparent 22rem),
            radial-gradient(circle at 100% 3%, rgba(116, 87, 245, .18), transparent 24rem),
            linear-gradient(180deg, #071321 0, #0a1729 840px, #edf2fb 840px);
    }

    .sf-hero {
        padding: 16px 0 34px;
    }

    .sf-hero-grid {
        gap: 28px;
        padding: 32px 24px 24px;
        border-radius: 28px;
    }

    .sf-hero-copy {
        text-align: left;
    }

    .sf-eyebrow,
    .sf-hero-search {
        margin-inline: 0;
    }

    .sf-hero h1 {
        margin-inline: 0;
        font-size: clamp(39px, 10vw, 54px);
    }

    .sf-hero-copy > p {
        margin-inline: 0;
    }

    .sf-hero-links {
        justify-content: flex-start;
    }

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

    .sf-section {
        padding: 45px 0;
    }

    .sf-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .sf-catalog-actions {
        width: 100%;
        justify-content: space-between;
    }

    .sf-plan-grid,
    .sf-catalog-layout.is-single .sf-plan-grid,
    .sf-catalog-layout.is-two .sf-plan-grid {
        grid-template-columns: 1fr;
    }

    .sf-journey {
        padding: 8px 0 52px;
    }

    .sf-journey-head {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .sf-journey-actions {
        width: 100%;
    }

    .sf-journey-actions .sf-button {
        flex: 1;
    }
}

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

    .sf-header {
        padding: 7px 0;
    }

    .sf-header .sf-brand-copy small {
        display: none;
    }

    .sf-header .sf-brand-mark {
        width: 40px;
        height: 40px;
    }

    .sf-header .sf-brand-mark img {
        width: 34px;
        height: 34px;
    }

    .sf-header-actions .sf-register,
    .sf-header-actions .sf-language {
        display: none;
    }

    .sf-hero-grid {
        padding: 28px 18px 18px;
    }

    .sf-eyebrow {
        font-size: 9px;
    }

    .sf-hero h1 {
        margin-top: 18px;
        font-size: clamp(36px, 11.5vw, 48px);
    }

    .sf-hero-copy > p {
        font-size: 13.5px;
    }

    .sf-hero-search {
        min-height: 54px;
        grid-template-columns: 18px minmax(0, 1fr) 44px;
        gap: 9px;
        padding: 5px 5px 5px 14px;
    }

    .sf-hero-search button {
        grid-column: auto;
        min-width: 44px;
        width: 44px;
        margin: 0;
        overflow: hidden;
        color: transparent;
        font-size: 0;
    }

    .sf-hero-search button::before {
        content: "⌕";
        color: #fff;
        font-size: 22px;
        line-height: 1;
    }

    .sf-hero-links {
        grid-template-columns: 1fr;
    }

    .sf-hero-links .sf-button {
        min-height: 47px;
    }

    .sf-utility-stage {
        padding: 17px;
        border-radius: 22px;
    }

    .sf-utility-stage-head {
        align-items: flex-start;
        margin-bottom: 14px;
    }

    .sf-utility-status {
        padding: 6px 8px;
        font-size: 0;
    }

    .sf-utility-grid {
        gap: 8px;
    }

    .sf-utility-card {
        min-height: 118px;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 13px;
    }

    .sf-utility-icon {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    .sf-utility-icon .sf-icon {
        width: 19px;
        height: 19px;
    }

    .sf-utility-card strong {
        font-size: 12px;
    }

    .sf-utility-card small {
        display: -webkit-box;
        overflow: hidden;
        white-space: normal;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .sf-catalog {
        padding-top: 42px;
    }

    .sf-section-heading h2,
    .sf-journey-head h2 {
        font-size: 29px;
    }

    .sf-catalog-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .sf-text-link {
        min-height: 40px;
    }

    .sf-filter-group {
        width: 100%;
        overflow: visible;
    }

    .sf-filter-group button {
        flex: 1 1 auto;
    }

    .sf-product-card,
    .sf-catalog-layout.is-single .sf-product-card {
        min-height: 0;
        padding: 18px;
        border-radius: 21px;
    }

    .sf-product-top,
    .sf-catalog-layout.is-single .sf-product-top {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 13px;
    }

    .sf-product-art,
    .sf-catalog-layout.is-single .sf-product-art {
        width: 70px;
        height: 70px;
        border-radius: 17px;
    }

    .sf-product-art img,
    .sf-catalog-layout.is-single .sf-product-art img {
        width: 54px;
        height: 54px;
    }

    .sf-product-card h3,
    .sf-catalog-layout.is-single .sf-product-card h3 {
        font-size: 15px;
    }

    .sf-product-footer,
    .sf-catalog-layout.is-single .sf-product-footer {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .sf-product-actions,
    .sf-catalog-layout.is-single .sf-product-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
    }

    .sf-product-rent,
    .sf-catalog-layout.is-single .sf-product-rent {
        min-width: 0;
    }

    .sf-journey-shell {
        padding: 24px 18px;
        border-radius: 25px;
    }

    .sf-journey-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sf-footer {
        padding-top: 42px;
    }

    .sf-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sf-footer-brand {
        grid-column: 1 / -1;
    }

    .sf-modal {
        align-items: end;
        padding: 0;
    }

    .sf-modal-panel {
        width: 100%;
        max-height: 90vh;
        border-radius: 24px 24px 0 0;
    }
}

/* Compact catalogue: the same card density from one plan to many plans */
@media (min-width: 1121px) {
    .sf-plan-grid,
    .sf-catalog-layout.is-single .sf-plan-grid,
    .sf-catalog-layout.is-two .sf-plan-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 761px) {
    .sf-catalog-layout.is-single .sf-product-card {
        min-height: 402px;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 21px;
    }

    .sf-catalog-layout.is-single .sf-product-top {
        grid-area: auto;
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .sf-catalog-layout.is-single .sf-product-art {
        width: 76px;
        height: 76px;
    }

    .sf-catalog-layout.is-single .sf-product-art img {
        width: 60px;
        height: 60px;
    }

    .sf-catalog-layout.is-single .sf-product-card h3 {
        font-size: 16px;
    }

    .sf-catalog-layout.is-single .sf-product-description {
        grid-area: auto;
        align-self: auto;
        margin-top: 16px;
    }

    .sf-catalog-layout.is-single .sf-product-periods {
        grid-area: auto;
        align-self: auto;
        margin-top: 17px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .sf-catalog-layout.is-single .sf-product-periods > div {
        display: flex;
    }

    .sf-catalog-layout.is-single .sf-product-periods span {
        text-align: left;
    }

    .sf-product-footer,
    .sf-catalog-layout.is-single .sf-product-footer {
        grid-area: auto;
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
    }

    .sf-product-actions,
    .sf-catalog-layout.is-single .sf-product-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1.08fr;
    }

    .sf-product-detail,
    .sf-catalog-layout.is-single .sf-product-detail,
    .sf-product-rent,
    .sf-catalog-layout.is-single .sf-product-rent {
        width: 100%;
        min-width: 0;
    }

    .sf-product-detail,
    .sf-catalog-layout.is-single .sf-product-detail {
        height: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        place-items: initial;
        font-size: 10.5px;
        white-space: nowrap;
    }
}

/* Contrast QA hardening: keep navigation and footer legible on dark surfaces. */
.sf-header.is-scrolled {
    border-color: rgba(255, 255, 255, .11);
    background: rgba(7, 18, 33, .96);
    box-shadow: 0 12px 34px rgba(2, 8, 23, .22);
}

.sf-header .sf-nav > a {
    color: #becbdd;
}

.sf-header .sf-brand-copy small {
    color: #aab9cc;
}

.sf-section-heading p,
.sf-result-count {
    color: #5b6980;
}

.sf-product-periods > strong,
.sf-product-price > span,
.sf-modal-facts span,
.sf-modal-periods > span,
.sf-modal-footer span {
    color: #8295af;
}

.sf-button-primary {
    background: linear-gradient(135deg, #6847db 0%, #405bc8 52%, #087b98 100%);
}

.sf-footer {
    margin-top: 0;
    padding: 46px 0 18px;
    border-top-color: rgba(255, 255, 255, .10);
}

.sf-footer .sf-footer-brand > p {
    margin-top: 13px;
    color: #9fb0c7;
}

.sf-footer .sf-footer-grid > div:not(.sf-footer-brand) > strong {
    margin-bottom: 5px;
    color: #f7faff;
    font-size: 12.5px;
}

.sf-footer .sf-footer-grid > div:not(.sf-footer-brand) > a {
    color: #aebdd1;
    font-size: 11.75px;
}

.sf-footer .sf-footer-grid > div:not(.sf-footer-brand) > a:hover {
    color: #74ddf0;
}

.sf-footer .sf-brand-copy small {
    color: #a6b6ca;
}

.sf-footer .sf-footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
    border-top-color: rgba(255, 255, 255, .13);
    color: #91a4bd;
}

.sf-footer a:focus-visible {
    outline: 2px solid #74ddf0;
    outline-offset: 4px;
}

@media (max-width: 760px) {
    .sf-footer {
        padding-top: 38px;
    }
}

/* Final polish pass: sharper product presentation and calmer micro-interactions. */
body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.sf-hero-grid {
    box-shadow:
        inset 0 1px rgba(255, 255, 255, .055),
        0 36px 90px rgba(1, 8, 22, .30);
}

.sf-hero-search {
    background: linear-gradient(180deg, #fff, #f7f9fd);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, .85),
        0 18px 45px rgba(0, 6, 20, .24);
}

.sf-hero-search button {
    box-shadow: 0 8px 20px rgba(60, 74, 210, .24);
}

.sf-utility-card small {
    font-size: 11px;
}

.sf-utility-icon {
    transition: transform .22s ease, box-shadow .22s ease;
}

.sf-product-art img,
.sf-catalog-layout.is-single .sf-product-art img,
.sf-modal-product img {
    object-fit: cover;
    object-position: center;
}

.sf-product-card h3,
.sf-catalog-layout.is-single .sf-product-card h3 {
    -webkit-line-clamp: 3;
}

.sf-product-badge {
    font-size: 9.5px;
}

.sf-product-periods > strong,
.sf-product-price > span {
    font-size: 10px;
}

.sf-button-primary {
    background-size: 160% 160%;
    background-position: 0 50%;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background-position .28s ease;
}

.sf-journey-list li {
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.sf-footer a {
    transition: color .18s ease, transform .18s ease;
}

.sf-header a:focus-visible,
.sf-hero a:focus-visible,
.sf-hero button:focus-visible,
.sf-journey a:focus-visible,
.sf-footer a:focus-visible {
    outline-color: rgba(116, 221, 240, .84);
}

@media (hover: hover) {
    .sf-utility-card:hover .sf-utility-icon {
        transform: scale(1.045) rotate(-2deg);
        box-shadow: 0 15px 30px color-mix(in srgb, var(--utility-color) 28%, transparent);
    }

    .sf-button-primary:hover {
        background-position: 100% 50%;
    }

    .sf-journey-list li:hover {
        transform: translateY(-3px);
        border-color: color-mix(in srgb, var(--journey-color) 34%, rgba(255, 255, 255, .12));
        box-shadow: 0 17px 34px rgba(0, 7, 24, .17);
    }

    .sf-footer-grid a:hover {
        transform: translateX(2px);
    }
}

@keyframes sfPolishRise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

@media (prefers-reduced-motion: no-preference) {
    .sf-hero-copy {
        animation: sfPolishRise .58s cubic-bezier(.2, .75, .25, 1) both;
    }

    .sf-utility-stage {
        animation: sfPolishRise .62s .08s cubic-bezier(.2, .75, .25, 1) both;
    }
}

/* Responsive finishing: stable modal, consistent catalogue density, cleaner mobile rhythm. */
html {
    scrollbar-gutter: stable;
}

body {
    min-width: 0;
}

.sf-product-footer,
.sf-catalog-layout.is-single .sf-product-footer {
    padding: 16px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
    border-left: 0;
}

.sf-product-detail,
.sf-catalog-layout.is-single .sf-product-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    place-items: initial;
    white-space: nowrap;
}

.sf-brand:focus-visible,
.sf-utility-card:focus-visible,
.sf-text-link:focus-visible {
    outline: 3px solid #74ddf0;
    outline-offset: 3px;
}

@media (min-width: 761px) {
    .sf-plan-grid,
    .sf-catalog-layout.is-single .sf-plan-grid,
    .sf-catalog-layout.is-two .sf-plan-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 317px));
        justify-content: start;
    }
}

@media (max-width: 1040px) {
    .sf-header .sf-nav-mobile-actions > .sf-register,
    .sf-header .sf-nav-mobile-actions > .sf-register:hover {
        color: #fff;
    }
}

@media (max-width: 520px) {
    .sf-hero-grid {
        padding: 24px 16px 16px;
    }

    .sf-hero h1 {
        font-size: clamp(34px, 10.4vw, 42px);
    }

    .sf-utility-stage {
        padding: 15px;
    }

    .sf-utility-card {
        min-height: 104px;
        gap: 8px;
        padding: 12px;
    }

    .sf-catalog-actions {
        width: 100%;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        gap: 8px;
    }
}

@media (min-width: 360px) and (max-width: 520px) {
    .sf-hero-links {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .sf-hero-links .sf-button {
        min-width: 0;
        padding-right: 9px;
        padding-left: 9px;
        font-size: 11.5px;
    }
}

/* Product detail modal: product summary, offer comparison and one clear next step. */
.sf-modal {
    padding: 24px;
}

.sf-modal-backdrop {
    background: rgba(2, 8, 20, .76);
    backdrop-filter: blur(12px) saturate(115%);
    -webkit-backdrop-filter: blur(12px) saturate(115%);
}

.sf-modal-panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(calc(100vw - 48px), 860px);
    max-height: min(740px, calc(100svh - 48px));
    overflow: hidden;
    overscroll-behavior: contain;
    padding: 0;
    color: #eef4fc;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    background:
        radial-gradient(circle at 93% 2%, rgba(105, 82, 232, .30), transparent 34%),
        radial-gradient(circle at 4% 100%, rgba(9, 171, 198, .12), transparent 31%),
        linear-gradient(148deg, #142641 0%, #0a172b 70%);
    box-shadow:
        0 42px 110px rgba(0, 6, 20, .54),
        inset 0 1px rgba(255, 255, 255, .06);
    scrollbar-width: thin;
    scrollbar-color: rgba(158, 178, 207, .42) transparent;
}

.sf-modal-close {
    top: 20px;
    right: 20px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, .14);
    border-radius: 13px;
    color: #f7faff;
    background: rgba(255, 255, 255, .07);
    box-shadow: inset 0 1px rgba(255, 255, 255, .06);
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.sf-modal-close:hover {
    transform: rotate(3deg);
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .13);
}

.sf-modal-close:focus-visible {
    outline-color: rgba(116, 221, 240, .84);
}

.sf-modal-header {
    position: relative;
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding: 28px 78px 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.sf-modal-header::after {
    content: "";
    position: absolute;
    right: 92px;
    bottom: -1px;
    left: 28px;
    height: 1px;
    opacity: .55;
    background: linear-gradient(90deg, #28bdd7, #7568f5 48%, transparent);
}

.sf-modal-media {
    width: 94px;
    height: 94px;
    overflow: hidden;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 23px;
    background: rgba(255, 255, 255, .97);
    box-shadow:
        0 17px 34px rgba(0, 7, 22, .24),
        inset 0 1px rgba(255, 255, 255, .8);
}

.sf-modal-media img {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    background: #f8fafc;
}

.sf-modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 9px;
}

.sf-modal .sf-mode-pill,
.sf-modal-category {
    min-height: 27px;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    font-size: 9.5px;
    font-weight: 780;
    line-height: 1;
}

.sf-modal .sf-mode-pill.is-auto {
    color: #8de9ed;
    border-color: rgba(55, 211, 218, .22);
    background: rgba(21, 181, 195, .12);
}

.sf-modal .sf-mode-pill.is-manual {
    color: #ffd393;
    border-color: rgba(255, 185, 83, .24);
    background: rgba(220, 143, 28, .12);
}

.sf-modal-category {
    color: #bdcbe0;
    background: rgba(255, 255, 255, .055);
}

.sf-modal-identity h2 {
    max-width: 620px;
    margin: 0;
    color: #fff;
    font-size: clamp(22px, 2.2vw, 29px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -.025em;
    overflow-wrap: anywhere;
}

.sf-modal-body {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    align-items: start;
    gap: 18px;
    padding: 22px 28px 24px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(158, 178, 207, .38) transparent;
}

.sf-modal-body::-webkit-scrollbar {
    width: 7px;
}

.sf-modal-body::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(158, 178, 207, .42);
}

.sf-modal-overview,
.sf-modal-offers {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 19px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .026));
    box-shadow: inset 0 1px rgba(255, 255, 255, .035);
}

.sf-modal-overview h3,
.sf-modal-section-heading h3 {
    margin: 0;
    color: #f8fbff;
    font-size: 15px;
    font-weight: 780;
    letter-spacing: -.012em;
}

.sf-modal-section-heading > span {
    display: block;
    margin-bottom: 4px;
    color: #91a6c0;
    font-size: 10.5px;
    font-weight: 780;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.sf-modal-description {
    margin: 11px 0 18px;
    color: #b2c1d5;
    font-size: 13px;
    line-height: 1.65;
}

.sf-modal-lead {
    margin: 0;
}

.sf-modal-points {
    display: grid;
    gap: 8px;
    margin: 13px 0 0;
    padding: 0;
    list-style: none;
}

.sf-modal-points li {
    position: relative;
    padding-left: 17px;
}

.sf-modal-points li::before {
    content: "";
    position: absolute;
    top: .68em;
    left: 1px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #72e1ec, #7568f5);
    box-shadow: 0 0 0 3px rgba(88, 183, 224, .10);
}

.sf-modal-warning {
    margin-top: 14px;
    padding: 11px 12px;
    border: 1px solid rgba(244, 180, 71, .26);
    border-radius: 12px;
    color: #ffe1a9;
    background: rgba(185, 111, 18, .105);
    font-size: 11.25px;
    line-height: 1.55;
}

.sf-modal-delivery {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid rgba(77, 209, 225, .19);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(24, 177, 197, .115), rgba(39, 102, 170, .07));
}

.sf-modal-offers .sf-modal-delivery {
    margin-top: 15px;
}

.sf-modal-delivery-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #8be6ef;
    background: rgba(21, 179, 201, .15);
    box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}

.sf-modal-delivery-icon .sf-icon {
    width: 20px;
    height: 20px;
}

.sf-modal-delivery span,
.sf-modal-delivery strong,
.sf-modal-delivery small {
    display: block;
}

.sf-modal-delivery span {
    color: #91a5bf;
    font-size: 10.5px;
    font-weight: 780;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.sf-modal-delivery strong {
    margin-top: 2px;
    color: #fff;
    font-size: 13px;
}

.sf-modal-delivery small {
    margin-top: 3px;
    color: #a5b5ca;
    font-size: 10.5px;
    line-height: 1.4;
}

.sf-modal-period-list {
    display: grid;
    gap: 8px;
    margin-top: 13px;
}

.sf-modal-period-row {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 13px;
    background: rgba(255, 255, 255, .05);
    transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.sf-modal-period-row > span strong,
.sf-modal-period-row > span small {
    display: block;
}

.sf-modal-period-row > span strong {
    color: #f4f8fd;
    font-size: 12.5px;
}

.sf-modal-period-row > span small {
    margin-top: 2px;
    color: #91a4bd;
    font-size: 9.5px;
}

.sf-modal-period-row > strong {
    color: #fff;
    font-size: 16px;
    font-variant-numeric: tabular-nums;
}

.sf-modal-footer {
    position: sticky;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0;
    padding: 18px 28px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    background: rgba(7, 18, 34, .95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.sf-modal-price span,
.sf-modal-price strong {
    display: block;
}

.sf-modal-price span {
    color: #91a4bd;
    font-size: 10.5px;
    font-weight: 780;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.sf-modal-price strong {
    margin-top: 2px;
    color: #fff;
    font-size: 28px;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.sf-modal-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sf-modal-action small {
    max-width: 150px;
    color: #94a7c0;
    font-size: 10px;
    line-height: 1.45;
    text-align: right;
}

.sf-modal-action .sf-button {
    min-width: 190px;
    min-height: 49px;
    padding-right: 18px;
    padding-left: 18px;
    border-radius: 14px;
}

.sf-modal-action .sf-button span {
    color: #fff;
    font-size: 12.5px;
    font-weight: 780;
    letter-spacing: 0;
    text-transform: none;
}

.sf-modal-action .sf-button .sf-icon {
    width: 17px;
    height: 17px;
    transition: transform .18s ease;
}

.sf-modal-action .sf-button:hover .sf-icon {
    transform: translateX(3px);
}

@media (hover: hover) {
    .sf-modal-period-row:hover {
        transform: translateY(-1px);
        border-color: rgba(116, 221, 240, .24);
        background: rgba(255, 255, 255, .07);
    }
}

@keyframes sfModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes sfModalEnter {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .sf-modal:not([hidden]) .sf-modal-backdrop {
        animation: sfModalFadeIn .18s ease both;
    }

    .sf-modal:not([hidden]) .sf-modal-panel {
        animation: sfModalEnter .24s cubic-bezier(.2, .76, .25, 1) both;
    }
}

@media (max-width: 720px) {
    .sf-modal {
        align-items: end;
        padding: 0;
    }

    .sf-modal-panel {
        width: 100%;
        max-height: 92svh;
        border-radius: 25px 25px 0 0;
    }

    .sf-modal-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }

    .sf-modal-header {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
        padding: 20px 62px 18px 18px;
    }

    .sf-modal-header::after {
        right: 70px;
        left: 18px;
    }

    .sf-modal-media {
        width: 72px;
        height: 72px;
        padding: 6px;
        border-radius: 18px;
    }

    .sf-modal-media img {
        border-radius: 12px;
    }

    .sf-modal-identity h2 {
        font-size: 19px;
    }

    .sf-modal-body {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px 18px 18px;
    }

    .sf-modal-overview,
    .sf-modal-offers {
        padding: 15px;
    }

    .sf-modal-description {
        margin-bottom: 14px;
    }

    .sf-modal-footer {
        padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
    }

    .sf-modal-action small {
        display: none;
    }

    html {
        scrollbar-gutter: auto;
    }
}

@media (max-width: 430px) {
    .sf-modal-footer {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sf-modal-price {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
    }

    .sf-modal-price strong {
        font-size: 24px;
    }

    .sf-modal-action,
    .sf-modal-action .sf-button {
        width: 100%;
    }
}

@media (max-height: 640px) {
    .sf-modal {
        align-items: end;
        padding: 0;
    }

    .sf-modal-panel {
        width: min(100%, 860px);
        max-height: 94dvh;
        border-radius: 24px 24px 0 0;
    }

    .sf-modal-header {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 13px;
        padding: 14px 68px 13px 18px;
    }

    .sf-modal-media {
        width: 64px;
        height: 64px;
        padding: 5px;
        border-radius: 16px;
    }

    .sf-modal-identity h2 {
        font-size: 18px;
    }

    .sf-modal-body {
        gap: 12px;
        padding: 12px 18px 14px;
    }

    .sf-modal-overview,
    .sf-modal-offers {
        padding: 14px;
    }

    .sf-modal-footer {
        padding: 11px 18px calc(11px + env(safe-area-inset-bottom));
    }
}

/* Detail modal refinement: lighter hierarchy, calmer motion and aligned icons. */
.sf-modal-header {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 76px 21px 24px;
}

.sf-modal-header::after {
    left: 24px;
}

.sf-modal-media {
    width: 82px;
    height: 82px;
    padding: 7px;
    border-radius: 20px;
}

.sf-modal-media img {
    border-radius: 14px;
}

.sf-modal-overview {
    padding: 4px 6px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.sf-modal-warning {
    padding: 11px 13px;
    border: 0;
    border-left: 3px solid #e5aa42;
    border-radius: 8px 12px 12px 8px;
    background: linear-gradient(90deg, rgba(185, 111, 18, .13), rgba(185, 111, 18, .07));
}

.sf-modal-delivery-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 0;
}

.sf-modal-delivery-icon .sf-icon {
    display: block;
    transform: translateY(.5px);
}

.sf-modal-close,
.sf-modal-action .sf-button {
    transition:
        transform .26s cubic-bezier(.2, .75, .2, 1),
        border-color .24s ease,
        background-color .24s ease,
        box-shadow .24s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .sf-modal:not([hidden]) .sf-modal-panel {
        animation: sfModalEnter .30s cubic-bezier(.16, 1, .3, 1) both;
    }
}

@media (max-width: 720px) {
    .sf-modal-header {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 13px;
        padding: 18px 60px 16px 17px;
    }

    .sf-modal-header::after {
        left: 17px;
    }

    .sf-modal-media {
        width: 68px;
        height: 68px;
        padding: 6px;
        border-radius: 17px;
    }

    .sf-modal-media img {
        border-radius: 11px;
    }

    .sf-modal-overview {
        padding: 2px 1px 0;
    }
}

@media (max-height: 640px) {
    .sf-modal-header {
        grid-template-columns: 60px minmax(0, 1fr);
        padding: 13px 66px 12px 17px;
    }

    .sf-modal-media {
        width: 60px;
        height: 60px;
    }

    .sf-modal-overview {
        padding: 2px 1px 0;
    }
}
