:root {
    --color-ink: #17171d;
    --color-ink-soft: #24242a;
    --color-paper: #ffffff;
    --color-muted: #8f8f94;
    --color-line: #e4e4e6;
    --color-accent: #70ef00;
    --color-accent-deep: #2c6d12;
    --container: 1240px;
    --page-pad: clamp(20px, 7.24vw - 4px, 100px);
    --radius-sm: 8px;
    --radius-md: 12px;
    --font-sans: "Inter Tight", Inter, Helvetica, Arial, sans-serif;
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-ink);
    background: var(--color-paper);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.45;
}

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

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

h1,
h1,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    letter-spacing: -.045em;
}

h2,
h3 {
    letter-spacing: 0;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.35rem, 3.35vw, 3rem);
    line-height: 1.3;
    font-weight: 500;
}

h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
}

p {
    color: var(--color-muted);
}

.container {
    width: min(calc(100% - (var(--page-pad) * 2)), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: clamp(72px, 5vw + 48px, 120px) 0;
    border-bottom: 1px solid var(--color-line);
    overflow: hidden;
}

.eyebrow {
    margin-bottom: 24px;
    color: var(--color-muted);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.brand {
    display: block;
    width: 92px;
    overflow: hidden;
}

.brand img {
    width: 356px;
    max-width: none;
    height: 92px;
    object-fit: contain;
    object-position: left center;
}

.brand--light img {
    filter: invert(1);
}

.brand--nav {
    width: 82px;
    overflow: visible;
}

.brand--nav img {
    width: 82px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
}

.button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 44px;
    height: 44px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #1A191F;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    transition: transform .4s ease, background .4s ease;
}

.button>* {
    position: relative;
    z-index: 1;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: translateX(-102%);
    transition: transform .4s ease;
}

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

.button:hover::before {
    transform: translateX(0);
}

.button span {
    width: 20px;
    height: 20px;
    line-height: 0;
}

.button svg {
    display: block;
}

.button--light {
    color: #1A191F;
    background: #ffffff;
}

.demo-toolbar {
    border-radius: 8px;
}

.pos-layout {
    border-radius: 8px;
}

.pos-cart {
    border-radius: 8px;
}

.button--light span {
    background: transparent;
}

.button--dark {
    color: #FFFFFF;
    background: #1A191F;
}

.button--dark span {
    /* background: #fff; */
    border-radius: 999px;
}

.button--dark svg path {
    fill: #FFFFFF;
}

.button.button--outline-light {
    color: #FFFFFF;
    border-color: #fff;
    background: transparent;
}

.button--outline-light::before {
    background: #fff;
    opacity: 0;
    transform: none;
    transition: opacity .25s ease;
}

.button.button--outline-light:hover {
    color: #1A191F;
    transform: none;
}

.button--outline-light:hover::before {
    opacity: 1;
    transform: none;
}

.button.button--outline-light:hover path {
    fill: #1A191F;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.grid-surface {
    background-color: #151517;
    background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 104px 104px;
}

.asset-placeholder {
    display: grid;
    place-items: center;
    overflow: hidden;
    color: rgba(255, 255, 255, .68);
    background: radial-gradient(circle at 60% 30%, #829be6 0, #4435a8 24%, #19191d 68%);
}

.asset-placeholder span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .36);
    font-size: .72rem;
    letter-spacing: 0;
}

.section-heading {
    margin-bottom: clamp(32px, 3.2vw + 18px, 64px);
}

.section-heading--center {
    text-align: center;
}

.three-column-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.three-column-cards > * {
    min-width: 0;
}

.centered-action {
    display: flex;
    justify-content: center;
    margin-top: clamp(32px, 3.2vw + 18px, 64px);
}

.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;
}

.reveal-item {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
    transition-delay: calc(var(--reveal-order, 0) * 70ms);
    will-change: opacity, transform;
}

.reveal-item.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
