:root {
    --od-black: #050605;
    --od-black-soft: #0b0d0b;
    --od-lime: #b8ff2c;
    --od-lime-dark: #8fd91f;
    --od-lime-pale: #f2f9e6;
    --od-white: #ffffff;
    --od-page: #f6f7f4;
    --od-text: #171a16;
    --od-muted: #687066;
    --od-border: #e2e7dd;
    --od-header: 68px;
    --od-container: 1360px;
    --od-shadow: 0 18px 52px rgba(5, 6, 5, 0.09);
}

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

html {
    max-width: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--od-header) + 16px);
}

html.od-nav-open {
    overflow: hidden;
}

body.od-site {
    min-width: 0;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
    background: var(--od-page);
    color: var(--od-text);
}

.od-site img,
.od-site svg {
    max-width: 100%;
}

.od-site a,
.od-site button,
.od-site input {
    -webkit-tap-highlight-color: transparent;
}

.od-main {
    min-height: 50vh;
}

.od-container {
    width: min(100%, var(--od-container));
    margin-inline: auto;
    padding-inline: 18px;
}

/* HEADER */

.od-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--od-header);
    border-bottom: 1px solid rgba(226, 231, 221, 0.88);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 28px rgba(5, 6, 5, 0.045);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.od-header__inner {
    width: min(100%, var(--od-container));
    min-height: var(--od-header);
    margin-inline: auto;
    padding: 9px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.od-header__logo {
    min-width: 0;
    gap: 7px !important;
}

.od-header__logo svg {
    width: 50px !important;
    height: 31px !important;
}

.od-header__logo img {
    width: auto !important;
    max-width: 150px !important;
    height: 36px !important;
    object-fit: contain;
}

.od-header__logo > span {
    font-size: 1.06rem !important;
    white-space: nowrap;
}

.od-header__nav,
.od-header__actions {
    display: none;
}

.od-menu-button {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--od-border);
    border-radius: 15px;
    background: var(--od-white);
    color: var(--od-black);
    box-shadow: 0 9px 24px rgba(5, 6, 5, 0.07);
    cursor: pointer;
}

.od-menu-button:focus-visible {
    outline: 3px solid rgba(184, 255, 44, 0.42);
    outline-offset: 2px;
}

.od-menu-button__lines {
    position: relative;
    width: 21px;
    height: 16px;
    display: block;
}

.od-menu-button__lines span {
    position: absolute;
    left: 0;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
        top 180ms ease,
        transform 180ms ease,
        opacity 180ms ease;
}

.od-menu-button__lines span:nth-child(1) {
    top: 0;
}

.od-menu-button__lines span:nth-child(2) {
    top: 7px;
}

.od-menu-button__lines span:nth-child(3) {
    top: 14px;
}

.od-menu-button__lines.is-open span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.od-menu-button__lines.is-open span:nth-child(2) {
    opacity: 0;
}

.od-menu-button__lines.is-open span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

.od-mobile-nav {
    position: fixed;
    z-index: 95;
    top: var(--od-header);
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px 12px 20px;
    overflow-y: auto;
    background: rgba(5, 6, 5, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.od-mobile-nav__panel {
    width: min(100%, 520px);
    margin-inline: auto;
    padding: 18px;
    border: 1px solid var(--od-border);
    border-radius: 24px;
    background: var(--od-white);
    box-shadow: 0 28px 80px rgba(5, 6, 5, 0.24);
}

.od-mobile-nav__top {
    padding-bottom: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #edf0e9;
}

.od-mobile-nav__top strong,
.od-mobile-nav__top span {
    display: block;
}

.od-mobile-nav__top strong {
    font-size: 0.94rem;
}

.od-mobile-nav__top > div > span {
    margin-top: 2px;
    color: #929990;
    font-size: 0.7rem;
}

.od-live-badge {
    min-height: 29px;
    padding: 5px 9px;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: #eef9d5;
    color: #557f0d;
    font-size: 0.66rem;
    font-weight: 800;
}

.od-live-badge i {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--od-lime-dark);
}

.od-mobile-nav__links {
    padding-block: 13px;
    display: grid;
    gap: 5px;
}

.od-mobile-nav__links a {
    min-height: 48px;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    border-radius: 14px;
    color: var(--od-text);
    font-size: 0.84rem;
    font-weight: 750;
    text-decoration: none;
}

.od-mobile-nav__links a:active {
    background: #f2f5ef;
}

.od-mobile-nav__actions {
    padding-top: 14px;
    display: grid;
    gap: 9px;
    border-top: 1px solid #edf0e9;
}

.od-mobile-nav__actions form {
    width: 100%;
}

.od-header__login {
    min-height: 44px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    color: #555d53;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

/* BUTTONS */

.od-button {
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 0.88rem;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease;
}

.od-button svg {
    width: 19px;
    height: 19px;
}

.od-button--lime {
    background: var(--od-lime);
    color: var(--od-black);
    box-shadow: 0 14px 34px rgba(143, 217, 31, 0.17);
}

.od-button--dark {
    background: var(--od-black);
    color: var(--od-white);
}

.od-button--ghost-light {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
    color: var(--od-white);
}

.od-button--outline-dark {
    border-color: var(--od-border);
    background: var(--od-white);
    color: var(--od-black);
}

.od-button--header {
    width: auto;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 14px;
}

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

/* EYEBROW */

.od-eyebrow {
    width: fit-content;
    color: #5d880f;
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.od-eyebrow--dark {
    color: #d9ff84;
}

/* HERO */

.od-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(184, 255, 44, 0.15),
            transparent 38%
        ),
        linear-gradient(145deg, var(--od-black), var(--od-black-soft));
    color: var(--od-white);
}

.od-hero::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    content: "";
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 34px 34px;
}

.od-hero__glow {
    position: absolute;
    z-index: -1;
    top: -150px;
    right: -130px;
    width: 390px;
    height: 390px;
    border-radius: 999px;
    background: rgba(184, 255, 44, 0.13);
    filter: blur(90px);
}

.od-hero__orb {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(184, 255, 44, 0.1);
    border-radius: 999px;
    pointer-events: none;
}

.od-hero__orb--one {
    top: 90px;
    right: 4%;
    width: 210px;
    height: 210px;
}

.od-hero__orb--two {
    right: 18%;
    bottom: -90px;
    width: 260px;
    height: 260px;
}

.od-hero__grid {
    padding-top: 46px;
    padding-bottom: 54px;
    display: grid;
    gap: 36px;
}

.od-hero__copy {
    min-width: 0;
}

.od-hero h1 {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--od-white);
    font-size: clamp(2.25rem, 10.5vw, 4.65rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1.02;
    text-wrap: balance;
}

.od-hero h1 em {
    display: block;
    color: var(--od-lime);
    font-style: normal;
}

.od-hero__description {
    max-width: 650px;
    margin: 19px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.95rem;
    line-height: 1.72;
}

.od-hero__actions {
    margin-top: 26px;
    display: grid;
    gap: 10px;
}

.od-hero__benefits {
    margin-top: 19px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px 15px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.68rem;
    font-weight: 700;
}

.od-hero__benefits span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.od-hero__benefits i {
    color: var(--od-lime);
    font-style: normal;
    font-weight: 900;
}

/* HERO PREVIEW */

.od-order-preview {
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 27px;
    background: var(--od-white);
    color: var(--od-text);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.od-order-preview__top {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.od-location-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--od-lime-pale);
    color: #5b8610;
}

.od-order-preview__top small,
.od-order-preview__top strong {
    display: block;
}

.od-order-preview__top small {
    color: #969c93;
    font-size: 0.62rem;
}

.od-order-preview__top strong {
    margin-top: 2px;
    overflow: hidden;
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.od-search-box {
    min-height: 46px;
    margin-top: 15px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--od-border);
    border-radius: 14px;
    background: #f8f9f7;
    color: #8f968c;
    font-size: 0.73rem;
    text-decoration: none;
}

.od-order-preview__heading {
    margin-top: 17px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.od-order-preview__heading strong,
.od-order-preview__heading span {
    display: block;
}

.od-order-preview__heading strong {
    font-size: 0.8rem;
}

.od-order-preview__heading span {
    margin-top: 2px;
    color: #999f96;
    font-size: 0.62rem;
}

.od-order-preview__heading a {
    color: #5d880f;
    font-size: 0.65rem;
    font-weight: 800;
    text-decoration: none;
}

.od-order-preview__list {
    margin-top: 11px;
    display: grid;
    gap: 9px;
}

.od-preview-merchant {
    min-width: 0;
    padding: 8px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 10px;
    border: 1px solid #e9ece6;
    border-radius: 16px;
    background: var(--od-white);
    color: var(--od-text);
    text-decoration: none;
}

.od-preview-merchant__image {
    position: relative;
    height: 70px;
    overflow: hidden;
    border-radius: 12px;
    background: #eef1eb;
}

.od-preview-merchant__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.od-preview-merchant__image > span {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 4px 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    font-size: 0.48rem;
    font-weight: 900;
}

.is-open {
    color: #3f7108;
}

.is-closed {
    color: #697067;
}

.od-preview-merchant__content {
    min-width: 0;
}

.od-preview-merchant__content > strong {
    display: block;
    overflow: hidden;
    font-size: 0.75rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.od-preview-merchant__content > small {
    display: block;
    margin-top: 3px;
    overflow: hidden;
    color: #949a91;
    font-size: 0.59rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.od-preview-merchant__content > div {
    margin-top: 9px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 8px;
    color: #656c63;
    font-size: 0.57rem;
    font-weight: 750;
}

.od-preview-merchant__content > div span:first-child {
    color: #986812;
}

.od-preview-merchant__arrow {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #f1f3ef;
    color: #757d73;
}

.od-preview-empty {
    min-height: 170px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--od-border);
    border-radius: 18px;
    background: #fafbf9;
    text-align: center;
}

.od-preview-empty svg {
    color: #6b961b;
}

.od-preview-empty strong {
    margin-top: 10px;
    font-size: 0.82rem;
}

.od-preview-empty p {
    margin: 5px 0 0;
    color: var(--od-muted);
    font-size: 0.68rem;
}

.od-preview-empty a {
    margin-top: 12px;
    color: #527b0d;
    font-size: 0.68rem;
    font-weight: 800;
}

.od-security-note {
    margin-top: 11px;
    padding: 10px 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 13px;
    background: var(--od-lime-pale);
    color: #596a4a;
    font-size: 0.61rem;
    line-height: 1.45;
}

.od-security-note svg {
    flex: 0 0 auto;
    color: #608d12;
}

/* SHARED SECTIONS */

.od-section {
    padding-block: 60px;
    scroll-margin-top: calc(var(--od-header) + 14px);
}

.od-section-heading {
    max-width: 720px;
}

.od-section-heading--row {
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.od-section-heading h2,
.od-steps-panel__heading h2,
.od-tracking-card__content h2,
.od-cta__card h2 {
    margin: 10px 0 0;
    font-size: clamp(1.78rem, 7.8vw, 2.85rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.12;
    text-wrap: balance;
}

.od-section-heading p,
.od-steps-panel__heading p,
.od-tracking-card__content > p,
.od-cta__card p {
    max-width: 650px;
    margin: 14px 0 0;
    color: var(--od-muted);
    font-size: 0.86rem;
    line-height: 1.68;
}

.od-text-link {
    width: fit-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #527b0d;
    font-size: 0.78rem;
    font-weight: 850;
    text-decoration: none;
}

/* MERCHANT SECTION */

.od-section--merchant {
    background: var(--od-page);
}

.od-category-chips {
    margin-top: 23px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.od-category-chips::-webkit-scrollbar {
    display: none;
}

.od-category-chips a {
    min-height: 40px;
    padding: 9px 13px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    border: 1px solid var(--od-border);
    border-radius: 999px;
    background: var(--od-white);
    color: #596157;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
}

.od-merchant-slider {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.od-merchant-slider::-webkit-scrollbar {
    display: none;
}

.od-merchant-card {
    width: min(86vw, 330px);
    flex: 0 0 min(86vw, 330px);
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid var(--od-border);
    border-radius: 23px;
    background: var(--od-white);
    box-shadow: 0 12px 32px rgba(5, 6, 5, 0.055);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.od-merchant-card > a {
    display: block;
    color: var(--od-text);
    text-decoration: none;
}

.od-merchant-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eef1eb;
}

.od-merchant-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.od-status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    font-size: 0.62rem;
    font-weight: 900;
    box-shadow: 0 8px 22px rgba(5, 6, 5, 0.1);
}

.od-merchant-card__body {
    padding: 16px;
}

.od-merchant-card__title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.od-merchant-card__title > div {
    min-width: 0;
}

.od-merchant-card__title h3 {
    margin: 0;
    overflow: hidden;
    font-size: 0.98rem;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.od-merchant-card__title p {
    margin: 4px 0 0;
    overflow: hidden;
    color: var(--od-muted);
    font-size: 0.68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.od-rating {
    flex: 0 0 auto;
    padding: 5px 8px;
    border-radius: 10px;
    background: #fff8e9;
    color: #926311;
    font-size: 0.66rem;
    font-weight: 850;
}

.od-merchant-card__meta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 13px;
    color: #6c746a;
    font-size: 0.67rem;
    font-weight: 750;
}

.od-merchant-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.od-merchant-card__footer {
    margin-top: 15px;
    padding-top: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid #edf0e9;
    color: #858d83;
    font-size: 0.65rem;
}

.od-merchant-card__footer strong {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #527b0d;
    font-size: 0.68rem;
}

.od-empty-state {
    margin-top: 24px;
    padding: 34px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px dashed var(--od-border);
    border-radius: 24px;
    background: var(--od-white);
    text-align: center;
}

.od-empty-state__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--od-lime-pale);
    color: #5b8610;
}

.od-empty-state h3 {
    margin: 14px 0 0;
    font-size: 1rem;
    font-weight: 850;
}

.od-empty-state p {
    max-width: 420px;
    margin: 7px 0 0;
    color: var(--od-muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

.od-empty-state .od-button {
    width: auto;
    margin-top: 18px;
}

/* ADVANTAGES */

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

.od-advantages-grid {
    margin-top: 26px;
    display: grid;
    gap: 12px;
}

.od-advantage-card {
    padding: 20px;
    border: 1px solid var(--od-border);
    border-radius: 22px;
    background: var(--od-white);
    box-shadow: 0 11px 30px rgba(5, 6, 5, 0.045);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.od-advantage-card__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--od-lime-pale);
    color: #5b8610;
}

.od-advantage-card h3 {
    margin: 17px 0 0;
    font-size: 0.96rem;
    font-weight: 850;
}

.od-advantage-card p {
    margin: 7px 0 0;
    color: var(--od-muted);
    font-size: 0.78rem;
    line-height: 1.62;
}

/* STEPS */

.od-section--steps {
    background: var(--od-page);
}

.od-steps-panel {
    padding: 25px 18px;
    border-radius: 27px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(184, 255, 44, 0.1),
            transparent 36%
        ),
        var(--od-black);
    color: var(--od-white);
    box-shadow: 0 25px 70px rgba(5, 6, 5, 0.15);
}

.od-steps-panel__heading h2 {
    color: var(--od-white);
}

.od-steps-panel__heading p {
    color: rgba(255, 255, 255, 0.52);
}

.od-steps-list {
    position: relative;
    margin: 26px 0 0;
    padding: 0;
    display: grid;
    list-style: none;
}

.od-steps-list::before {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 20px;
    width: 1px;
    content: "";
    background: rgba(184, 255, 44, 0.18);
}

.od-steps-list li {
    position: relative;
    padding-bottom: 19px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
}

.od-steps-list li:last-child {
    padding-bottom: 0;
}

.od-step-number {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(184, 255, 44, 0.18);
    border-radius: 14px;
    background: #263516;
    color: #dbff8d;
    font-size: 0.7rem;
    font-weight: 900;
}

.od-steps-list h3 {
    margin: 4px 0 0;
    color: var(--od-white);
    font-size: 0.87rem;
    font-weight: 850;
}

.od-steps-list p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.73rem;
    line-height: 1.58;
}

/* TRACKING */

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

.od-tracking-card {
    overflow: hidden;
    border: 1px solid var(--od-border);
    border-radius: 28px;
    background:
        linear-gradient(145deg, #f8fbf2, var(--od-white));
    box-shadow: var(--od-shadow);
}

.od-tracking-card__visual {
    min-height: 220px;
    padding: 32px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle, rgba(184, 255, 44, 0.3), transparent 52%),
        var(--od-black);
}

.od-tracking-orbit {
    position: relative;
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(184, 255, 44, 0.18);
    border-radius: 999px;
}

.od-tracking-orbit::before {
    position: absolute;
    width: 104px;
    height: 104px;
    content: "";
    border: 1px dashed rgba(184, 255, 44, 0.25);
    border-radius: 999px;
}

.od-tracking-orbit__center {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: var(--od-lime);
    color: var(--od-black);
    box-shadow: 0 18px 42px rgba(184, 255, 44, 0.18);
}

.od-tracking-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 3px solid var(--od-black);
    border-radius: 999px;
    background: var(--od-lime);
}

.od-tracking-dot--one {
    top: 19px;
    right: 16px;
}

.od-tracking-dot--two {
    bottom: 17px;
    left: 18px;
}

.od-tracking-card__content {
    padding: 24px 19px;
}

.od-tracking-form {
    margin-top: 23px;
}

.od-tracking-form > label {
    display: block;
    color: var(--od-text);
    font-size: 0.75rem;
    font-weight: 850;
}

.od-tracking-form__row {
    margin-top: 8px;
    display: grid;
    gap: 9px;
}

.od-tracking-input {
    min-height: 50px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--od-border);
    border-radius: 15px;
    background: var(--od-white);
}

.od-tracking-input svg {
    flex: 0 0 auto;
    color: #8b9288;
}

.od-tracking-input input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--od-text);
    font-size: 0.82rem;
    font-weight: 650;
}

.od-tracking-input input::placeholder {
    color: #a1a79e;
}

.od-tracking-form button {
    min-height: 50px;
    padding: 12px 18px;
    border: 0;
    border-radius: 15px;
    background: var(--od-black);
    color: var(--od-white);
    font-size: 0.82rem;
    font-weight: 850;
    cursor: pointer;
}

.od-tracking-form__error {
    margin: 8px 0 0;
    color: #c53232;
    font-size: 0.72rem;
    font-weight: 750;
}

.od-tracking-form > small {
    display: block;
    margin-top: 9px;
    color: #858d83;
    font-size: 0.66rem;
    line-height: 1.5;
}

/* CTA */

.od-cta {
    padding: 0 0 64px;
    background: var(--od-white);
}

.od-cta__card {
    padding: 26px 20px;
    display: grid;
    gap: 21px;
    border-radius: 27px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(184, 255, 44, 0.15),
            transparent 38%
        ),
        var(--od-black);
    color: var(--od-white);
    box-shadow: 0 25px 70px rgba(5, 6, 5, 0.17);
}

.od-cta__card h2 {
    color: var(--od-white);
}

.od-cta__card p {
    color: rgba(255, 255, 255, 0.55);
}

/* FOOTER */

.od-footer {
    background: var(--od-black);
    color: var(--od-white);
}

.od-footer__grid {
    padding-top: 44px;
    padding-bottom: 34px;
    display: grid;
    gap: 28px;
}

.od-footer__logo svg {
    width: 51px !important;
    height: 32px !important;
}

.od-footer__logo img {
    width: auto !important;
    max-width: 170px !important;
    height: 39px !important;
    object-fit: contain;
}

.od-footer__logo > span {
    color: var(--od-white) !important;
    font-size: 1.06rem !important;
}

.od-footer__brand p,
.od-footer__column p {
    max-width: 470px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.78rem;
    line-height: 1.66;
}

.od-footer__column {
    display: grid;
    align-content: start;
    gap: 8px;
}

.od-footer__column strong {
    margin-bottom: 3px;
    font-size: 0.8rem;
}

.od-footer__column a {
    width: fit-content;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.76rem;
    text-decoration: none;
}

.od-footer__column a:hover {
    color: var(--od-lime);
}

.od-footer__bottom {
    padding:
        17px
        18px
        calc(17px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.68rem;
    text-align: center;
}

/* TABLET */

@media (min-width: 768px) {
    .od-header__inner,
    .od-container {
        padding-right: 30px;
        padding-left: 30px;
    }

    .od-hero__grid {
        padding-top: 70px;
        padding-bottom: 76px;
    }

    .od-hero__actions {
        max-width: 540px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .od-order-preview__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .od-section {
        padding-block: 82px;
    }

    .od-section-heading--row {
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
    }

    .od-section-heading--row > div {
        max-width: 720px;
    }

    .od-merchant-card {
        width: 330px;
        flex-basis: 330px;
    }

    .od-advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .od-steps-panel {
        padding: 38px;
    }

    .od-tracking-card {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        align-items: stretch;
    }

    .od-tracking-card__content {
        padding: 36px;
    }

    .od-tracking-form__row {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .od-tracking-form button {
        min-width: 150px;
    }

    .od-cta {
        padding-bottom: 82px;
    }

    .od-cta__card {
        padding: 38px;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .od-cta__card .od-button {
        width: auto;
        min-width: 180px;
    }

    .od-footer__grid {
        grid-template-columns: 1.3fr 0.75fr 0.75fr 1fr;
        gap: 38px;
        padding-top: 54px;
        padding-bottom: 48px;
    }

    .od-footer__bottom {
        flex-direction: row;
        justify-content: center;
        gap: 9px;
    }

    .od-footer__bottom span + span::before {
        margin-right: 9px;
        content: "•";
    }
}

/* DESKTOP */

@media (min-width: 1024px) {
    .od-header__inner,
    .od-container {
        padding-right: 40px;
        padding-left: 40px;
    }

    .od-header__logo svg {
        width: 62px !important;
        height: 38px !important;
    }

    .od-header__logo img {
        max-width: 210px !important;
        height: 46px !important;
    }

    .od-header__logo > span {
        font-size: 1.3rem !important;
    }

    .od-header__nav {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .od-header__nav a {
        min-height: 42px;
        padding: 10px 14px;
        display: inline-flex;
        align-items: center;
        border-radius: 13px;
        color: #596157;
        font-size: 0.79rem;
        font-weight: 800;
        text-decoration: none;
    }

    .od-header__nav a:hover {
        background: #f2f5ef;
        color: var(--od-black);
    }

    .od-header__actions {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .od-menu-button,
    .od-mobile-nav {
        display: none !important;
    }

    .od-hero__grid {
        min-height: 680px;
        padding-top: 82px;
        padding-bottom: 82px;
        grid-template-columns:
            minmax(0, 0.92fr)
            minmax(450px, 1.08fr);
        align-items: center;
        gap: 76px;
    }

    .od-hero__actions {
        display: flex;
        max-width: none;
    }

    .od-hero__actions .od-button {
        width: auto;
        min-width: 180px;
    }

    .od-order-preview {
        padding: 22px;
        border-radius: 31px;
    }

    .od-merchant-slider {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
        gap: 18px;
        padding-bottom: 0;
    }

    .od-merchant-card {
        width: auto;
        min-width: 0;
        flex-basis: auto;
    }

    .od-merchant-card:hover,
    .od-advantage-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 22px 55px rgba(5, 6, 5, 0.1);
    }

    .od-merchant-card:hover .od-merchant-card__media img {
        transform: scale(1.045);
    }

    .od-advantages-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .od-advantage-card {
        min-height: 230px;
        padding: 27px;
    }

    .od-steps-panel {
        padding: 50px;
        display: grid;
        grid-template-columns:
            minmax(280px, 0.8fr)
            minmax(0, 1.2fr);
        gap: 56px;
    }

    .od-steps-list {
        margin-top: 0;
    }

    .od-tracking-card__content {
        padding: 48px;
    }

    .od-cta {
        padding-bottom: 96px;
    }

    .od-cta__card {
        padding: 46px;
    }
}

/* SMALL MOBILE */

@media (max-width: 359px) {
    .od-header__inner,
    .od-container {
        padding-right: 14px;
        padding-left: 14px;
    }

    .od-header__logo svg {
        width: 45px !important;
        height: 29px !important;
    }

    .od-header__logo img {
        max-width: 118px !important;
        height: 31px !important;
    }

    .od-header__logo > span {
        font-size: 0.94rem !important;
    }

    .od-hero h1 {
        font-size: 2.08rem;
    }

    .od-order-preview {
        padding: 13px;
    }

    .od-merchant-card {
        width: 88vw;
        flex-basis: 88vw;
    }
}

/* REDUCED MOTION */

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

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