:root {
    --navy: #0A1128;
    --navy-deep: #050914;
    --navy-soft: #111a3c;
    --gold: #D4AF37;
    --gold-soft: #f7df8f;
    --cream: #FDF8F5;
    --charcoal: #1d1d24;
    --white: #ffffff;
    --glass: rgba(10, 17, 40, 0.7);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --content-width: 1180px;
    --card-radius: 24px;
    --button-radius: 999px;
    --input-radius: 18px;
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", "Segoe UI", sans-serif;
    color: var(--white);
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(82, 122, 255, 0.18), transparent 20%),
        linear-gradient(180deg, #09101d 0%, #0c1532 48%, #081021 100%);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 6, 18, 0.1) 0%, rgba(3, 6, 18, 0.45) 100%),
        linear-gradient(90deg, rgba(3, 6, 18, 0.24) 0%, transparent 28%, transparent 72%, rgba(3, 6, 18, 0.24) 100%);
    pointer-events: none;
    z-index: 0;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.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;
}

.site-frame {
    position: relative;
    z-index: 2;
    width: min(var(--content-width), calc(100% - 1.5rem));
    margin: 0 auto;
    padding: 1.25rem 0 3rem;
}

.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-inline: max(1rem, calc((100vw - var(--content-width)) / 2));
}

.page-transition {
    animation: pageFade 0.9s ease both;
}

.lux-loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(212, 175, 55, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(4, 8, 19, 0.98), rgba(8, 15, 32, 0.98));
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.lux-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-shell {
    display: grid;
    place-items: center;
    gap: 1rem;
    text-align: center;
}

.loader-orbit {
    position: relative;
    width: 7rem;
    height: 7rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.loader-orbit::before {
    content: "";
    position: absolute;
    inset: 0.7rem;
    border-radius: 999px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.loader-plane {
    position: absolute;
    top: -0.6rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.8));
    animation: orbitPlane 1.9s linear infinite;
}

.loader-copy h2,
.loader-copy p {
    margin: 0;
}

.loader-copy h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    color: var(--cream);
}

.loader-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.particle-field,
.cloud-layer,
.floating-planes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle-field span {
    position: absolute;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 999px;
    background: rgba(255, 245, 218, 0.55);
    box-shadow: 0 0 16px rgba(255, 221, 127, 0.28);
    animation: particleFloat linear infinite;
}

.particle-field span:nth-child(1) { top: 8%; left: 14%; animation-duration: 16s; }
.particle-field span:nth-child(2) { top: 15%; left: 28%; animation-duration: 20s; animation-delay: -5s; }
.particle-field span:nth-child(3) { top: 22%; left: 81%; animation-duration: 17s; animation-delay: -2s; }
.particle-field span:nth-child(4) { top: 36%; left: 61%; animation-duration: 19s; }
.particle-field span:nth-child(5) { top: 50%; left: 9%; animation-duration: 21s; animation-delay: -4s; }
.particle-field span:nth-child(6) { top: 54%; left: 73%; animation-duration: 24s; }
.particle-field span:nth-child(7) { top: 66%; left: 24%; animation-duration: 18s; }
.particle-field span:nth-child(8) { top: 70%; left: 46%; animation-duration: 22s; animation-delay: -8s; }
.particle-field span:nth-child(9) { top: 74%; left: 88%; animation-duration: 19s; }
.particle-field span:nth-child(10) { top: 82%; left: 58%; animation-duration: 25s; animation-delay: -6s; }
.particle-field span:nth-child(11) { top: 12%; left: 52%; animation-duration: 23s; }
.particle-field span:nth-child(12) { top: 88%; left: 16%; animation-duration: 20s; animation-delay: -3s; }

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    filter: blur(2px);
    box-shadow:
        2.6rem 0.7rem 0 0 rgba(255, 255, 255, 0.08),
        4.8rem 0.15rem 0 0 rgba(255, 255, 255, 0.06),
        1.5rem -0.8rem 0 0 rgba(255, 255, 255, 0.08);
}

.cloud-one { top: 8rem; left: -14rem; width: 7rem; height: 2.4rem; animation: cloudDrift 68s linear infinite; }
.cloud-two { top: 16rem; left: -20rem; width: 9rem; height: 2.9rem; animation: cloudDrift 82s linear infinite; animation-delay: -28s; }
.cloud-three { top: 28rem; left: -18rem; width: 8rem; height: 2.5rem; animation: cloudDrift 76s linear infinite; animation-delay: -14s; }

.floating-plane {
    position: absolute;
    font-size: 1.2rem;
    color: rgba(212, 175, 55, 0.55);
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
    animation: planeDrift linear infinite;
}

.plane-one { top: 20%; left: -10%; animation-duration: 42s; }
.plane-two { top: 58%; left: -12%; animation-duration: 52s; animation-delay: -18s; }

.runway-lights {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0.25rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 1;
    pointer-events: none;
}

.runway-lights span {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.35);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
    animation: runwayBlink 1.8s ease-in-out infinite;
}

.runway-lights span:nth-child(odd) {
    animation-delay: 0.45s;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    margin-bottom: 1.5rem;
    border-radius: 999px;
    background: rgba(7, 14, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.brand-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    overflow: hidden;
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 15%, rgba(255, 255, 255, 0.1) 42%, rgba(212, 175, 55, 0.4) 48%, transparent 60%);
    transform: translateX(-130%);
    transition: transform 0.8s ease;
}

.brand-mark:hover::after {
    transform: translateX(130%);
}

.brand-plane {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(255, 255, 255, 0.12));
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.18);
    font-size: 1.4rem;
}

.brand-wordmark {
    display: grid;
    line-height: 1.1;
}

.brand-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cream);
}

.brand-subtitle {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

.site-nav,
.nav-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.primary-button,
.gold-button,
.ghost-button,
.social-button,
.suggestion-chip,
.chat-send-button,
.airport-chip,
.gps-chip {
    border: 1px solid transparent;
    border-radius: var(--button-radius);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        background-color var(--transition),
        color var(--transition);
}

.primary-button,
.gold-button,
.ghost-button,
.social-button,
.chat-send-button,
.airport-chip,
.gps-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.primary-button:hover,
.gold-button:hover,
.ghost-button:hover,
.social-button:hover,
.suggestion-chip:hover,
.chat-send-button:hover,
.airport-chip:hover,
.gps-chip:hover,
.ticket-card:hover,
.glass-card:hover,
.panel:hover,
.form-card:hover,
.tips-card:hover,
.benefit-row:hover,
.feature-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35), 0 20px 48px rgba(6, 10, 23, 0.24);
}

.primary-button {
    padding: 0.82rem 1.35rem;
    color: var(--cream);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
}

.gold-button {
    padding: 0.95rem 1.55rem;
    color: var(--navy);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.32);
}

.ghost-button,
.social-button,
.suggestion-chip,
.airport-chip,
.gps-chip {
    padding: 0.78rem 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
}

.small-button {
    padding: 0.72rem 1.2rem;
}

.large-button {
    padding: 1rem 1.85rem;
}

.glass-card,
.panel,
.feature-card,
.benefits-card,
.auth-card,
.form-card,
.tips-card,
.ticket-card,
.empty-state {
    position: relative;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--card-radius);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.glass-card:hover,
.panel:hover,
.feature-card:hover,
.benefits-card:hover,
.auth-card:hover,
.form-card:hover,
.tips-card:hover,
.ticket-card:hover,
.empty-state:hover {
    border-color: rgba(212, 175, 55, 0.55);
}

.flash-stack {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.flash {
    position: relative;
    overflow: hidden;
    padding: 0.95rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.flash::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
}

.flash--error::before {
    background: #d85f5f;
}

.sparkle {
    position: absolute;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: rgba(255, 234, 170, 0.9);
    box-shadow: 0 0 14px rgba(255, 215, 115, 0.7);
    animation: sparkleBurst 1.2s ease forwards;
}

.eyebrow,
.gold-accent {
    color: var(--gold);
    text-shadow: 0 1px 12px rgba(212, 175, 55, 0.22);
}

.eyebrow {
    margin: 0 0 0.55rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    line-height: 1.08;
}

p {
    margin: 0;
}

.hero-subtitle,
.hero-description,
.dashboard-copy,
.section-copy,
.feature-card p,
.benefit-row,
.ticket-notes,
.auth-link,
.tip-item p,
.field-help,
.field-help ul {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.section-heading {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

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

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.luxe-hero {
    position: relative;
    min-height: 80vh;
    padding-top: 2rem;
    padding-bottom: 3rem;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.hero-cinematic {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-cinematic::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(244, 196, 72, 0.34), transparent 20%),
        linear-gradient(180deg, rgba(255, 163, 71, 0.25) 0%, rgba(8, 15, 36, 0.62) 42%, rgba(6, 11, 24, 0.86) 100%);
    z-index: 1;
}

.hero-cinematic::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 8, 18, 0.72) 0%, rgba(4, 8, 18, 0.28) 42%, rgba(4, 8, 18, 0.82) 100%);
    z-index: 2;
}

.hero-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content-shell {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: center;
}

.hero-glass-card {
    max-width: 42rem;
    padding: 2rem;
    background: rgba(10, 17, 40, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 28px;
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 48px rgba(1, 3, 12, 0.26);
}

.hero-glass-card h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    max-width: 10ch;
}

.hero-subtitle {
    margin-top: 1rem;
    font-size: 1.3rem;
    color: var(--cream);
    font-weight: 600;
}

.hero-description {
    margin-top: 1rem;
    max-width: 42rem;
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.88);
}

.hero-side-column {
    display: grid;
    gap: 1rem;
}

.lounge-card,
.route-card,
.feature-card,
.benefits-card {
    padding: 1.35rem;
}

.lounge-card h3,
.route-card h3,
.feature-card h3 {
    color: var(--cream);
}

.lounge-list,
.route-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.lounge-list div,
.route-list div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
}

.hero-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.95rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.86);
}

.section-shell {
    margin-top: 2rem;
}

.glass-grid {
    display: grid;
    gap: 1rem;
}

.glass-grid.four-up {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glass-grid.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-icon {
    width: 3.15rem;
    height: 3.15rem;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(255, 255, 255, 0.08));
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.18);
    font-size: 1.35rem;
}

.feature-card h3 {
    margin-top: 1rem;
    font-size: 1.38rem;
}

.benefits-card {
    display: grid;
    gap: 0.9rem;
}

.benefit-row {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.benefit-row i {
    font-size: 1.15rem;
    color: var(--gold);
    flex: 0 0 auto;
}

.benefit-row span {
    flex: 1;
}

.dashboard-layout {
    display: grid;
    gap: 1.35rem;
    padding-top: 0.5rem;
}

.dashboard-command {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 1.7rem;
}

.dashboard-command h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    margin: 0;
}

.dashboard-copy {
    margin: 0.9rem 0 0;
    max-width: 44rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.accent-line {
    width: 110px;
    height: 2px;
    margin-top: 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.95), rgba(255, 255, 255, 0.18));
}

.board-shell {
    padding: 1.35rem;
}

.board-header,
.panel-header,
.gps-topline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.board-caption,
.section-copy {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.departure-board {
    position: relative;
    margin-top: 1.1rem;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 183, 76, 0.22);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(8, 8, 10, 0.92)),
        linear-gradient(90deg, rgba(255, 183, 76, 0.08), transparent 28%, transparent 72%, rgba(120, 255, 139, 0.08));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 20px 50px rgba(0, 0, 0, 0.32);
    font-family: "IBM Plex Mono", "Consolas", monospace;
}

.departure-board::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.03));
    pointer-events: none;
}

.board-head,
.board-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.4fr 0.85fr 0.85fr 0.9fr;
    gap: 0.75rem;
    align-items: center;
}

.board-head {
    padding: 1rem 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: rgba(255, 211, 120, 0.95);
    background: rgba(255, 168, 60, 0.08);
}

.board-row {
    padding: 1rem 1.1rem;
    border-top: 1px solid rgba(255, 183, 76, 0.11);
    color: #ffb75d;
    text-shadow: 0 0 10px rgba(255, 169, 61, 0.18);
    animation: boardFlipIn 0.55s ease both;
}

.board-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.018);
}

.board-cell {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.board-cell i {
    color: #ffd56e;
    font-size: 0.88rem;
}

.board-status--on_time,
.status-pill--on_time {
    color: #8fffb2;
}

.board-status--delayed,
.status-pill--delayed {
    color: #ffd05a;
}

.board-status--cancelled,
.status-pill--cancelled {
    color: #ff8f7f;
}

.board-flip {
    display: inline-block;
    animation: boardFlicker 4.8s steps(2, end) infinite;
}

.dashboard-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.35rem;
    align-items: start;
}

.panel {
    padding: 1.35rem;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.ticket-card {
    padding: 1.2rem;
}

.ticket-card-top,
.ticket-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
}

.ticket-card-top h3 {
    margin: 0.2rem 0 0;
    font-size: 1.55rem;
}

.ticket-label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.58);
}

.ticket-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.ticket-detail {
    padding: 0.9rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ticket-detail span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.55);
}

.ticket-detail strong,
.ticket-notes,
.auth-copy-panel p,
.field-help,
.auth-link,
.footer-brand span,
.footer-copy {
    color: rgba(255, 255, 255, 0.75);
}

.ticket-notes {
    margin: 1rem 0 0;
    line-height: 1.7;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "IBM Plex Mono", "Consolas", monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
}

.status-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    box-shadow: 0 0 12px currentColor;
}

.status-dot--green {
    background: #8fffb2;
    color: #8fffb2;
}

.status-dot--orange {
    background: #ffd05a;
    color: #ffd05a;
}

.status-dot--red {
    background: #ff8f7f;
    color: #ff8f7f;
}

.text-link,
.danger-link,
.auth-link a {
    color: var(--gold-soft);
    text-decoration: none;
}

.danger-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.empty-state {
    padding: 1.8rem;
    text-align: center;
}

.empty-state-icon {
    width: 4.2rem;
    height: 4.2rem;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(255, 255, 255, 0.12));
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.18);
    font-size: 1.7rem;
}

.chat-suggestions,
.gps-shortcuts,
.gps-airport-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.chat-shell {
    position: relative;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    min-height: 500px;
    background: rgba(255, 255, 255, 0.04);
}

.chat-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 12, 30, 0.84), rgba(10, 17, 40, 0.52)),
        url("https://images.pexels.com/photos/27303710/pexels-photo-27303710.jpeg?cs=srgb&dl=pexels-efrem-efre-2786187-27303710.jpg&fm=jpg") center/cover;
    opacity: 0.4;
}

.chat-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 20%, rgba(212, 175, 55, 0.06));
    pointer-events: none;
}

.chat-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 500px;
    overflow: auto;
    padding: 1.35rem;
}

.chat-container::-webkit-scrollbar {
    width: 10px;
}

.chat-container::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
}

.chat-message {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
}

.chat-message-user {
    justify-content: flex-end;
}

.message-stack {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-width: min(82%, 34rem);
}

.chat-message-user .message-stack {
    align-items: flex-end;
}

.bot-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
}

.bot-avatar-orbit,
.bot-avatar-core {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.bot-avatar-orbit {
    inset: -4px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    animation: orbitalSpin 8s linear infinite;
}

.bot-avatar-core {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(10, 17, 40, 0.96));
    color: var(--cream);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.24);
}

.chat-bubble {
    padding: 0.95rem 1.1rem;
    border-radius: 22px;
    box-shadow: 0 16px 30px rgba(3, 8, 18, 0.24);
    animation: messageLift 0.45s ease both;
    line-height: 1.65;
}

.chat-bubble-user {
    color: var(--white);
    background: linear-gradient(135deg, #0b7dff, #0051be);
    border-bottom-right-radius: 10px;
}

.chat-bubble-bot {
    color: var(--cream);
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95), rgba(212, 175, 55, 0.48));
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-bottom-left-radius: 10px;
    backdrop-filter: blur(14px);
}

.chat-timestamp {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.56);
}

.typing-bubble {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
    animation: typingBounce 1s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.15s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.3s;
}

.chat-input-row,
.gps-toolbar,
.gps-search-form,
.form-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.chat-input-row {
    margin-top: 1rem;
}

.chat-input,
.gps-search-input,
.field-shell input,
.field-shell select,
.field-shell textarea {
    width: 100%;
    padding: 0.95rem 1.05rem;
    border-radius: var(--input-radius);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.chat-input::placeholder,
.gps-search-input::placeholder,
.field-shell input::placeholder,
.field-shell textarea::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.chat-input,
.gps-search-input {
    flex: 1 1 18rem;
}

.chat-send-button {
    width: 52px;
    height: 52px;
    padding: 0;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.28);
}

.chat-input:focus,
.gps-search-input:focus,
.field-shell input:focus,
.field-shell select:focus,
.field-shell textarea:focus {
    border-color: rgba(212, 175, 55, 0.76);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
    background: rgba(255, 255, 255, 0.1);
}

.gps-section {
    display: grid;
    gap: 1rem;
    padding: 1.45rem;
}

.gps-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
    gap: 1rem;
}

.gps-map-shell,
.gps-directions-shell,
.gps-stat-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.gps-map-shell {
    padding: 1rem;
}

.gps-map-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 12, 30, 0.7), rgba(10, 17, 40, 0.32)),
        url("https://static.vecteezy.com/system/resources/previews/026/749/007/large_2x/airplane-in-sky-background-free-photo.jpg") center/cover;
    opacity: 0.16;
}

.gps-meta-strip {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
}

.gps-status,
.gps-estimate-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
}

.gps-map {
    position: relative;
    z-index: 1;
    min-height: 390px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.07), transparent 35%),
        linear-gradient(180deg, rgba(10, 17, 40, 0.92), rgba(4, 8, 18, 0.92));
}

.gps-map svg {
    width: 100%;
    height: 100%;
    display: block;
}

.airport-map-empty {
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.gps-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.gps-stat-card,
.gps-directions-shell {
    padding: 1rem;
}

.gps-stat-card span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.52);
}

.gps-stat-card strong,
.gps-directions-shell h3,
.footer-brand strong {
    font-family: "Playfair Display", Georgia, serif;
}

.gps-directions-panel {
    display: grid;
    gap: 0.8rem;
}

.directions-list {
    margin: 0.8rem 0 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.map-zone {
    fill: rgba(255, 255, 255, 0.05);
    stroke: rgba(255, 255, 255, 0.16);
    stroke-width: 3;
}

.map-zone-label {
    fill: rgba(255, 255, 255, 0.65);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.map-corridor {
    fill: none;
    stroke: rgba(156, 190, 255, 0.24);
    stroke-width: 15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.map-route {
    fill: none;
    stroke: var(--gold);
    stroke-width: 11;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.3));
}

.map-point {
    fill: rgba(247, 250, 255, 0.94);
    stroke: rgba(10, 17, 40, 0.95);
    stroke-width: 3;
}

.map-icon {
    fill: var(--gold-soft);
    font-size: 24px;
}

.map-point-label {
    fill: rgba(255, 255, 255, 0.92);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.map-user-pulse {
    fill: rgba(71, 153, 255, 0.24);
    animation: mapPulse 1.9s ease-out infinite;
}

.map-user-dot {
    fill: #3f99ff;
    stroke: rgba(255, 255, 255, 0.95);
    stroke-width: 4;
}

.auth-layout,
.ticket-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
    gap: 1.3rem;
    align-items: start;
    padding-top: 1rem;
}

.auth-copy-panel,
.ticket-page .section-heading {
    max-width: 36rem;
}

.auth-copy-panel h1,
.ticket-page h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
}

.auth-card,
.form-card,
.tips-card {
    padding: 1.4rem;
}

.social-stack,
.form-stack,
.tips-card {
    display: grid;
    gap: 0.85rem;
}

.divider {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin: 1.2rem 0;
    color: rgba(255, 255, 255, 0.55);
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.field-shell {
    display: grid;
    gap: 0.45rem;
}

.field-shell-full {
    grid-column: 1 / -1;
}

.field-shell label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.field-shell textarea {
    min-height: 120px;
    resize: vertical;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tip-item span {
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(255, 255, 255, 0.08));
    color: var(--gold-soft);
}

.site-footer {
    margin-top: 3rem;
    padding-top: 2.4rem;
    padding-bottom: 2.6rem;
    background: linear-gradient(180deg, rgba(5, 8, 18, 0.18), rgba(4, 7, 16, 0.88));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-inner {
    width: min(var(--content-width), calc(100% - 1.5rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer::before {
    content: "";
    display: block;
    width: min(var(--content-width), calc(100% - 1.5rem));
    height: 1px;
    margin: 0 auto 1.4rem;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.85), transparent);
}

.footer-brand {
    display: grid;
    gap: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 0.7rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--gold-soft);
}

body.home-page::after,
body.dashboard-page::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.12;
    pointer-events: none;
    background-size: cover;
    background-position: center;
}

body.home-page::after {
    background-image:
        linear-gradient(180deg, rgba(5, 8, 18, 0.3), rgba(5, 8, 18, 0.82)),
        url("https://static.vecteezy.com/system/resources/previews/026/749/007/large_2x/airplane-in-sky-background-free-photo.jpg");
}

body.dashboard-page::after {
    background-image:
        linear-gradient(180deg, rgba(5, 8, 18, 0.3), rgba(5, 8, 18, 0.82)),
        url("https://images.pexels.com/photos/27303710/pexels-photo-27303710.jpeg?cs=srgb&dl=pexels-efrem-efre-2786187-27303710.jpg&fm=jpg");
}

.hero-cinematic {
    background:
        linear-gradient(90deg, rgba(4, 8, 18, 0.86) 0%, rgba(4, 8, 18, 0.34) 42%, rgba(4, 8, 18, 0.85) 100%),
        linear-gradient(180deg, rgba(255, 190, 92, 0.12), rgba(5, 8, 18, 0.7)),
        url("https://static.vecteezy.com/system/resources/previews/026/749/007/large_2x/airplane-in-sky-background-free-photo.jpg") center/cover;
}

.hero-scene {
    display: none;
}

.hero-ribbon i,
.hero-badge i,
.lounge-list i,
.route-list i {
    color: var(--gold-soft);
}

.lounge-list span,
.route-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.airport-chip.is-active,
.gps-chip.is-active {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.48);
    color: var(--gold-soft);
}

.social-button,
.chat-send-button,
.gold-button,
.primary-button,
.ghost-button,
.suggestion-chip,
.airport-chip,
.gps-chip,
.footer-social a,
.brand-mark {
    will-change: transform;
}

@media (max-width: 1080px) {
    .hero-content-shell,
    .dashboard-columns,
    .gps-layout,
    .auth-layout,
    .ticket-form-layout {
        grid-template-columns: 1fr;
    }

    .gps-stat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .site-header,
    .dashboard-command,
    .board-header,
    .panel-header,
    .gps-topline {
        border-radius: 28px;
    }

    .site-header,
    .dashboard-command {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .brand-mark {
        justify-content: center;
    }

    .hero-glass-card {
        padding: 1.4rem;
    }

    .board-head,
    .board-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-frame {
        width: min(var(--content-width), calc(100% - 1rem));
    }

    .full-bleed {
        padding-inline: 1rem;
    }

    .glass-grid.four-up,
    .glass-grid.three-up,
    .ticket-details,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .chat-input-row,
    .gps-toolbar,
    .gps-search-form,
    .ticket-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .message-stack {
        max-width: 100%;
    }

    .chat-container {
        height: 460px;
        padding: 1rem;
    }

    .board-head {
        display: none;
    }

    .board-row {
        grid-template-columns: 1fr;
    }

    .site-footer-inner {
        justify-content: center;
        text-align: center;
    }
}

@keyframes pageFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes runwayBlink {
    0%,
    100% {
        opacity: 0.25;
    }
    50% {
        opacity: 1;
    }
}

@keyframes sparkleBurst {
    0% {
        opacity: 0;
        transform: scale(0.4) translateY(10px);
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1) translateY(-26px);
    }
}

@keyframes messageLift {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typingBounce {
    0%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
}

@keyframes orbitalSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes boardFlipIn {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(-18deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes boardFlicker {
    0%,
    88%,
    100% {
        opacity: 1;
    }
    89%,
    91% {
        opacity: 0.72;
    }
}

@keyframes mapPulse {
    0% {
        transform: scale(0.7);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

@keyframes orbitPlane {
    from {
        transform: translateX(-50%) rotate(0deg) translateY(-2.8rem) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(360deg) translateY(-2.8rem) rotate(-360deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(0.9);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    100% {
        transform: translateY(-70px) scale(1.15);
        opacity: 0;
    }
}

@keyframes cloudDrift {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(100vw + 26rem));
    }
}

@keyframes planeDrift {
    from {
        transform: translateX(0) translateY(0);
        opacity: 0;
    }
    8%,
    92% {
        opacity: 1;
    }
    to {
        transform: translateX(calc(100vw + 22rem)) translateY(-34px);
        opacity: 0;
    }
}

:root {
    --navy: #5d547a;
    --navy-deep: #443d5e;
    --navy-soft: #7d73a0;
    --gold: #99c1a7;
    --gold-soft: #e1efe2;
    --cream: #f8f1e8;
    --charcoal: #453d50;
    --white: #fffdf9;
    --glass: rgba(255, 255, 255, 0.62);
    --shadow: 0 18px 42px rgba(118, 100, 150, 0.12);
}

body {
    color: var(--charcoal);
    background:
        radial-gradient(circle at 12% 12%, rgba(224, 212, 248, 0.92), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(212, 236, 219, 0.88), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(249, 235, 214, 0.88), transparent 28%),
        linear-gradient(180deg, #fbf6ef 0%, #f7f1ea 44%, #f0ebf8 100%);
}

body::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(237, 230, 245, 0.34)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent 26%, transparent 74%, rgba(221, 241, 227, 0.24));
}

body.home-page::after {
    opacity: 0.08;
    background-image:
        linear-gradient(180deg, rgba(249, 241, 231, 0.54), rgba(227, 217, 245, 0.42)),
        url("https://static.vecteezy.com/system/resources/previews/026/749/007/large_2x/airplane-in-sky-background-free-photo.jpg");
}

body.dashboard-page::after {
    opacity: 0.07;
    background-image:
        linear-gradient(180deg, rgba(247, 239, 230, 0.58), rgba(216, 233, 222, 0.42)),
        url("https://images.pexels.com/photos/27303710/pexels-photo-27303710.jpeg?cs=srgb&dl=pexels-efrem-efre-2786187-27303710.jpg&fm=jpg");
}

.site-frame {
    padding-top: 1.45rem;
}

.site-header {
    margin-bottom: 2.2rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 251, 246, 0.7);
    border: 1px solid rgba(133, 118, 170, 0.14);
    box-shadow: 0 16px 36px rgba(110, 96, 144, 0.1);
}

.brand-plane {
    background: linear-gradient(135deg, rgba(218, 203, 246, 0.9), rgba(216, 236, 221, 0.85));
    box-shadow: 0 14px 26px rgba(125, 115, 160, 0.18);
    color: var(--navy-deep);
}

.brand-title,
h1,
h2,
h3,
h4 {
    color: var(--navy-deep);
}

.brand-subtitle,
.footer-brand span,
.footer-copy {
    color: rgba(69, 61, 80, 0.68);
}

.eyebrow,
.gold-accent {
    color: var(--navy-soft);
    text-shadow: none;
}

.hero-subtitle,
.hero-description,
.dashboard-copy,
.section-copy,
.feature-card p,
.benefit-row,
.ticket-notes,
.auth-link,
.tip-item p,
.field-help,
.field-help ul,
.board-caption,
.gps-subcopy {
    color: rgba(69, 61, 80, 0.76);
}

.primary-button,
.ghost-button,
.social-button,
.suggestion-chip,
.airport-chip,
.gps-chip {
    color: var(--charcoal);
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(133, 118, 170, 0.14);
    box-shadow: 0 12px 28px rgba(125, 115, 160, 0.1);
}

.gold-button,
.chat-send-button {
    color: var(--navy-deep);
    background: linear-gradient(135deg, #dff0e2, #9ec8ab);
    box-shadow: 0 14px 28px rgba(126, 176, 143, 0.24);
}

.primary-button:hover,
.gold-button:hover,
.ghost-button:hover,
.social-button:hover,
.suggestion-chip:hover,
.chat-send-button:hover,
.airport-chip:hover,
.gps-chip:hover,
.ticket-card:hover,
.glass-card:hover,
.panel:hover,
.form-card:hover,
.tips-card:hover,
.benefit-row:hover,
.feature-card:hover,
.quick-link-card:hover {
    box-shadow: 0 0 0 1px rgba(125, 115, 160, 0.16), 0 22px 44px rgba(126, 107, 158, 0.16);
}

.glass-card,
.panel,
.feature-card,
.benefits-card,
.auth-card,
.form-card,
.tips-card,
.ticket-card,
.empty-state {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(133, 118, 170, 0.14);
    box-shadow: 0 18px 42px rgba(118, 100, 150, 0.12);
}

.flash {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(133, 118, 170, 0.12);
    color: var(--charcoal);
}

.section-shell {
    margin-top: 4rem;
    padding-top: 0.6rem;
}

.section-heading {
    margin-bottom: 1.6rem;
}

.luxe-hero {
    min-height: 84vh;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.hero-cinematic {
    background:
        linear-gradient(110deg, rgba(249, 241, 231, 0.74) 0%, rgba(232, 222, 247, 0.42) 42%, rgba(216, 235, 222, 0.72) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(245, 235, 223, 0.46)),
        url("https://static.vecteezy.com/system/resources/previews/026/749/007/large_2x/airplane-in-sky-background-free-photo.jpg") center/cover;
}

.hero-cinematic::before,
.hero-cinematic::after {
    display: none;
}

.hero-content-shell {
    gap: 2.25rem;
    align-items: stretch;
}

.hero-glass-card {
    max-width: 44rem;
    padding: 2.2rem;
    background: rgba(255, 251, 246, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 22px 46px rgba(110, 96, 144, 0.16);
}

.hero-glass-card h1 {
    max-width: 11ch;
}

.hero-ribbon,
.hero-badge,
.route-pill,
.gps-status,
.gps-estimate-pill {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(133, 118, 170, 0.14);
    color: var(--charcoal);
}

.hero-ribbon i,
.hero-badge i,
.lounge-list i,
.route-list i,
.quick-link-card i {
    color: var(--navy-soft);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.mini-visual-card {
    display: grid;
    justify-items: start;
    gap: 0.45rem;
    padding: 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(133, 118, 170, 0.14);
    box-shadow: 0 16px 34px rgba(110, 96, 144, 0.12);
}

.mini-visual-card i {
    width: 2.9rem;
    height: 2.9rem;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(225, 214, 248, 0.95), rgba(220, 239, 224, 0.95));
    color: var(--navy-deep);
    font-size: 1.1rem;
}

.mini-visual-card strong {
    font-size: 1.02rem;
    color: var(--navy-deep);
}

.mini-visual-card span {
    color: rgba(69, 61, 80, 0.68);
}

.visual-route {
    padding: 1.3rem;
    background: rgba(247, 240, 232, 0.78);
}

.route-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.55rem;
}

.route-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
}

.glass-grid,
.ticket-grid,
.dashboard-layout,
.dashboard-columns {
    gap: 1.55rem;
}

.feature-card {
    min-height: 184px;
    display: grid;
    align-content: start;
    gap: 0.65rem;
}

.feature-icon {
    width: 3.4rem;
    height: 3.4rem;
    background: linear-gradient(135deg, rgba(228, 217, 249, 0.98), rgba(222, 239, 226, 0.98));
    box-shadow: 0 14px 28px rgba(125, 115, 160, 0.14);
    color: var(--navy-deep);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.benefit-row {
    min-height: 84px;
    align-items: center;
    background: rgba(250, 244, 236, 0.92);
}

.dashboard-command,
.board-shell,
.panel,
.gps-section {
    padding: 1.75rem;
}

.dashboard-quick-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.quick-link-card {
    display: grid;
    justify-items: center;
    gap: 0.5rem;
    padding: 1.1rem 0.9rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(133, 118, 170, 0.14);
    box-shadow: 0 16px 34px rgba(110, 96, 144, 0.12);
    color: var(--navy-deep);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.quick-link-card i {
    font-size: 1.25rem;
}

.panel-header,
.board-header {
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(133, 118, 170, 0.12);
}

.departure-board {
    border-color: rgba(167, 152, 201, 0.28);
    background:
        linear-gradient(180deg, rgba(43, 37, 60, 0.98), rgba(61, 52, 81, 0.96)),
        linear-gradient(90deg, rgba(227, 220, 255, 0.08), transparent 28%, transparent 72%, rgba(184, 225, 195, 0.08));
}

.ticket-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 237, 251, 0.82));
}

.ticket-detail {
    background: rgba(245, 239, 250, 0.92);
    border-color: rgba(133, 118, 170, 0.12);
}

.ticket-label,
.ticket-detail span {
    color: rgba(86, 76, 107, 0.6);
}

.status-pill {
    background: rgba(239, 248, 241, 0.92);
    border-color: rgba(153, 193, 167, 0.3);
}

.empty-state {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 239, 229, 0.86));
}

.chat-suggestions {
    gap: 0.85rem;
    margin: 0.3rem 0 0.1rem;
}

.chat-shell {
    min-height: 560px;
    border-color: rgba(133, 118, 170, 0.14);
    background: rgba(255, 255, 255, 0.68);
}

.chat-shell::before {
    background:
        linear-gradient(135deg, rgba(255, 248, 242, 0.92), rgba(233, 221, 255, 0.7)),
        url("https://images.pexels.com/photos/27303710/pexels-photo-27303710.jpeg?cs=srgb&dl=pexels-efrem-efre-2786187-27303710.jpg&fm=jpg") center/cover;
    opacity: 0.88;
}

.chat-container {
    height: 540px;
    gap: 1.15rem;
    padding: 1.55rem;
}

.bot-avatar {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
}

.bot-avatar-orbit {
    inset: -5px;
    border: 1px dashed rgba(153, 193, 167, 0.72);
    background: rgba(255, 255, 255, 0.4);
}

.bot-avatar-core {
    background: linear-gradient(135deg, rgba(249, 238, 229, 0.96), rgba(232, 218, 250, 0.96));
    color: var(--navy-deep);
    box-shadow: 0 14px 28px rgba(125, 115, 160, 0.18);
}

.bot-avatar-emoji {
    display: inline-block;
    font-size: 1.75rem;
    line-height: 1;
    animation: avatarWave 2.8s ease-in-out infinite;
}

.chat-bubble-user {
    background: linear-gradient(135deg, #7f73ab, #9f94c9);
}

.chat-bubble-bot {
    color: var(--charcoal);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(223, 239, 229, 0.94));
    border-color: rgba(153, 193, 167, 0.28);
}

.chat-timestamp {
    color: rgba(69, 61, 80, 0.52);
}

.chat-input,
.gps-search-input,
.field-shell input,
.field-shell select,
.field-shell textarea {
    border-color: rgba(133, 118, 170, 0.14);
    background: rgba(255, 255, 255, 0.82);
    color: var(--charcoal);
}

.chat-input::placeholder,
.gps-search-input::placeholder,
.field-shell input::placeholder,
.field-shell textarea::placeholder {
    color: rgba(86, 76, 107, 0.46);
}

.gps-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 240, 232, 0.84));
}

.gps-layout {
    gap: 1.25rem;
}

.gps-map-shell,
.gps-directions-shell,
.gps-stat-card {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(133, 118, 170, 0.14);
}

.gps-map-shell::before {
    background:
        linear-gradient(135deg, rgba(183, 171, 225, 0.34), rgba(184, 225, 195, 0.26)),
        url("https://static.vecteezy.com/system/resources/previews/026/749/007/large_2x/airplane-in-sky-background-free-photo.jpg") center/cover;
    opacity: 0.34;
}

.gps-status,
.gps-estimate-pill,
.gps-stat-card span {
    color: rgba(69, 61, 80, 0.72);
}

.gps-stat-card strong,
.gps-directions-shell h3 {
    color: var(--navy-deep);
}

.gps-map {
    border-color: rgba(133, 118, 170, 0.2);
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(120, 111, 162, 0.98), rgba(77, 71, 105, 0.95));
}

.site-footer {
    background: linear-gradient(180deg, rgba(235, 225, 245, 0.72), rgba(246, 238, 229, 0.95));
    border-top: 1px solid rgba(133, 118, 170, 0.12);
}

.site-footer::before {
    background: linear-gradient(90deg, transparent, rgba(153, 193, 167, 0.9), transparent);
}

.footer-social a {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(133, 118, 170, 0.14);
    color: var(--navy-soft);
}

@media (max-width: 1080px) {
    .hero-metrics,
    .benefits-grid,
    .dashboard-quick-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .dashboard-quick-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-metrics,
    .benefits-grid,
    .dashboard-quick-links {
        grid-template-columns: 1fr;
    }

    .luxe-hero {
        min-height: auto;
        padding-top: 2.25rem;
    }

    .chat-shell {
        min-height: 500px;
    }
}

@keyframes avatarWave {
    0%,
    100% {
        transform: rotate(0deg) translateY(0);
    }
    20% {
        transform: rotate(-6deg) translateY(-1px);
    }
    40% {
        transform: rotate(6deg) translateY(-2px);
    }
    60% {
        transform: rotate(-4deg) translateY(-1px);
    }
    80% {
        transform: rotate(4deg) translateY(-1px);
    }
}

.floating-planes,
.runway-lights {
    display: none !important;
}

body,
p,
li,
label,
input,
textarea,
select,
button,
.brand-subtitle,
.footer-brand span,
.footer-copy,
.hero-subtitle,
.hero-description,
.dashboard-copy,
.section-copy,
.feature-card p,
.benefit-row,
.ticket-label,
.ticket-detail span,
.ticket-notes,
.board-caption,
.chat-timestamp,
.gps-subcopy,
.gps-status,
.gps-estimate-pill,
.gps-stat-card span,
.directions-list span,
.field-help,
.auth-link {
    color: #4a3b72;
}

.brand-title,
h1,
h2,
h3,
h4,
h5,
h6,
.hero-badge,
.hero-ribbon,
.route-pill,
.ticket-card h3,
.ticket-detail strong,
.quick-link-card,
.gps-stat-card strong,
.gps-directions-shell h3,
.panel-header h2,
.board-header h2,
.status-pill,
.gold-button,
.primary-button,
.ghost-button,
.social-button,
.suggestion-chip,
.airport-chip,
.gps-chip,
.chat-send-button {
    color: #362657;
}

.site-header,
.glass-card,
.panel,
.feature-card,
.benefits-card,
.auth-card,
.form-card,
.tips-card,
.ticket-card,
.empty-state,
.quick-link-card,
.hero-glass-card,
.hero-ribbon,
.hero-badge,
.route-pill,
.chat-shell,
.gps-section,
.gps-map-shell,
.gps-directions-shell,
.gps-stat-card,
.flash,
.footer-social a {
    background-color: rgba(233, 223, 240, 0.9);
}

.hero-glass-card,
.ticket-card,
.empty-state,
.gps-section {
    background-image: linear-gradient(180deg, rgba(236, 227, 242, 0.98), rgba(226, 219, 236, 0.94));
}

.chat-shell::before {
    background:
        linear-gradient(135deg, rgba(228, 219, 237, 0.96), rgba(215, 228, 220, 0.84)),
        url("https://images.pexels.com/photos/27303710/pexels-photo-27303710.jpeg?cs=srgb&dl=pexels-efrem-efre-2786187-27303710.jpg&fm=jpg") center/cover;
}

.chat-bubble-user,
.chat-bubble-bot {
    color: #2f2450;
}

.chat-bubble-user {
    background: linear-gradient(135deg, #cbc0e6, #b5a8d7);
}

.chat-bubble-bot {
    background: linear-gradient(135deg, rgba(232, 226, 241, 0.98), rgba(214, 229, 219, 0.96));
}

.chat-input,
.gps-search-input,
.gps-origin-input,
.field-shell input,
.field-shell select,
.field-shell textarea {
    background: rgba(225, 216, 235, 0.95);
    color: #2f2450;
    border-color: rgba(113, 94, 150, 0.22);
}

.chat-input::placeholder,
.gps-search-input::placeholder,
.gps-origin-input::placeholder,
.field-shell input::placeholder,
.field-shell textarea::placeholder {
    color: rgba(74, 59, 114, 0.72);
}

.gps-manual-form,
.gps-direction-hero {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.gps-manual-form {
    margin-top: 0.2rem;
}

.gps-origin-input {
    flex: 1 1 22rem;
    width: 100%;
    padding: 0.95rem 1.05rem;
    border-radius: 18px;
}

.gps-direction-hero {
    padding: 1rem 1.05rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(224, 215, 238, 0.95), rgba(214, 231, 219, 0.92));
    border: 1px solid rgba(113, 94, 150, 0.16);
}

.gps-direction-arrow {
    width: 4.2rem;
    height: 4.2rem;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.58);
    font-size: 1.9rem;
}

.gps-direction-copy {
    display: grid;
    gap: 0.25rem;
}

.gps-direction-copy span {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(74, 59, 114, 0.78);
}

.gps-direction-copy strong,
.gps-direction-copy p {
    color: #362657;
}

.gps-map {
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(210, 200, 231, 0.98), rgba(188, 180, 216, 0.96));
}

.map-zone-label,
.map-point-label {
    fill: #2f2450;
}

.map-corridor {
    stroke: rgba(95, 79, 136, 0.34);
}

.map-user-dot {
    fill: #007aff;
}

.map-user-accuracy {
    fill: rgba(0, 122, 255, 0.12);
}

:root {
    --white: #3f2d63;
    --cream: #4a3b72;
    --glass: rgba(223, 214, 233, 0.9);
}

body {
    color: #4a3b72;
    background:
        radial-gradient(circle at top left, rgba(187, 167, 220, 0.34), transparent 28%),
        radial-gradient(circle at 86% 14%, rgba(181, 213, 190, 0.3), transparent 22%),
        linear-gradient(180deg, #ede4f4 0%, #e8dfcf 48%, #ddeadd 100%);
}

body::before {
    background:
        linear-gradient(180deg, rgba(250, 245, 252, 0.18) 0%, rgba(222, 231, 221, 0.3) 100%),
        linear-gradient(90deg, rgba(235, 226, 242, 0.24) 0%, transparent 28%, transparent 72%, rgba(221, 234, 222, 0.22) 100%);
}

.site-frame,
.site-footer,
.page-transition,
.site-frame :is(h1, h2, h3, h4, h5, h6, p, li, span, strong, small, label, legend, a),
.site-frame :is(button, input, textarea, select),
.lux-loader,
.lux-loader :is(h2, p, span) {
    color: #4a3b72;
}

.site-header,
.hero-glass-card,
.glass-card,
.panel,
.feature-card,
.benefits-card,
.auth-card,
.form-card,
.tips-card,
.ticket-card,
.empty-state,
.quick-link-card,
.chat-shell,
.gps-section,
.gps-map-shell,
.gps-directions-shell,
.gps-stat-card,
.flash,
.footer-social a,
.social-button,
.ghost-button,
.suggestion-chip,
.airport-chip,
.gps-chip,
.gps-origin-input,
.gps-search-input,
.chat-input,
.field-shell input,
.field-shell select,
.field-shell textarea {
    background-color: rgba(224, 215, 234, 0.92);
}

.hero-glass-card,
.ticket-card,
.empty-state,
.gps-section,
.chat-shell,
.gps-directions-shell {
    background-image: linear-gradient(180deg, rgba(234, 226, 243, 0.98), rgba(216, 231, 220, 0.94));
}

.site-frame .board-status--on_time,
.site-frame .status-pill--on_time {
    color: #4d9f67 !important;
}

.site-frame .board-status--delayed,
.site-frame .status-pill--delayed {
    color: #b7831e !important;
}

.site-frame .board-status--cancelled,
.site-frame .status-pill--cancelled {
    color: #b85a5a !important;
}
