:root {
    color-scheme: dark;

    --sf-bg: #09090d;
    --sf-bg-soft: #0e0e14;
    --sf-surface: #13131b;
    --sf-surface-2: #191923;
    --sf-surface-glass: rgba(19, 19, 27, .78);

    --sf-text: #f7f5ff;
    --sf-text-soft: #b1aebe;
    --sf-text-muted: #777482;

    --sf-border: rgba(255, 255, 255, .08);
    --sf-border-strong: rgba(255, 255, 255, .14);

    --sf-accent: #FF4130;
    --sf-accent-2: #f97316;
    --sf-accent-soft: rgb(var(--sf-accent-rgb) / .14);
    --sf-accent-glow: rgb(var(--sf-accent-rgb) / .28);

    --sf-success: #32d583;
    --sf-danger: #fb7185;

    --sf-shadow:
        0 24px 80px rgba(0, 0, 0, .38);

    --sf-shadow-soft:
        0 14px 46px rgba(0, 0, 0, .22);

    --sf-radius-sm: 12px;
    --sf-radius: 18px;
    --sf-radius-lg: 26px;
    --sf-radius-xl: 36px;

    --sf-shell: 1240px;
    --sf-ease: cubic-bezier(.22, 1, .36, 1);
}

html[data-theme="light"] {
    color-scheme: light;

    --sf-bg: #f7f6fa;
    --sf-bg-soft: #efedf5;
    --sf-surface: #ffffff;
    --sf-surface-2: #f5f3f9;
    --sf-surface-glass: rgba(255, 255, 255, .82);

    --sf-text: #18151f;
    --sf-text-soft: #625d6b;
    --sf-text-muted: #8a8492;

    --sf-border: rgba(25, 20, 34, .08);
    --sf-border-strong: rgba(25, 20, 34, .14);

    --sf-shadow:
        0 24px 70px rgba(37, 24, 55, .10);

    --sf-shadow-soft:
        0 14px 40px rgba(37, 24, 55, .07);
}

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

html {
    scroll-behavior: smooth;
    background: var(--sf-bg);
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;

    color: var(--sf-text);
    background:
        radial-gradient(
            circle at 8% -10%,
            rgb(var(--sf-accent-rgb) / .16),
            transparent 34rem
        ),
        radial-gradient(
            circle at 92% 8%,
            rgba(249, 115, 22, .08),
            transparent 30rem
        ),
        var(--sf-bg);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;

    transition:
        color 360ms var(--sf-ease),
        background-color 360ms var(--sf-ease);
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a,
select,
[role="button"] {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

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

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

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.sf-main {
    min-height: 65vh;
}

.sf-page-noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: .025;
    pointer-events: none;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* Header */

.sf-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: transparent;
    border-bottom: 1px solid transparent;

    transition:
        background-color 320ms var(--sf-ease),
        border-color 320ms var(--sf-ease),
        box-shadow 320ms var(--sf-ease);
}

.sf-header.is-scrolled {
    background: var(--sf-surface-glass);
    border-color: var(--sf-border);
    box-shadow: 0 10px 42px rgba(0, 0, 0, .08);

    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
}

.sf-header__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.sf-brand {
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.sf-brand > img {
    width: auto;
    height: 38px;
    max-width: 170px;
    object-fit: contain;
}

.sf-brand__mark {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background:
        linear-gradient(
            135deg,
            var(--sf-accent),
            var(--sf-active) 60%,
            var(--sf-accent-2)
        );

    border-radius: 13px;
    box-shadow: 0 10px 30px var(--sf-accent-glow);
    font-size: 17px;
    font-weight: 800;
}

.sf-brand__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sf-brand__text strong {
    font-size: 16px;
    letter-spacing: -.02em;
}

.sf-brand__text small {
    color: var(--sf-text-muted);
    font-size: 10px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.sf-desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sf-desktop-nav a {
    position: relative;
    padding: 10px 13px;
    color: var(--sf-text-soft);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;

    transition:
        color 220ms ease,
        background-color 220ms ease;
}

.sf-desktop-nav a:hover,
.sf-desktop-nav a.is-active {
    color: var(--sf-text);
    background: var(--sf-accent-soft);
}

.sf-desktop-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 16px;
    height: 2px;

    background: var(--sf-accent);
    border-radius: 999px;
    transform: translateX(-50%);
}

.sf-header__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sf-currency-form select {
    height: 42px;
    padding: 0 30px 0 12px;

    color: var(--sf-text);
    background: var(--sf-surface);
    border: 1px solid var(--sf-border);
    border-radius: 12px;

    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.sf-theme-toggle,
.sf-mobile-toggle,
.sf-icon-button {
    position: relative;
    overflow: hidden;

    width: 42px;
    height: 42px;
    min-width: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    color: var(--sf-text);
    background: var(--sf-surface-glass);
    border: 1px solid var(--sf-border);
    border-radius: 13px;
    cursor: pointer;

    transition:
        transform 180ms var(--sf-ease),
        color 220ms ease,
        border-color 220ms ease,
        background-color 220ms ease;
}

.sf-theme-toggle:hover,
.sf-icon-button:hover {
    color: var(--sf-accent);
    border-color: rgb(var(--sf-accent-rgb) / .38);
}

.sf-theme-toggle:active,
.sf-mobile-toggle:active,
.sf-icon-button:active {
    transform: scale(.94);
}

.sf-theme-toggle svg {
    position: absolute;
    width: 19px;
    height: 19px;

    transition:
        opacity 300ms var(--sf-ease),
        transform 420ms var(--sf-ease);
}

html[data-theme="dark"] .sf-theme-toggle__sun {
    opacity: 1;
    transform: rotate(0) scale(1);
}

html[data-theme="dark"] .sf-theme-toggle__moon {
    opacity: 0;
    transform: rotate(-70deg) scale(.45);
}

html[data-theme="light"] .sf-theme-toggle__sun {
    opacity: 0;
    transform: rotate(70deg) scale(.45);
}

html[data-theme="light"] .sf-theme-toggle__moon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.sf-header-login {
    padding: 10px 12px;
    color: var(--sf-text-soft);
    font-size: 14px;
    font-weight: 650;
}

.sf-account-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px 5px 5px;

    background: var(--sf-surface);
    border: 1px solid var(--sf-border);
    border-radius: 14px;

    font-size: 13px;
    font-weight: 650;
}

.sf-account-button__avatar {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: var(--sf-accent);
    border-radius: 10px;
    font-weight: 800;
}

.sf-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.sf-mobile-toggle span {
    width: 17px;
    height: 1.5px;
    background: currentColor;
    border-radius: 9px;
    transition: transform 220ms ease, opacity 220ms ease;
}

.sf-mobile-panel {
    display: none;
    overflow: hidden;
    max-height: 0;
    background: var(--sf-surface-glass);
    border-top: 1px solid var(--sf-border);

    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);

    transition: max-height 450ms var(--sf-ease);
}

.sf-mobile-panel.is-open {
    max-height: 480px;
}

.sf-mobile-panel nav {
    padding: 18px 0 24px;
    display: grid;
    gap: 7px;
}

.sf-mobile-panel a,
.sf-mobile-panel button {
    width: 100%;
    display: flex;
    padding: 13px 15px;

    color: var(--sf-text);
    background: transparent;
    border: 0;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 650;
    text-align: left;
}

.sf-mobile-panel a:hover,
.sf-mobile-panel button:hover {
    background: var(--sf-accent-soft);
}

/* Buttons */

.sf-button {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 14px;
    cursor: pointer;

    font-size: 14px;
    font-weight: 750;
    letter-spacing: -.01em;

    transition:
        transform 180ms var(--sf-ease),
        box-shadow 280ms var(--sf-ease),
        filter 180ms ease,
        border-color 220ms ease;
}

.sf-button svg {
    width: 18px;
    height: 18px;
}

.sf-button:active {
    transform: scale(.97);
}

.sf-button--primary {
    color: #fff;
    background:
        linear-gradient(
            135deg,
            var(--sf-active),
            var(--sf-accent) 58%,
            var(--sf-accent)
        );

    box-shadow:
        0 12px 32px rgb(var(--sf-accent-rgb) / .26);
}

.sf-button--primary:hover {
    filter: brightness(1.08);
    box-shadow:
        0 18px 44px rgb(var(--sf-accent-rgb) / .36);
}

.sf-button--light {
    color: #17121e;
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .14);
}

.sf-header-register {
    min-height: 42px;
    padding-inline: 15px;
}

/* Hero */

.sf-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 760px;

    display: flex;
    align-items: center;

    padding: 92px 0 112px;
}

.sf-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;

    background:
        linear-gradient(
            180deg,
            rgb(var(--sf-accent-rgb) / .05),
            transparent 42%
        );
}

.sf-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .24;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .045) 1px,
            transparent 1px
        );

    background-size: 58px 58px;
    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 82%
        );
}

html[data-theme="light"] .sf-hero::after {
    opacity: .18;
    background-image:
        linear-gradient(
            rgba(20, 15, 28, .08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(20, 15, 28, .08) 1px,
            transparent 1px
        );
}

.sf-hero__orb {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(75px);
    pointer-events: none;
    animation: sf-orb-float 11s ease-in-out infinite;
}

.sf-hero__orb--one {
    width: 430px;
    height: 430px;
    top: 4%;
    right: 4%;
    background: rgb(var(--sf-accent-rgb) / .20);
}

.sf-hero__orb--two {
    width: 310px;
    height: 310px;
    left: -8%;
    bottom: 3%;
    background: rgba(249, 115, 22, .10);
    animation-delay: -4s;
}

@keyframes sf-orb-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(18px, -22px, 0) scale(1.06);
    }
}

.sf-hero__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(390px, .85fr);
    align-items: center;
    gap: 78px;
}

.sf-hero__content {
    max-width: 700px;
}

.sf-hero__badge,
.sf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--sf-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

html[data-theme="light"] .sf-hero__badge,
html[data-theme="light"] .sf-eyebrow {
    color: var(--sf-active);
}

.sf-hero__badge {
    padding: 8px 11px;
    background: var(--sf-accent-soft);
    border: 1px solid rgb(var(--sf-accent-rgb) / .22);
    border-radius: 999px;
}

.sf-hero__badge > span {
    width: 7px;
    height: 7px;
    background: var(--sf-accent);
    border-radius: 999px;
    box-shadow: 0 0 0 5px rgb(var(--sf-accent-rgb) / .12);
}

.sf-hero h1 {
    margin: 24px 0 22px;
    max-width: 720px;

    font-size: clamp(49px, 6.2vw, 82px);
    line-height: .98;
    letter-spacing: -.065em;
    font-weight: 850;
}

.sf-hero h1 span {
    display: block;
    color: transparent;
    background:
        linear-gradient(
            100deg,
            var(--sf-accent),
            #f5f3ff 50%,
            #fb923c
        );
    -webkit-background-clip: text;
    background-clip: text;
}

html[data-theme="light"] .sf-hero h1 span {
    background:
        linear-gradient(
            100deg,
            var(--sf-active),
            var(--sf-accent) 48%,
            #ea580c
        );
    -webkit-background-clip: text;
    background-clip: text;
}

.sf-hero__content > p {
    max-width: 620px;
    margin: 0;

    color: var(--sf-text-soft);
    font-size: 18px;
    line-height: 1.72;
}

.sf-hero-search {
    width: min(100%, 610px);
    min-height: 64px;
    margin-top: 34px;
    padding: 7px 7px 7px 19px;

    display: flex;
    align-items: center;
    gap: 12px;

    background: var(--sf-surface-glass);
    border: 1px solid var(--sf-border-strong);
    border-radius: 18px;

    box-shadow: var(--sf-shadow-soft);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    transition:
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.sf-hero-search:focus-within {
    border-color: rgb(var(--sf-accent-rgb) / .55);
    box-shadow:
        0 0 0 4px var(--sf-accent-soft),
        var(--sf-shadow-soft);
}

.sf-hero-search > svg {
    width: 21px;
    height: 21px;
    color: var(--sf-text-muted);
}

.sf-hero-search input {
    min-width: 0;
    flex: 1;
    padding: 10px 0;

    color: var(--sf-text);
    background: transparent !important;
    border: 0 !important;
    outline: 0;
    box-shadow: none !important;

    font-size: 15px;
}

.sf-hero-search input::placeholder {
    color: var(--sf-text-muted);
}

.sf-hero-search button {
    min-height: 49px;
    padding: 0 20px;

    color: #fff;
    background: var(--sf-accent);
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 750;

    transition:
        transform 180ms ease,
        filter 180ms ease;
}

.sf-hero-search button:hover {
    filter: brightness(1.08);
}

.sf-hero-search button:active {
    transform: scale(.97);
}

.sf-hero__actions {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 19px;
}

.sf-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--sf-text-soft);
    font-size: 14px;
    font-weight: 700;

    transition: color 200ms ease;
}

.sf-text-link:hover {
    color: var(--sf-accent);
}

.sf-hero__metrics {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 0;
}

.sf-hero__metrics > div {
    padding: 0 28px;
    border-right: 1px solid var(--sf-border);
}

.sf-hero__metrics > div:first-child {
    padding-left: 0;
}

.sf-hero__metrics > div:last-child {
    border-right: 0;
}

.sf-hero__metrics strong {
    display: block;
    margin-bottom: 4px;

    color: var(--sf-text);
    font-size: 22px;
    letter-spacing: -.03em;
}

.sf-hero__metrics span {
    color: var(--sf-text-muted);
    font-size: 12px;
}

/* Console */

.sf-hero-console {
    position: relative;
    transform-style: preserve-3d;

    padding: 1px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, .18),
            rgb(var(--sf-accent-rgb) / .30),
            rgba(249, 115, 22, .12)
        );

    border-radius: 29px;
    box-shadow:
        0 45px 120px rgba(0, 0, 0, .42),
        0 0 80px rgb(var(--sf-accent-rgb) / .10);

    transition: transform 350ms var(--sf-ease);
}

.sf-hero-console::before {
    content: "";
    position: absolute;
    inset: 12% 10% -12%;
    z-index: -1;

    background: rgb(var(--sf-accent-rgb) / .20);
    filter: blur(70px);
    border-radius: 999px;
}

.sf-hero-console__topbar {
    height: 52px;
    padding: 0 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--sf-text-muted);
    background: rgba(10, 10, 15, .88);
    border-radius: 28px 28px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);

    font-size: 11px;
}

html[data-theme="light"] .sf-hero-console__topbar {
    background: rgba(248, 247, 251, .96);
}

.sf-hero-console__topbar > div {
    display: flex;
    gap: 5px;
}

.sf-hero-console__topbar > div span {
    width: 7px;
    height: 7px;
    background: var(--sf-border-strong);
    border-radius: 50%;
}

.sf-live-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sf-success);
    font-weight: 700;
}

.sf-live-status i {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(50, 213, 131, .10);
}

.sf-hero-console__body {
    padding: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(19, 19, 27, .98),
            rgba(12, 12, 18, .98)
        );
    border-radius: 0 0 28px 28px;
}

html[data-theme="light"] .sf-hero-console__body {
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .99),
            rgba(244, 241, 249, .99)
        );
}

.sf-console-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.sf-console-heading span:first-child {
    color: var(--sf-text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sf-console-heading h2 {
    margin: 7px 0 0;
    font-size: 24px;
    line-height: 1.16;
    letter-spacing: -.04em;
}

.sf-console-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--sf-accent);
    background: var(--sf-accent-soft);
    border: 1px solid rgb(var(--sf-accent-rgb) / .22);
    border-radius: 15px;
}

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

.sf-console-product {
    margin-top: 25px;
    padding: 13px;

    display: flex;
    align-items: center;
    gap: 13px;

    background: var(--sf-surface-2);
    border: 1px solid var(--sf-border);
    border-radius: 17px;

    transition:
        transform 250ms var(--sf-ease),
        border-color 250ms ease;
}

.sf-console-product:hover {
    transform: translateY(-3px);
    border-color: rgb(var(--sf-accent-rgb) / .35);
}

.sf-console-product__image {
    width: 58px;
    height: 58px;
    min-width: 58px;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    color: var(--sf-accent);
    background: var(--sf-accent-soft);
    border-radius: 13px;
}

.sf-console-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-console-product__image svg {
    width: 25px;
}

.sf-console-product__info {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sf-console-product__info small {
    color: var(--sf-text-muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.sf-console-product__info strong {
    overflow: hidden;
    color: var(--sf-text);
    font-size: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sf-console-product__info span {
    color: var(--sf-accent);
    font-size: 13px;
    font-weight: 800;
}

.sf-console-product__arrow {
    width: 18px;
    height: 18px;
    color: var(--sf-text-muted);
}

.sf-console-grid {
    margin-top: 13px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sf-console-grid > div {
    min-height: 142px;
    padding: 17px;

    display: flex;
    flex-direction: column;

    background: var(--sf-surface-2);
    border: 1px solid var(--sf-border);
    border-radius: 17px;
}

.sf-console-grid__icon {
    width: 37px;
    height: 37px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--sf-accent);
    background: var(--sf-accent-soft);
    border-radius: 11px;
}

.sf-console-grid__icon svg {
    width: 19px;
}

.sf-console-grid strong {
    margin-top: auto;
    font-size: 13px;
}

.sf-console-grid small {
    margin-top: 4px;
    color: var(--sf-text-muted);
    font-size: 10px;
}

.sf-console-activity {
    margin-top: 13px;
    padding: 15px 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--sf-surface-2);
    border: 1px solid var(--sf-border);
    border-radius: 17px;
}

.sf-console-activity > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sf-console-activity span {
    color: var(--sf-text-muted);
    font-size: 10px;
}

.sf-console-activity strong {
    color: var(--sf-success);
    font-size: 12px;
}

.sf-console-activity__wave {
    height: 28px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sf-console-activity__wave i {
    width: 3px;
    height: 12px;
    background: var(--sf-accent);
    border-radius: 999px;
    animation: sf-wave 1.2s ease-in-out infinite;
}

.sf-console-activity__wave i:nth-child(2) {
    animation-delay: -.9s;
}

.sf-console-activity__wave i:nth-child(3) {
    animation-delay: -.6s;
}

.sf-console-activity__wave i:nth-child(4) {
    animation-delay: -.3s;
}

@keyframes sf-wave {
    0%,
    100% {
        height: 8px;
        opacity: .45;
    }

    50% {
        height: 25px;
        opacity: 1;
    }
}

/* Trust */

.sf-trust-strip {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--sf-border);
    border-bottom: 1px solid var(--sf-border);
    background: var(--sf-surface-glass);

    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.sf-trust-strip > .sf-shell {
    min-height: 104px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.sf-trust-strip > .sf-shell > div {
    padding: 20px 25px;

    display: flex;
    align-items: center;
    gap: 13px;

    border-right: 1px solid var(--sf-border);
}

.sf-trust-strip > .sf-shell > div:first-child {
    padding-left: 0;
}

.sf-trust-strip > .sf-shell > div:last-child {
    border-right: 0;
}

.sf-trust-strip svg {
    width: 22px;
    height: 22px;
    color: var(--sf-accent);
}

.sf-trust-strip span {
    display: flex;
    flex-direction: column;
    gap: 3px;

    color: var(--sf-text-muted);
    font-size: 11px;
}

.sf-trust-strip strong {
    color: var(--sf-text);
    font-size: 13px;
}

/* Sections */

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

.sf-section--surface {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgb(var(--sf-accent-rgb) / .035),
            transparent
        );
    border-top: 1px solid var(--sf-border);
    border-bottom: 1px solid var(--sf-border);
}

.sf-section-top {
    margin-bottom: 38px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

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

.sf-section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.sf-section-heading h2 {
    margin: 11px 0 0;

    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -.052em;
}

.sf-section-heading p {
    margin: 15px 0 0;

    color: var(--sf-text-soft);
    font-size: 16px;
    line-height: 1.7;
}

/* Categories */

.sf-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.sf-category-card {
    position: relative;
    overflow: hidden;
    min-height: 106px;
    padding: 15px;

    display: flex;
    align-items: center;
    gap: 14px;

    background: var(--sf-surface);
    border: 1px solid var(--sf-border);
    border-radius: 18px;
    box-shadow: var(--sf-shadow-soft);

    transition:
        transform 300ms var(--sf-ease),
        border-color 250ms ease,
        box-shadow 300ms var(--sf-ease);
}

.sf-category-card::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -55px;
    bottom: -65px;

    background: var(--sf-accent-soft);
    border-radius: 50%;
    filter: blur(10px);

    transition: transform 350ms var(--sf-ease);
}

.sf-category-card:hover {
    transform: translateY(-5px);
    border-color: rgb(var(--sf-accent-rgb) / .34);
    box-shadow: var(--sf-shadow);
}

.sf-category-card:hover::after {
    transform: scale(1.7);
}

.sf-category-card__visual {
    width: 69px;
    height: 69px;
    min-width: 69px;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--sf-accent-soft),
            rgba(249, 115, 22, .09)
        );

    border-radius: 15px;
}

.sf-category-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-category-card__monogram {
    color: var(--sf-accent);
    font-size: 25px;
    font-weight: 850;
}

.sf-category-card__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sf-category-card__content strong {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-category-card__content small {
    color: var(--sf-text-muted);
    font-size: 11px;
}

.sf-category-card__arrow {
    position: relative;
    z-index: 2;
    margin-left: auto;
    color: var(--sf-text-muted);

    transition:
        color 220ms ease,
        transform 260ms var(--sf-ease);
}

.sf-category-card__arrow svg {
    width: 17px;
}

.sf-category-card:hover .sf-category-card__arrow {
    color: var(--sf-accent);
    transform: translateX(3px);
}

/* Products */

.sf-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.sf-product-card {
    overflow: hidden;

    background: var(--sf-surface);
    border: 1px solid var(--sf-border);
    border-radius: 21px;
    box-shadow: var(--sf-shadow-soft);

    transition:
        transform 320ms var(--sf-ease),
        border-color 250ms ease,
        box-shadow 320ms var(--sf-ease);
}

.sf-product-card:hover {
    transform: translateY(-7px);
    border-color: rgb(var(--sf-accent-rgb) / .34);
    box-shadow: var(--sf-shadow);
}

.sf-product-card__media {
    position: relative;
    overflow: hidden;
    height: 220px;
    display: block;
    background: var(--sf-surface-2);
}

.sf-product-card__media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 650ms var(--sf-ease);
}

.sf-product-card:hover
.sf-product-card__media > img {
    transform: scale(1.06);
}

.sf-product-card__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(6, 6, 10, .58)
        );
}

.sf-product-card__placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--sf-accent);
    background:
        radial-gradient(
            circle at 40% 30%,
            rgb(var(--sf-accent-rgb) / .20),
            transparent 50%
        ),
        var(--sf-surface-2);
}

.sf-product-card__placeholder svg {
    width: 46px;
    height: 46px;
}

.sf-product-card__discount,
.sf-product-card__stock {
    position: absolute;
    top: 13px;
    z-index: 2;

    padding: 6px 8px;
    border-radius: 9px;

    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .06em;

    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.sf-product-card__discount {
    left: 13px;
    color: #fff;
    background: rgba(249, 115, 22, .88);
}

.sf-product-card__stock {
    right: 13px;
}

.sf-product-card__stock.is-active {
    color: #d1fae5;
    background: rgba(16, 185, 129, .25);
    border: 1px solid rgba(52, 211, 153, .25);
}

.sf-product-card__stock.is-out {
    color: #fecdd3;
    background: rgba(244, 63, 94, .25);
}

.sf-product-card__body {
    padding: 19px;
}

.sf-product-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;

    color: var(--sf-text-muted);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .065em;
    text-transform: uppercase;
}

.sf-product-card h3 {
    margin: 11px 0 0;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -.025em;
}

.sf-product-card h3 a {
    transition: color 200ms ease;
}

.sf-product-card h3 a:hover {
    color: var(--sf-accent);
}

.sf-product-card__body > p {
    min-height: 39px;
    margin: 9px 0 0;

    color: var(--sf-text-soft);
    font-size: 12px;
    line-height: 1.6;
}

.sf-product-card__footer {
    margin-top: 18px;
    padding-top: 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid var(--sf-border);
}

.sf-product-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sf-product-card__price strong {
    font-size: 17px;
    letter-spacing: -.025em;
}

.sf-product-card__price del {
    color: var(--sf-text-muted);
    font-size: 10px;
}

.sf-product-card .sf-icon-button {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
}

.sf-product-card .sf-icon-button svg {
    width: 17px;
}

/* Process */

.sf-process-grid {
    position: relative;
    margin-top: 55px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sf-process-grid::before {
    content: "";
    position: absolute;
    top: 47px;
    left: 16%;
    right: 16%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgb(var(--sf-accent-rgb) / .45),
            transparent
        );
}

.sf-process-grid article {
    position: relative;
    min-height: 270px;
    padding: 28px;

    background: var(--sf-surface);
    border: 1px solid var(--sf-border);
    border-radius: 22px;
    box-shadow: var(--sf-shadow-soft);

    transition:
        transform 300ms var(--sf-ease),
        border-color 250ms ease;
}

.sf-process-grid article:hover {
    transform: translateY(-6px);
    border-color: rgb(var(--sf-accent-rgb) / .34);
}

.sf-process-number {
    position: absolute;
    top: 20px;
    right: 22px;

    color: var(--sf-border-strong);
    font-size: 37px;
    font-weight: 900;
    letter-spacing: -.07em;
}

.sf-process-icon {
    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--sf-accent);
    background: var(--sf-accent-soft);
    border: 1px solid rgb(var(--sf-accent-rgb) / .20);
    border-radius: 16px;
}

.sf-process-icon svg {
    width: 24px;
    height: 24px;
}

.sf-process-grid h3 {
    margin: 34px 0 0;
    font-size: 20px;
    letter-spacing: -.035em;
}

.sf-process-grid p {
    margin: 12px 0 0;
    color: var(--sf-text-soft);
    font-size: 14px;
    line-height: 1.72;
}

/* CTA */

.sf-cta-section {
    padding: 55px 0 110px;
}

.sf-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 285px;

    padding: 55px 62px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    color: #fff;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(249, 115, 22, .27),
            transparent 22rem
        ),
        radial-gradient(
            circle at 5% 100%,
            rgba(255, 154, 145, .24),
            transparent 28rem
        ),
        linear-gradient(
            135deg,
            var(--sf-active),
            var(--sf-active) 48%,
            var(--sf-active)
        );

    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 32px;
    box-shadow:
        0 40px 100px rgba(76, 29, 149, .30);
}

.sf-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .18;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .20) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .20) 1px,
            transparent 1px
        );

    background-size: 40px 40px;
    mask-image:
        linear-gradient(
            100deg,
            black,
            transparent
        );
}

.sf-cta > div {
    max-width: 700px;
}

.sf-cta .sf-eyebrow {
    color: rgba(255, 255, 255, .72);
}

.sf-cta h2 {
    margin: 11px 0 0;
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.04;
    letter-spacing: -.055em;
}

.sf-cta p {
    max-width: 590px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.7;
}

/* Footer */

.sf-footer {
    padding: 75px 0 25px;
    background: var(--sf-bg-soft);
    border-top: 1px solid var(--sf-border);
}

.sf-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.sf-footer__brand > p,
.sf-footer__grid > div > p {
    max-width: 350px;
    margin: 18px 0 0;

    color: var(--sf-text-soft);
    font-size: 13px;
    line-height: 1.75;
}

.sf-footer__grid h3 {
    margin: 0 0 18px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sf-footer__grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sf-footer__grid > div:not(:first-child) a {
    margin-bottom: 11px;
    color: var(--sf-text-soft);
    font-size: 13px;

    transition: color 200ms ease;
}

.sf-footer__grid a:hover {
    color: var(--sf-accent);
}

.sf-footer__bottom {
    margin-top: 55px;
    padding-top: 23px;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    color: var(--sf-text-muted);
    border-top: 1px solid var(--sf-border);
    font-size: 11px;
}

/* Notice */

.sf-notice {
    position: fixed;
    top: 94px;
    right: 22px;
    z-index: 1100;

    min-width: 280px;
    max-width: 420px;
    padding: 13px 13px 13px 16px;

    display: flex;
    align-items: center;
    gap: 14px;

    color: #d1fae5;
    background: rgba(6, 78, 59, .94);
    border: 1px solid rgba(52, 211, 153, .25);
    border-radius: 14px;
    box-shadow: var(--sf-shadow);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.sf-notice.is-error {
    color: #ffe4e6;
    background: rgba(136, 19, 55, .95);
    border-color: rgba(251, 113, 133, .30);
}

.sf-notice span {
    flex: 1;
    font-size: 13px;
}

.sf-notice button {
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 21px;
}

/* Form compatibility */

input,
textarea,
select {
    color: var(--sf-text);
    background-color: var(--sf-surface);
    border-color: var(--sf-border-strong);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--sf-accent);
    box-shadow: 0 0 0 4px var(--sf-accent-soft);
}

/* Reveal */

.js [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity 750ms var(--sf-ease),
        transform 750ms var(--sf-ease);
}

.js [data-reveal="scale"] {
    transform: scale(.965);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Responsive */

@media (max-width: 1100px) {
    .sf-desktop-nav {
        display: none;
    }

    .sf-mobile-toggle {
        display: inline-flex;
    }

    .sf-mobile-panel {
        display: block;
    }

    .sf-hero__grid {
        grid-template-columns: 1fr 410px;
        gap: 42px;
    }

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

    .sf-trust-strip > .sf-shell {
        grid-template-columns: repeat(2, 1fr);
    }

    .sf-trust-strip > .sf-shell > div:nth-child(2) {
        border-right: 0;
    }

    .sf-trust-strip > .sf-shell > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--sf-border);
    }
}

@media (max-width: 860px) {
    .sf-header-login,
    .sf-header-register {
        display: none;
    }

    .sf-hero {
        min-height: auto;
        padding-top: 70px;
    }

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

    .sf-hero__content {
        max-width: none;
        text-align: center;
    }

    .sf-hero__content > p,
    .sf-hero-search {
        margin-inline: auto;
    }

    .sf-hero__actions,
    .sf-hero__metrics {
        justify-content: center;
    }

    .sf-hero-console {
        width: min(100%, 520px);
        margin: 12px auto 0;
    }

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

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

    .sf-process-grid::before {
        display: none;
    }

    .sf-cta {
        padding: 45px;
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 620px) {
    .sf-shell {
        width: min(calc(100% - 28px), var(--sf-shell));
    }

    .sf-header__inner {
        min-height: 68px;
        gap: 10px;
    }

    .sf-brand {
        min-width: 0;
    }

    .sf-brand > img {
        max-width: 130px;
        height: 33px;
    }

    .sf-brand__text small {
        display: none;
    }

    .sf-brand__mark {
        width: 37px;
        height: 37px;
    }

    .sf-account-button > span:last-child {
        display: none;
    }

    .sf-currency-form {
        display: none;
    }

    .sf-theme-toggle,
    .sf-mobile-toggle {
        width: 39px;
        height: 39px;
        min-width: 39px;
        border-radius: 12px;
    }

    .sf-hero {
        padding: 62px 0 80px;
    }

    .sf-hero h1 {
        margin-top: 20px;
        font-size: clamp(42px, 13vw, 61px);
    }

    .sf-hero__content > p {
        font-size: 15px;
    }

    .sf-hero-search {
        min-height: 58px;
        padding-left: 15px;
    }

    .sf-hero-search button {
        min-height: 44px;
        padding-inline: 15px;
    }

    .sf-hero__actions {
        flex-direction: column;
    }

    .sf-hero__actions .sf-button {
        width: 100%;
    }

    .sf-hero__metrics {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .sf-hero__metrics > div {
        padding: 0 9px;
    }

    .sf-hero__metrics strong {
        font-size: 18px;
    }

    .sf-hero__metrics span {
        font-size: 9px;
    }

    .sf-hero-console__body {
        padding: 18px;
    }

    .sf-console-heading h2 {
        font-size: 20px;
    }

    .sf-trust-strip > .sf-shell {
        grid-template-columns: 1fr;
    }

    .sf-trust-strip > .sf-shell > div {
        padding: 17px 0;
        border-right: 0;
        border-bottom: 1px solid var(--sf-border);
    }

    .sf-trust-strip > .sf-shell > div:last-child {
        border-bottom: 0;
    }

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

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

    .sf-section-heading h2 {
        font-size: 37px;
    }

    .sf-category-grid,
    .sf-product-grid {
        grid-template-columns: 1fr;
    }

    .sf-product-card__media {
        height: 260px;
    }

    .sf-cta-section {
        padding-bottom: 80px;
    }

    .sf-cta {
        min-height: 0;
        padding: 36px 25px;
        border-radius: 24px;
    }

    .sf-cta h2 {
        font-size: 38px;
    }

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

    .sf-footer__grid {
        grid-template-columns: 1fr;
        gap: 37px;
    }

    .sf-footer__bottom {
        flex-direction: column;
    }

    .sf-notice {
        left: 14px;
        right: 14px;
        top: 82px;
        min-width: 0;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}


/*
|--------------------------------------------------------------------------
| PrimePins V3.1 Interaction Performance
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Currency dropdown
|--------------------------------------------------------------------------
*/

.sf-currency {
    position: relative;
    z-index: 30;
}

.sf-currency__trigger {
    height: 42px;
    min-width: 86px;
    padding: 0 11px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    color: var(--sf-text);
    background: var(--sf-surface-glass);
    border: 1px solid var(--sf-border);
    border-radius: 13px;

    cursor: pointer;
    font-size: 12px;
    font-weight: 800;

    transition:
        color 200ms ease,
        background-color 200ms ease,
        border-color 200ms ease,
        transform 160ms var(--sf-ease);
}

.sf-currency__trigger:hover {
    color: var(--sf-accent);
    border-color: rgb(var(--sf-accent-rgb) / .38);
}

.sf-currency__trigger:active {
    transform: scale(.96);
}

.sf-currency__globe {
    width: 17px;
    height: 17px;
}

.sf-currency__chevron {
    width: 14px;
    height: 14px;

    transition: transform 260ms var(--sf-ease);
}

.sf-currency.is-open .sf-currency__chevron {
    transform: rotate(180deg);
}

.sf-currency__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;

    width: 150px;
    padding: 7px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    color: var(--sf-text);
    background: var(--sf-surface);
    border: 1px solid var(--sf-border-strong);
    border-radius: 15px;

    box-shadow:
        0 18px 55px rgba(0, 0, 0, .24);

    transform:
        translate3d(0, -8px, 0)
        scale(.97);

    transform-origin: top right;
    will-change: opacity, transform;

    transition:
        opacity 180ms ease,
        transform 260ms var(--sf-ease),
        visibility 180ms ease;
}

.sf-currency.is-open .sf-currency__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translate3d(0, 0, 0)
        scale(1);
}

.sf-currency__menu form {
    margin: 0;
}

.sf-currency__option {
    width: 100%;
    min-height: 39px;
    padding: 0 11px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--sf-text-soft);
    background: transparent;
    border: 0;
    border-radius: 10px;

    cursor: pointer;
    font-size: 12px;
    font-weight: 750;
    text-align: left;

    transition:
        color 180ms ease,
        background-color 180ms ease;
}

.sf-currency__option:hover {
    color: var(--sf-text);
    background: var(--sf-accent-soft);
}

.sf-currency__option.is-selected {
    color: var(--sf-accent);
    background: var(--sf-accent-soft);
}

.sf-currency__option svg {
    width: 15px;
    height: 15px;
}

/*
|--------------------------------------------------------------------------
| GPU-accelerated mobile menu
|--------------------------------------------------------------------------
*/

.sf-header {
    isolation: isolate;
}

.sf-mobile-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    display: block !important;
    max-height: none !important;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    background: var(--sf-surface);
    border-top: 1px solid var(--sf-border);
    border-bottom: 1px solid var(--sf-border);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, .20);

    transform:
        translate3d(0, -12px, 0)
        scaleY(.97);

    transform-origin: top center;
    will-change: opacity, transform;

    -webkit-backdrop-filter: none;
    backdrop-filter: none;

    transition:
        opacity 180ms ease,
        transform 300ms var(--sf-ease),
        visibility 180ms ease;
}

.sf-mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translate3d(0, 0, 0)
        scaleY(1);
}

.sf-mobile-panel nav {
    transform: translate3d(0, -5px, 0);
    opacity: 0;

    transition:
        opacity 220ms ease 50ms,
        transform 300ms var(--sf-ease) 50ms;
}

.sf-mobile-panel.is-open nav {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.sf-mobile-toggle span {
    transform-origin: center;
}

.sf-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.sf-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.sf-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

/*
|--------------------------------------------------------------------------
| Smoother reveal animation
|--------------------------------------------------------------------------
*/

.js [data-reveal] {
    opacity: 0;

    transform:
        translate3d(0, 17px, 0)
        scale(.994);

    filter: blur(4px);

    will-change:
        opacity,
        transform,
        filter;

    transition:
        opacity 820ms var(--sf-ease),
        transform 900ms var(--sf-ease),
        filter 700ms ease;
}

.js [data-reveal="scale"] {
    transform:
        translate3d(0, 12px, 0)
        scale(.975);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.js [data-reveal].reveal-complete {
    will-change: auto;
    transition-delay: 0ms !important;
}

/*
|--------------------------------------------------------------------------
| Clean trust section
|--------------------------------------------------------------------------
*/

.sf-trust-strip > .sf-shell {
    grid-template-columns: repeat(3, 1fr);
}

.sf-trust-strip > .sf-shell > div {
    justify-content: center;
}

.sf-trust-strip > .sf-shell > div:nth-child(2) {
    border-right: 1px solid var(--sf-border);
    border-bottom: 0;
}

.sf-trust-strip strong {
    font-size: 13px;
}

/*
|--------------------------------------------------------------------------
| Mobile refinements
|--------------------------------------------------------------------------
*/

@media (max-width: 1100px) {
    .sf-currency {
        display: block;
    }
}

@media (max-width: 620px) {
    .sf-currency-form {
        display: none !important;
    }

    .sf-currency__trigger {
        width: 39px;
        min-width: 39px;
        height: 39px;
        padding: 0;
    }

    .sf-currency__trigger > span {
        display: none;
    }

    .sf-currency__chevron {
        display: none;
    }

    .sf-currency__menu {
        right: -48px;
        width: 145px;
    }

    .sf-mobile-panel nav {
        padding:
            14px
            max(0px, env(safe-area-inset-right))
            19px
            max(0px, env(safe-area-inset-left));
    }

    .sf-trust-strip > .sf-shell {
        grid-template-columns: 1fr;
    }

    .sf-trust-strip > .sf-shell > div {
        justify-content: flex-start;
    }

    .sf-trust-strip > .sf-shell > div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--sf-border);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sf-mobile-panel,
    .sf-mobile-panel nav,
    .sf-currency__menu,
    [data-reveal] {
        transition-duration: .01ms !important;
    }
}


/* PRIMEPINS TARGETED MENU FIX V3.2 */

/*
|--------------------------------------------------------------------------
| Mobile menu visual style
|--------------------------------------------------------------------------
*/

.sf-mobile-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    display: block !important;
    max-height: none !important;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    background: var(--sf-surface-glass);
    border-top: 1px solid var(--sf-border);
    border-bottom: 1px solid var(--sf-border);

    box-shadow:
        0 22px 60px rgba(0, 0, 0, .20);

    transform:
        translate3d(0, -9px, 0)
        scale(.99);

    transform-origin: top center;
    will-change: opacity, transform;

    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);

    transition:
        opacity 190ms ease,
        transform 290ms var(--sf-ease),
        visibility 190ms ease;
}

.sf-mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translate3d(0, 0, 0)
        scale(1);
}

.sf-mobile-panel > .sf-shell {
    width: min(
        calc(100% - 28px),
        var(--sf-shell)
    );
}

.sf-mobile-panel nav {
    max-height:
        calc(
            100dvh
            - 86px
            - env(safe-area-inset-bottom)
        );

    padding:
        15px
        0
        calc(
            18px
            + env(safe-area-inset-bottom)
        );

    overflow-x: hidden;
    overflow-y: auto;

    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color:
        var(--sf-border-strong)
        transparent;

    -webkit-overflow-scrolling: touch;

    opacity: 0;
    transform: translate3d(0, -5px, 0);

    transition:
        opacity 210ms ease 40ms,
        transform 290ms var(--sf-ease) 40ms;
}

.sf-mobile-panel.is-open nav {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.sf-mobile-panel nav::-webkit-scrollbar {
    width: 5px;
}

.sf-mobile-panel nav::-webkit-scrollbar-track {
    background: transparent;
}

.sf-mobile-panel nav::-webkit-scrollbar-thumb {
    background: var(--sf-border-strong);
    border-radius: 999px;
}

/*
|--------------------------------------------------------------------------
| Currency selector inside mobile menu
|--------------------------------------------------------------------------
*/

.sf-mobile-currency {
    margin: 4px 0;
    overflow: hidden;

    background: transparent;
    border: 1px solid transparent;
    border-radius: 13px;

    transition:
        background-color 200ms ease,
        border-color 200ms ease;
}

.sf-mobile-currency[open] {
    background: var(--sf-surface);
    border-color: var(--sf-border);
}

.sf-mobile-currency summary {
    min-height: 48px;
    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    color: var(--sf-text);
    border-radius: 12px;

    cursor: pointer;
    list-style: none;

    font-size: 14px;
    font-weight: 650;

    -webkit-tap-highlight-color: transparent;
}

.sf-mobile-currency summary::-webkit-details-marker {
    display: none;
}

.sf-mobile-currency summary:hover {
    background: var(--sf-accent-soft);
}

.sf-mobile-currency__label,
.sf-mobile-currency__current {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.sf-mobile-currency__label > svg {
    width: 19px;
    height: 19px;
    color: var(--sf-accent);
}

.sf-mobile-currency__current {
    color: var(--sf-text-muted);
    font-size: 12px;
    font-weight: 800;
}

.sf-mobile-currency__current > svg {
    width: 15px;
    height: 15px;

    transition:
        transform 260ms var(--sf-ease);
}

.sf-mobile-currency[open]
.sf-mobile-currency__current > svg {
    transform: rotate(180deg);
}

.sf-mobile-currency__list {
    max-height: 220px;
    margin: 0 7px 8px;
    padding: 6px;

    overflow-x: hidden;
    overflow-y: auto;

    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color:
        var(--sf-border-strong)
        transparent;

    border-top: 1px solid var(--sf-border);

    -webkit-overflow-scrolling: touch;
}

.sf-mobile-currency__list::-webkit-scrollbar {
    width: 5px;
}

.sf-mobile-currency__list::-webkit-scrollbar-track {
    background: transparent;
}

.sf-mobile-currency__list::-webkit-scrollbar-thumb {
    background: var(--sf-border-strong);
    border-radius: 999px;
}

.sf-mobile-currency__list form {
    margin: 0;
}

.sf-mobile-currency__list button {
    width: 100%;
    min-height: 42px;
    padding: 0 11px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--sf-text-soft);
    background: transparent;
    border: 0;
    border-radius: 10px;

    cursor: pointer;
    font-size: 13px;
    font-weight: 700;

    transition:
        color 170ms ease,
        background-color 170ms ease;
}

.sf-mobile-currency__list button:hover,
.sf-mobile-currency__list button.is-selected {
    color: var(--sf-accent);
    background: var(--sf-accent-soft);
}

.sf-mobile-currency__list button svg {
    width: 16px;
    height: 16px;
}

/*
|--------------------------------------------------------------------------
| Useful notes
|--------------------------------------------------------------------------
*/

.sf-console-grid small {
    display: block;
    margin-top: 4px;

    color: var(--sf-text-muted);
    font-size: 10px;
    line-height: 1.45;
}

.sf-trust-strip span {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sf-trust-strip small {
    color: var(--sf-text-muted);
    font-size: 10px;
    line-height: 1.4;
}

/*
|--------------------------------------------------------------------------
| Mobile layout
|--------------------------------------------------------------------------
*/

@media (max-width: 620px) {
    .sf-mobile-panel {
        border-radius: 0 0 18px 18px;
    }

    .sf-mobile-panel nav {
        max-height:
            calc(
                100dvh
                - 74px
                - env(safe-area-inset-bottom)
            );
    }

    .sf-trust-strip span {
        align-items: flex-start;
    }
}

/* END PRIMEPINS TARGETED MENU FIX V3.2 */


/* PRIMEPINS DYNAMIC APPEARANCE CSS START */

:root {
    --sf-active: #E93525;
    --sf-active-rgb: 233 53 37;

    --sf-tap-highlight: #FF7669;
    --sf-tap-highlight-rgb: 255 118 105;
}

/*
|--------------------------------------------------------------------------
| Active / selected states
|--------------------------------------------------------------------------
*/

.sf-desktop-nav a.is-active {
    color: var(--sf-active);
    background:
        rgb(
            var(--sf-active-rgb)
            / .12
        );
}

.sf-desktop-nav a.is-active::after {
    background: var(--sf-active);
}

.sf-mobile-currency__list
button.is-selected,
.sf-currency__option.is-selected {
    color: var(--sf-active);

    background:
        rgb(
            var(--sf-active-rgb)
            / .12
        );
}

.sf-account-button__avatar,
.sf-live-status i {
    background-color: var(--sf-active);
}

/*
|--------------------------------------------------------------------------
| Dynamic primary gradients
|--------------------------------------------------------------------------
*/

.sf-brand__mark,
.sf-button--primary {
    background:
        linear-gradient(
            135deg,
            var(--sf-active),
            var(--sf-accent) 58%,
            var(--sf-active)
        );
}

.sf-cta {
    background:
        radial-gradient(
            circle at 90% 15%,
            rgb(
                var(--sf-active-rgb)
                / .25
            ),
            transparent 22rem
        ),
        radial-gradient(
            circle at 5% 100%,
            rgb(
                var(--sf-accent-rgb)
                / .22
            ),
            transparent 28rem
        ),
        linear-gradient(
            135deg,
            var(--sf-active),
            var(--sf-accent) 52%,
            var(--sf-active)
        );
}

/*
|--------------------------------------------------------------------------
| Contained tap highlight
|--------------------------------------------------------------------------
|
| Native browser tap rectangles remain disabled.
| The selected color is applied inside each control.
|
*/

a,
button,
summary,
select,
[role="button"] {
    -webkit-tap-highlight-color:
        transparent !important;
}

.sf-button:active,
.sf-theme-toggle:active,
.sf-mobile-toggle:active,
.sf-icon-button:active,
.sf-hero-search button:active,
.sf-mobile-panel a:active,
.sf-mobile-panel button:active,
.sf-mobile-currency summary:active,
.sf-mobile-currency__list button:active,
.sf-category-card:active,
.sf-product-card:active {
    box-shadow:
        inset 0 0 0 999px
        rgb(
            var(--sf-tap-highlight-rgb)
            / .13
        ),
        0 0 0 1px
        rgb(
            var(--sf-tap-highlight-rgb)
            / .16
        );
}

/* PRIMEPINS DYNAMIC APPEARANCE CSS END */


/* PRIMEPINS DYNAMIC HEADER MENU V3.3 START */

/*
|--------------------------------------------------------------------------
| Header brand modes
|--------------------------------------------------------------------------
*/

.sf-brand__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    border-radius: 12px;
}

.sf-brand__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sf-brand--icon-only {
    min-width: 40px;
}

.sf-brand--text-only {
    min-width: auto;
}

.sf-brand--text-only
.sf-brand__text strong {
    font-size: 19px;
}

/*
|--------------------------------------------------------------------------
| Menu item icons
|--------------------------------------------------------------------------
*/

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

.sf-desktop-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.sf-mobile-panel nav > a {
    display: flex;
    align-items: center;
    gap: 11px;
}

.sf-mobile-panel nav > a.is-active {
    color: var(--sf-active);
    background:
        rgb(
            var(--sf-active-rgb)
            / .12
        );
}

/*
|--------------------------------------------------------------------------
| Secondary hero button
|--------------------------------------------------------------------------
*/

.sf-button--secondary {
    color: var(--sf-text);
    background: var(--sf-surface);
    border-color: var(--sf-border-strong);
    box-shadow: var(--sf-shadow-soft);
}

.sf-button--secondary:hover {
    color: var(--sf-accent);
    border-color:
        rgb(
            var(--sf-accent-rgb)
            / .38
        );

    background:
        rgb(
            var(--sf-accent-rgb)
            / .08
        );
}

.sf-hero__actions {
    margin-top: 34px;
}

/*
|--------------------------------------------------------------------------
| Header expanding mobile menu
|--------------------------------------------------------------------------
*/

@media (max-width: 1100px) {
    .sf-header {
        overflow: visible;
    }

    .sf-mobile-panel {
        position: static !important;
        inset: auto !important;

        width: 100%;
        display: grid !important;
        grid-template-rows: 0fr;

        max-height: none !important;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        background: var(--sf-surface-glass);
        border-top: 1px solid transparent;
        border-bottom: 1px solid transparent;

        box-shadow: none;

        transform: none !important;

        -webkit-backdrop-filter: blur(24px);
        backdrop-filter: blur(24px);

        transition:
            grid-template-rows
                420ms var(--sf-ease),
            opacity 220ms ease,
            visibility 220ms ease,
            border-color 280ms ease;
    }

    .sf-mobile-panel.is-open {
        grid-template-rows: 1fr;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        border-top-color:
            var(--sf-border);

        border-bottom-color:
            var(--sf-border);
    }

    .sf-mobile-panel > .sf-shell {
        min-height: 0;
        overflow: hidden;
    }

    .sf-mobile-panel nav {
        max-height:
            min(
                68dvh,
                620px
            );

        padding:
            14px
            0
            calc(
                20px
                + env(
                    safe-area-inset-bottom
                )
            );

        overflow-x: hidden;
        overflow-y: auto;

        overscroll-behavior: contain;
        scrollbar-width: thin;

        opacity: 0;
        transform:
            translate3d(
                0,
                -8px,
                0
            );

        -webkit-overflow-scrolling:
            touch;

        transition:
            opacity 260ms ease 60ms,
            transform
                390ms var(--sf-ease)
                40ms;
    }

    .sf-mobile-panel.is-open nav {
        opacity: 1;
        transform:
            translate3d(
                0,
                0,
                0
            );
    }

    .sf-mobile-panel nav::-webkit-scrollbar {
        width: 5px;
    }

    .sf-mobile-panel nav::-webkit-scrollbar-track {
        background: transparent;
    }

    .sf-mobile-panel nav::-webkit-scrollbar-thumb {
        background:
            var(--sf-border-strong);

        border-radius: 999px;
    }

    .sf-mobile-currency__list {
        max-height: 240px !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;

        -webkit-overflow-scrolling:
            touch;
    }
}

@media (min-width: 1101px) {
    .sf-mobile-panel {
        display: none !important;
    }
}

@media (max-width: 620px) {
    .sf-brand--icon-text
    .sf-brand__text small {
        display: none;
    }

    .sf-brand--icon-text
    .sf-brand__text strong {
        font-size: 15px;
    }

    .sf-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .sf-hero__actions .sf-button {
        width: 100%;
    }
}

/* PRIMEPINS DYNAMIC HEADER MENU V3.3 END */



/* PRIMEPINS MENU POPUP SYSTEM V3.4 START */

.sf-fontawesome-icon {
    width: 18px;
    min-width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    font-size: 16px;
    line-height: 1;
}

.sf-mobile-menu-entry {
    margin: 3px 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 13px;

    transition:
        border-color 180ms ease,
        background-color 180ms ease;
}

.sf-mobile-menu-entry.is-active {
    color: var(--sf-active);
    background:
        rgb(
            var(--sf-active-rgb)
            / .11
        );

    border-color:
        rgb(
            var(--sf-active-rgb)
            / .18
        );
}

.sf-mobile-menu-entry > a {
    min-height: 48px;
    padding: 0 15px;

    display: flex;
    align-items: center;
    gap: 11px;

    color: inherit;
    background: transparent;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 650;
}

.sf-mobile-menu-entry > a:hover {
    color: var(--sf-accent);
    background: var(--sf-accent-soft);
}

.sf-mobile-menu-entry__html {
    padding:
        0
        15px
        14px
        44px;

    color: var(--sf-text-soft);
    font-size: 12px;
    line-height: 1.65;
}

.sf-mobile-menu-entry__html > :first-child {
    margin-top: 0;
}

.sf-mobile-menu-entry__html > :last-child {
    margin-bottom: 0;
}

.sf-mobile-menu-entry__html a {
    display: inline;
    padding: 0;
    color: var(--sf-accent);
    font-weight: 700;
}

.sf-mobile-menu-entry__html p {
    margin: 6px 0;
}

.sf-mobile-menu-entry__html ul,
.sf-mobile-menu-entry__html ol {
    margin: 7px 0;
    padding-left: 18px;
}

/* PRIMEPINS MENU POPUP SYSTEM V3.4 END */


/* PRIMEPINS MENU RICH CONTENT START */

.sf-mobile-menu-entry__html {
    overflow-wrap: anywhere;
}

.sf-mobile-menu-entry__html h2,
.sf-mobile-menu-entry__html h3 {
    margin: 10px 0 6px;
    color: var(--sf-text);
    line-height: 1.3;
    letter-spacing: -.02em;
}

.sf-mobile-menu-entry__html h2 {
    font-size: 16px;
}

.sf-mobile-menu-entry__html h3 {
    font-size: 14px;
}

.sf-mobile-menu-entry__html blockquote {
    margin: 9px 0;
    padding: 8px 11px;

    color: var(--sf-text-soft);
    background: var(--sf-accent-soft);
    border-left: 3px solid var(--sf-accent);
    border-radius: 0 9px 9px 0;
}

.sf-mobile-menu-entry__html hr {
    margin: 12px 0;
    border: 0;
    border-top: 1px solid var(--sf-border);
}

.sf-mobile-menu-entry__html strong {
    color: var(--sf-text);
    font-weight: 750;
}

.sf-mobile-menu-entry__html a {
    color: var(--sf-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* PRIMEPINS MENU RICH CONTENT END */

/* PRIMEPINS SOCSTATS STYLE HERO START */

.sf-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: clamp(620px, 78vh, 860px);
    padding:
        clamp(105px, 11vw, 160px)
        0
        clamp(125px, 14vw, 205px);

    color: #ffffff;
    background:
        radial-gradient(
            circle at 58% 112%,
            rgb(255 65 48 / .27) 0,
            rgb(255 65 48 / .11) 24%,
            transparent 57%
        ),
        radial-gradient(
            circle at 86% 83%,
            rgb(104 54 210 / .18) 0,
            transparent 46%
        ),
        linear-gradient(
            145deg,
            #05040d 0%,
            #09051b 48%,
            #100526 100%
        ) !important;

    border-bottom:
        1px solid
        rgb(255 255 255 / .07);
}

.sf-hero::before {
    content: "";

    position: absolute;
    z-index: -1;
    inset: auto -12% -42% 12%;

    height: 66%;
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgb(255 65 48 / .25),
            transparent 68%
        );

    filter: blur(85px);
    pointer-events: none;
}

.sf-hero::after {
    content: "";

    position: absolute;
    z-index: -1;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgb(255 255 255 / .015),
            transparent 24%
        );

    pointer-events: none;
}

.sf-hero > .sf-shell,
.sf-hero .sf-shell {
    position: relative;
    z-index: 2;
}

.sf-hero__inner,
.sf-hero__grid {
    width: 100%;
    display: block !important;
}

.sf-hero__content {
    width: 100%;
    max-width: 1080px !important;
    margin: 0 !important;
    text-align: left !important;
}

.sf-hero__eyebrow,
.sf-hero-badge,
.sf-hero__badge,
.sf-hero__eyebrow:empty,
.sf-hero-search,
.sf-hero__search,
.sf-hero__visual,
.sf-hero__media,
.sf-hero__art {
    display: none !important;
}

.sf-hero h1,
.sf-hero__title {
    max-width: 1060px;
    margin: 0;

    color: #ffffff !important;

    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size:
        clamp(52px, 6.35vw, 94px) !important;

    font-weight: 500 !important;
    line-height: 1.035 !important;
    letter-spacing: -.052em !important;
    text-wrap: balance;
}

.sf-hero__description,
.sf-hero__subtitle,
.sf-hero__content > p {
    max-width: 900px;
    margin:
        clamp(30px, 3.2vw, 46px)
        0
        0 !important;

    color:
        rgb(241 239 255 / .82) !important;

    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size:
        clamp(18px, 1.75vw, 25px) !important;

    font-weight: 400 !important;
    line-height: 1.62 !important;
    letter-spacing: -.018em;
}

.sf-hero__actions,
.sf-hero-actions {
    margin-top:
        clamp(38px, 4.2vw, 58px) !important;

    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    flex-wrap: wrap;
    gap: 18px !important;
}

.sf-hero__actions .sf-btn,
.sf-hero-actions .sf-btn {
    min-width: 210px;
    min-height: 66px;

    padding: 17px 31px !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px !important;

    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1;
    letter-spacing: -.02em;

    box-shadow: none !important;

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        color 180ms ease;
}

.sf-hero__actions .sf-btn:first-child,
.sf-hero-actions .sf-btn:first-child,
.sf-hero .sf-btn--primary {
    color: #14131a !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
}

.sf-hero__actions .sf-btn:last-child,
.sf-hero-actions .sf-btn:last-child,
.sf-hero .sf-btn--secondary {
    color: #ffffff !important;

    background:
        rgb(255 255 255 / .035) !important;

    border:
        1px solid
        rgb(255 255 255 / .22) !important;

    backdrop-filter: blur(12px);
}

.sf-hero__actions .sf-btn:hover,
.sf-hero-actions .sf-btn:hover {
    transform: translateY(-2px);
}

.sf-hero__actions .sf-btn:last-child:hover,
.sf-hero-actions .sf-btn:last-child:hover,
.sf-hero .sf-btn--secondary:hover {
    border-color:
        rgb(255 65 48 / .72) !important;

    background:
        rgb(255 65 48 / .11) !important;
}

@media (max-width: 767px) {
    .sf-hero {
        min-height: 620px;

        padding:
            92px
            0
            118px;
    }

    .sf-hero h1,
    .sf-hero__title {
        max-width: 100%;

        font-size:
            clamp(43px, 12.5vw, 62px) !important;

        line-height: 1.06 !important;
        letter-spacing: -.048em !important;
    }

    .sf-hero__description,
    .sf-hero__subtitle,
    .sf-hero__content > p {
        margin-top: 29px !important;

        font-size: 18px !important;
        line-height: 1.58 !important;
    }

    .sf-hero__actions,
    .sf-hero-actions {
        margin-top: 39px !important;
        gap: 14px !important;
    }

    .sf-hero__actions .sf-btn,
    .sf-hero-actions .sf-btn {
        min-width: 0;
        min-height: 60px;
        padding: 16px 25px !important;

        border-radius: 17px !important;
        font-size: 17px !important;
    }
}

@media (max-width: 480px) {
    .sf-hero {
        min-height: 590px;

        padding:
            78px
            0
            102px;
    }

    .sf-hero h1,
    .sf-hero__title {
        font-size:
            clamp(40px, 12vw, 52px) !important;
    }

    .sf-hero__actions,
    .sf-hero-actions {
        display: grid !important;
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
        width: 100%;
    }

    .sf-hero__actions .sf-btn,
    .sf-hero-actions .sf-btn {
        width: 100%;
        padding:
            15px
            17px !important;

        font-size: 16px !important;
    }
}

/* PRIMEPINS SOCSTATS STYLE HERO END */

/* PRIMEPINS HERO POSITION FIX START */

/*
|--------------------------------------------------------------------------
| Desktop and tablet hero alignment
|--------------------------------------------------------------------------
*/

body .sf-hero {
    display: flex !important;
    align-items: flex-start !important;

    min-height:
        clamp(
            660px,
            78vh,
            850px
        ) !important;

    padding:
        clamp(145px, 13vh, 190px)
        0
        clamp(120px, 12vh, 170px)
        !important;
}

body .sf-hero > .sf-shell,
body .sf-hero .sf-shell {
    width: 100% !important;

    padding-left:
        clamp(28px, 4.4vw, 58px)
        !important;

    padding-right:
        clamp(28px, 4.4vw, 58px)
        !important;
}

body .sf-hero__content {
    width: 100% !important;
    max-width: 1080px !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: left !important;
}

body .sf-hero h1,
body .sf-hero__title {
    width: 100% !important;
    max-width: 1040px !important;

    margin: 0 !important;

    color: #ffffff !important;

    font-size:
        clamp(
            54px,
            6.1vw,
            88px
        ) !important;

    font-weight: 500 !important;
    line-height: 1.08 !important;
    letter-spacing: -.047em !important;

    text-align: left !important;
    text-wrap: balance;
}

/*
| Remove the previous red title split.
*/

body .sf-hero h1 *,
body .sf-hero__title * {
    color: #ffffff !important;
}

body .sf-hero__description,
body .sf-hero__subtitle,
body .sf-hero__content > p {
    width: 100% !important;
    max-width: 900px !important;

    margin:
        clamp(36px, 4vw, 50px)
        0
        0
        !important;

    color:
        rgb(240 239 248 / .82)
        !important;

    font-size:
        clamp(
            19px,
            1.8vw,
            25px
        ) !important;

    font-weight: 400 !important;
    line-height: 1.62 !important;
    letter-spacing: -.018em !important;

    text-align: left !important;
}

/*
|--------------------------------------------------------------------------
| Buttons like the reference screenshot
|--------------------------------------------------------------------------
*/

body .sf-hero__actions,
body .sf-hero-actions {
    width: min(100%, 760px) !important;

    margin:
        clamp(43px, 4.8vw, 62px)
        0
        0
        !important;

    display: grid !important;

    grid-template-columns:
        minmax(190px, .82fr)
        minmax(230px, 1.18fr)
        !important;

    align-items: stretch !important;
    justify-content: start !important;

    gap:
        clamp(
            18px,
            3vw,
            72px
        )
        !important;
}

body .sf-hero__actions > *,
body .sf-hero-actions > * {
    width: 100% !important;
    min-width: 0 !important;

    grid-column: auto !important;
    grid-row: auto !important;

    margin: 0 !important;
}

body .sf-hero__actions .sf-btn,
body .sf-hero-actions .sf-btn,
body .sf-hero__actions a,
body .sf-hero-actions a {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 68px !important;

    margin: 0 !important;
    padding: 17px 26px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 18px !important;

    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    text-align: center !important;
    white-space: nowrap !important;

    box-shadow: none !important;
}

/*
| First button: white
*/

body .sf-hero__actions > :first-child,
body .sf-hero-actions > :first-child,
body .sf-hero__actions .sf-btn:first-child,
body .sf-hero-actions .sf-btn:first-child {
    color: #15141b !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
}

/*
| Second button: transparent outline
*/

body .sf-hero__actions > :last-child,
body .sf-hero-actions > :last-child,
body .sf-hero__actions .sf-btn:last-child,
body .sf-hero-actions .sf-btn:last-child {
    color: #ffffff !important;

    background:
        rgb(255 255 255 / .035)
        !important;

    border:
        1px solid
        rgb(255 255 255 / .24)
        !important;
}

/*
|--------------------------------------------------------------------------
| Mobile positioning
|--------------------------------------------------------------------------
*/

@media (max-width: 767px) {
    body .sf-hero {
        min-height: 680px !important;

        padding:
            118px
            0
            116px
            !important;
    }

    body .sf-hero > .sf-shell,
    body .sf-hero .sf-shell {
        padding-left: 26px !important;
        padding-right: 26px !important;
    }

    body .sf-hero h1,
    body .sf-hero__title {
        max-width: 630px !important;

        font-size:
            clamp(
                44px,
                7.3vw,
                54px
            ) !important;

        line-height: 1.12 !important;
        letter-spacing: -.044em !important;
    }

    body .sf-hero__description,
    body .sf-hero__subtitle,
    body .sf-hero__content > p {
        max-width: 620px !important;

        margin-top: 37px !important;

        font-size: 19px !important;
        line-height: 1.58 !important;
    }

    body .sf-hero__actions,
    body .sf-hero-actions {
        width: min(100%, 570px) !important;

        margin-top: 47px !important;

        grid-template-columns:
            minmax(0, .86fr)
            minmax(0, 1.14fr)
            !important;

        gap: 18px !important;
    }

    body .sf-hero__actions .sf-btn,
    body .sf-hero-actions .sf-btn,
    body .sf-hero__actions a,
    body .sf-hero-actions a {
        min-height: 62px !important;

        padding:
            15px
            18px
            !important;

        border-radius: 17px !important;
        font-size: 17px !important;
    }
}

/*
|--------------------------------------------------------------------------
| Small mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 480px) {
    body .sf-hero {
        min-height: 650px !important;

        padding:
            112px
            0
            105px
            !important;
    }

    body .sf-hero > .sf-shell,
    body .sf-hero .sf-shell {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    body .sf-hero h1,
    body .sf-hero__title {
        font-size:
            clamp(
                40px,
                12.2vw,
                48px
            ) !important;

        line-height: 1.12 !important;
    }

    body .sf-hero__description,
    body .sf-hero__subtitle,
    body .sf-hero__content > p {
        margin-top: 32px !important;

        font-size: 17px !important;
        line-height: 1.58 !important;
    }

    body .sf-hero__actions,
    body .sf-hero-actions {
        width: 100% !important;

        margin-top: 42px !important;

        grid-template-columns:
            minmax(0, .84fr)
            minmax(0, 1.16fr)
            !important;

        gap: 13px !important;
    }

    body .sf-hero__actions .sf-btn,
    body .sf-hero-actions .sf-btn,
    body .sf-hero__actions a,
    body .sf-hero-actions a {
        min-height: 58px !important;

        padding:
            14px
            12px
            !important;

        border-radius: 16px !important;
        font-size: 15px !important;
    }
}

/* PRIMEPINS HERO POSITION FIX END */
