:root {
    --ink: #1b1a17;
    --ink-soft: #3a382f;
    --paper: #ffffff;
    --paper-strong: #ffffff;
    --surface-alt: #f5f5f2;
    --dark: #16150f;
    --line: #e6e4dd;
    --line-strong: #d6d3c8;
    --muted: #6c6862;
    --yellow: #ffc629;
    --yellow-deep: #ffc629;
    --green: #2f8e55;
    --danger: #d94343;
    --radius: 6px;
    --shadow: 0 18px 50px rgba(23, 21, 15, .08);
    --container: min(1180px, calc(100% - 40px));
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

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

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

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

.container {
    width: var(--container);
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    left: 16px;
    top: 12px;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--yellow);
    transform: translateY(-150%);
    transition: transform .2s;
}

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

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: 76px;
    color: var(--ink);
    background: #fff;
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s;
}

.site-header.scrolled {
    box-shadow: 0 4px 18px rgba(23, 21, 15, .07);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .06em;
}

.logo b {
    color: var(--yellow-deep);
}

.logo-mark {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 10px 10px 10px 3px;
    font-weight: 900;
}

.logo-mark svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    position: relative;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 600;
    transition: color .2s;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--yellow-deep);
    transition: right .25s;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    right: 0;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 12px 9px;
    background: transparent;
    border: 0;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    transition: transform .2s;
}

.hero {
    position: relative;
    min-height: 720px;
    padding: 150px 0 86px;
    color: var(--ink);
    background: #fff;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.hero-glow {
    display: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr .72fr;
    gap: 90px;
    align-items: center;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px;
    color: #706c62;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 26px;
    height: 2px;
    background: var(--yellow-deep);
}

.eyebrow.light {
    color: var(--muted);
}

.hero h1,
.section-heading h2,
.about-heading h2,
.support-copy h2,
.closing-cta h2 {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.04;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(46px, 5.2vw, 72px);
    letter-spacing: -.03em;
}

h1 em,
h2 em {
    color: var(--yellow-deep);
    font-weight: 800;
    font-style: normal;
}

.hero-lead {
    max-width: 565px;
    margin: 32px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 24px;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    transition: transform .2s, background .2s, color .2s, box-shadow .2s;
}

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

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(255, 198, 41, .55);
    outline-offset: 3px;
}

.button-primary {
    color: var(--ink);
    background: var(--yellow);
}

.button-primary:hover {
    background: #ffd452;
}

.button-primary svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.text-link {
    padding: 8px 0;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line-strong);
    font-size: 13px;
    font-weight: 700;
}

.text-link span {
    margin-left: 10px;
    color: var(--yellow-deep);
}

.hero-features {
    display: flex;
    gap: 32px;
    padding: 0;
    margin: 54px 0 0;
    list-style: none;
}

.hero-features li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
}

.hero-features span {
    color: var(--yellow-deep);
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 13px;
}

.fuel-widget {
    position: relative;
    width: min(100%, 420px);
    justify-self: end;
    padding: 26px 29px 23px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 198, 41, .12), transparent 55%),
        var(--dark);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    box-shadow: 0 22px 55px rgba(23, 21, 15, .22);
}

.fuel-widget::before,
.fuel-widget::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border: 1px solid rgba(255, 198, 41, .5);
}

.fuel-widget::before {
    left: -4px;
    top: -4px;
}

.fuel-widget::after {
    right: -4px;
    bottom: -4px;
}

.widget-topline {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .42);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

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

.live-indicator i,
.manager-card small i,
#chat-status i {
    width: 6px;
    height: 6px;
    background: #60d887;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(96, 216, 135, .1);
}

.canister-stage {
    position: relative;
    width: 245px;
    height: 245px;
    margin: 15px auto 0;
}

.canister {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.canister-body,
.canister-handle,
.canister-cross,
.canister-cap {
    fill: rgba(16, 15, 12, .48);
    stroke: rgba(255, 255, 255, .84);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.canister-handle {
    fill: #1b1914;
    stroke-width: 4;
}

.canister-cross,
.canister-cap {
    fill: none;
    stroke-width: 4;
    opacity: .78;
}

#fuel-level {
    transform: translateY(129.6px);
    transition: transform 1.5s cubic-bezier(.22, 1, .36, 1);
}

.fuel-wave {
    transform-origin: center;
}

.wave-back {
    animation: wave 5s ease-in-out infinite alternate;
}

.wave-front {
    animation: wave 4s ease-in-out -1.5s infinite alternate-reverse;
}

.canister-shadow {
    position: absolute;
    left: 26%;
    right: 18%;
    bottom: 13px;
    height: 15px;
    background: rgba(0, 0, 0, .55);
    border-radius: 50%;
    filter: blur(9px);
}

@keyframes wave {
    from { transform: translateX(-13px) skewX(-2deg); }
    to { transform: translateX(8px) skewX(2deg); }
}

.fuel-readout {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-top: -9px;
}

.fuel-readout strong {
    color: var(--yellow);
    font-family: var(--font-sans);
    font-size: 31px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.fuel-readout > span {
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
}

.fuel-progress {
    width: 84%;
    height: 3px;
    margin: 13px auto;
    overflow: hidden;
    background: rgba(255, 255, 255, .11);
}

.fuel-progress span {
    display: block;
    width: 19%;
    height: 100%;
    background: var(--yellow);
    transition: width 1.5s cubic-bezier(.22, 1, .36, 1);
}

.fuel-caption {
    margin: 0;
    color: rgba(255, 255, 255, .36);
    font-size: 10px;
    text-align: center;
}

.purchase-toast {
    position: absolute;
    display: grid;
    grid-template-columns: 36px 1fr 24px;
    gap: 10px;
    align-items: center;
    width: 270px;
    right: -62px;
    bottom: -47px;
    padding: 12px;
    color: var(--ink);
    background: #fffdf8;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
    transition: opacity .3s, transform .3s;
}

.purchase-toast.refreshing {
    opacity: 0;
    transform: translateY(8px);
}

.purchase-toast.pending {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.purchase-avatar {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}

.purchase-toast > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.purchase-toast b {
    font-size: 11px;
}

.purchase-toast small {
    color: var(--muted);
    font-size: 9px;
}

.purchase-check {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-size: 11px;
}

.hero-ticker {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45px;
    overflow: hidden;
    color: var(--ink);
    background: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .2em;
    white-space: nowrap;
}

.hero-ticker div {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.hero-ticker div > *:nth-child(n+8) {
    display: none;
}

.hero-ticker i {
    font-size: 7px;
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

.section {
    padding: 110px 0;
}

.tickets-section {
    background: var(--surface-alt);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.section-heading h2,
.about-heading h2,
.support-copy h2,
.closing-cta h2 {
    font-size: clamp(46px, 5vw, 68px);
}

.section-heading h2 em,
.about-heading h2 em {
    color: var(--yellow-deep);
}

.section-heading > p {
    width: 350px;
    margin: 0 0 7px;
    color: var(--muted);
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.ticket-card {
    position: relative;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    box-shadow: 0 8px 30px rgba(30, 27, 18, .04);
    transition: transform .35s, box-shadow .35s;
}

.ticket-card:hover {
    z-index: 2;
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.ticket-card.featured {
    border-color: rgba(211, 151, 0, .55);
    box-shadow: 0 15px 50px rgba(100, 74, 12, .11);
}

.popular-label {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    padding: 7px 16px;
    color: var(--ink);
    background: var(--yellow);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.ticket-visual {
    position: relative;
    height: 210px;
    margin: 16px;
    padding: 20px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 198, 41, .22), transparent 35%),
        linear-gradient(135deg, #26241d, #11100d);
    border-radius: 7px;
    overflow: hidden;
}

.ticket-visual::before,
.ticket-visual::after {
    content: "";
    position: absolute;
    z-index: 2;
    width: 26px;
    height: 26px;
    top: 50%;
    background: var(--paper-strong);
    border-radius: 50%;
    transform: translateY(-50%);
}

.ticket-visual::before { left: -13px; }
.ticket-visual::after { right: -13px; }

.ticket-brand {
    position: relative;
    z-index: 1;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}

.ticket-brand b {
    color: var(--yellow);
}

.ticket-volume {
    position: absolute;
    z-index: 1;
    top: 58px;
    left: 21px;
    font-family: var(--font-sans);
    font-size: 52px;
    font-weight: 800;
    line-height: .85;
    letter-spacing: -.04em;
}

.ticket-volume small {
    display: block;
    margin: 11px 0 0 3px;
    color: rgba(255, 255, 255, .52);
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.ticket-visual svg {
    position: absolute;
    width: 72%;
    right: -14px;
    bottom: 10px;
    fill: none;
    stroke: rgba(255, 198, 41, .34);
    stroke-width: 1;
}

.ticket-code {
    position: absolute;
    z-index: 1;
    left: 22px;
    bottom: 17px;
    color: rgba(255, 255, 255, .32);
    font-size: 7px;
    letter-spacing: .16em;
}

.ticket-content {
    padding: 10px 25px 26px;
}

.ticket-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--line);
}

.ticket-title h3 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.01em;
}

.ticket-title > span {
    padding: 4px 8px;
    color: var(--yellow-deep);
    background: rgba(255, 198, 41, .14);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.fuel-options {
    padding: 0;
    margin: 17px 0 0;
    border: 0;
}

.fuel-options legend {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.fuel-options label {
    display: grid;
    grid-template-columns: 20px 1fr auto;
    gap: 7px;
    align-items: center;
    min-height: 42px;
    cursor: pointer;
    border-bottom: 1px dashed rgba(21, 20, 15, .1);
    font-size: 13px;
}

.fuel-options input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: var(--yellow-deep);
}

.fuel-options b {
    font-size: 13px;
}

.package-benefits {
    min-height: 78px;
    padding: 0;
    margin: 15px 0 18px;
    list-style: none;
}

.package-benefits li {
    position: relative;
    margin: 6px 0;
    padding-left: 18px;
    color: #6e6a61;
    font-size: 11px;
}

.package-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 800;
}

.button-card {
    width: 100%;
    color: #fff;
    background: var(--ink);
}

.button-card:hover {
    color: var(--ink);
    background: var(--yellow);
}

.button-card span {
    margin-left: auto;
}

.ticket-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.ticket-note > span {
    display: inline-grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-family: var(--font-sans);
}

.support-section {
    padding-top: 35px;
}

.support-shell {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    min-height: 570px;
    color: var(--ink);
    background: var(--surface-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.support-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 65px 54px;
}

.support-copy h2 em,
.closing-cta h2 em {
    color: var(--yellow-deep);
}

.support-copy > p:not(.eyebrow) {
    max-width: 390px;
    margin: 25px 0 36px;
    color: var(--muted);
    font-size: 14px;
}

.manager-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.manager-avatar {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
    font-family: var(--font-sans);
    font-size: 19px;
    font-weight: 800;
}

.manager-card > span:last-child {
    display: flex;
    flex-direction: column;
}

.manager-card b {
    font-size: 12px;
}

.manager-card small {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 9px;
}

.chat-window {
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin: 30px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.chat-header {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.chat-header > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-logo {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
    font-family: var(--font-sans);
    font-weight: 700;
}

.chat-header > div > span:last-child {
    display: flex;
    flex-direction: column;
}

.chat-header b {
    font-size: 12px;
}

#chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-size: 9px;
}

.chat-secure {
    color: var(--muted);
    font-size: 9px;
}

.chat-messages {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    height: 365px;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.chat-empty {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9b978e;
    text-align: center;
}

.chat-empty[hidden] {
    display: none;
}

.chat-empty > span {
    display: grid;
    width: 47px;
    height: 47px;
    place-items: center;
    color: var(--yellow-deep);
    background: rgba(255, 198, 41, .15);
    border-radius: 50%;
    font-family: var(--font-sans);
    font-weight: 800;
}

.chat-empty p {
    max-width: 260px;
    margin: 14px 0;
    font-size: 12px;
}

.chat-message {
    display: flex;
    max-width: 78%;
    flex-direction: column;
    align-self: flex-start;
}

.chat-message.visitor {
    align-self: flex-end;
    align-items: flex-end;
}

.chat-bubble {
    padding: 10px 13px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 2px 13px 13px 13px;
    font-size: 12px;
    white-space: pre-wrap;
    word-break: break-word;
}

.visitor .chat-bubble {
    color: var(--ink);
    background: var(--yellow);
    border-color: var(--yellow);
    border-radius: 13px 2px 13px 13px;
}

.chat-time {
    margin-top: 3px;
    color: #aaa59b;
    font-size: 8px;
}

.chat-form {
    display: grid;
    grid-template-columns: 1fr 43px;
    gap: 10px;
    align-items: end;
    padding: 13px;
    background: #fff;
    border-top: 1px solid var(--line);
}

.chat-form textarea {
    width: 100%;
    max-height: 100px;
    padding: 11px 13px;
    resize: none;
    background: #f5f3ed;
    border: 1px solid transparent;
    border-radius: 3px;
    outline: none;
    font-size: 12px;
}

.chat-form textarea:focus {
    background: #fff;
    border-color: rgba(180, 128, 0, .4);
}

.chat-form button {
    display: grid;
    width: 43px;
    height: 43px;
    padding: 0;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border: 0;
    border-radius: 3px;
    cursor: pointer;
}

.chat-form button:disabled {
    opacity: .55;
    cursor: wait;
}

.chat-form svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.about-section {
    padding-bottom: 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 120px;
}

.about-heading {
    position: relative;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 50px;
}

.about-stat strong {
    color: var(--yellow-deep);
    font-family: var(--font-sans);
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.about-stat span {
    padding-left: 18px;
    color: var(--muted);
    border-left: 1px solid var(--line);
    font-size: 11px;
}

.about-content {
    padding-top: 43px;
}

.about-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.about-content .lead-paragraph {
    margin-top: 0;
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.55;
}

.advantages-wrap {
    margin-top: 85px;
}

.advantages-title {
    margin: 0 0 28px;
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.01em;
}

.advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-closing {
    margin: 28px 0 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.advantage {
    min-height: 220px;
    padding: 30px 25px;
    border-right: 1px solid var(--line);
}

.advantage:first-child {
    border-left: 1px solid var(--line);
}

.advantage > span {
    color: var(--yellow-deep);
    font-family: var(--font-sans);
    font-size: 12px;
}

.advantage h3 {
    margin: 55px 0 8px;
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.advantage p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.reviews-section {
    background: var(--surface-alt);
}

.review-heading {
    align-items: center;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rating-block strong {
    font-family: var(--font-sans);
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.rating-block > span {
    display: flex;
    flex-direction: column;
    color: var(--yellow-deep);
    font-size: 12px;
    letter-spacing: .15em;
}

.rating-block small {
    color: var(--muted);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.reviews-list {
    border-top: 1px solid var(--line);
}

.review-card {
    border-bottom: 1px solid var(--line);
}

.review-card[hidden] {
    display: none;
}

.review-card summary {
    display: grid;
    grid-template-columns: 55px 1fr 100px 32px;
    gap: 20px;
    align-items: center;
    min-height: 96px;
    cursor: pointer;
    list-style: none;
}

.review-card summary::-webkit-details-marker {
    display: none;
}

.review-number {
    color: #9e9990;
    font-family: var(--font-sans);
    font-size: 12px;
}

.review-person {
    display: flex;
    flex-direction: column;
}

.review-person b {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
}

.review-person a {
    width: max-content;
    color: var(--yellow-deep);
    font-size: 9px;
}

.review-stars {
    color: var(--yellow-deep);
    font-size: 9px;
    letter-spacing: .12em;
}

.review-toggle {
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.review-toggle::before,
.review-toggle::after {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    top: 14px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s;
}

.review-toggle::after {
    transform: rotate(90deg);
}

.review-card[open] .review-toggle::after {
    transform: rotate(0);
}

.review-card > p {
    max-width: 760px;
    padding: 0 0 28px 75px;
    margin: -9px 0 0;
    color: #615d55;
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.65;
}

.show-reviews {
    margin: 35px auto 0;
    color: var(--ink);
    background: transparent;
    border: 1px solid rgba(21, 20, 15, .35);
}

.show-reviews:hover {
    color: #fff;
    background: var(--ink);
}

.closing-cta {
    position: relative;
    padding: 110px 0;
    color: var(--ink);
    background: var(--surface-alt);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
    overflow: hidden;
}

.closing-cta .eyebrow {
    justify-content: center;
}

.closing-cta h2 {
    margin-bottom: 35px;
}

.site-footer {
    padding: 45px 0 20px;
    color: var(--muted);
    background: #fff;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.footer-logo .logo-mark {
    width: 35px;
    height: 35px;
}

.footer-grid p {
    margin: 0;
    font-size: 11px;
    text-align: center;
}

.footer-grid nav {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 10px;
}

.footer-grid nav a:hover {
    color: var(--ink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    margin-top: 35px;
    border-top: 1px solid var(--line);
    font-size: 9px;
}

.purchase-modal {
    width: min(920px, calc(100% - 30px));
    max-height: min(760px, calc(100vh - 30px));
    padding: 0;
    color: var(--ink);
    background: var(--paper-strong);
    border: 0;
    border-radius: 2px;
    box-shadow: 0 40px 110px rgba(0, 0, 0, .4);
    overflow: auto;
}

.purchase-modal::backdrop {
    background: rgba(10, 9, 7, .72);
    backdrop-filter: blur(10px);
}

.modal-close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0 0 3px;
    place-items: center;
    color: var(--ink);
    background: rgba(255, 255, 255, .8);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    font-size: 23px;
}

.modal-layout {
    display: grid;
    grid-template-columns: 330px 1fr;
    min-height: 610px;
}

.modal-summary {
    padding: 45px 34px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 32%, rgba(255, 198, 41, .14), transparent 30%),
        #181713;
}

.modal-kicker {
    color: var(--yellow-deep);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.modal-summary h2 {
    margin: 8px 0 35px;
    font-family: var(--font-sans);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
}

.selected-ticket {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.selected-ticket > span {
    color: var(--yellow);
    font-family: var(--font-sans);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: .85;
}

.selected-ticket > span small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .4);
    font-family: var(--font-sans);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.selected-ticket div {
    display: flex;
    flex-direction: column;
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.selected-ticket b {
    font-size: 15px;
}

.selected-ticket div small {
    color: rgba(255, 255, 255, .4);
    font-size: 9px;
}

.modal-total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 29px 0;
}

.modal-total span {
    color: rgba(255, 255, 255, .45);
    font-size: 10px;
}

.modal-total strong {
    color: var(--yellow);
    font-family: var(--font-sans);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.01em;
}

.modal-summary ul {
    padding: 0;
    margin: 45px 0 0;
    list-style: none;
}

.modal-summary li {
    position: relative;
    margin: 12px 0;
    padding-left: 21px;
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
}

.modal-summary li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow);
}

.modal-content {
    display: flex;
    padding: 44px;
    align-items: center;
}

#payment-form-view {
    width: 100%;
}

.modal-content h3 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -.01em;
}

.modal-intro {
    margin: 5px 0 24px;
    color: var(--muted);
    font-size: 11px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-grid label > span {
    color: #6e6a61;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.form-grid input {
    width: 100%;
    height: 45px;
    padding: 0 12px;
    background: #f4f1e9;
    border: 1px solid transparent;
    border-radius: 2px;
    outline: none;
    font-size: 12px;
}

.form-grid input:focus {
    background: #fff;
    border-color: rgba(178, 128, 0, .45);
}

.payment-details {
    margin-top: 22px;
    background: #f1eee5;
    border: 1px solid var(--line);
}

.payment-details-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 13px;
    border-bottom: 1px solid var(--line);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.payment-details-head i {
    color: var(--green);
    font-size: 8px;
    font-style: normal;
}

.payment-details dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0;
}

.payment-details dl > div {
    padding: 10px 13px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.payment-details dl > div:nth-child(even) {
    border-right: 0;
}

.payment-details dl > div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.payment-details dt {
    color: var(--muted);
    font-size: 8px;
}

.payment-details dd {
    margin: 2px 0 0;
    font-size: 11px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 16px 0 0;
    color: var(--muted);
    cursor: pointer;
    font-size: 9px;
}

.consent input {
    flex: 0 0 auto;
    margin: 1px 0 0;
    accent-color: var(--yellow-deep);
}

.payment-error {
    min-height: 17px;
    margin: 7px 0 2px;
    color: var(--danger);
    font-size: 10px;
}

.payment-submit {
    width: 100%;
}

.payment-submit:disabled {
    color: rgba(255, 255, 255, .7);
    background: #807c72;
    box-shadow: none;
    cursor: wait;
    transform: none;
}

.payment-submit span {
    margin-left: auto;
}

.payment-hint {
    margin: 8px 0 0;
    color: #99958c;
    font-size: 8px;
    text-align: center;
}

.coupon-placeholder {
    width: 100%;
    text-align: center;
}

.coupon-placeholder[hidden],
.refund-notice[hidden] {
    display: none;
}

.success-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-size: 24px;
}

.coupon-placeholder h3 {
    margin: 6px 0 24px;
}

.qr-code {
    display: grid;
    width: min(250px, 100%);
    aspect-ratio: 1;
    padding: 10px;
    margin: 0 auto;
    place-items: center;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 35px rgba(23, 22, 18, .12);
}

.qr-code img {
    display: block;
    width: 100%;
    height: auto;
}

.coupon-placeholder .coupon-volume {
    margin-top: 14px;
    color: var(--ink);
    font-weight: 800;
}

.coupon-placeholder > p {
    max-width: 380px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 10px;
}

.refund-notice {
    width: 100%;
}

.refund-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
    font-family: var(--font-sans);
    font-size: 29px;
    font-weight: 800;
}

.refund-notice h3 {
    margin: 7px 0 24px;
    font-size: 31px;
}

.refund-notice p {
    margin: 0 0 13px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.refund-notice > strong {
    display: block;
    padding-top: 17px;
    margin-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.55;
}

.refund-action {
    width: 100%;
    margin-top: 25px;
}

.refund-action span {
    margin-left: auto;
}

.site-toast {
    position: fixed;
    z-index: 1200;
    left: 50%;
    bottom: 24px;
    max-width: min(430px, calc(100% - 30px));
    padding: 12px 18px;
    color: #fff;
    background: var(--ink);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .25);
    font-size: 11px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 15px);
    transition: opacity .25s, transform .25s;
}

.site-toast.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.reveal,
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1000px) {
    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr 380px;
        gap: 35px;
    }

    .hero h1 {
        font-size: clamp(53px, 7vw, 72px);
    }

    .purchase-toast {
        right: -10px;
    }

    .ticket-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ticket-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 10px);
        justify-self: center;
    }

    .support-shell {
        grid-template-columns: 1fr 1.25fr;
    }

    .support-copy {
        padding: 50px 35px;
    }

    .about-grid {
        gap: 60px;
    }
}

@media (max-width: 760px) {
    :root {
        --container: min(100% - 28px, 620px);
    }

    html {
        scroll-padding-top: 68px;
    }

    .site-header {
        height: 66px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 14px 18px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 30px rgba(23, 21, 15, .08);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .2s, transform .2s;
    }

    .main-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .main-nav a {
        padding: 13px 8px;
        border-bottom: 1px solid var(--line);
    }

    .main-nav a::after {
        display: none;
    }

    .hero {
        padding: 116px 0 110px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .hero h1 {
        font-size: clamp(49px, 14vw, 70px);
    }

    .hero-lead {
        font-size: 15px;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-features {
        gap: 13px;
        justify-content: space-between;
    }

    .hero-features li {
        font-size: 9px;
    }

    .fuel-widget {
        justify-self: center;
    }

    .purchase-toast {
        right: 6px;
    }

    .section {
        padding: 82px 0;
    }

    .section-heading {
        display: block;
        margin-bottom: 40px;
    }

    .section-heading > p {
        width: auto;
        margin-top: 22px;
    }

    .section-heading h2,
    .about-heading h2,
    .support-copy h2,
    .closing-cta h2 {
        font-size: clamp(43px, 12vw, 58px);
    }

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

    .ticket-card:last-child {
        grid-column: auto;
        width: auto;
    }

    .support-section {
        padding-top: 20px;
    }

    .support-shell {
        grid-template-columns: 1fr;
    }

    .support-copy {
        padding: 50px 28px 32px;
    }

    .chat-window {
        min-height: 520px;
        margin: 0 14px 14px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-content {
        padding-top: 0;
    }

    .advantages {
        grid-template-columns: 1fr 1fr;
        margin-top: 55px;
    }

    .advantage:nth-child(odd) {
        border-left: 1px solid var(--line);
    }

    .advantage:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .review-heading {
        display: flex;
        align-items: flex-start;
    }

    .rating-block strong {
        font-size: 34px;
    }

    .review-card summary {
        grid-template-columns: 35px 1fr 32px;
        gap: 10px;
    }

    .review-stars {
        display: none;
    }

    .review-card > p {
        padding-left: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .footer-grid nav {
        justify-content: center;
    }

    .modal-layout {
        grid-template-columns: 1fr;
    }

    .modal-summary {
        padding: 30px 25px 24px;
    }

    .modal-summary h2 {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .modal-summary ul {
        display: none;
    }

    .modal-total {
        margin-bottom: 0;
    }

    .modal-content {
        padding: 28px 22px 34px;
    }
}

@media (max-width: 460px) {
    .logo {
        font-size: 13px;
    }

    .hero-features li:last-child {
        display: none;
    }

    .fuel-widget {
        width: 100%;
        padding-inline: 18px;
    }

    .canister-stage {
        width: 220px;
        height: 220px;
    }

    .purchase-toast {
        width: 250px;
        right: 3px;
        bottom: -53px;
    }

    .ticket-visual {
        height: 195px;
    }

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

    .advantage {
        min-height: 175px;
        border-left: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .advantage h3 {
        margin-top: 35px;
    }

    .review-heading {
        display: block;
    }

    .rating-block {
        margin-top: 22px;
    }

    .review-person b {
        font-size: 16px;
    }

    .review-card > p {
        font-size: 15px;
    }

    .form-grid,
    .payment-details dl {
        grid-template-columns: 1fr;
    }

    .payment-details dl > div {
        border-right: 0;
        border-bottom: 1px solid var(--line) !important;
    }

    .payment-details dl > div:last-child {
        border-bottom: 0 !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
