:root {
    --ink: #0b080f;
    --ink-soft: #17111d;
    --paper: #f8f5fa;
    --white: #fff;
    --muted: #685f71;
    --line: rgba(11, 8, 15, .12);
    --purple: #7c23c8;
    --purple-bright: #9e35ed;
    --pink: #d92bdd;
    --green: #25d366;
    --radius-sm: 16px;
    --radius-md: 26px;
    --radius-lg: 40px;
    --shadow: 0 30px 80px rgba(18, 7, 26, .16);
    --container: 1200px;
    --section-title: clamp(2.25rem, 3.5vw, 3.5rem);
}

* {
    box-sizing: border-box;
}

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

:focus-visible {
    outline: 3px solid #a34cde;
    outline-offset: 5px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    font: inherit;
}

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

h1,
h2,
h3,
strong {
    font-family: "Manrope", "DM Sans", sans-serif;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 104px 0;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-150%);
}

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

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled,
.site-header.menu-active {
    background: rgba(11, 8, 15, .88);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
}

.brand img {
    width: 148px;
    height: 72px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.desktop-nav {
    display: flex;
    gap: 34px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, .78);
    font-size: .92rem;
    font-weight: 600;
    transition: color .2s ease;
}

.desktop-nav a::after {
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    content: "";
    background: var(--pink);
    transition: width .2s ease;
}

.desktop-nav a:hover {
    color: var(--white);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 100px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

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

.button span {
    font-size: 1.2em;
}

.button-small {
    min-height: 44px;
    padding: 0 18px;
    border-color: rgba(255, 255, 255, .22);
    color: var(--white);
    font-size: .86rem;
}

.button-small:hover {
    background: rgba(255, 255, 255, .08);
}

.button-primary {
    color: var(--white);
    background: linear-gradient(120deg, #7c23c8, #ad32cd);
    box-shadow: 0 10px 26px rgba(124, 35, 200, .22), inset 0 1px 0 rgba(255, 255, 255, .15);
}

.button-primary:hover {
    background: linear-gradient(120deg, #6b1cac, #962abd);
    box-shadow: 0 12px 30px rgba(124, 35, 200, .28);
}

.menu-toggle,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 790px;
    padding: 140px 0 80px;
    color: var(--white);
    background:
        radial-gradient(circle at 10% 55%, rgba(103, 23, 161, .22), transparent 31%),
        var(--ink);
    overflow: hidden;
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .06;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero-glow {
    position: absolute;
    right: -180px;
    bottom: -260px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: rgba(145, 36, 217, .18);
    filter: blur(100px);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 78px;
}

.eyebrow,
.kicker {
    color: var(--purple-bright);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 100px;
    color: rgba(255, 255, 255, .82);
    letter-spacing: .08em;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 5px rgba(217, 43, 221, .12);
}

.hero h1 {
    max-width: 720px;
    margin: 30px 0 26px;
    font-size: clamp(3.2rem, 5.1vw, 5.1rem);
    line-height: 1.04;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.hero h1 em {
    display: block;
    color: transparent;
    font-style: normal;
    background: linear-gradient(95deg, #c889ff, #f1a0e6);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-lead {
    max-width: 580px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, .74);
    font-size: 1.15rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    font-weight: 700;
}

.play-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding-left: 2px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    font-size: .7rem;
    transition: background .2s ease;
}

.text-button:hover .play-icon {
    background: rgba(255, 255, 255, .1);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 44px;
    padding-top: 27px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.hero-highlights div {
    display: flex;
    flex-direction: column;
}

.hero-highlights strong {
    margin-bottom: 3px;
    font-size: 1rem;
}

.hero-highlights span {
    color: rgba(255, 255, 255, .65);
    font-size: .78rem;
}

.hero-visual {
    position: relative;
    min-height: 620px;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 92%;
    height: 570px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image-wrap::after {
    position: absolute;
    inset: 0;
    content: "";
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: inherit;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 3, 9, .7), transparent 43%);
}

.image-label {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.image-label span {
    color: rgba(255, 255, 255, .64);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.image-label strong {
    max-width: 180px;
    text-align: right;
}

.hero-floating-card {
    position: absolute;
    z-index: 2;
    bottom: -3px;
    left: 0;
    width: 250px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 22px;
    background: rgba(22, 15, 28, .88);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .34);
    backdrop-filter: blur(18px);
}

.hero-floating-card img {
    width: 100%;
    height: 190px;
    border-radius: 14px;
    object-fit: cover;
    object-position: center 28%;
}

.hero-floating-card div {
    display: flex;
    flex-direction: column;
    padding: 12px 8px 8px;
}

.hero-floating-card span {
    margin-bottom: 3px;
    color: var(--purple-bright);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-floating-card strong {
    font-size: .86rem;
}

.orbit-badge {
    position: absolute;
    z-index: 3;
    top: 62px;
    left: 1px;
    display: flex;
    width: 112px;
    height: 112px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), #4b176e);
    box-shadow: 0 20px 50px rgba(71, 17, 106, .4);
    transform: none;
}

.orbit-badge span {
    font-family: "Manrope", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.orbit-badge small {
    margin-top: 5px;
    font-size: .62rem;
}

.service-strip {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-block: 0;
    padding: 24px 0;
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 4px 14px;
    font-family: "Manrope", sans-serif;
    font-size: .82rem;
    font-weight: 700;
    text-align: center;
}

.service-list li + li {
    border-left: 1px solid var(--line);
}

.service-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--purple);
}

.intro {
    padding-block: 80px;
    background: var(--paper);
}

.intro-grid,
.mix-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
}

.section-heading h2 {
    max-width: 760px;
    margin: 16px 0 0;
    font-size: var(--section-title);
    line-height: 1.08;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.section-heading .kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-heading .kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    flex-shrink: 0;
    border-radius: 2px;
    background: currentColor;
}

.section-heading > p {
    max-width: 560px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 1.04rem;
}

.intro-copy {
    max-width: 540px;
    color: var(--muted);
    font-size: 1.08rem;
}

.intro-copy p:last-child {
    margin-bottom: 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.benefit-card {
    position: relative;
    min-height: 270px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 8px 32px rgba(23, 11, 31, .035);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.benefit-card:hover {
    background: var(--white);
    box-shadow: 0 22px 60px rgba(23, 11, 31, .08);
    transform: translateY(-2px);
}

.featured-card {
    color: var(--white);
    border-color: transparent;
    background: radial-gradient(circle at 100% 0, rgba(229, 174, 255, .25), transparent 65%), linear-gradient(150deg, #6c1faf, #8b2cc7);
}

.featured-card:hover {
    background: linear-gradient(150deg, #6c1faf, #9b2add);
}

.card-number {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--muted);
    font-family: "Manrope", sans-serif;
    font-size: .78rem;
    font-weight: 800;
}

.featured-card .card-number {
    color: rgba(255, 255, 255, .55);
}

.icon-box {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 36px;
    place-items: center;
    border-radius: 15px;
    color: var(--purple);
    background: rgba(124, 35, 200, .09);
}

.featured-card .icon-box {
    color: var(--white);
    background: rgba(255, 255, 255, .13);
}

.icon-box svg,
.vending-icon svg {
    width: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.benefit-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.featured-card p {
    color: rgba(255, 255, 255, .82);
}

.dark-section {
    position: relative;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.dark-section::before {
    position: absolute;
    top: -240px;
    right: -160px;
    width: 560px;
    height: 560px;
    content: "";
    border-radius: 50%;
    background: rgba(124, 35, 200, .2);
    filter: blur(100px);
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 94px;
    align-items: center;
}

.section-heading.light .kicker {
    color: #cb58f3;
}

.section-heading.light p {
    color: rgba(255, 255, 255, .55);
}

.steps {
    margin: 54px 0 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.steps li > span {
    color: #c95af0;
    font-family: "Manrope", sans-serif;
    font-size: .84rem;
    font-weight: 800;
}

.steps h3 {
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.steps p {
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: .9rem;
}

.process-image {
    position: relative;
    height: 720px;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.process-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(8, 5, 11, .78), transparent 46%);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 44% center;
}

.process-image figcaption {
    position: absolute;
    z-index: 1;
    right: 38px;
    bottom: 38px;
    left: 38px;
    display: flex;
    flex-direction: column;
}

.process-image figcaption span {
    color: rgba(255, 255, 255, .58);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.process-image figcaption strong {
    margin-top: 5px;
    font-size: 1.3rem;
}

.mix-section {
    background: var(--white);
}

.mix-heading {
    align-items: end;
}

.mix-heading > p {
    max-width: 530px;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 1.05rem;
}

.product-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.product-nav a {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid #e0d6e8;
    border-radius: 12px;
    color: var(--purple);
    background: #faf7fc;
    font-size: .85rem;
    font-weight: 700;
    transition: background .2s ease, border-color .2s ease;
}

.product-nav a:hover {
    border-color: var(--purple);
    background: #f2e9fa;
}

.gallery-grid {
    display: grid;
    height: 600px;
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    margin-top: 28px;
}

.gallery-grid figure {
    position: relative;
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-grid figure::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(7, 4, 9, .72), transparent 48%);
}

.gallery-grid .gallery-main {
    grid-row: 1 / 3;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .75, .2, 1);
}

.gallery-grid figure:hover img {
    transform: scale(1.035);
}

.gallery-grid figcaption {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 22px;
    left: 24px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-weight: 700;
}

.value-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
}

.value-strip div {
    display: flex;
    min-height: 140px;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

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

.value-strip strong {
    margin-bottom: 6px;
}

.value-strip span {
    color: var(--muted);
    font-size: .86rem;
}

.solutions {
    background: var(--paper);
}

.solutions-heading {
    display: grid;
    grid-template-columns: 1fr .6fr;
    gap: 70px;
    align-items: end;
}

.solutions-heading > p {
    margin-bottom: 8px;
    color: var(--muted);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 70px;
}

.solution-card {
    position: relative;
    display: flex;
    min-height: 510px;
    align-items: flex-end;
    padding: 38px;
    border-radius: var(--radius-md);
    color: var(--white);
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.solution-card::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(8, 5, 11, .94) 4%, rgba(8, 5, 11, .1) 78%);
}

.solution-content {
    position: relative;
    z-index: 1;
}

.solution-content > span {
    color: #d667f4;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.solution-home .solution-content > span,
.solution-business .solution-content > span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    color: var(--white);
    background: rgba(118, 35, 139, .9);
    box-shadow: 0 8px 24px rgba(13, 7, 17, .3);
    backdrop-filter: blur(8px);
}

.solution-content h3 {
    max-width: 460px;
    margin: 12px 0;
    font-size: 1.8rem;
    line-height: 1.1;
    letter-spacing: -.03em;
}

.solution-content p {
    max-width: 460px;
    color: rgba(255, 255, 255, .8);
}

.solution-content a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    font-weight: 700;
}

.solution-vending {
    min-height: 200px;
    padding: 26px 30px;
    grid-column: 1 / 3;
    align-items: center;
    gap: 26px;
    color: var(--ink);
    background: var(--white);
}

.solution-vending::before {
    display: none;
}

.solution-vending .solution-content {
    display: grid;
    width: 100%;
    grid-template-columns: .35fr .8fr 1fr;
    gap: 36px;
    align-items: center;
}

.solution-vending .solution-content h3,
.solution-vending .solution-content p {
    margin: 0;
}

.solution-vending .solution-content p {
    color: var(--muted);
}

.solution-vending .solution-content a {
    color: var(--purple);
    border-bottom-color: rgba(124, 35, 200, .3);
    font-size: .9rem;
}

.vending-icon {
    display: grid;
    width: 80px;
    height: 80px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--purple);
    background: rgba(124, 35, 200, .08);
}

.vending-icon svg {
    width: 36px;
}

.setup-section {
    padding-block: 64px;
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.setup-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 48px;
}

.setup-grid .section-heading h2 {
    font-size: var(--section-title);
}

.setup-timeline {
    margin: 0;
    padding: 0;
    list-style: none;
}

.setup-vehicle {
    width: min(100%, 240px);
    margin: 16px 0;
    mix-blend-mode: multiply;
}

.setup-vehicle img {
    width: 100%;
    height: auto;
}

.setup-grid > .setup-timeline {
    align-self: center;
}

.setup-timeline li {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.setup-timeline li:last-child {
    border-bottom: 1px solid var(--line);
}

.setup-timeline li > span {
    color: var(--purple);
    font-family: "Manrope", sans-serif;
    font-size: .82rem;
    font-weight: 800;
}

.setup-timeline strong {
    display: block;
    margin-bottom: 4px;
}

.setup-timeline p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.contact-section {
    position: relative;
    padding: 120px 0;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.contact-section::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .09;
    background-image: linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
    background-size: 56px 56px;
}

.contact-glow {
    position: absolute;
    right: -160px;
    bottom: -250px;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: rgba(151, 38, 215, .29);
    filter: blur(110px);
}

.contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 100px;
    align-items: center;
}

.contact-copy h2 {
    margin: 16px 0 24px;
    font-size: clamp(2.6rem, 4vw, 4rem);
    line-height: 1.08;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.contact-copy p {
    max-width: 620px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, .57);
    font-size: 1.05rem;
}

.contact-card {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px);
}

.contact-card > span {
    margin-bottom: 28px;
    color: #d96af4;
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-card > a {
    width: fit-content;
    margin-bottom: 7px;
    font-family: "Manrope", sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
}

.contact-card > .contact-email {
    margin-top: 17px;
    color: rgba(255, 255, 255, .62);
    font-family: "DM Sans", sans-serif;
    font-size: .9rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 22px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .72);
    font-size: .82rem;
}

.site-footer {
    color: rgba(255, 255, 255, .7);
    background: #070509;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px 28px;
    padding-block: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: .85rem;
}

.footer-nav a {
    padding-block: 8px;
}

.footer-nav a:hover,
.footer-inner a:hover {
    color: #e1b1ff;
}

.footer-inner {
    display: grid;
    min-height: 150px;
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: center;
    gap: 30px;
}

.footer-brand img {
    width: 122px;
    height: 66px;
}

.footer-inner p {
    margin: 0;
    font-size: .74rem;
}

.footer-inner p:nth-child(2) {
    text-align: center;
}

.footer-inner p:last-child {
    text-align: right;
}

.whatsapp-float {
    position: fixed;
    z-index: 80;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
    transition: transform .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
    width: 29px;
    fill: var(--white);
}

.video-dialog {
    width: min(920px, calc(100% - 32px));
    padding: 0;
    border: 0;
    border-radius: 24px;
    color: var(--white);
    background: #09070c;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .6);
    overflow: visible;
}

.video-dialog::backdrop {
    background: rgba(4, 2, 5, .84);
    backdrop-filter: blur(8px);
}

.dialog-close {
    position: absolute;
    z-index: 2;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
    font-size: 1.6rem;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: inherit;
    overflow: hidden;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .2, 1);
}

[data-reveal].visible,
.reveal-ready [data-reveal]:focus-within {
    opacity: 1;
    transform: translateY(0);
}

.bakery-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    margin-top: 24px;
    border: 1px solid #e6d7c5;
    border-radius: var(--radius-md);
    background: #faf3e9;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(89, 58, 26, .07);
}

.bakery-photo {
    position: relative;
    min-width: 0;
    min-height: 300px;
    margin: 0;
    overflow: hidden;
}

.bakery-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
}

.bakery-photo figcaption {
    position: absolute;
    bottom: 16px;
    left: 20px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 100px;
    background: rgba(37, 24, 13, .7);
    color: #fff;
    font-size: .65rem;
}

.bakery-copy {
    min-width: 0;
    align-self: center;
    padding: 28px 32px;
}

.bakery-copy .kicker {
    color: #885c31;
}

.bakery-copy h3 {
    margin: 12px 0;
    color: #3d281c;
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    line-height: 1.12;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.bakery-copy p {
    margin-bottom: 0;
    color: #6d5e50;
    font-size: .92rem;
}

#padaria .bakery-banner {
    grid-template-columns: minmax(0, .38fr) minmax(0, .62fr);
    background: #fcf8f0;
    border-color: #cba35e;
    box-shadow: 0 16px 40px rgba(89, 58, 26, .07);
}

.bakery-visual {
    position: relative;
    min-width: 0;
    min-height: 300px;
}

#padaria .bakery-photo {
    position: absolute;
    inset: 0;
    min-height: 0;
    height: 100%;
    border-radius: 0;
}

#padaria .bakery-photo img {
    object-position: center;
}

#padaria .bakery-photo figcaption {
    left: 12px;
    bottom: 12px;
    font-size: .55rem;
}

.bakery-partner {
    position: absolute;
    z-index: 1;
    right: 16px;
    bottom: 20px;
    display: grid;
    place-items: center;
    width: min(48%, 210px);
    padding: 14px;
    border: 2px solid #cba35e;
    border-radius: 50%;
    background: #fffaf0;
    box-shadow: 0 6px 24px rgba(61, 40, 28, .18);
    transition: box-shadow .2s ease;
}

.bakery-partner img {
    display: block;
    width: 100%;
    height: auto;
}

.bakery-partner:hover {
    box-shadow: 0 8px 28px rgba(61, 40, 28, .3);
}

.bakery-partner:focus-visible,
.bakery-partnership a:focus-visible {
    outline: 3px solid #885c31;
    outline-offset: 4px;
}

#padaria .bakery-copy {
    padding: 28px 36px;
}

#padaria .bakery-copy h3 {
    margin: 12px 0;
    font-size: clamp(1.65rem, 2.6vw, 2.4rem);
    line-height: 1.12;
}

.bakery-partnership {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
    margin-top: 16px;
    color: #6d5e50;
    font-size: .88rem;
}

.bakery-partnership strong {
    color: #3d281c;
}

.bakery-partnership a {
    color: #885c31;
    text-decoration: underline;
    text-underline-offset: 5px;
}

#padaria .bakery-action {
    margin-top: 18px;
    gap: 12px;
}

@media (max-width: 820px) {
    #padaria .bakery-banner {
        grid-template-columns: 1fr;
    }

    .bakery-visual {
        min-height: 250px;
    }

    .bakery-partner {
        width: 170px;
    }
}

@media (max-width: 560px) {
    #padaria .bakery-copy {
        padding: 22px;
    }

    .bakery-visual {
        min-height: 220px;
    }

    .bakery-partner {
        width: 145px;
        right: 16px;
        bottom: 16px;
        padding: 12px;
    }
}
.bakery-action {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.bakery-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #78522b;
    font-size: .78rem;
    font-weight: 700;
}

.bakery-availability svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.bakery-action .button {
    min-height: 46px;
    padding-block: 12px;
    line-height: 1.4;
    font-size: .88rem;
}

.produce-banner {
    background: #f0f5eb;
    border-color: #d8e3ce;
    box-shadow: 0 18px 50px rgba(45, 72, 32, .07);
}

.produce-banner .bakery-photo {
    grid-column: 2;
    grid-row: 1;
}

.produce-banner .bakery-copy {
    grid-column: 1;
    grid-row: 1;
}

.produce-banner .kicker,
.produce-banner .bakery-availability {
    color: #4d6b37;
}

.produce-banner h3 {
    color: #2b4123;
}

.produce-banner p {
    color: #58664f;
}

.hero-technology {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: #e1b1ff;
}

.hero-technology svg {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
}

.hero-technology strong,
.hero-technology small {
    display: block;
}

.hero-technology strong {
    font-size: .9rem;
}

.hero-technology small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .7);
    font-size: .78rem;
}

.hero-technology > span:last-child {
    margin-left: auto;
    font-size: 1.3rem;
}

.hero-technology:hover strong {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.access-section {
    background: var(--white);
    border-top: 1px solid var(--line);
}

.section.enrollment-section { padding-block: 48px; background: #f4edf9; border-top: 1px solid var(--line); }
.enrollment-copy { display: grid; grid-template-columns: minmax(0, 1fr) 280px; align-items: center; gap: 30px; text-align: left; max-width: 1000px; margin: 0 auto 24px; }
.enrollment-copy .section-heading h2 { max-width: none; margin-top: 10px; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.enrollment-copy .kicker { justify-content: start; }
.enrollment-page-preview { width: 280px; margin: 0; }
.enrollment-page-window { width: 280px; height: 197px; overflow: hidden; border-radius: 12px; background: #100a17; box-shadow: 0 8px 22px #28103b18; }
.enrollment-page-window iframe { display: block; border: 0; width: 1280px; height: 900px; transform: scale(.21875); transform-origin: top left; pointer-events: none; }
.enrollment-page-preview figcaption { margin-top: 8px; text-align: center; color: var(--muted); font-size: .75rem; }
@media (max-width: 720px) { .enrollment-copy { grid-template-columns: 1fr; gap: 18px; text-align: center; } .enrollment-copy .kicker { justify-content: center; } .enrollment-page-preview { justify-self: center; } }
.enrollment-copy .section-heading > p { max-width: 740px; margin: 14px auto 0; font-size: .94rem; }
.enrollment-story { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; padding: 0; margin: 0; list-style: none; }
.enrollment-story > li { overflow: hidden; background: #fff; border: 1px solid #dfd1e9; border-radius: 20px; box-shadow: 0 14px 34px #38164e0c; }
.enrollment-scene { position: relative; width: calc(100% - 24px); max-width: 180px; margin: 12px auto 0; aspect-ratio: 1; overflow: hidden; border-radius: 10px; }
.enrollment-scene > img { display: block; width: 300%; max-width: none; height: auto; }
.enrollment-scene-middle > img { transform: translateX(-33.333333%); }
.enrollment-scene-last > img { transform: translateX(-66.666667%); }
.enrollment-logo { position: absolute; bottom: 8px; right: 8px; }
.enrollment-logo img { display: block; width: 62px; height: 38px; object-fit: contain; filter: brightness(0) invert(1) drop-shadow(0 1px 2px #241330) drop-shadow(0 0 1px #241330); }
.enrollment-caption { padding: 16px 20px 20px; }
.enrollment-caption > span { display: inline-grid; place-items: center; width: 26px; height: 26px; background: #eedff8; color: #68299a; border-radius: 7px; font-weight: 800; font-size: .75rem; margin-bottom: 8px; }
.enrollment-caption h3 { color: var(--ink); font-size: 1rem; line-height: 1.3; margin: 0 0 8px; }
.enrollment-caption p { color: var(--muted); font-size: .85rem; line-height: 1.5; margin: 0; }
.enrollment-signoff { margin: 18px auto 0; text-align: center; color: #61436f; font-size: .85rem; }
@media (max-width: 720px) { .enrollment-story { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; gap: 12px; } .enrollment-story > li { display: grid; grid-template-columns: 110px minmax(0, 1fr); align-items: center; padding: 12px; } .enrollment-scene { width: 110px; margin: 0; } .enrollment-caption { padding: 0 0 0 14px; } .enrollment-logo img { width: 48px; height: 29px; } }


.access-heading {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    align-items: end;
    gap: 64px;
    margin-bottom: 48px;
}

.access-heading h2 {
    font-size: var(--section-title);
}

.access-heading > p {
    margin-bottom: 0;
    color: var(--muted);
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.access-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 40px;
    border-radius: var(--radius-md);
    color: var(--white);
    border: 1px solid rgba(124, 35, 200, .18);
    box-shadow: 0 16px 40px rgba(38, 16, 51, .1);
}

.access-cooler {
    background: radial-gradient(ellipse at top right, rgba(203, 127, 255, .22), transparent 65%), linear-gradient(145deg, #662099, #3d155e);
}

.access-lockers {
    background: radial-gradient(ellipse at top right, rgba(157, 88, 202, .16), transparent 65%), var(--ink-soft);
}

.access-card.access-portal {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    background: #241330;
}

.access-portal h3 {
    margin: 10px 0 12px;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.portal-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: .96rem;
}

.access-portal .access-link {
    margin: 0;
    padding: 12px 0;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

@media (max-width: 820px) {
    .access-card.access-portal {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .access-portal .access-link {
        justify-self: start;
    }
}

.access-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
}

.access-symbol {
    display: grid;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 20px;
    color: #e5c2ff;
    background: rgba(255, 255, 255, .06);
}

.access-symbol svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.access-label {
    color: #e5c2ff;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-align: right;
    text-transform: uppercase;
}

.access-card h3 {
    margin-bottom: 20px;
    font-size: clamp(1.7rem, 2.5vw, 2.5rem);
    line-height: 1.18;
    letter-spacing: -.04em;
}

.access-card > p {
    color: rgba(255, 255, 255, .78);
    font-size: .96rem;
}

.access-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 32px;
}

.access-tags span {
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 100px;
    font-size: .75rem;
}

.access-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    font-size: .88rem;
    font-weight: 700;
}

.access-link:hover {
    color: #e5c2ff;
}

.section.access-section { padding-block: 44px; }
.access-section .access-heading { gap: 32px; margin-bottom: 24px; }
.access-section .access-heading h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.access-section .access-heading > p { font-size: .9rem; }
.access-section .access-grid { gap: 16px; }
.access-section .access-card { padding: 24px; border-radius: 20px; }
.access-section .access-card-top { margin-bottom: 18px; }
.access-section .access-symbol { width: 48px; height: 48px; flex-basis: 48px; border-radius: 13px; }
.access-section .access-symbol svg { width: 28px; height: 28px; }
.access-section .access-card h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); margin: 0 0 12px; }
.access-section .access-card > p, .access-section .portal-copy p { font-size: .88rem; margin-bottom: 16px; }
.access-section .access-tags { margin: 0 0 18px; gap: 6px; }
.access-section .access-tags span { padding: 5px 9px; font-size: .7rem; }
.access-section .access-link { padding-top: 14px; font-size: .8rem; }
.access-section .access-card.access-portal { grid-template-columns: 48px minmax(0, 1fr) auto; gap: 20px; padding-block: 20px; }
.access-section .access-portal h3 { margin: 6px 0 8px; }
.access-section .portal-copy p { margin-bottom: 0; }
@media (max-width: 820px) { .access-section .access-card.access-portal { grid-template-columns: 48px minmax(0, 1fr); gap: 14px; } .access-section .access-portal .access-link { grid-column: 2; } }

.audience-paths {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: -40px;
    margin-bottom: 52px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.audience-path {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 12px;
    transition: background .2s ease;
}

.audience-path:hover {
    background: rgba(124, 35, 200, .06);
}

.audience-icon {
    display: grid;
    flex: 0 0 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(124, 35, 200, .18);
    border-radius: 14px;
    color: var(--purple);
}

.audience-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.audience-path strong,
.audience-path small {
    display: block;
}

.audience-path strong {
    font-size: .88rem;
}

.audience-path small {
    margin-top: 4px;
    color: var(--muted);
    font-size: .76rem;
}

.path-arrow {
    margin-left: auto;
    color: var(--purple);
    font-size: 1.2rem;
}

.setup-checklist {
    display: grid;
    gap: 8px;
    margin: 16px 0 22px;
    padding: 0;
    list-style: none;
    font-size: .9rem;
}

.setup-checklist li {
    display: flex;
    gap: 12px;
}

.setup-checklist li::before {
    content: "✓";
    color: var(--purple);
    font-weight: 800;
}

.setup-grid .button {
    line-height: 1.4;
    padding-block: 16px;
}

.faq-section {
    background: var(--white);
    border-top: 1px solid var(--line);
}

.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 64px;
}

.faq-grid h2 {
    font-size: var(--section-title);
}

.faq-support {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-block: 12px;
    color: var(--purple);
    font-size: .9rem;
    font-weight: 700;
}

.faq-list {
    min-width: 0;
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    border-radius: 12px;
    transition: background .2s ease;
}

.faq-list details[open] {
    background: #f7f2fb;
}

.faq-list summary {
    position: relative;
    padding: 24px 52px 24px 20px;
    font-family: "Manrope", "DM Sans", sans-serif;
    font-size: .98rem;
    font-weight: 700;
    line-height: 1.6;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 22px;
    right: 20px;
    content: "+";
    color: var(--purple);
    font-size: 1.35rem;
    font-weight: 500;
}

.faq-list details[open] summary {
    color: var(--purple);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 32px 24px 20px;
    color: var(--muted);
    font-size: .94rem;
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--purple);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 80px;
}

.contact-copy > .kicker {
    color: #dc9cff;
}

.contact-copy > p {
    color: rgba(255, 255, 255, .72);
}

.contact-direct {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    font-size: .95rem;
    overflow-wrap: anywhere;
}

.contact-direct > span {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .65);
    font-size: .83rem;
}

.contact-direct a:hover,
.social-links a:hover {
    color: #dc9cff;
}

.proposal-card {
    min-width: 0;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: var(--radius-md);
    background: #fcfaff;
    color: var(--ink);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
}

.proposal-card > .kicker {
    color: var(--purple);
}

.proposal-card h3 {
    margin: 12px 0 8px;
    font-size: 1.7rem;
    letter-spacing: -.04em;
}

.proposal-card > p {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: .9rem;
}

.proposal-card fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.proposal-card label {
    display: block;
    margin-bottom: 7px;
    font-size: .83rem;
    font-weight: 600;
}

.proposal-card input:not([type="hidden"]),
.proposal-card select {
    display: block;
    width: 100%;
    min-height: 48px;
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid #dcd2e5;
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-size: 1rem;
    color-scheme: light;
}

.proposal-card input::placeholder {
    color: #84798f;
}

.proposal-note {
    margin: 4px 0 20px;
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.7;
}

.proposal-note a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.proposal-card .button {
    width: 100%;
    padding: 16px;
    cursor: pointer;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .header-inner {
        gap: 18px;
    }

    .desktop-nav {
        gap: 20px;
    }

    .bakery-copy {
        padding: 24px;
    }

    .audience-path {
        padding-inline: 12px;
        gap: 10px;
    }

    .audience-icon {
        display: none;
    }

    .faq-grid {
        gap: 50px;
    }
    .hero-grid {
        gap: 38px;
    }

    .hero h1 {
        font-size: clamp(3rem, 6vw, 4.8rem);
    }

    .hero-image-wrap {
        width: 94%;
    }

    .intro-grid,
    .mix-heading {
        gap: 50px;
    }

    .process-grid {
        gap: 50px;
    }

    .solution-vending .solution-content {
        grid-template-columns: 1fr 1fr;
    }

    .solution-vending .solution-content > span {
        grid-column: 1 / 3;
    }

    .contact-grid {
        gap: 50px;
    }
}

@media (max-width: 820px) {
    .service-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 18px;
    }

    .service-list li:nth-child(3) {
        border-left: 0;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .bakery-banner {
        grid-template-columns: 1fr;
    }

    .bakery-photo {
        min-height: 0;
        height: clamp(170px, 32vw, 240px);
    }

    .produce-banner .bakery-photo,
    .produce-banner .bakery-copy {
        grid-column: auto;
        grid-row: auto;
    }

    .access-heading,
    .access-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .audience-paths {
        grid-template-columns: 1fr;
        margin-top: -44px;
        margin-bottom: 48px;
        padding-bottom: 24px;
    }

    .audience-icon {
        display: grid;
    }

    .audience-path {
        padding: 18px 8px;
        gap: 16px;
    }

    .audience-path + .audience-path {
        border-top: 1px solid var(--line);
        border-radius: 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section,
    .contact-section {
        padding: 84px 0;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
        width: 45px;
        height: 45px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 50%;
        background: transparent;
        cursor: pointer;
    }

    .menu-toggle span:not(.sr-only) {
        width: 18px;
        height: 1.5px;
        background: var(--white);
        transition: transform .2s ease;
    }

    .menu-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(4.25px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(-4.25px) rotate(-45deg);
    }

    .mobile-nav {
        position: fixed;
        z-index: -1;
        inset: 88px 0 auto;
        display: flex;
        height: calc(100vh - 88px);
        height: calc(100dvh - 88px);
        flex-direction: column;
        gap: 8px;
        padding: 36px 24px;
        color: var(--white);
        background: rgba(11, 8, 15, .98);
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        pointer-events: none;
        transform: translateY(-16px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .mobile-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav a {
        flex-shrink: 0;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        font-family: "Manrope", sans-serif;
        font-size: 1.35rem;
        font-weight: 700;
    }

    .hero {
        padding-top: 126px;
    }

    .hero-grid,
    .intro-grid,
    .mix-heading,
    .process-grid,
    .solutions-heading,
    .setup-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 66px;
    }

    .hero-visual {
        min-height: 580px;
    }

    .hero-image-wrap {
        width: 92%;
        height: 520px;
    }

    .hero-floating-card {
        bottom: -5px;
    }

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

    .benefit-card {
        min-height: 250px;
    }

    .icon-box {
        margin-bottom: 30px;
    }

    .process-grid {
        gap: 60px;
    }

    .process-image {
        height: 650px;
    }

    .gallery-grid {
        height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 520px 320px;
    }

    .gallery-grid .gallery-main {
        grid-column: 1 / 3;
        grid-row: auto;
    }

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

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

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

    .solution-vending {
        grid-column: auto;
    }

    .setup-grid {
        gap: 32px;
    }

    .section.setup-section {
        padding-block: 48px;
    }

    .contact-grid {
        gap: 60px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 32px 0;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-inner p:last-child {
        text-align: center;
    }
}

@media (max-width: 560px) {
    .service-list li {
        padding-inline: 4px;
        gap: 7px;
        font-size: .72rem;
    }

    .product-nav {
        gap: 8px;
    }

    .product-nav a {
        padding-inline: 12px;
        gap: 12px;
        font-size: .8rem;
    }

    .footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 20px;
    }

    .bakery-banner {
        margin-top: 20px;
    }

    .bakery-copy {
        padding: 22px;
    }

    .bakery-action {
        align-items: stretch;
    }

    .bakery-availability {
        text-align: left;
    }

    .access-card {
        padding: 28px 24px;
    }

    .access-card-top {
        margin-bottom: 28px;
    }

    .proposal-card {
        padding: 26px 20px;
    }

    .faq-list summary {
        font-size: .92rem;
    }

    .faq-answer {
        padding-right: 12px;
    }

    .header-inner {
        min-height: 76px;
    }

    .brand img {
        width: 126px;
        height: 62px;
    }

    .mobile-nav {
        inset: 76px 0 auto;
        height: calc(100vh - 76px);
        height: calc(100dvh - 76px);
    }

    .hero {
        min-height: auto;
        padding: 112px 0 76px;
    }

    .eyebrow {
        align-items: flex-start;
        border: 0;
        padding: 0;
        border-radius: 0;
        line-height: 1.4;
    }

    .status-dot {
        margin-top: 5px;
        flex: 0 0 auto;
    }

    .hero h1 {
        margin-top: 26px;
        font-size: clamp(2.6rem, 11.5vw, 3.7rem);
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .text-button {
        justify-content: center;
    }

    .hero-highlights {
        grid-template-columns: 1fr 1fr;
        row-gap: 22px;
        margin-top: 46px;
    }

    .hero-visual {
        min-height: 490px;
    }

    .hero-image-wrap {
        width: 94%;
        height: 430px;
        border-radius: 28px;
    }

    .hero-floating-card {
        width: 188px;
    }

    .hero-floating-card img {
        height: 132px;
        object-position: center 26%;
    }

    .orbit-badge {
        top: 28px;
        width: 86px;
        height: 86px;
    }

    .orbit-badge span {
        font-size: 1.35rem;
    }

    .image-label {
        display: none;
    }

    .section-heading h2 {
        font-size: 2.25rem;
    }

    .intro-grid,
    .mix-heading {
        gap: 30px;
    }

    .benefit-grid {
        margin-top: 32px;
    }

    .solution-grid {
        margin-top: 48px;
    }

    .benefit-card {
        padding: 28px;
    }

    .process-image {
        height: 540px;
        border-radius: 28px;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
    }

    .gallery-grid figure {
        height: 330px;
    }

    .gallery-grid .gallery-main {
        height: 470px;
    }

    .solution-card {
        min-height: 450px;
        padding: 28px;
    }

    .solution-vending {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding: 24px;
        gap: 18px;
    }

    .solution-vending .solution-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .solution-vending .solution-content > span {
        grid-column: auto;
    }

    .setup-timeline li {
        grid-template-columns: 45px 1fr;
    }

    .contact-copy h2 {
        font-size: 2.6rem;
    }

    .contact-card {
        min-height: 340px;
        padding: 30px;
    }

    .contact-card > a {
        font-size: 1.25rem;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
    }
}

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

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

    .reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
