/* ==========================================================================
   LodTruck public site
   Bright accents (violet / lime / mint / coral) on a soft cream canvas.
   ========================================================================== */

.pub-body { background: var(--cream); color: var(--ink); }

/* ==========================================================================
   Header — tier 1 utility bar, tier 2 brand bar, tier 3 sticky nav
   ========================================================================== */

/* ---------- Tier 1: utility bar ---------- */

.pub-utility {
    background: var(--ink);
    color: rgba(255,255,255,.6);
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.pub-utility__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pub-utility__contact,
.pub-utility__account { display: flex; align-items: center; gap: 14px; min-width: 0; }

.pub-utility a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
}

.pub-utility a:hover { color: #fff; }
.pub-utility i { font-size: 12px; color: var(--lime-500); }
.pub-utility__pipe { width: 1px; height: 14px; background: rgba(255,255,255,.14); flex: 0 0 1px; }
.pub-utility__hours { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.42); }

.pub-utility__cta {
    padding: 4px 13px;
    border-radius: 999px;
    background: rgba(194,245,66,.14);
    color: var(--lime-500);
    font-weight: 750;
}

.pub-utility__cta:hover { background: var(--lime-500); color: var(--ink); }

/* ---------- Tier 2: brand bar ---------- */

.pub-brandbar { background: var(--surface); border-bottom: 1px solid var(--line); }

.pub-brandbar__inner {
    min-height: 90px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.pub-facts { display: flex; align-items: center; margin: 0 auto; padding: 0; list-style: none; }
.pub-facts li { display: flex; align-items: center; gap: 11px; }
.pub-facts li + li { margin-left: 24px; padding-left: 24px; border-left: 1px solid var(--line); }

.pub-facts__ico {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 16px;
}

.pub-facts__ico[data-tone="violet"] { background: var(--violet-100); color: var(--violet-600); }
.pub-facts__ico[data-tone="mint"] { background: var(--mint-100); color: #0A8A66; }
.pub-facts__ico[data-tone="lime"] { background: var(--lime-100); color: #6B8A00; }

.pub-facts strong { display: block; font-size: 13.5px; font-weight: 750; letter-spacing: -.015em; }
.pub-facts small { display: block; color: var(--muted); font-size: 12px; }
.pub-brandbar__pill { flex: 0 0 auto; }

/* ---------- Tier 3: sticky navigation ---------- */

.pub-nav-sentinel { height: 1px; margin-bottom: -1px; }

.pub-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .35s var(--ease), background .35s var(--ease);
}

.pub-header.is-stuck {
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(20px) saturate(150%);
    box-shadow: 0 12px 34px rgba(12,12,20,.09);
}

.pub-header__inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pub-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -.03em;
    font-size: 19px;
}

.pub-logo:hover { color: var(--ink); }
.pub-logo__mark { width: 38px; height: 38px; flex: 0 0 38px; }
.pub-logo__mark svg { width: 100%; height: 100%; }
.pub-logo__text { white-space: nowrap; line-height: 1.15; }
.pub-logo__text small { display: block; color: var(--muted); font-size: 11.5px; font-weight: 600; letter-spacing: 0; }
.pub-logo--light { color: #fff; }
.pub-logo--light:hover { color: #fff; }

.pub-logo--mini {
    max-width: 0;
    margin-right: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(-10px);
    transition: max-width .4s var(--ease), margin .4s var(--ease), opacity .3s ease, transform .4s var(--ease);
}

.pub-header.is-stuck .pub-logo--mini {
    max-width: 190px;
    margin-right: 20px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.pub-nav { align-items: center; gap: 2px; }
.pub-nav__item { position: static; }

.pub-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--body);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.pub-nav__link i { font-size: 11px; transition: transform .3s var(--ease); }
.pub-nav__link:hover { color: var(--ink); background: var(--paper); }
.pub-nav__item.is-open > .pub-nav__link { color: var(--brand); background: var(--violet-100); }
.pub-nav__item.is-open > .pub-nav__link i { transform: rotate(180deg); }

.mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0 20px 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s var(--ease), transform .35s var(--ease), visibility .3s;
    pointer-events: none;
}

.pub-nav__item.is-open .mega {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

.mega__inner {
    width: min(1240px, 100%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 8px;
    padding: 10px;
    border-radius: var(--r-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--sh-lg);
}

.mega--slim .mega__inner { grid-template-columns: minmax(0, 460px); justify-content: start; }

.mega__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 16px; }
.mega__cols--one { grid-template-columns: 1fr; }
.mega__col { display: grid; align-content: start; gap: 2px; }

.mega__label {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 6px 10px 10px;
}

.mega__col a {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: var(--r-sm);
    text-decoration: none;
    color: var(--ink);
    transition: background .2s ease, transform .25s var(--ease);
}

.mega__col a:hover { background: var(--paper); transform: translateX(3px); color: var(--ink); }
.mega__col a strong { display: block; font-size: 14.5px; font-weight: 700; }
.mega__col a small { display: block; color: var(--muted); font-size: 12.5px; }

.mega__ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 17px;
}

.mega__ico[data-tone="violet"] { background: var(--violet-100); color: var(--violet-600); }
.mega__ico[data-tone="lime"] { background: var(--lime-100); color: #6B8A00; }
.mega__ico[data-tone="mint"] { background: var(--mint-100); color: #0A8A66; }
.mega__ico[data-tone="coral"] { background: var(--coral-100); color: #D2472A; }
.mega__ico[data-tone="sky"] { background: var(--sky-100); color: #0B7FB5; }

.mega__feature {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 24px;
    border-radius: var(--r);
    background: linear-gradient(155deg, var(--violet-600), var(--violet-700));
    color: #fff;
}

.mega__feature--alt { background: linear-gradient(155deg, var(--ink-3), var(--ink)); }
.mega__feature .lt-eyebrow { color: var(--lime-500); }
.mega__feature h3 { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -.03em; }
.mega__feature p { margin: 0; color: rgba(255,255,255,.72); font-size: 13.5px; }
.mega__feature .btn { justify-self: start; margin-top: 4px; }

.mega__art {
    position: absolute;
    right: -14px;
    bottom: -10px;
    width: 150px;
    opacity: .35;
    animation: lt-float 6s ease-in-out infinite;
}

.pub-header__actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }

.pub-header__call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 6px 5px 5px;
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    transition: background .2s ease;
}

.pub-header__call:hover { background: var(--paper); color: var(--ink); }

.pub-header__call > i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--violet-100);
    color: var(--brand);
    font-size: 15px;
}

.pub-header__call small {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

.pub-header__call strong { display: block; font-size: 14px; font-weight: 750; letter-spacing: -.01em; }
.pub-book { flex: 0 0 auto; }

.pub-burger {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    background: var(--paper);
}

.pub-burger span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink); }

/* ---------- Mobile drawer ---------- */

.pub-drawer { position: fixed; inset: 0; z-index: 80; background: rgba(12,18,36,.6); backdrop-filter: blur(4px); }

.pub-drawer__panel {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(380px, 90vw);
    padding: 20px;
    overflow-y: auto;
    background: var(--ink);
    color: #fff;
    display: grid;
    align-content: start;
    gap: 6px;
    animation: lt-rise .4s var(--ease);
}

.pub-drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; font-weight: 800; }
.pub-drawer__top button { width: 40px; height: 40px; border: 0; border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; }

.pub-drawer__group { border-bottom: 1px solid rgba(255,255,255,.08); padding: 4px 0 8px; }
.pub-drawer__group summary { list-style: none; cursor: pointer; padding: 12px 4px; font-weight: 750; }
.pub-drawer__group summary::-webkit-details-marker { display: none; }
.pub-drawer__group summary::after { content: "\F282"; font-family: bootstrap-icons; float: right; font-size: 12px; opacity: .6; }
.pub-drawer__group[open] summary::after { content: "\F286"; }
.pub-drawer__group a,
.pub-drawer__solo {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 4px;
    color: rgba(255,255,255,.72);
    text-decoration: none;
}

.pub-drawer__group a:hover, .pub-drawer__solo:hover { color: var(--lime-500); }
.pub-drawer__solo { border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 700; }
.pub-drawer .btn { margin-top: 14px; }

/* ---------- Banner slider ---------- */

.banner { position: relative; overflow: hidden; background: var(--ink); }
.banner__stage { position: relative; height: clamp(440px, 60vw, 640px); }

.banner__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s var(--ease), visibility 1s;
}

.banner__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }

.banner__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s linear;
}

.banner__slide.is-active .banner__img { transform: scale(1.09); }

.banner__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(12,12,20,.93) 0%, rgba(12,12,20,.76) 34%, rgba(12,12,20,.2) 66%, rgba(12,12,20,.42) 100%),
        linear-gradient(180deg, rgba(12,12,20,.42) 0%, transparent 26%, rgba(12,12,20,.72) 100%);
}

.banner__scrim::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, rgba(79,43,239,.38) 0%, transparent 58%);
}

.banner__copy {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 108px;
    color: #fff;
}

.banner__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(194,245,66,.14);
    border: 1px solid rgba(194,245,66,.32);
    color: var(--lime-500);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.banner__title {
    margin: 0;
    max-width: 17ch;
    font-size: clamp(2rem, 4.6vw, 4rem);
    line-height: 1.03;
    letter-spacing: -.045em;
    font-weight: 800;
    color: #fff;
}

.banner__text {
    margin: 0;
    max-width: 46ch;
    color: rgba(255,255,255,.74);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.6;
}

.banner__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }

.banner__slide .banner__eyebrow,
.banner__slide .banner__title,
.banner__slide .banner__text,
.banner__slide .banner__cta {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.banner__slide.is-active .banner__eyebrow,
.banner__slide.is-active .banner__title,
.banner__slide.is-active .banner__text,
.banner__slide.is-active .banner__cta { opacity: 1; transform: none; }

.banner__slide.is-active .banner__eyebrow { transition-delay: .18s; }
.banner__slide.is-active .banner__title { transition-delay: .28s; }
.banner__slide.is-active .banner__text { transition-delay: .38s; }
.banner__slide.is-active .banner__cta { transition-delay: .48s; }

.banner__ui { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding-bottom: 24px; }
.banner__ui-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }

.banner__dots { display: flex; gap: 12px; }

.banner__dot {
    position: relative;
    display: grid;
    gap: 1px;
    min-width: 132px;
    padding: 11px 0 0;
    border: 0;
    border-top: 2px solid rgba(255,255,255,.22);
    background: none;
    text-align: left;
    color: rgba(255,255,255,.55);
    transition: color .3s ease;
}

.banner__dot b { font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.banner__dot span { font-size: 13.5px; font-weight: 700; letter-spacing: -.01em; }
.banner__dot i {
    position: absolute;
    top: -2px;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--lime-500);
    transition: width .45s var(--ease);
}
.banner__dot:hover { color: rgba(255,255,255,.85); }
.banner__dot.is-active { color: #fff; }
.banner__dot.is-active i { width: 100%; }

.banner__nav { display: flex; align-items: center; gap: 10px; }
.banner__count { margin-right: 6px; color: rgba(255,255,255,.55); font-size: 13px; font-variant-numeric: tabular-nums; }
.banner__count b { color: #fff; font-size: 17px; font-weight: 800; }

.banner__arrow {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .28s var(--ease);
}

.banner__arrow:hover { background: var(--lime-500); border-color: var(--lime-500); color: var(--ink); transform: translateY(-2px); }
.banner__arrow--play { width: 40px; height: 40px; flex: 0 0 40px; font-size: 13px; }

.banner__progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.12); z-index: 4; }
.banner__progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--violet-500), var(--lime-500)); }

.banner-strip { background: var(--ink-2); border-bottom: 1px solid rgba(255,255,255,.07); padding: 15px 0; overflow: hidden; }
.banner-strip .marquee__row { gap: 24px; padding-right: 24px; }
.banner-strip span {
    font-size: clamp(14px, 1.6vw, 19px);
    font-weight: 700;
    letter-spacing: -.02em;
    color: rgba(255,255,255,.38);
    white-space: nowrap;
}
.banner-strip i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime-500); opacity: .6; flex: 0 0 6px; }

/* ---------- Section scaffolding ---------- */

.sec { padding: clamp(72px, 9vw, 128px) 0; }
.sec--fleet { padding-bottom: clamp(56px, 7vw, 88px); }

.sec__head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 28px;
    align-items: end;
    margin-bottom: clamp(32px, 4vw, 56px);
}

.sec__head .lt-eyebrow { margin-bottom: 14px; }
.sec__head .lt-lead { margin: 0; max-width: 46ch; }
.lt-eyebrow--light { color: var(--lime-500); }

/* ---------- Fleet rail ---------- */

.rail { overflow: hidden; }

.rail__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px max(20px, calc((100% - 1240px) / 2)) 26px;
    scrollbar-width: none;
    cursor: grab;
}

.rail__track::-webkit-scrollbar { display: none; }
.rail__track.is-grabbing { cursor: grabbing; scroll-snap-type: none; }

.fleet-card {
    position: relative;
    flex: 0 0 clamp(230px, 24vw, 288px);
    scroll-snap-align: start;
    display: grid;
    align-content: space-between;
    gap: 18px;
    min-height: 300px;
    padding: 22px;
    border-radius: var(--r-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s ease;
}

.fleet-card::before {
    content: "";
    position: absolute;
    inset: auto -30% -60% -30%;
    height: 70%;
    border-radius: 50%;
    background: var(--tone, var(--violet-500));
    opacity: 0;
    filter: blur(40px);
    transition: opacity .45s var(--ease), transform .45s var(--ease);
    transform: translateY(20px);
}

.fleet-card[data-tone="violet"] { --tone: #6D4AFF; }
.fleet-card[data-tone="lime"] { --tone: #C2F542; }
.fleet-card[data-tone="mint"] { --tone: #16D19B; }
.fleet-card[data-tone="coral"] { --tone: #FF6B4A; }
.fleet-card[data-tone="sky"] { --tone: #38BDF8; }

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-md);
    border-color: transparent;
    color: var(--ink);
}

.fleet-card:hover::before { opacity: .3; transform: none; }
.fleet-card > * { position: relative; z-index: 1; }

.fleet-card__idx {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--muted);
}

.fleet-card__art { display: grid; place-items: center; min-height: 96px; }
.fleet-card__art svg { width: 130px; height: 68px; transition: transform .45s var(--ease-spring); }
.fleet-card:hover .fleet-card__art svg { transform: translateX(8px) scale(1.05); }
.fleet-card__art .truck-illustration { width: 130px; height: 68px; color: var(--ink-3); }
.fleet-card__art .truck-illustration .truck-window { fill: var(--tone, var(--violet-300)); }

.fleet-card strong { font-size: 19px; font-weight: 750; letter-spacing: -.025em; line-height: 1.2; }

.fleet-card__go {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 750;
    color: var(--brand);
}

.fleet-card__go i { transition: transform .3s var(--ease); }
.fleet-card:hover .fleet-card__go i { transform: translateX(4px); }

.fleet-card--cta {
    background: linear-gradient(160deg, var(--ink-3), var(--ink));
    border-color: transparent;
    color: #fff;
    align-content: end;
}

.fleet-card--cta:hover { color: #fff; }
.fleet-card--cta p { margin: 0; color: rgba(255,255,255,.6); font-size: 14px; }
.fleet-card--cta .fleet-card__go { color: var(--lime-500); }

.rail__nav { display: flex; align-items: center; gap: 10px; }
.rail__nav button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    transition: background .2s, color .2s, opacity .2s;
}
.rail__nav button:hover:not(:disabled) { background: var(--ink); color: #fff; }
.rail__nav button:disabled { opacity: .3; cursor: not-allowed; }
.rail__hint { margin-left: 6px; font-size: 13px; color: var(--muted); }

/* ---------- Sticky stacking steps ---------- */

.sec--how { background: var(--paper); }

.stack-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(32px, 6vw, 88px);
    align-items: start;
}

.stack-grid__aside { position: sticky; top: 128px; display: grid; gap: 18px; justify-items: start; }
.stack-grid__aside .lt-lead { margin: 0; }

.stack { display: grid; gap: 24px; }

.stack__card {
    position: sticky;
    top: calc(120px + var(--i) * 26px);
    display: grid;
    gap: 12px;
    padding: clamp(26px, 3vw, 40px);
    border-radius: var(--r-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--sh-md);
    overflow: hidden;
}

.stack__card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: var(--tone, var(--violet-500));
}

.stack__card[data-tone="violet"] { --tone: #6D4AFF; }
.stack__card[data-tone="lime"] { --tone: #C2F542; }
.stack__card[data-tone="mint"] { --tone: #16D19B; }

.stack__num {
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: .8;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--line);
}

.stack__card h3 { margin: 0; font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; letter-spacing: -.035em; }
.stack__card p { margin: 0; color: var(--body); max-width: 50ch; }
.stack__card ul { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.stack__card li { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 650; color: var(--body); }
.stack__card li i { color: var(--mint-500); }

/* ---------- Oversized numbers ---------- */

.sec--numbers { background: var(--ink); color: #fff; }
.sec--numbers .lt-eyebrow { margin-bottom: 34px; }

.figures { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,.09); border-radius: var(--r-lg); overflow: hidden; }

.figure { padding: clamp(24px, 3vw, 40px); background: var(--ink); display: grid; gap: 12px; align-content: start; }
.figure b {
    font-size: clamp(46px, 6.4vw, 92px);
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: .86;
    background: linear-gradient(150deg, #fff 35%, var(--lime-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.figure span { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.55; }

/* ---------- Bento ---------- */

.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bento__tile {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: clamp(22px, 2.4vw, 32px);
    min-height: 236px;
    border-radius: var(--r-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.bento__tile:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.bento__tile--wide { grid-column: span 2; }
.bento__tile p { margin: 0; color: var(--body); font-size: 14.5px; line-height: 1.6; max-width: 48ch; }

.bento__tile--dark {
    background: linear-gradient(160deg, var(--violet-600), var(--violet-700));
    border-color: transparent;
    color: #fff;
}
.bento__tile--dark p { color: rgba(255,255,255,.72); }

.bento__ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; font-size: 19px; margin-bottom: 4px; }
.bento__ico[data-tone="violet"] { background: var(--violet-100); color: var(--violet-600); }
.bento__ico[data-tone="lime"] { background: rgba(194,245,66,.2); color: var(--lime-500); }
.bento__ico[data-tone="mint"] { background: var(--mint-100); color: #0A8A66; }
.bento__ico[data-tone="coral"] { background: var(--coral-100); color: #D2472A; }
.bento__ico[data-tone="sky"] { background: var(--sky-100); color: #0B7FB5; }

.bento__bars { display: flex; align-items: flex-end; gap: 12px; height: 92px; margin-top: auto; }
.bento__bars span { position: relative; flex: 1; display: grid; align-items: end; height: 100%; }
.bento__bars i {
    display: block;
    height: var(--v);
    border-radius: 10px 10px 4px 4px;
    background: var(--violet-100);
    transition: height .8s var(--ease);
}
.bento__bars .is-best i { background: linear-gradient(180deg, var(--lime-500), var(--mint-500)); }
.bento__bars b {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--muted);
}
.bento__bars .is-best b { color: var(--ink); font-weight: 800; }

.bento__map { position: absolute; right: -10px; bottom: -6px; width: 150px; opacity: .5; }
.bento__docs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.bento__docs span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--paper);
    font-size: 12.5px;
    font-weight: 700;
}
.bento__docs i { color: var(--brand); }

/* ---------- Voices ---------- */

.sec--voices { padding-top: 0; }

.voice {
    position: relative;
    padding: clamp(36px, 6vw, 80px);
    border-radius: var(--r-xl);
    background: var(--paper);
    border: 1px solid var(--line);
    text-align: center;
    overflow: hidden;
}

.voice__mark {
    position: absolute;
    top: -34px;
    left: 26px;
    font-size: 200px;
    line-height: 1;
    color: var(--violet-100);
    font-weight: 800;
}

.voice blockquote {
    position: relative;
    margin: 0 auto;
    max-width: 22ch;
    font-size: clamp(1.5rem, 3.4vw, 2.6rem);
    line-height: 1.18;
    letter-spacing: -.035em;
    font-weight: 750;
    transition: opacity .26s ease, transform .26s ease;
}

.voice footer { position: relative; margin-top: 26px; display: grid; gap: 3px; transition: opacity .26s ease; }
.voice footer strong { font-size: 15px; }
.voice footer span { color: var(--muted); font-size: 13.5px; }
.voice.is-swapping blockquote,
.voice.is-swapping footer { opacity: 0; transform: translateY(10px); }

.voice__dots { position: relative; display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.voice__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--line);
    transition: width .3s var(--ease), background .3s ease;
}
.voice__dots button.is-active { width: 30px; border-radius: 99px; background: var(--brand); }

/* ---------- FAQ ---------- */

.sec--faq { padding-top: 0; }

.faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 6vw, 80px); align-items: start; }
.faq-grid__aside { position: sticky; top: 128px; display: grid; gap: 16px; }
.faq-grid__aside .lt-lead { margin: 0; }

.faq { display: grid; gap: 10px; }

.faq-item {
    border-radius: var(--r);
    background: var(--surface);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.faq-item.is-open { border-color: var(--violet-300); box-shadow: var(--sh-sm); }

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border: 0;
    background: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--ink);
}

.faq-item button i {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--paper);
    font-size: 12px;
    transition: transform .35s var(--ease), background .3s, color .3s;
}

.faq-item.is-open button i { transform: rotate(135deg); background: var(--brand); color: #fff; }
.faq-item > div {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: var(--body);
    line-height: 1.65;
    transition: max-height .45s var(--ease), padding .45s var(--ease);
}
.faq-item.is-open > div { max-height: 260px; padding-bottom: 22px; }

/* ---------- CTA ---------- */

.sec--cta { padding-top: 0; }

.cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    padding: clamp(36px, 5vw, 72px);
    border-radius: var(--r-xl);
    background: var(--ink);
    color: #fff;
}

.cta .mesh { z-index: 0; }
.cta .mesh span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--s);
    height: var(--s);
    background: var(--c);
    animation-delay: var(--d);
    opacity: .4;
}

.cta__copy, .cta__actions { position: relative; z-index: 2; }
.cta.grain::after { z-index: 1; }
.cta__copy p { margin: 14px 0 0; color: rgba(255,255,255,.6); max-width: 42ch; }
.cta__actions { display: grid; gap: 10px; justify-items: stretch; }
.cta__truck { position: absolute; right: -20px; bottom: -18px; width: 260px; opacity: .16; z-index: 1; }

/* ---------- Truck road ---------- */

.road { position: relative; height: 320vh; background: var(--ink); color: #fff; }
.road__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.road__bg, .road__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.road__mesh span { position: absolute; left: var(--x); top: var(--y); width: var(--s); height: var(--s); background: var(--c); animation-delay: var(--d); opacity: .32; }

.road__copy {
    position: absolute;
    z-index: 2;
    left: max(20px, calc((100% - 1240px) / 2));
    top: 40px;
    max-width: 460px;
    display: grid;
    gap: 12px;
}

.road__asphalt { filter: drop-shadow(0 10px 22px rgba(0,0,0,.45)); }
.road__glow { filter: blur(14px); }
.road__marks circle { fill: var(--ink-3); stroke: var(--lime-500); stroke-width: 2; opacity: .3; transition: opacity .4s ease, fill .4s ease; }
.road__marks circle.is-on { fill: var(--lime-500); opacity: 1; }
.road__truck { transform-box: fill-box; transform-origin: center; }
.road__body { animation: lt-float 1.6s ease-in-out infinite; }
.road__wheel { transform-box: fill-box; transform-origin: center; }
.road__dust { fill: rgba(194,245,66,.24); }
.road__beam { fill: rgba(194,245,66,.16); }

.road__cards {
    position: absolute;
    right: max(20px, calc((100% - 1240px) / 2));
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: 10px;
    width: min(300px, 34vw);
    z-index: 3;
}

.road-card {
    padding: 16px 18px;
    border-radius: var(--r);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(14px);
    opacity: .3;
    transform: translateX(18px);
    transition: opacity .45s var(--ease), transform .45s var(--ease), border-color .45s ease;
}

.road-card.is-on { opacity: 1; transform: none; border-color: rgba(194,245,66,.34); }
.road-card span { color: var(--lime-500); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.road-card strong { display: block; margin-top: 4px; }
.road-card p { margin: 4px 0 0; color: rgba(255,255,255,.55); font-size: 13px; }
.road.is-static .road-card { opacity: 1; transform: none; }

/* ---------- Footer ---------- */

.pub-footer { position: relative; overflow: hidden; background: var(--ink); color: rgba(255,255,255,.6); padding: clamp(56px, 7vw, 88px) 0 18px; }

.pub-footer__top { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr); gap: 44px; }
.pub-footer__brand { display: grid; gap: 16px; align-content: start; }
.pub-footer__brand p { margin: 0; max-width: 38ch; line-height: 1.65; }
.pub-footer__contact { display: grid; gap: 4px; }
.pub-footer__contact a { display: inline-flex; align-items: center; gap: 9px; margin: 0; width: fit-content; font-weight: 650; }
.pub-footer__contact i { color: var(--lime-500); font-size: 12px; }
.pub-footer__pills .pill { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }

.pub-footer__links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pub-footer__group summary { list-style: none; cursor: pointer; color: #fff; font-weight: 750; margin-bottom: 10px; }
.pub-footer__group summary::-webkit-details-marker { display: none; }
.pub-footer a { display: block; margin: 9px 0; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s ease, transform .25s var(--ease); }
.pub-footer a:hover { color: var(--lime-500); transform: translateX(3px); }
.pub-footer .pub-logo:hover { transform: none; }

.pub-footer__word {
    margin: clamp(36px, 5vw, 64px) 0 0;
    text-align: center;
    font-size: clamp(3rem, 16vw, 13rem);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: .82;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.1);
    user-select: none;
}

.pub-footer__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
}

.pub-top { display: inline-flex; align-items: center; gap: 9px; color: #fff !important; text-decoration: none; }
.pub-top:hover { transform: none; }
.pub-top svg { width: 30px; height: 30px; }
.pub-top circle { fill: none; stroke: rgba(255,255,255,.16); stroke-width: 2; }
.pub-top__ring {
    stroke: var(--lime-500);
    stroke-dasharray: 94;
    stroke-dashoffset: calc(94 - var(--lt-scroll) * 94);
    transform: rotate(-90deg);
    transform-origin: center;
}

/* ==========================================================================
   Booking wizard, content pages and auth screens
   Class names below are contracts for book-wizard.js / place-autocomplete.js.
   ========================================================================== */

.pub-wrap { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.pub-section { padding: clamp(56px, 7vw, 88px) 0; }
.pub-section h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 800; letter-spacing: -.035em; margin-bottom: 10px; }
.pub-section .sub { color: var(--muted); margin-bottom: 30px; max-width: 58ch; }

.pub-page { padding: clamp(40px, 5vw, 64px) 0 80px; }
.pub-page h1 { font-size: clamp(30px, 4vw, 42px); font-weight: 800; letter-spacing: -.04em; }

.pub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 750;
    cursor: pointer;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .2s, color .2s, border-color .2s;
}

.pub-btn:hover { transform: translateY(-2px); }
.pub-btn--primary { background: var(--brand); color: #fff; box-shadow: var(--sh-brand); }
.pub-btn--primary:hover { background: var(--brand-strong); color: #fff; }
.pub-btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.pub-btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.pub-btn--dark { background: var(--ink); color: #fff; }
.pub-btn--dark:hover { color: #fff; }
.pub-btn--wide { width: 100%; }
.pub-btn--quiet { border: 1px solid var(--line); background: var(--surface); color: var(--ink); }
.pub-btn--outline { border: 1px solid var(--brand); background: var(--surface); color: var(--brand); }
.pub-btn--outline:hover { background: var(--brand); color: #fff; }

.book-shell {
    position: relative;
    overflow: clip;
    padding: 26px 0 72px;
    background:
        radial-gradient(circle at 6% 4%, rgba(109,74,255,.12), transparent 24rem),
        radial-gradient(circle at 96% 26%, rgba(194,245,66,.16), transparent 22rem),
        var(--cream);
}

.book-wrap { position: relative; z-index: 1; max-width: 1080px; }
.book-heading { margin: 18px 0; }
.book-heading h1 { margin: 6px 0; font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; letter-spacing: -.035em; }
.book-heading .sub { color: var(--muted); margin: 0; }
.book-kicker { display: inline-flex; color: var(--brand); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.flow-progress { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin: 6px auto 18px; max-width: 560px; }
.flow-progress__line { position: absolute; top: 14px; left: 16.66%; right: 16.66%; height: 2px; background: var(--line); }
.flow-progress__line span { display: block; height: 100%; background: var(--brand); transition: width .5s var(--ease); }
.flow-progress__step { position: relative; z-index: 1; display: grid; justify-items: center; gap: 5px; color: var(--muted); }
.flow-progress__number {
    display: grid; place-items: center; width: 30px; height: 30px;
    border: 3px solid var(--cream); border-radius: 50%;
    background: var(--line); color: var(--muted); font-size: 11px; font-weight: 800;
    transition: background .35s var(--ease), color .35s var(--ease);
}
.flow-progress__label { font-size: 10px; font-weight: 750; }
.flow-progress__step.is-current .flow-progress__number,
.flow-progress__step.is-done .flow-progress__number { background: var(--brand); color: #fff; }
.flow-progress__step.is-current .flow-progress__number { animation: lt-glow 2s ease-out infinite; }
.flow-progress__step.is-current .flow-progress__label { color: var(--ink); }

.book-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 18px;
    margin-bottom: 12px;
    animation: lt-rise .55s var(--ease);
}

.section-label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 750; margin-bottom: 10px; }
.section-label i { color: var(--brand); }

.book-route { position: relative; padding: 18px; display: grid; gap: 10px; box-shadow: var(--sh-sm); }
.book-route::before { content: ""; position: absolute; left: 24px; top: 52px; bottom: 64px; border-left: 1px dashed var(--line); }
.book-stop { display: grid; position: relative; z-index: 2; grid-template-columns: 14px minmax(0, 1fr); gap: 10px; }
.book-stop:focus-within { z-index: 20; }
.book-stop--removable { grid-template-columns: 14px minmax(0, 1fr) 32px; }
.book-stop .field, .book-stop .place-field, .book-stop .place-input-wrap { width: 100%; min-width: 0; margin: 0; }
.book-dot {
    width: 10px; height: 10px; border-radius: 50%; margin-top: 36px;
    background: var(--brand); border: 2px solid var(--surface); box-shadow: 0 0 0 2px var(--brand);
}
.book-dot.is-mid { background: var(--muted); box-shadow: 0 0 0 2px var(--muted); }
.book-dot.is-drop { background: var(--mint-500); box-shadow: 0 0 0 2px var(--mint-500); }

.route-swap {
    position: relative; z-index: 5; width: 28px; height: 28px; margin: 0 0 0 -1px;
    display: grid; place-items: center; justify-self: start;
    border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--brand);
    transition: transform .35s var(--ease-spring);
}
.route-swap:hover { transform: rotate(180deg); }

.icon-button { align-self: end; width: 30px; height: 42px; border: 0; background: transparent; color: var(--muted); border-radius: 9px; }
.icon-button:hover { color: var(--danger); background: var(--danger-soft); }

.add-stop-button, .location-button, .pub-link-button {
    width: fit-content; padding: 0; border: 0; background: transparent; color: var(--brand);
    font: inherit; font-size: 13px; font-weight: 750;
}
.add-stop-button { margin-left: 24px; }
.location-button { margin-top: 2px; }
.location-button.is-loading::after { content: " Locating…"; }

.place-field { position: relative; width: 100%; }
.place-input-wrap { position: relative; display: block; width: 100%; }
.place-input-wrap > i { position: absolute; z-index: 1; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.place-input-wrap > .bi-search { right: 14px; left: auto; }
.field .place-input-wrap input { width: 100%; padding-left: 40px; padding-right: 38px; }
.field .place-input-wrap > .bi-search + input { padding-left: 14px; }
.place-input-wrap input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(79,43,239,.16); }
.place-check { display: none; position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--ok); }
.place-field.has-place .place-check { display: block; }
.place-field.has-place .place-input-wrap > .bi-search { display: none; }
.place-field input.is-loading {
    background-image: linear-gradient(90deg, transparent, var(--violet-100), transparent);
    background-size: 200% 100%;
    animation: place-loading 1s infinite;
}
@keyframes place-loading { to { background-position: -200% 0; } }

.place-results {
    position: absolute; z-index: 60; top: calc(100% + 8px); left: 0; right: 0;
    max-height: min(360px, 48vh); overflow-x: hidden; overflow-y: auto;
    border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--sh-md);
    animation: lt-rise .25s var(--ease);
    scrollbar-width: thin;
    scrollbar-color: var(--line) transparent;
}
.place-result {
    width: 100%; min-height: 62px; display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 11px; align-items: center;
    padding: 10px 14px; border: 0; border-bottom: 1px solid var(--line-soft);
    background: var(--surface); color: var(--ink); font: inherit; text-align: left; cursor: pointer;
    transition: background-color .18s ease;
}
.place-result:last-child { border-bottom: 0; }
.place-result:hover, .place-result.is-active { background: var(--violet-100); }
.place-result i {
    display: grid; place-items: center; width: 34px; height: 34px;
    border-radius: 10px; background: var(--violet-100); color: var(--brand); font-size: 15px;
}
.place-result span { min-width: 0; display: grid; gap: 2px; }
.place-result strong, .place-result small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.place-result strong { font-size: 13px; font-weight: 750; }
.place-result small { color: var(--muted); font-size: 11px; line-height: 1.45; }

.stop-label-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.stop-label-row > button { padding: 2px 5px; border: 0; background: transparent; color: var(--brand); font-size: 11px; font-weight: 750; }
.stop-details { margin-top: 10px; border-top: 1px solid var(--line); }
.stop-details summary { padding: 9px 0 2px; color: var(--muted); font-size: 11px; font-weight: 750; cursor: pointer; }
.stop-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 8px; }
.stop-details input, .stop-details textarea, .save-stop-option > input {
    width: 100%; padding: 9px 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); font: inherit; font-size: 12px;
}
.stop-details textarea { margin-top: 8px; resize: vertical; }
.save-stop-option {
    display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 10px;
    padding: 9px 10px; margin-top: 9px; border-radius: 8px; background: var(--paper);
}
.save-stop-option[hidden] { display: none; }
.save-stop-option label { display: flex; align-items: center; gap: 7px; margin: 0; font-size: 11px; font-weight: 750; }
.save-stop-option label input { width: auto; accent-color: var(--brand); }

.saved-picker { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 18px; }
.saved-picker[hidden] { display: none; }
.saved-picker__backdrop { position: absolute; inset: 0; border: 0; background: rgba(12,12,20,.55); backdrop-filter: blur(3px); }
.saved-picker__panel {
    position: relative; width: min(560px, 100%); max-height: min(680px, calc(100vh - 36px)); overflow: hidden;
    border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--sh-lg); animation: lt-rise .35s var(--ease);
}
.saved-picker__header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px 12px; }
.saved-picker__search { position: relative; display: block; margin: 0 20px 12px; }
.saved-picker__search i { position: absolute; top: 50%; left: 12px; color: var(--muted); transform: translateY(-50%); }
.saved-picker__search input { width: 100%; padding: 10px 12px 10px 36px; border: 1px solid var(--line); border-radius: 10px; }
.saved-picker__list { max-height: 460px; overflow: auto; padding: 0 12px 14px; }
.saved-picker__item {
    display: grid; grid-template-columns: 28px minmax(0, 1fr) 18px; gap: 9px; align-items: center;
    width: 100%; padding: 11px 9px; border: 0; border-bottom: 1px solid var(--line); background: var(--surface); text-align: left;
}
.saved-picker__item:hover { background: var(--violet-100); }
.saved-picker__item span { min-width: 0; display: grid; }
.saved-picker__item small { color: var(--muted); }

.schedule-card { padding: 16px 18px; }
.choice-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.choice-chips button {
    min-height: 36px; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px;
    background: var(--surface); color: var(--ink); font-size: 12.5px; font-weight: 750;
    transition: border-color .2s, background .2s, color .2s;
}
.choice-chips button:hover, .choice-chips button.is-selected { border-color: var(--brand); background: var(--violet-100); color: var(--brand); }
.custom-date { width: 100%; min-height: 46px; border: 1px solid var(--line); border-radius: 12px; padding: 8px 12px; }
.optional-details { color: var(--muted); font-size: 13px; }
.optional-details summary { cursor: pointer; font-weight: 750; }
.optional-details summary span, .field label span { color: var(--muted); font-weight: 500; }

.sticky-action {
    position: sticky; z-index: 20; bottom: 10px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    margin-top: 14px; padding: 9px 11px;
    border: 1px solid var(--line); border-radius: var(--r);
    background: rgba(255,255,255,.9); box-shadow: var(--sh-md); backdrop-filter: blur(16px);
}
.sticky-action--split > div { display: flex; align-items: center; gap: 10px; }

.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 13px; font-weight: 750; }
.field input, .field textarea, .field select {
    min-height: 46px; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; font: inherit;
    background: var(--surface); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(79,43,239,.16);
}

.alert-soft { background: var(--violet-100); border: 1px solid var(--violet-300); border-radius: 12px; padding: 12px; }
.alert-soft--danger { color: var(--danger); background: var(--danger-soft); border-color: #F5C2C0; }

.truck-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: 10px; }
.truck-card {
    position: relative; display: grid; justify-items: center; align-content: start; min-height: 154px;
    padding: 13px 10px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); cursor: pointer;
    transition: transform .22s var(--ease), border-color .2s ease, box-shadow .22s ease, background .2s ease;
}
.truck-card:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); }
.truck-card:has(input:checked), .truck-card.is-selected { border-color: var(--brand); background: var(--violet-100); }
.truck-card input { position: absolute; opacity: 0; pointer-events: none; }
.truck-card__selected {
    position: absolute; top: 8px; right: 8px; display: none; place-items: center;
    width: 20px; height: 20px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 11px;
}
.truck-card:has(input:checked) .truck-card__selected { display: grid; }
.truck-illustration { display: grid; place-items: center; width: 82px; height: 50px; color: var(--ink-3); }
.truck-illustration svg { width: 100%; height: 100%; fill: currentColor; }
.truck-illustration circle { fill: var(--ink); stroke: #fff; stroke-width: 2px; }
.truck-illustration .truck-window { fill: #DCD6FF; }
.truck-card__name { display: block; margin-top: 7px; font-size: 13px; font-weight: 750; }
.truck-card small { color: var(--muted); margin-top: 3px; font-size: 10px; }
.truck-option { display: flex; justify-content: space-between; align-items: center; gap: 10px; }

.quantity-control { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.quantity-control button { width: 34px; height: 34px; border: 0; background: var(--paper); }
.quantity-control button:hover { background: var(--violet-100); color: var(--brand); }
.quantity-control input { width: 40px; height: 34px; border: 0; text-align: center; font-weight: 800; appearance: textfield; }

.option-toggles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 13px; }
.option-toggle {
    position: relative; display: grid; grid-template-columns: 34px 1fr 32px; gap: 8px; align-items: center;
    padding: 10px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
}
.option-toggle > input { position: absolute; opacity: 0; pointer-events: none; }
.option-toggle__icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; background: var(--paper); }
.toggle-switch { position: relative; width: 30px; height: 18px; border-radius: 99px; background: #CFCBE0; transition: background .2s; }
.toggle-switch::after { content: ""; position: absolute; width: 12px; height: 12px; left: 3px; top: 3px; border-radius: 50%; background: #fff; transition: transform .2s var(--ease-spring); }
.option-toggle:has(input:checked) { border-color: var(--brand); background: var(--violet-100); }
.option-toggle input:checked ~ .toggle-switch { background: var(--brand); }
.option-toggle input:checked ~ .toggle-switch::after { transform: translateX(12px); }

.review-overview {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: hidden;
    margin-bottom: 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); box-shadow: var(--sh-sm);
}
.review-overview__item { display: flex; align-items: center; gap: 11px; min-width: 0; padding: 14px 16px; }
.review-overview__item + .review-overview__item { border-left: 1px solid var(--line-soft); }
.review-overview__item > span {
    flex: 0 0 auto; display: grid; place-items: center; width: 36px; height: 36px;
    border-radius: 11px; background: var(--violet-100); color: var(--brand);
}
.review-overview__item div { min-width: 0; display: grid; }
.review-overview__item small { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.review-overview__item strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }

.review-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr); gap: 18px; align-items: start; }
.review-summary { display: grid; gap: 14px; }
.review-summary .review-card { margin: 0; }
.review-card { padding: 0; overflow: hidden; }
.review-card__header { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 18px; border-bottom: 1px solid var(--line-soft); }
.review-card__title { display: flex; align-items: center; gap: 11px; }
.review-card__title > span {
    flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px;
    border-radius: 11px; background: var(--violet-100); color: var(--brand);
}
.review-card__title h2 { margin: 0; font-size: 14px; font-weight: 800; }
.review-card__title p { margin: 2px 0 0; color: var(--muted); font-size: 11px; }
.review-edit {
    display: inline-flex; align-items: center; gap: 5px; padding: 7px 10px;
    border: 1px solid var(--line); border-radius: 9px; color: var(--brand); font-size: 11px; font-weight: 750; text-decoration: none;
}
.review-edit:hover { border-color: var(--violet-300); background: var(--violet-100); color: var(--brand); }
.route-timeline { padding: 18px; }
.route-point { position: relative; display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 12px; min-height: 72px; }
.route-point:not(:last-child)::after { content: ""; position: absolute; left: 17px; top: 38px; bottom: 2px; border-left: 2px dashed var(--line); }
.route-point > span {
    z-index: 1; display: grid; place-items: center; width: 36px; height: 36px;
    border: 1px solid var(--violet-300); border-radius: 11px; background: var(--violet-100); color: var(--brand); font-size: 14px;
}
.route-point.is-stop > span { border-color: var(--line); background: var(--paper); color: var(--muted); }
.route-point.is-drop > span { border-color: rgba(23,145,98,.2); background: var(--ok-soft); color: var(--ok); }
.route-point > div { min-width: 0; padding: 1px 0 14px; }
.route-point small { display: block; margin-bottom: 3px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.route-point strong { display: block; font-size: 13px; line-height: 1.45; }
.route-point em { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.45; font-style: normal; }
.review-meta { display: flex; align-items: center; gap: 10px; margin: 0 18px 18px; padding: 11px 12px; border-radius: 11px; background: var(--paper); }
.review-meta > span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: var(--surface); color: var(--brand); }
.review-meta div { display: grid; }
.review-meta small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.review-meta strong { font-size: 11px; }
.truck-summary { display: flex; gap: 16px; align-items: center; padding: 20px 18px; }
.truck-summary .truck-illustration { flex: 0 0 auto; width: 104px; height: 64px; padding: 7px; border-radius: 13px; background: var(--paper); }
.truck-summary > div:last-child { display: grid; }
.truck-summary > div > strong { font-size: 16px; }
.truck-summary > div > span { color: var(--muted); font-size: 12px; }
.truck-summary__features { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.truck-summary__features small { padding: 5px 8px; border-radius: 99px; background: var(--violet-100); color: var(--brand); font-size: 10px; font-weight: 700; }

.contact-card { position: sticky; top: 96px; padding: 20px; border-color: var(--violet-300); box-shadow: var(--sh-md); }
.contact-card__heading { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.contact-card__heading h2 { margin: 2px 0 0; font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.contact-card__intro { margin: 0 0 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line-soft); color: var(--muted); font-size: 12px; line-height: 1.6; }
.contact-card__icon, .verify-icon, .auth-mobile-icon {
    display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
    background: var(--violet-100); color: var(--brand);
}

.phone-input { display: flex; min-height: 44px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--surface); }
.phone-input:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(79,43,239,.16); }
.phone-input > span { display: flex; align-items: center; padding: 0 11px; border-right: 1px solid var(--line); background: var(--paper); font-weight: 750; }
.field .phone-input input { flex: 1; min-width: 0; border: 0; border-radius: 0; box-shadow: none; }
.field-hint, .privacy-note { color: var(--muted); font-size: 11px; }
.privacy-note { display: block; margin-top: 10px; text-align: center; }
.contact-card__trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 14px; margin-top: 12px; color: var(--muted); font-size: 9px; font-weight: 700; }
.contact-card__trust span { display: inline-flex; align-items: center; gap: 4px; }
.contact-card__trust i { color: var(--ok); }

.verify-wrap, .success-wrap { max-width: 580px; text-align: center; }
.verify-icon { margin: 0 auto 11px; width: 46px; height: 46px; }
.otp-form { margin-top: 22px; }
.otp-boxes { display: flex; gap: 8px; justify-content: center; }
.otp-boxes input {
    width: 48px; height: 56px; text-align: center; font-size: 22px; font-weight: 750;
    border: 1px solid var(--line); border-radius: 14px; background: var(--surface);
    transition: border-color .2s ease, transform .2s var(--ease-spring), background .2s;
}
.otp-boxes input:focus { outline: none; border-color: var(--brand); transform: scale(1.07); }
.otp-boxes input.is-filled { border-color: var(--brand); background: var(--violet-100); }
.otp-form.has-error .otp-boxes input { border-color: var(--danger); animation: otp-shake .25s linear; }
@keyframes otp-shake { 25% { transform: translateX(-2px); } 75% { transform: translateX(2px); } }
.otp-resend { display: flex; justify-content: center; gap: 8px; margin-top: 14px; color: var(--muted); }
.pub-link-button:disabled { color: var(--muted); cursor: not-allowed; }
.verify-back { display: inline-flex; gap: 6px; margin-top: 18px; color: var(--muted); text-decoration: none; }

.success-check {
    display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 14px;
    border-radius: 50%; background: var(--ok-soft); color: var(--ok); font-size: 26px;
    animation: lt-glow 1.8s ease-out 2;
}
.next-steps { text-align: left; }
.next-steps ol { list-style: none; margin: 16px 0 0; padding: 0; }
.next-steps li { position: relative; display: grid; grid-template-columns: 34px 1fr; gap: 10px; min-height: 64px; }
.next-steps li:not(:last-child)::after { content: ""; position: absolute; top: 32px; bottom: 3px; left: 16px; border-left: 1px dashed var(--line); }
.next-steps li > span { z-index: 1; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--paper); }
.next-steps li.is-active > span { background: var(--violet-100); color: var(--brand); }
.success-actions { display: grid; gap: 8px; }

/* ---------- Auth ---------- */

.auth-section {
    padding: clamp(40px, 5vw, 64px) 0 80px;
    background:
        radial-gradient(circle at 10% 12%, rgba(109,74,255,.14), transparent 26rem),
        radial-gradient(circle at 88% 8%, rgba(194,245,66,.2), transparent 24rem),
        var(--cream);
}

.auth-experience {
    max-width: 1020px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    overflow: hidden;
    border-radius: var(--r-xl);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--sh-lg);
}

.auth-story {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 570px;
    padding: 48px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 4%, rgba(194,245,66,.24), transparent 40%),
        linear-gradient(155deg, var(--violet-600), var(--ink));
}

.auth-story h1 { margin: 10px 0 12px; font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.04em; }
.auth-story > p { color: rgba(255,255,255,.7); }
.auth-benefits { display: grid; gap: 14px; margin: 24px 0; }
.auth-benefits > span { display: grid; grid-template-columns: 40px 1fr; gap: 0 10px; }
.auth-benefits i { grid-row: span 2; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.1); color: var(--lime-500); }
.auth-benefits small { color: rgba(255,255,255,.6); }
.auth-story blockquote { margin: auto 0 0; color: rgba(255,255,255,.55); font-weight: 700; }
.auth-checklist { display: grid; gap: 13px; margin-top: 26px; }
.auth-checklist i { color: var(--lime-500); }

.auth-panel { align-self: center; width: 100%; max-width: 520px; padding: 42px 48px; }
.auth-panel--wide { max-width: 590px; }
.auth-panel__heading { margin-bottom: 24px; }
.auth-panel__heading h1, .auth-panel__heading h2 { margin: 12px 0 6px; font-size: 28px; font-weight: 800; letter-spacing: -.03em; }
.auth-panel__heading p { color: var(--muted); }

.auth-input { position: relative; }
.auth-input > i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.field .auth-input input { width: 100%; padding-left: 41px; padding-right: 43px; }
.auth-input button { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border: 0; background: transparent; color: var(--muted); }
.field-label-row { display: flex; justify-content: space-between; align-items: center; }
.field-label-row a { color: var(--brand); font-size: 12px; font-weight: 750; text-decoration: none; }
.remember-row, .terms-row { display: flex; gap: 9px; align-items: flex-start; margin: 14px 0 18px; color: var(--muted); font-size: 13px; }
.remember-row input, .terms-row input { width: 17px; height: 17px; accent-color: var(--brand); }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0 14px; color: var(--muted); font-size: 12px; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; border-top: 1px solid var(--line); }
.auth-alternative { margin: 18px 0 0; color: var(--muted); text-align: center; }
.auth-alternative a { color: var(--brand); font-weight: 750; }
.auth-name-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.password-strength { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-top: 3px; }
.password-strength span { height: 3px; border-radius: 4px; background: var(--line); }
.password-strength[data-score="1"] span:nth-child(-n+1) { background: var(--danger); }
.password-strength[data-score="2"] span:nth-child(-n+2) { background: var(--warn); }
.password-strength[data-score="3"] span:nth-child(-n+3) { background: var(--lime-500); }
.password-strength[data-score="4"] span { background: var(--ok); }

.auth-single { max-width: 560px; display: flex; justify-content: center; }
.auth-single .auth-panel { border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-md); }
.field-label { margin-bottom: 8px; font-size: 13px; font-weight: 750; }
.auth-scene { position: absolute; inset: auto 20px 20px auto; width: 180px; opacity: .85; animation: lt-float 6s ease-in-out infinite; }

/* ---------- Responsive ---------- */

@media (max-width: 1399px) {
    .pub-facts li:last-child { display: none; }
}

@media (max-width: 1199px) {
    .pub-header__inner { gap: 12px; }
    .pub-header__inner .pub-logo--mini { display: none; }
    .pub-facts { display: none; }
    .pub-brandbar__inner { min-height: 78px; justify-content: space-between; }
    .pub-brandbar__pill { margin-left: auto; }
    .banner__dot { min-width: 0; }
    .banner__dot span { display: none; }
    .banner__dot { padding-right: 18px; }
}

@media (max-width: 991px) {
    .pub-utility__hours { display: none !important; }
    .banner__stage { height: clamp(420px, 78vw, 520px); }
    .banner__copy { padding-bottom: 124px; }
    .banner__ui-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .sec__head { grid-template-columns: 1fr; align-items: start; }
    .stack-grid, .faq-grid { grid-template-columns: 1fr; }
    .stack-grid__aside, .faq-grid__aside { position: static; }
    .stack__card { position: static; }
    .figures { grid-template-columns: 1fr 1fr; }
    .bento { grid-template-columns: 1fr 1fr; }
    .bento__tile--wide { grid-column: span 2; }
    .cta { grid-template-columns: 1fr; }
    .road { height: 240vh; }
    .road__cards { width: min(92vw, 360px); right: 16px; top: auto; bottom: 16px; transform: none; }
    .pub-footer__top { grid-template-columns: 1fr; }
    .pub-footer__links { grid-template-columns: 1fr 1fr; }
    .review-grid, .auth-experience { grid-template-columns: 1fr; }
    .auth-story { min-height: auto; }
    .contact-card { position: static; }
}

@media (max-width: 640px) {
    .pub-utility { font-size: 12px; }
    .pub-utility__inner { min-height: 38px; }
    .pub-utility__contact a:nth-child(3),
    .pub-utility__contact .pub-utility__pipe { display: none; }
    .pub-utility__account { gap: 10px; }
    .pub-brandbar__inner { min-height: 68px; }
    .pub-brandbar__pill { display: none; }
    .pub-logo { font-size: 17px; }
    .pub-logo__text small { display: none; }
    .banner__stage { height: clamp(400px, 96vw, 480px); }
    .banner__copy { padding-bottom: 118px; gap: 14px; }
    .banner__cta .btn { min-height: 46px; padding: 0 18px; }
    .banner__nav { width: 100%; justify-content: space-between; }
    .figures, .bento { grid-template-columns: 1fr; }
    .bento__tile--wide { grid-column: span 1; }
    .truck-grid { grid-template-columns: 1fr 1fr; }
    .voice__mark { font-size: 130px; top: -18px; left: 10px; }
    .auth-story { display: none; }
    .auth-panel { padding: 28px 20px; max-width: none; }
    .auth-name-grid, .option-toggles { grid-template-columns: 1fr; }
    .sticky-action > span, .sticky-action > div > span { display: none; }
    .otp-boxes input { width: 42px; height: 52px; }
    .stop-detail-grid { grid-template-columns: 1fr; }
    .review-overview { grid-template-columns: 1fr; }
    .review-overview__item + .review-overview__item { border-top: 1px solid var(--line-soft); border-left: 0; }
    .review-card__header { align-items: flex-start; padding: 14px; }
    .review-card__title > span { width: 34px; height: 34px; }
    .route-timeline { padding: 16px 14px; }
    .review-meta { margin: 0 14px 14px; }
    .truck-summary { align-items: flex-start; padding: 18px 14px; }
    .truck-summary .truck-illustration { width: 82px; height: 54px; }
    .pub-footer__word { -webkit-text-stroke-width: .6px; }
}

@media (min-width: 992px) {
    .pub-footer__group summary { pointer-events: none; }
}

@media (prefers-reduced-motion: reduce) {
    .road__body, .auth-scene, .mega__art, .mesh span { animation: none !important; }
    .banner__img { transition: none !important; transform: none !important; }
    .banner__slide .banner__eyebrow,
    .banner__slide .banner__title,
    .banner__slide .banner__text,
    .banner__slide .banner__cta { opacity: 1 !important; transform: none !important; transition: none !important; }
}
