:root {
    --bg: #fafafa;
    --paper: rgba(255, 255, 255, .76);
    --paper-strong: #fff;
    --text: #0a0a0a;
    --muted: #666660;
    --line: rgba(10, 10, 10, .09);
    --yellow: #f5b400;
    --yellow-soft: #fff6d7;
    --shadow: 0 22px 80px rgba(0, 0, 0, .11);
    --r: 28px;
    --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    font-family: var(--font);
    color: var(--text);
    -webkit-font-smoothing: antialiased
}

a,
button,
input,
select {
    font: inherit
}

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

button {
    cursor: pointer
}

.preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99;
    display: grid;
    place-items: center;
    gap: 18px;
    transition: .7s ease
}

.preloader.done {
    opacity: 0;
    visibility: hidden
}

.preloader-mark {
    font-weight: 800;
    letter-spacing: -.04em;
    font-size: 34px
}

.preloader-line {
    width: 120px;
    height: 3px;
    background: #eee;
    border-radius: 9px;
    overflow: hidden
}

.preloader-line span {
    display: block;
    width: 40%;
    height: 100%;
    background: var(--yellow);
    animation: load 1s ease infinite
}

@keyframes load {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(300%)
    }
}

.topbar {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1120px, calc(100% - 28px));
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .58);
    backdrop-filter: blur(22px);
    border-radius: 999px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, .08)
}

.brand-mini {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 700
}

.brand-mini img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover
}

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

.topnav a,
.topnav button {
    border: 0;
    background: transparent;
    padding: 10px 14px;
    border-radius: 999px;
    color: #333
}

.topnav a:hover,
.topnav button:hover {
    background: rgba(245, 180, 0, .18)
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding: 104px 20px 40px;
    display: grid;
    place-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transform: scale(1.01)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .20), rgba(250, 250, 250, .08) 45%, rgba(250, 250, 250, .42));
    z-index: 1
}

.hero-shell {
    position: relative;
    z-index: 2;
    width: min(1050px, 100%);
    display: grid;
    gap: 22px;
    justify-items: center
}

.hero-card {
    width: min(620px, 100%);
    text-align: center;
    padding: 28px 28px 24px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 36px;
    background: rgba(255, 255, 255, .54);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow)
}

.logo {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .12)
}

.eyebrow {
    margin: 14px 0 0;
    color: #7a6a26;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
    font-size: 11px
}

.hero h1,
.section h2 {
    margin: 8px 0 0;
    font-size: clamp(38px, 6vw, 72px);
    letter-spacing: -.065em;
    line-height: .95
}

.lead {
    margin: 12px auto 0;
    color: var(--muted);
    font-size: clamp(17px, 2.4vw, 23px);
    max-width: 530px
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px
}

.hero-tags span {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(245, 180, 0, .14);
    border: 1px solid rgba(245, 180, 0, .24);
    font-weight: 700;
    font-size: 13px
}

.quick-grid {
    width: min(920px, 100%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
}

.action-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 94px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 26px;
    background: rgba(255, 255, 255, .70);
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, .09);
    text-align: left;
    transition: .32s ease
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .14);
    border-color: rgba(245, 180, 0, .45)
}

.action-card b {
    transition: .25s ease;
    color: #8b6a00
}

.action-card:hover b {
    transform: translateX(5px)
}

.action-card .icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #0a0a0a;
    color: var(--yellow);
    font-weight: 900
}

.action-card.primary {
    background: rgba(245, 180, 0, .88);
    border-color: rgba(245, 180, 0, .8)
}

.action-card.primary .icon {
    background: #fff;
    color: #111
}

.action-card span strong {
    display: block;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: -.02em
}

.action-card small {
    display: block;
    margin-top: 6px;
    color: #686866;
    font-size: 12px;
    line-height: 1.25
}

.section {
    padding: 88px 20px
}

.section-head {
    width: min(760px, 100%);
    margin: 0 auto 28px;
    text-align: center
}

.section-head h2 {
    font-size: clamp(32px, 5vw, 56px)
}

.section-head p:not(.eyebrow) {
    color: var(--muted);
    font-size: 17px
}

.device-card {
    width: min(920px, 100%);
    margin: 0 auto;
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    padding: 24px
}

.track-form label,
.field label {
    display: block;
    font-size: 13px;
    color: #555;
    font-weight: 800;
    margin-bottom: 8px
}

.input-row {
    display: flex;
    gap: 10px
}

input,
select {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 18px;
    padding: 16px 17px;
    outline: none
}

input:focus,
select:focus {
    border-color: rgba(245, 180, 0, .7);
    box-shadow: 0 0 0 4px rgba(245, 180, 0, .14)
}

.input-row button,
.wide-btn {
    border: 0;
    border-radius: 18px;
    background: #0a0a0a;
    color: #fff;
    font-weight: 800;
    padding: 0 20px;
    transition: .25s ease
}

.input-row button:hover,
.wide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18)
}

.track-form small {
    display: block;
    margin-top: 10px;
    color: #777
}

.result-panel {
    margin-top: 18px;
    border-radius: 22px;
    background: #f6f6f4;
    border: 1px solid var(--line);
    padding: 18px;
    min-height: 70px;
    color: #555;
    white-space: pre-wrap
}

.calc-layout {
    width: min(920px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px
}

.calc-card {
    margin: 0
}

.field {
    margin-bottom: 14px
}

.dims {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.wide-btn {
    width: 100%;
    height: 56px;
    background: var(--yellow);
    color: #111
}

.price-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    background: #0b0b0d;
    color: #fff;
    overflow: hidden;
    position: relative
}

.price-card:before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(245, 180, 0, .28), transparent 42%);
    animation: orb 6s ease-in-out infinite
}

@keyframes orb {
    50% {
        transform: translate(10%, 8%) scale(1.1)
    }
}

.price-card>* {
    position: relative
}

.price-label {
    color: #b9b9b9
}

#priceSomoni {
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: -.06em;
    margin-top: 10px
}

#priceDetails {
    color: #a7a7a7;
    margin-top: 12px;
    line-height: 1.55
}

.trust-grid {
    width: min(1030px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.trust-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .06)
}

.trust-grid span {
    color: var(--yellow);
    font-weight: 900
}

.trust-grid h3 {
    margin: 15px 0 10px;
    font-size: 22px
}

.trust-grid p {
    color: var(--muted);
    line-height: 1.6
}

.sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .32);
    backdrop-filter: blur(7px);
    z-index: 50
}

.branch-sheet {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: min(760px, calc(100% - 24px));
    max-height: 88svh;
    overflow: auto;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(26px);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 34px;
    z-index: 51;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .28);
    padding: 12px 18px 20px
}

.sheet-handle {
    width: 54px;
    height: 5px;
    border-radius: 999px;
    background: #d3d3d0;
    margin: 0 auto 12px
}

.sheet-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 4px 4px 14px
}

.sheet-head h2 {
    margin: 5px 0 0;
    font-size: 30px;
    letter-spacing: -.05em
}

.sheet-close {
    border: 0;
    background: #eee;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 26px
}

.branch-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.branch-tabs button {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    text-align: left;
    font-weight: 800;
    transition: .25s
}

.branch-tabs button.active,
.branch-tabs button:hover {
    background: #111;
    color: #fff
}

.branch-detail {
    margin-top: 12px;
    background: #f6f6f4;
    border-radius: 24px;
    padding: 18px;
    color: #333
}

.branch-detail h3 {
    margin: 0 0 8px
}

.branch-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px
}

.branch-actions a {
    padding: 12px 16px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 800
}

.branch-actions a.map {
    background: var(--yellow);
    color: #111
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease
}

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

@media(max-width:820px) {
    .topnav {
        display: none
    }

    .hero {
        padding: 86px 14px 24px;
        align-items: start
    }

    .hero-card {
        padding: 22px 16px;
        border-radius: 30px
    }

    .logo {
        width: 78px;
        height: 78px
    }

    .quick-grid {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .action-card {
        min-height: 82px;
        padding: 17px
    }

    .section {
        padding: 64px 14px
    }

    .calc-layout,
    .trust-grid {
        grid-template-columns: 1fr
    }

    .dims {
        grid-template-columns: 1fr
    }

    .input-row {
        flex-direction: column
    }

    .input-row button {
        height: 54px
    }

    .branch-tabs {
        grid-template-columns: 1fr
    }

    .branch-sheet {
        bottom: 8px;
        border-radius: 28px
    }
}

@media(max-width:390px) {
    .hero h1 {
        font-size: 36px
    }

    .lead {
        font-size: 16px
    }

    .section-head h2 {
        font-size: 30px
    }

    .action-card span strong {
        font-size: 14px
    }
}

/* refined action icons */
.brand-mini span {
    display: none !important
}

.brand-mini {
    width: 54px;
    justify-content: center;
    padding: 8px
}

.brand-mini img {
    margin: 0
}

.action-card {
    padding: 22px 24px;
    gap: 16px
}

.action-card .icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 17px;
    background: linear-gradient(145deg, #fff, #f6f4ed);
    border: 1px solid rgba(10, 10, 10, .07);
    display: grid;
    place-items: center;
    color: #111;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 12px 24px rgba(0, 0, 0, .07)
}

.action-card.primary .icon {
    background: linear-gradient(145deg, #ffe08a, #f5b400);
    color: #111
}

.action-card .icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round
}

.action-card:hover .icon {
    transform: scale(1.04);
    box-shadow: 0 14px 34px rgba(245, 180, 0, .18)
}

.action-card span strong {
    line-height: 1.2
}

.action-card span small {
    margin-top: 6px
}

/* premium creator footer */
.crafted-footer {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    padding: 92px 20px 42px;
    background: radial-gradient(circle at 50% 0%, rgba(245, 180, 0, .18), transparent 32%), linear-gradient(180deg, #fafafa 0%, #111217 44%, #07080b 100%);
    color: #fff
}

.crafted-footer:before {
    content: "";
    position: absolute;
    inset: 18px;
    pointer-events: none;
    border-radius: 38px;
    border: 1px solid rgba(255, 255, 255, .06);
    background: linear-gradient(135deg, rgba(255, 255, 255, .07), transparent 30%, rgba(245, 180, 0, .05));
}

.crafted-glow {
    position: absolute;
    left: 50%;
    top: 36%;
    width: 520px;
    height: 220px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(96, 165, 250, .22), transparent 62%);
    filter: blur(18px);
    opacity: .8;
    animation: craftedPulse 6s ease-in-out infinite
}

@keyframes craftedPulse {
    50% {
        opacity: .45;
        transform: translateX(-50%) scale(1.08)
    }
}

.crafted-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center
}

.crafted-kicker {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    color: #aeb5c2;
    font-size: 13px;
    font-style: italic;
    letter-spacing: .35px
}

.crafted-kicker span {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent)
}

.creator-card {
    position: relative;
    display: inline-grid;
    grid-template-columns: 54px auto 34px;
    align-items: center;
    gap: 16px;
    min-width: min(430px, 100%);
    padding: 18px 20px;
    border-radius: 28px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 24px 90px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .12);
    backdrop-filter: blur(22px);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease
}

.creator-card:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(245, 180, 0, .55), rgba(96, 165, 250, .45), rgba(167, 139, 250, .42));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .45;
    transition: .35s
}

.creator-card:after {
    content: "";
    position: absolute;
    top: 0;
    left: -35%;
    width: 28%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    transform: skewX(-18deg);
    transition: left .75s ease
}

.creator-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 180, 0, .28);
    box-shadow: 0 34px 120px rgba(0, 0, 0, .5), 0 0 70px rgba(245, 180, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .18)
}

.creator-card:hover:before {
    opacity: .85
}

.creator-card:hover:after {
    left: 108%
}

.creator-icon {
    width: 54px;
    height: 54px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #f5b400, #ffdd73);
    color: #0b0b0d;
    box-shadow: 0 16px 38px rgba(245, 180, 0, .25)
}

.creator-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round
}

.creator-copy {
    text-align: left;
    display: grid;
    gap: 3px
}

.creator-copy small {
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 10px;
    color: #98a2b3
}

.creator-copy strong {
    font-size: clamp(20px, 4vw, 30px);
    letter-spacing: -.04em
}

.creator-copy em {
    font-style: normal;
    background: linear-gradient(135deg, #60a5fa, #a78bfa 52%, #f5b400);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.creator-arrow {
    font-size: 28px;
    color: #f5b400;
    transition: .3s ease
}

.creator-card:hover .creator-arrow {
    transform: translateX(6px)
}

.creator-orbit {
    position: absolute;
    top: -31px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 28px;
    color: #f5b400
}

.creator-orbit i {
    font-style: normal;
    font-size: 13px;
    opacity: .55;
    animation: twinkle 2.4s ease-in-out infinite
}

.creator-orbit i:nth-child(2) {
    animation-delay: .45s;
    color: #60a5fa;
    font-size: 17px
}

.creator-orbit i:nth-child(3) {
    animation-delay: .9s
}

.crafted-note {
    margin: 24px 0 0;
    color: #727b8a;
    font-size: 12px;
    letter-spacing: .7px
}

@keyframes twinkle {

    0%,
    100% {
        opacity: .35;
        transform: translateY(0) scale(1)
    }

    50% {
        opacity: 1;
        transform: translateY(-3px) scale(1.22)
    }
}

@media(max-width:520px) {
    .crafted-footer {
        padding-top: 78px
    }

    .crafted-kicker {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .crafted-kicker span {
        max-width: 170px;
        width: 100%;
        margin: 0 auto
    }

    .creator-card {
        grid-template-columns: 48px 1fr 24px;
        gap: 12px;
        padding: 16px;
        border-radius: 24px
    }

    .creator-icon {
        width: 48px;
        height: 48px;
        border-radius: 18px
    }

    .creator-copy strong {
        font-size: 20px
    }

    .creator-copy small {
        font-size: 9px;
        letter-spacing: 1.1px
    }
}

.site-header,
.header,
.navbar,
.nav-shell,
.topbar {
    display: none !important;
}
.track-card {
  margin-top: 18px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.84));
  border: 1px solid rgba(10,10,10,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  text-align: left;
  white-space: normal;
}

.track-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff8e1;
  color: #0a0a0a;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
}

.track-code {
  font-size: 18px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 14px;
  word-break: break-all;
}

.track-grid {
  display: grid;
  gap: 10px;
}

.track-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10,10,10,.07);
}

.track-row:last-child {
  border-bottom: 0;
}

.track-label {
  color: #8a8a80;
  font-size: 13px;
}

.track-value {
  color: #0a0a0a;
  font-weight: 650;
  font-size: 13px;
  text-align: right;
}

.track-note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(245,180,0,.12);
  color: #3d3d3d;
  font-size: 13px;
  line-height: 1.5;
}
