/* ========================================================================
   Honey — playful DeFi look (PancakeSwap-inspired)
   ======================================================================== */

:root {
    /* PancakeSwap-dark inspired (slightly lighter) */
    --h-bg:           #1E1A2D;
    --h-bg-soft:      #2A2640;
    --h-bg-mint:      #1F3D52;
    --h-bg-honey:     #4A3920;
    --h-bg-pink:      #452636;
    --h-card:         #353047;
    --h-card-2:       #2C2740;
    --h-line:         #463F5C;
    --h-line-2:       #5A5273;

    --h-ink:          #F4EEFF;
    --h-ink-soft:     #C4BBD9;
    --h-ink-muted:    #A39BBE;
    --h-ink-dim:      #6E6585;

    --h-cyan:         #2EA9B3;
    --h-cyan-dark:    #4FC4CD;
    --h-cyan-soft:    #1B4F58;

    --h-honey:        #FFB237;
    --h-honey-deep:   #FFC700;
    --h-honey-soft:   #4F3D1A;

    --h-purple:       #7A6EAA;
    --h-purple-deep:  #452A7A;

    --h-pink:         #ED4B9E;
    --h-green:        #31D0AA;

    --h-shadow-sm:    0 1px 0 rgba(0,0,0,0.40), 0 2px 8px -3px rgba(0,0,0,0.50);
    --h-shadow:       0 6px 18px -6px rgba(0,0,0,0.55), 0 2px 4px rgba(0,0,0,0.30);
    --h-shadow-lg:    0 24px 48px -14px rgba(0,0,0,0.65), 0 6px 14px rgba(0,0,0,0.35);

    --h-btn-shadow:   inset 0 -2px 0 0 rgba(0,0,0,0.32);

    --h-radius:       24px;
    --h-radius-sm:    16px;
    --h-radius-xs:    12px;

    --h-font:         'Kanit', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --h-font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
    --h-font-mono:    'Roboto Mono', 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
}

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

html, body {
    background: var(--h-bg);
    color: var(--h-ink);
    min-height: 100%;
}

body.site-honey {
    font-family: var(--h-font-body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--h-ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: var(--h-bg);
}

#main {
    flex: 1 0 auto;
    width: 100%;
    padding: 0;
}

::selection { background: var(--h-honey-soft); color: var(--h-ink); }

a { color: var(--h-cyan-dark); text-decoration: none; transition: opacity .15s ease; }
a:hover { opacity: 0.7; text-decoration: none; }

p { color: var(--h-ink-soft); margin: 0 0 1rem; }
strong { color: var(--h-ink); font-weight: 600; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--h-font);
    color: var(--h-ink);
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* ========================================================================
   Top navbar — sticky, full-width
   ======================================================================== */
.h-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(30, 26, 45, 0.92);
    backdrop-filter: saturate(160%) blur(10px);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--h-line);
}
.h-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.h-nav-logo img { height: 36px; width: auto; display: block; }
.h-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 24px;
}
.h-nav-link {
    font-family: var(--h-font);
    font-weight: 600;
    color: var(--h-ink);
    font-size: 16px;
    padding: 6px 4px;
    border-bottom: 2px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}
.h-nav-link:hover { color: var(--h-cyan-dark); opacity: 1; border-bottom-color: var(--h-cyan); }
.h-nav-spacer { flex: 1; }
.h-nav-langs { display: flex; align-items: center; gap: 6px; }
.h-nav-cta {
    font-family: var(--h-font);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    background: linear-gradient(180deg, #128A93 0%, #0A6F77 100%);
    color: #E6FBFD;
    padding: 11px 18px;
    border: 0;
    border-radius: 16px;
    box-shadow: var(--h-btn-shadow);
    cursor: pointer;
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
    transition: transform .1s ease, opacity .15s ease, background .15s ease;
}
.h-nav-cta:focus { outline: none; }
.h-nav-cta:focus-visible { outline: 2px solid var(--h-cyan-dark); outline-offset: 2px; }
.h-nav-cta:hover { color: #E6FBFD; opacity: 0.92; background: linear-gradient(180deg, #0F7780 0%, #085D64 100%); }
.h-nav-cta:active { transform: translateY(1px); box-shadow: none; }

.h-nav-burger {
    display: none;
    background: var(--h-bg-soft);
    border: 1px solid var(--h-line);
    border-radius: 12px;
    padding: 8px 10px;
    cursor: pointer;
}
.h-nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--h-ink);
    margin: 4px 0;
    border-radius: 2px;
}

.lang-flag-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--h-line);
    transition: transform .12s ease, box-shadow .15s ease;
    opacity: 0.85;
}
.lang-flag-link:hover { opacity: 1; transform: translateY(-1px); box-shadow: 0 0 0 2px var(--h-cyan); }
.lang-flag-link .fi { width: 28px; height: 28px; background-size: cover; background-position: center; border-radius: 50%; }

/* ========================================================================
   Hero — full-width gradient
   ======================================================================== */
.h-hero {
    background:
        radial-gradient(ellipse at 80% 20%, rgba(255, 178, 55, 0.20) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(31, 199, 212, 0.22) 0%, transparent 55%),
        linear-gradient(180deg, #29243F 0%, #211C36 100%);
    padding: 64px 0 88px;
    position: relative;
    overflow: hidden;
}
.h-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 30%, rgba(255,255,255,0.18) 0 5px, transparent 6px),
        radial-gradient(circle at 88% 70%, rgba(255,255,255,0.15) 0 8px, transparent 9px),
        radial-gradient(circle at 65% 18%, rgba(255,255,255,0.12) 0 4px, transparent 5px);
    pointer-events: none;
}
.h-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
}
.h-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(31, 199, 212, 0.12);
    color: var(--h-cyan-dark);
    border: 1px solid rgba(31, 199, 212, 0.30);
    font-family: var(--h-font);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: var(--h-shadow-sm);
}
.h-eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--h-honey);
    box-shadow: 0 0 0 4px rgba(255, 178, 55, 0.25);
}
.h-hero h1 {
    font-size: clamp(32px, 4.6vw, 60px);
    font-weight: 700;
    margin: 18px 0 14px;
    line-height: 1.05;
    color: var(--h-ink);
}
.h-hero h1 .accent { color: var(--h-cyan-dark); }
.h-hero h1 .accent-honey {
    background: linear-gradient(90deg, var(--h-honey-deep), var(--h-honey));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.h-hero-sub {
    font-size: 18px;
    color: var(--h-ink-soft);
    max-width: 540px;
    margin-bottom: 28px;
}
.h-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.h-btn {
    font-family: var(--h-font);
    font-weight: 600;
    border: 0;
    cursor: pointer;
    padding: 14px 26px;
    border-radius: 16px;
    font-size: 16px;
    transition: transform .1s ease, opacity .15s ease, background-color .15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    line-height: 1;
}
.h-btn-primary {
    background: linear-gradient(180deg, #128A93 0%, #0A6F77 100%);
    color: #E6FBFD;
    box-shadow: var(--h-btn-shadow);
}
.h-btn-primary:hover { background: linear-gradient(180deg, #0F7780 0%, #085D64 100%); color: #E6FBFD; opacity: 1; }
.h-btn-primary:active { transform: translateY(1px); box-shadow: none; }
.h-btn-honey {
    background: linear-gradient(180deg, #E8951F 0%, #B36A12 100%);
    color: #FFF6E0;
    box-shadow: var(--h-btn-shadow);
}
.h-btn-honey:hover { color: #FFF6E0; opacity: 0.92; }
.h-btn-honey:active { transform: translateY(1px); box-shadow: none; }
.h-btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--h-ink);
    border: 1px solid var(--h-line-2);
}
.h-btn-ghost:hover { background: rgba(255,255,255,0.10); color: var(--h-ink); opacity: 1; }
.h-btn-lg { padding: 18px 32px; font-size: 17px; border-radius: 20px; }
.h-btn-block { display: flex; width: 100%; }

/* hero illustration */
.h-hero-art {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h-hero-svg {
    width: 100%;
    height: auto;
    display: block;
    max-width: 520px;
    /* mildly tone the jar; keep it warm and readable on dark bg */
    filter:
        saturate(0.92)
        brightness(0.88)
        drop-shadow(0 22px 40px rgba(0, 0, 0, 0.55));
    animation: h-float-soft 6s ease-in-out infinite;
}
@keyframes h-float-soft {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* ========================================================================
   Stat strip
   ======================================================================== */
.h-stats {
    background: var(--h-bg);
    padding: 40px 0;
}
.h-stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.h-stat-card {
    background: var(--h-card);
    border: 1px solid var(--h-line);
    border-radius: var(--h-radius);
    padding: 20px 22px;
    box-shadow: var(--h-shadow-sm);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.h-stat-card:hover { transform: translateY(-2px); box-shadow: var(--h-shadow); border-color: var(--h-cyan-soft); }
.h-stat-label {
    font-family: var(--h-font-body);
    font-size: 13px;
    color: var(--h-ink-muted);
    font-weight: 600;
    margin-bottom: 6px;
}
.h-stat-value {
    font-family: var(--h-font);
    font-weight: 700;
    color: var(--h-ink);
    font-size: 26px;
    line-height: 1.1;
}
.h-stat-sub { font-size: 12px; color: var(--h-ink-muted); margin-top: 4px; }

/* ========================================================================
   Section frames
   ======================================================================== */
.h-section { padding: 72px 0; width: 100%; }
.h-section-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.h-section-bg-pink   { background: linear-gradient(180deg, #312239 0%, #1E1A2D 100%); }
.h-section-bg-mint   { background: linear-gradient(180deg, #1F2F3F 0%, #1E1A2D 100%); }
.h-section-bg-cream  { background: linear-gradient(180deg, #2C2640 0%, #1E1A2D 100%); }
.h-section-bg-purple { background: linear-gradient(180deg, #322749 0%, #1E1A2D 100%); }
.h-section-bg-soft   { background: var(--h-bg); }

.h-section-head { text-align: center; margin-bottom: 44px; }
.h-section-head h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 700;
    color: var(--h-ink);
    margin-bottom: 10px;
}
.h-section-head p {
    color: var(--h-ink-muted);
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
}

/* ========================================================================
   Form / Mix card
   ======================================================================== */
.h-form-wrap { max-width: 540px; margin: 0 auto; }
.h-card {
    background: var(--h-card);
    border: 1px solid var(--h-line);
    border-radius: var(--h-radius);
    box-shadow: var(--h-shadow);
    padding: 28px;
}
.h-card-lg { padding: 32px; }
.h-card-title {
    font-family: var(--h-font);
    font-weight: 700;
    font-size: 22px;
    color: var(--h-ink);
    margin: 0 0 4px;
}
.h-card-sub { color: var(--h-ink-muted); font-size: 14px; margin: 0 0 20px; }

/* legacy card */
.card-inmix {
    background: var(--h-card);
    border: 1px solid var(--h-line);
    border-radius: var(--h-radius);
    box-shadow: var(--h-shadow);
    color: var(--h-ink);
    overflow: hidden;
}
.card-inmix .card-body { padding: 28px; }
.site-single-block { max-width: 720px; margin: 40px auto; padding: 0 16px; }
.site-block-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--h-line) !important;
}
.site-block-logo { height: 36px; width: auto; }
.site-block-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 20px;
    margin-top: 28px;
    border-top: 1px solid var(--h-line) !important;
    color: var(--h-ink-muted);
    font-size: 13px;
}
.site-block-link {
    color: var(--h-ink) !important;
    font-family: var(--h-font);
    font-weight: 600;
    font-size: 14px;
}
.site-block-link:hover { color: var(--h-cyan-dark) !important; }

/* ========================================================================
   Pool availability indicator (above the mix form)
   ======================================================================== */
.h-pool-status {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    background: var(--h-card);
    border: 1px solid var(--h-line);
    border-radius: var(--h-radius-sm);
    box-shadow: var(--h-shadow-sm);
    padding: 12px 18px;
    margin-bottom: 14px;
}
.h-pool-status-dot {
    position: relative;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--h-green);
    box-shadow: 0 0 0 4px rgba(49, 208, 170, 0.18);
}
.h-pool-status-dot::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--h-green);
    transform: scale(1);
    opacity: 0;
    will-change: transform, opacity;
    animation: h-pool-pulse 2s ease-out infinite;
}
@keyframes h-pool-pulse {
    0%   { transform: scale(1);   opacity: 0.55; }
    100% { transform: scale(3);   opacity: 0;    }
}
.h-pool-status-pill {
    font-family: var(--h-font);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--h-green);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(49, 208, 170, 0.12);
    border: 1px solid rgba(49, 208, 170, 0.30);
}
.h-pool-status-grid {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.h-pool-status-cell {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}
.h-pool-status-cell-label {
    font-family: var(--h-font);
    font-weight: 600;
    color: var(--h-ink-muted);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.h-pool-status-cell-value {
    font-family: var(--h-font);
    font-weight: 700;
    color: var(--h-ink);
    font-size: 14.5px;
    margin-top: 2px;
}

@media (max-width: 540px) {
    .h-pool-status { gap: 10px; padding: 12px 14px; }
    .h-pool-status-grid { gap: 14px; justify-content: flex-start; width: 100%; }
    .h-pool-status-cell-value { font-size: 13.5px; }
}

/* ========================================================================
   Fee slider
   ======================================================================== */
.h-fee-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}
.h-fee-label {
    font-family: var(--h-font);
    font-weight: 600;
    color: var(--h-ink);
    font-size: 15px;
}
.h-fee-value {
    font-family: var(--h-font);
    font-weight: 700;
    color: var(--h-cyan-dark);
    font-size: 22px;
}
.fee-slider-wrap { padding: 6px 2px 0; }
.fee-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}
.fee-slider::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--h-cyan) 0%, var(--h-honey) 100%);
}
.fee-slider::-moz-range-track {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--h-cyan) 0%, var(--h-honey) 100%);
}
.fee-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--h-cyan-dark);
    margin-top: -9px;
    box-shadow: 0 4px 10px rgba(40,13,95,0.18);
    cursor: pointer;
}
.fee-slider::-moz-range-thumb {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--h-cyan-dark);
    box-shadow: 0 4px 10px rgba(40,13,95,0.18);
    cursor: pointer;
}
.fee-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-family: var(--h-font);
    font-weight: 600;
    color: var(--h-ink-muted);
    font-size: 13px;
}

/* ========================================================================
   Inputs
   ======================================================================== */
.form-control,
.address-input,
.contact-input {
    background: var(--h-bg-soft) !important;
    border: 2px solid var(--h-line) !important;
    border-radius: 16px !important;
    padding: 16px 18px !important;
    font-family: var(--h-font-mono);
    font-size: 15px !important;
    color: var(--h-ink) !important;
    transition: border-color .15s ease, background .15s ease;
    box-shadow: none !important;
    width: 100%;
}
.form-control::placeholder, .address-input::placeholder, .contact-input::placeholder {
    color: var(--h-ink-dim);
    opacity: 0.85;
}
.form-control:focus, .address-input:focus, .contact-input:focus {
    background: var(--h-card-2) !important;
    border-color: var(--h-cyan) !important;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(31, 199, 212, 0.22) !important;
}
.form-control.is-invalid, .address-input.is-invalid {
    border-color: var(--h-pink) !important;
    background: var(--h-card-2) !important;
}
.invalid-feedback { color: var(--h-pink); font-size: 13px; font-weight: 500; margin-top: 8px; }
.form-text { color: var(--h-ink-muted); font-size: 13px; }

/* ========================================================================
   Buttons (legacy + Bootstrap overrides)
   ======================================================================== */
.btn,
.btn-primary,
.btn-mix,
.btn-contact-submit,
.btn-progress-copy,
.btn-progress-open-wallet,
.btn-new-mix-confirm,
.btn-new-mix-cancel {
    font-family: var(--h-font);
    font-weight: 700;
    border-radius: 16px;
    border: 0;
    transition: transform .1s ease, opacity .15s ease, background-color .15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--h-btn-shadow);
    line-height: 1.2;
}
.btn-primary, .btn-mix, .btn-contact-submit {
    background: linear-gradient(180deg, #128A93 0%, #0A6F77 100%) !important;
    color: #E6FBFD !important;
    padding: 16px 24px !important;
    font-size: 16px !important;
    border: 0 !important;
}
.btn-primary:hover, .btn-mix:hover, .btn-contact-submit:hover {
    background: linear-gradient(180deg, #0F7780 0%, #085D64 100%) !important;
    color: #E6FBFD !important;
    opacity: 1;
}
.btn-primary:active, .btn-mix:active, .btn-contact-submit:active {
    transform: translateY(1px);
    box-shadow: none !important;
}
.btn-primary:disabled, .btn-mix:disabled {
    background: #1B4F58 !important;
    color: #8AB7BC !important;
    cursor: not-allowed;
    box-shadow: none !important;
}
.btn-lg {
    padding: 18px 28px !important;
    font-size: 17px !important;
    border-radius: 18px !important;
}

.btn-progress-copy {
    background: var(--h-bg-soft) !important;
    color: var(--h-ink) !important;
    padding: 12px 18px !important;
    font-weight: 600 !important;
    border-radius: 14px !important;
    font-size: 14px !important;
}
.btn-progress-copy:hover { background: var(--h-line-2) !important; opacity: 1; }
.btn-progress-copy.btn-copy-done {
    background: var(--h-green) !important;
    color: #fff !important;
}
.btn-progress-open-wallet {
    background: linear-gradient(180deg, #FFC23A 0%, #FF9F2F 100%) !important;
    color: var(--h-ink) !important;
    padding: 12px 18px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 14px !important;
}

.btn-new-mix-confirm {
    background: linear-gradient(180deg, #128A93 0%, #0A6F77 100%) !important;
    color: #E6FBFD !important;
    padding: 12px 22px !important;
}
.btn-new-mix-confirm:hover { background: linear-gradient(180deg, #0F7780 0%, #085D64 100%) !important; color: #E6FBFD !important; }
.btn-new-mix-cancel {
    background: var(--h-bg-soft) !important;
    color: var(--h-ink) !important;
    padding: 12px 22px !important;
}

.btn-order-id-copy {
    background: var(--h-bg-soft);
    color: var(--h-ink-soft);
    border: 1px solid var(--h-line);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--h-font);
}
.btn-order-id-copy:hover { background: var(--h-line); color: var(--h-ink); }

/* ========================================================================
   "How it works" — 3 steps
   ======================================================================== */
.h-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.h-step {
    background: var(--h-card);
    border: 1px solid var(--h-line);
    border-radius: var(--h-radius);
    padding: 28px 26px;
    box-shadow: var(--h-shadow-sm);
    position: relative;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.h-step:hover { transform: translateY(-3px); box-shadow: var(--h-shadow); border-color: var(--h-cyan-soft); }
.h-step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--h-honey-soft) 0%, var(--h-honey) 100%);
    border: 2px solid var(--h-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--h-font);
    font-weight: 800;
    color: var(--h-ink);
    font-size: 18px;
    margin-bottom: 16px;
}
.h-step h3 { font-size: 20px; margin-bottom: 8px; }
.h-step p { font-size: 14.5px; color: var(--h-ink-muted); margin: 0; }

/* ========================================================================
   Feature grid
   ======================================================================== */
.h-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.h-feature {
    background: var(--h-card);
    border: 1px solid var(--h-line);
    border-radius: var(--h-radius);
    padding: 28px;
    box-shadow: var(--h-shadow-sm);
    transition: transform .15s ease, border-color .15s ease;
}
.h-feature:hover { transform: translateY(-3px); border-color: var(--h-cyan-soft); }
.h-feature-icon {
    width: 56px; height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}
.h-feature-icon.cyan   { background: rgba(31, 199, 212, 0.15); }
.h-feature-icon.honey  { background: rgba(255, 178, 55, 0.15); }
.h-feature-icon.purple { background: rgba(122, 110, 170, 0.22); }
.h-feature-icon.pink   { background: rgba(237, 75, 158, 0.18); }
.h-feature h3 { font-size: 20px; margin-bottom: 8px; }
.h-feature p { font-size: 14.5px; color: var(--h-ink-muted); margin: 0; }

/* ========================================================================
   Accordion / FAQ
   ======================================================================== */
.h-faq { max-width: 820px; margin: 0 auto; }
.accordion-inmix .accordion-item,
.accordion .accordion-item {
    background: var(--h-card) !important;
    border: 1px solid var(--h-line) !important;
    border-radius: var(--h-radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--h-shadow-sm);
}
.accordion-button {
    background: var(--h-card) !important;
    color: var(--h-ink) !important;
    font-family: var(--h-font);
    font-weight: 600 !important;
    font-size: 16px !important;
    padding: 18px 22px !important;
    box-shadow: none !important;
    border: 0 !important;
}
.accordion-button:not(.collapsed) { background: var(--h-card-2) !important; color: var(--h-cyan-dark) !important; }
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F4EEFF'%3E%3Cpath d='M3.22 5.22a.75.75 0 0 1 1.06 0L8 8.94l3.72-3.72a.75.75 0 1 1 1.06 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L3.22 6.28a.75.75 0 0 1 0-1.06z'/%3E%3C/svg%3E");
}
.accordion-body {
    padding: 0 22px 20px;
    color: var(--h-ink-soft);
    font-size: 15px;
    line-height: 1.65;
}

/* ========================================================================
   Editorial prose
   ======================================================================== */
.h-prose { max-width: 820px; margin: 0 auto; color: var(--h-ink-soft); }
.h-prose h3 { font-size: 22px; color: var(--h-ink); margin: 28px 0 10px; font-weight: 700; }
.h-prose p { margin: 0 0 14px; font-size: 16px; line-height: 1.7; }
.h-prose ul { margin: 0 0 16px; padding-left: 22px; }
.h-prose li { margin-bottom: 8px; line-height: 1.65; }

.seo-subtitle, .progress-section-title {
    font-family: var(--h-font);
    font-weight: 700;
    color: var(--h-ink);
    font-size: 20px;
    margin-bottom: 10px;
}
.about-bullets { margin: 0 0 16px; padding-left: 22px; color: var(--h-ink-soft); }
.about-bullets li { margin-bottom: 8px; line-height: 1.65; }
.how-it-works-text { color: var(--h-ink-soft); font-size: 15px; }
.how-it-works-text p, .how-it-works-text li { color: var(--h-ink-soft); }
.text-muted { color: var(--h-ink-muted) !important; }
.small { font-size: 13px; }

/* ========================================================================
   Hero panels (legacy)
   ======================================================================== */
.progress-hero { text-align: left; margin-bottom: 28px; }
.progress-hero-title {
    font-family: var(--h-font);
    font-weight: 700;
    color: var(--h-ink);
    font-size: clamp(26px, 3vw, 36px);
    margin: 0 0 8px;
    line-height: 1.1;
}
.progress-hero-subtitle { color: var(--h-ink-soft); font-size: 16px; margin: 0; }
.index-trust-line { color: var(--h-ink-muted) !important; font-size: 13px; margin-top: 10px; }
.progress-status-badge {
    display: inline-block;
    margin-top: 12px;
    background: var(--h-honey-soft);
    color: var(--h-ink);
    font-family: var(--h-font);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: 999px;
}

/* ========================================================================
   Progress page-specific
   ======================================================================== */
.card-progress { background: var(--h-card); }

.progress-stepper-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    position: relative;
}
.progress-stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 4px;
}
.progress-stepper-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--h-bg-soft);
    border: 2px solid var(--h-line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--h-font);
    color: var(--h-ink-muted);
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}
.progress-stepper-line {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: var(--h-line);
    z-index: 1;
}
.progress-stepper-line-last { display: none; }
.progress-stepper-label {
    margin-top: 8px;
    font-family: var(--h-font);
    font-weight: 600;
    font-size: 13px;
    color: var(--h-ink-muted);
}
.progress-stepper-active .progress-stepper-icon {
    background: var(--h-cyan);
    border-color: var(--h-cyan);
    color: #fff;
}
.progress-stepper-active .progress-stepper-label { color: var(--h-cyan-dark); }
.progress-stepper-spinner::before {
    content: "";
    width: 16px; height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: h-spin 0.9s linear infinite;
    will-change: transform;
}
.progress-stepper-spinner { contain: layout paint; }
@keyframes h-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.progress-stepper-done .progress-stepper-icon {
    background: var(--h-green);
    border-color: var(--h-green);
    color: #fff;
}
.progress-stepper-done .progress-stepper-line { background: var(--h-green); }
.progress-stepper-check { font-size: 16px; line-height: 1; }

.progress-section { margin-bottom: 24px; }
.progress-metric-card {
    background: var(--h-bg-soft);
    border: 1px solid var(--h-line);
    border-radius: var(--h-radius-sm);
    padding: 18px 20px;
}
.progress-fee-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.progress-fee-label {
    font-family: var(--h-font);
    font-weight: 600;
    color: var(--h-ink-soft);
    font-size: 14px;
}
.progress-fee-value {
    font-family: var(--h-font);
    font-weight: 700;
    color: var(--h-cyan-dark);
    font-size: 20px;
}
.progress-fee-note { color: var(--h-ink-muted); font-size: 13px; margin: 8px 0 0; }
.progress-conf-value {
    font-family: var(--h-font);
    font-weight: 700;
    font-size: 20px;
    color: var(--h-ink);
}
.progress-conf-value.conf-done { color: var(--h-green); }
.progress-payout-estimate-value {
    font-family: var(--h-font-mono);
    color: var(--h-ink);
    font-size: 15px;
}
.progress-deposit-usd-value {
    color: var(--h-ink-muted);
    font-size: 14px;
    font-family: var(--h-font-mono);
}

.progress-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--h-card-2);
    border: 1px solid var(--h-line);
    border-radius: var(--h-radius);
    padding: 22px;
    margin-bottom: 14px;
}
.progress-qr-img {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 8px;
    box-shadow: var(--h-shadow-sm);
}
.progress-qr-caption { color: var(--h-ink-muted); margin: 10px 0 4px; font-size: 13px; }

.progress-deposit-box {
    background: var(--h-bg-soft);
    border: 1px solid var(--h-line);
    border-radius: var(--h-radius-sm);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.progress-deposit-field {
    background: var(--h-card-2);
    border: 1px solid var(--h-line);
    border-radius: 12px;
    padding: 12px 14px;
    word-break: break-all;
}
.progress-deposit-address {
    font-family: var(--h-font-mono);
    color: var(--h-ink);
    font-size: 14px;
    line-height: 1.5;
}
.progress-deposit-links { margin-top: 12px; font-size: 13px; }
.progress-link {
    color: var(--h-cyan-dark);
    font-weight: 600;
    font-family: var(--h-font);
}
.progress-link:hover { text-decoration: underline; }
.progress-link-letter { color: var(--h-honey-deep); }
.progress-link-sep { color: var(--h-ink-dim); margin: 0 6px; }
.progress-mixing-hint, .progress-sending-hint { color: var(--h-ink-muted); }
.progress-mixing-timer {
    font-family: var(--h-font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--h-cyan-dark);
    letter-spacing: 0.04em;
}
.progress-mix-complete-headline {
    font-family: var(--h-font);
    font-weight: 700;
    color: var(--h-green);
    font-size: 22px;
}
.progress-order-id-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: var(--h-bg-soft);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--h-ink-muted);
}
.progress-order-id-label { font-family: var(--h-font); font-weight: 600; color: var(--h-ink); }
.progress-order-id-value {
    font-family: var(--h-font-mono);
    color: var(--h-ink);
    background: #fff;
    border: 1px solid var(--h-line);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 12.5px;
}

.deposit-amount-spinner {
    display: inline-block;
    width: 16px; height: 16px;
    border: 2px solid var(--h-line);
    border-top-color: var(--h-cyan);
    border-radius: 50%;
    animation: h-spin 0.9s linear infinite;
    vertical-align: middle;
}

.noscript-warning {
    background: #FCEEF5;
    color: var(--h-ink);
    border: 1px solid #F8C9DD;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
}
.progress-post-stepper { min-height: 28px; }

/* ========================================================================
   Modal
   ======================================================================== */
.modal-content,
.new-mix-modal-content {
    background: var(--h-card) !important;
    border-radius: var(--h-radius) !important;
    border: 1px solid var(--h-line) !important;
    box-shadow: var(--h-shadow-lg) !important;
}
.new-mix-modal-title {
    font-family: var(--h-font);
    font-weight: 700;
    color: var(--h-ink);
    font-size: 18px;
}
.new-mix-modal-text { color: var(--h-ink-muted); font-size: 14px; }

/* ========================================================================
   Contact form
   ======================================================================== */
.contact-form .form-label, .contact-label {
    font-family: var(--h-font);
    font-weight: 600;
    color: var(--h-ink);
    font-size: 14px;
    margin-bottom: 6px;
    display: inline-block;
}
.contact-success-box {
    background: linear-gradient(135deg, #DEFAF1 0%, #E6FDFF 100%);
    border: 1px solid #ADE8D9;
    border-radius: 16px;
    padding: 18px 20px;
    color: var(--h-ink);
}
.contact-success-text { color: var(--h-ink); font-weight: 600; margin: 0; }

.hero-title {
    font-family: var(--h-font);
    font-weight: 700;
    color: var(--h-ink);
    font-size: clamp(28px, 4vw, 40px);
    margin: 0 0 14px;
}

/* ========================================================================
   Footer (full-width)
   ======================================================================== */
.h-footer {
    background: #14101F;
    color: var(--h-ink-soft);
    padding: 56px 0 24px;
    margin-top: 80px;
    border-top: 1px solid var(--h-line);
}
.h-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 32px;
}
.h-footer h4 {
    color: #FFFFFF;
    font-family: var(--h-font);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 14px;
}
.h-footer ul { list-style: none; padding: 0; margin: 0; }
.h-footer li { margin-bottom: 10px; }
.h-footer a {
    color: #B5AFCC;
    font-size: 14px;
    font-family: var(--h-font);
}
.h-footer a:hover { color: var(--h-honey); opacity: 1; }
.h-footer-brand img { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 14px; }
.h-footer-brand p { color: #A29CB8; font-size: 14px; max-width: 280px; }
.h-footer-bottom {
    max-width: 1280px;
    margin: 32px auto 0;
    padding: 22px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #A29CB8;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

/* ========================================================================
   Responsive
   ======================================================================== */
@media (max-width: 1024px) {
    .h-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .h-features { grid-template-columns: repeat(2, 1fr); }
    .h-steps { grid-template-columns: 1fr; }
    .h-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .h-hero { padding: 40px 0 56px; }
    .h-hero-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .h-eyebrow { margin: 0 auto; }
    .h-hero-sub { margin-left: auto; margin-right: auto; }
    .h-hero-cta { justify-content: center; }
    .h-hero-art { max-width: 360px; margin: 0 auto; }

    .h-section { padding: 56px 0; }

    .h-nav-links { display: none; }
    .h-nav-cta { display: none; }
    .h-nav-burger { display: block; }
    .h-nav-langs { gap: 4px; }
    .h-nav-inner { gap: 12px; padding: 12px 16px; }

    .h-footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
    .h-footer { padding: 40px 0 20px; margin-top: 56px; }
}

@media (max-width: 600px) {
    body.site-honey { font-size: 15px; }

    .h-hero h1 { font-size: 32px; line-height: 1.08; }
    .h-hero-sub { font-size: 16px; }
    .h-hero-cta { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; }
    .h-btn { width: 100%; }
    .h-hero-art { max-width: 280px; }

    .h-stats-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
    .h-stat-card { padding: 16px; }
    .h-stat-value { font-size: 22px; }

    .h-features { grid-template-columns: 1fr; gap: 16px; }
    .h-feature, .h-step { padding: 22px 20px; }

    .h-section-head { margin-bottom: 28px; }
    .h-section { padding: 44px 0; }

    .h-card, .card-inmix .card-body { padding: 22px 18px !important; }
    .site-block-top { flex-wrap: wrap; gap: 8px 12px; }
    .site-block-logo { height: 30px; }
    .lang-flag-link { width: 24px; height: 24px; }
    .lang-flag-link .fi { width: 24px; height: 24px; }

    .progress-stepper-list { grid-template-columns: repeat(4, 1fr); gap: 4px; }
    .progress-stepper-icon { width: 28px; height: 28px; font-size: 12px; }
    .progress-stepper-line { top: 14px; height: 2px; }
    .progress-stepper-label { font-size: 11px; line-height: 1.2; }
    .progress-stepper-spinner::before { width: 12px; height: 12px; }

    .progress-deposit-address { font-size: 12px; }
    .progress-mixing-timer { font-size: 24px; }

    .h-footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .h-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
    .h-hero h1 { font-size: 28px; }
    .h-stats-inner { grid-template-columns: 1fr; }
    .progress-stepper-label { display: none; }
}

/* ========================================================================
   Progress page — Honey dark redesign
   ======================================================================== */
.h-progress-hero {
    background:
        radial-gradient(ellipse at 80% 10%, rgba(244, 166, 35, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 8% 90%, rgba(46, 169, 179, 0.14) 0%, transparent 55%),
        linear-gradient(180deg, #2C2540 0%, #1E1A2D 100%);
    padding: 36px 0 30px;
    border-bottom: 1px solid var(--h-line);
}
.h-progress-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--h-font);
    font-weight: 600;
    color: var(--h-ink-muted) !important;
    font-size: 14px;
    margin-bottom: 18px;
    transition: color .15s ease, opacity .15s ease;
}
.h-progress-back:hover { color: var(--h-cyan-dark) !important; opacity: 1; }

.h-progress-hero-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}
.h-progress-hero-row > div:first-child { max-width: 640px; }

.h-progress-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--h-line);
    color: var(--h-ink-soft);
    font-family: var(--h-font);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.h-progress-status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--h-ink-muted);
    position: relative;
}
.h-progress-status-dot::before {
    /* GPU-only ring pulse — transform/opacity, no paint */
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: currentColor;
    transform: scale(1);
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
}
.h-progress-status.is-waiting .h-progress-status-dot {
    background: var(--h-honey);
    color: var(--h-honey);
}
.h-progress-status.is-waiting .h-progress-status-dot::before {
    animation: h-pulse-ring 1.8s ease-out infinite;
}
.h-progress-status.is-pending .h-progress-status-dot {
    background: var(--h-cyan);
    color: var(--h-cyan);
}
.h-progress-status.is-pending .h-progress-status-dot::before {
    animation: h-pulse-ring 1.8s ease-out infinite;
}
.h-progress-status.is-active {
    border-color: rgba(46, 169, 179, 0.45);
    color: var(--h-cyan-dark);
    background: rgba(46, 169, 179, 0.10);
}
.h-progress-status.is-active .h-progress-status-dot {
    background: var(--h-cyan-dark);
    color: var(--h-cyan-dark);
}
.h-progress-status.is-active .h-progress-status-dot::before {
    animation: h-pulse-ring 1.6s ease-out infinite;
}
.h-progress-status.is-done {
    border-color: rgba(49, 208, 170, 0.40);
    color: var(--h-green);
    background: rgba(49, 208, 170, 0.10);
}
.h-progress-status.is-done .h-progress-status-dot { background: var(--h-green); }

@keyframes h-pulse-ring {
    0%   { transform: scale(1);   opacity: 0.55; }
    100% { transform: scale(3.2); opacity: 0;    }
}

.h-progress-title {
    font-family: var(--h-font);
    font-weight: 700;
    color: var(--h-ink);
    font-size: clamp(28px, 3.6vw, 44px);
    margin: 0 0 10px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.h-progress-sub {
    color: var(--h-ink-soft);
    font-size: 16px;
    margin: 0;
    max-width: 640px;
}

.h-progress-timer-card {
    background: var(--h-card);
    border: 1px solid var(--h-line);
    border-radius: var(--h-radius-sm);
    padding: 18px 22px;
    min-width: 220px;
    text-align: right;
    box-shadow: var(--h-shadow);
}
.h-progress-timer-label {
    font-family: var(--h-font);
    font-weight: 600;
    color: var(--h-ink-muted);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.h-progress-timer-value {
    font-family: var(--h-font-mono);
    font-weight: 700;
    color: var(--h-cyan-dark);
    font-size: 32px;
    letter-spacing: 0.02em;
}
.h-progress-timer-card.is-success { border-color: rgba(49, 208, 170, 0.30); }
.h-progress-tx {
    font-family: var(--h-font-mono);
    font-weight: 600;
    color: var(--h-green) !important;
    font-size: 14px;
    word-break: break-all;
    display: inline-block;
}

/* Stepper inside the hero */
.h-progress-hero .progress-stepper { margin-bottom: 0; }
.h-progress-hero .progress-stepper-list { max-width: 760px; }
.h-progress-hero .progress-stepper-icon { background: var(--h-card-2); border-color: var(--h-line); }

/* ---- Two-column main grid ---- */
.h-progress-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}
.h-progress-left, .h-progress-right { min-width: 0; }

.h-progress-qr {
    display: flex;
    justify-content: center;
    margin: 4px 0 18px;
}
.h-progress-qr img {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 8px 24px -10px rgba(0,0,0,0.45);
}
.h-progress-address {
    background: var(--h-bg-soft);
    border: 1px solid var(--h-line);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 14px;
}
.h-progress-address-sm { padding: 12px 14px; }
.h-progress-address-text {
    display: block;
    font-family: var(--h-font-mono);
    font-size: 14px;
    line-height: 1.55;
    color: var(--h-ink);
    word-break: break-all;
}

.h-progress-address-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.h-progress-btn-copy { padding: 14px 18px !important; }

.h-progress-aux-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--h-line);
}
.h-progress-aux-link {
    font-family: var(--h-font);
    font-weight: 600;
    font-size: 14px;
    color: var(--h-honey) !important;
    text-decoration: none;
}
.h-progress-aux-link:hover { color: var(--h-honey-deep) !important; opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.h-progress-aux-links a:nth-of-type(2) { color: var(--h-cyan-dark) !important; }
.h-progress-aux-links a:nth-of-type(2):hover { color: var(--h-cyan) !important; }

/* ---- Metrics ---- */
.h-progress-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}
.h-metric {
    background: var(--h-card);
    border: 1px solid var(--h-line);
    border-radius: 18px;
    padding: 18px 20px;
    transition: border-color .15s ease;
}
.h-metric:hover { border-color: var(--h-line-2); }
.h-metric-label {
    font-family: var(--h-font);
    font-weight: 600;
    color: var(--h-ink-muted);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.h-metric-value {
    font-family: var(--h-font);
    font-weight: 700;
    color: var(--h-ink);
    font-size: 22px;
    line-height: 1.15;
    word-break: break-word;
}
.h-metric-value.is-done { color: var(--h-green); }
.h-metric-value-fee { color: var(--h-cyan-dark); }
.h-metric-value-payout { color: var(--h-honey); }
.h-metric-note {
    font-size: 12px;
    color: var(--h-ink-muted);
    margin-top: 6px;
    line-height: 1.45;
}

/* ---- Order ID block ---- */
.h-progress-order {
    background: var(--h-card);
    border: 1px solid var(--h-line);
    border-radius: 18px;
    padding: 18px 20px;
}
.h-progress-order-label {
    font-family: var(--h-font);
    font-weight: 600;
    color: var(--h-ink-muted);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.h-progress-order-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.h-progress-order-id {
    font-family: var(--h-font-mono);
    background: var(--h-bg-soft);
    border: 1px solid var(--h-line);
    color: var(--h-ink);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    word-break: break-all;
}
.h-progress-order-note { font-size: 12px; color: var(--h-ink-muted); margin: 0; }

/* responsive — progress page */
@media (max-width: 960px) {
    .h-progress-grid { grid-template-columns: 1fr; }
    .h-progress-hero-row { flex-direction: column; gap: 18px; }
    .h-progress-timer-card { width: 100%; text-align: left; }
}
@media (max-width: 600px) {
    .h-progress-hero { padding: 28px 0 24px; }
    .h-progress-title { font-size: 26px; }
    .h-progress-metrics { grid-template-columns: 1fr; }
    .h-progress-address-actions { grid-template-columns: 1fr; }
    .h-progress-timer-value { font-size: 28px; }
}

/* utilities */
.d-none { display: none !important; }
.text-center { text-align: center !important; }
.text-break { word-break: break-all; }
