:root {
    --bg: #12364a;
    --bg-soft: #1b465a;
    --surface: #24576f;
    --surface-strong: #2f6780;
    --card: rgba(36, 78, 100, 0.86);
    --text: #fdfcf9;
    --muted: #dde7f1;
    --border: rgba(255, 255, 255, 0.16);
    --border-strong: rgba(255, 255, 255, 0.25);
    --accent: #f97316;
    --accent-soft: rgba(249, 115, 22, 0.16);
    --accent-2: #38bdf8;
    --success: #34d399;
    --sand: #f4c77d;
    --sand-soft: rgba(244, 199, 125, 0.2);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at 16% 4%, rgba(244, 199, 125, 0.4), transparent 50%),
        radial-gradient(circle at 86% 10%, rgba(255, 187, 120, 0.36), transparent 46%),
        linear-gradient(180deg, #1b4b63 0%, #14405a 45%, #0f3045 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

code {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    padding: 0.1rem 0.35rem;
    background: rgba(148, 163, 184, 0.15);
    border-radius: 0.35rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 0.85rem;
}

main#page-content {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 2.5rem clamp(1.5rem, 5vw, 4rem) 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(120deg, #f97316, #fbbf24);
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
    box-shadow: none;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 30px rgba(249, 115, 22, 0.25);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.app-nav {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
    padding: 0.85rem clamp(1.5rem, 6vw, 5rem);
    background: linear-gradient(90deg, rgba(24, 64, 84, 0.9), rgba(42, 91, 115, 0.82));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    z-index: 20;
}

.app-nav__brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.app-nav__logo {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.75rem;
    color: var(--muted);
}

.app-nav__meta {
    font-size: 1.05rem;
    font-weight: 600;
}

.app-nav__links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.95rem;
}

.app-nav__links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.app-nav__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.app-nav__links a:hover::after {
    transform: scaleX(1);
}

.app-nav__status {
    display: flex;
    flex-direction: column;
    text-align: right;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.3;
}

.app-nav__status-value {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 600;
}

.app-nav__status-meta {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.85);
}

@media (max-width: 960px) {
    .app-nav {
        flex-wrap: wrap;
    }
    .app-nav__links {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 1rem;
    }
    .app-nav__status {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .day-card__slot {
        grid-template-columns: 1fr;
    }
    .day-card__time {
        flex-direction: row;
        align-items: center;
    }
    .day-card__early-pill {
        margin-left: 0.65rem;
    }
}

.hero {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem) clamp(4rem, 7vw, 6rem);
    background:
        radial-gradient(circle at 18% 20%, rgba(140, 219, 231, 0.38), transparent 55%),
        radial-gradient(circle at 82% 28%, rgba(255, 203, 145, 0.48), transparent 52%),
        linear-gradient(120deg, #1f5f7a 0%, #2a7c97 40%, #f6c27b 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hero::before {
    content: '';
    position: absolute;
    right: 8%;
    top: 6%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(255, 223, 186, 0.5), rgba(242, 179, 101, 0.2), transparent 65%);
    mix-blend-mode: screen;
    filter: blur(4px);
    opacity: 0.9;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 75% 78%, rgba(12, 30, 46, 0.35), transparent 65%),
        linear-gradient(180deg, rgba(17, 49, 70, 0) 0%, rgba(17, 49, 70, 0.25) 72%, rgba(17, 49, 70, 0.55) 100%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(16, 28, 38, 0.25) 100%);
    opacity: 0.95;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 960px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }
}

.hero__pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(243, 199, 140, 0.55);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.7rem;
    color: #ffe9cc;
    margin-bottom: 1rem;
    background: rgba(243, 199, 140, 0.14);
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.hero__subtitle {
    margin: 0.3rem 0 1rem;
    font-size: 1.2rem;
    color: #fff4e5;
}

.hero__intro {
    margin: 0;
    color: #e5edf5;
    max-width: 65ch;
    font-size: 1.05rem;
}

.hero__meta {
    margin-top: 1.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
}

.hero__meta-item {
    background: linear-gradient(150deg, rgba(243, 199, 140, 0.12), rgba(14, 32, 52, 0.82));
    border: 1px solid var(--border-strong);
    border-radius: 1rem;
    padding: 0.75rem 1rem;
}

.hero__meta-item span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sand);
}

.hero__meta-item strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1rem;
}

.hero__actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero__secondary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.stat-card {
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    padding: 1.25rem 1.4rem;
    background: linear-gradient(150deg, rgba(244, 199, 125, 0.16), rgba(36, 86, 108, 0.82));
    box-shadow: 0 25px 60px rgba(7, 22, 32, 0.32);
}

.stat-card--accent {
    background: linear-gradient(135deg, rgba(255, 203, 145, 0.42), rgba(46, 104, 126, 0.9));
    border-color: rgba(255, 203, 145, 0.85);
}

.stat-card--outline {
    border-style: dashed;
    border-color: rgba(221, 231, 241, 0.5);
    background: rgba(36, 86, 108, 0.58);
}

.stat-card__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.7rem;
    color: var(--sand);
}

.stat-card__value {
    margin: 0.6rem 0;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 600;
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.stat-card__value span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--muted);
}

.stat-card__hint {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero__badge {
    align-self: flex-start;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.85rem 1.5rem;
    background: rgba(243, 199, 140, 0.16);
    backdrop-filter: blur(12px);
    text-align: center;
    font-size: 0.9rem;
}

.hero__badge strong {
    display: block;
    font-size: 1rem;
}

.section {
    margin-bottom: 3rem;
}

.section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.section__header h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.section__header p {
    margin: 0.3rem 0 0;
    color: var(--muted);
}

.section__eyebrow {
    margin: 0;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--sand);
    font-weight: 500;
}

.section__actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

.status-pill--outline {
    background: rgba(244, 199, 125, 0.14);
    border-color: rgba(244, 199, 125, 0.72);
    color: #fff5e8;
}

.status-pill--link {
    border-color: rgba(56, 189, 248, 0.4);
    color: var(--accent-2);
    background: rgba(56, 189, 248, 0.08);
}

.section__split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.section__split--stacked {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

@media (max-width: 960px) {
    .section__split--stacked {
        grid-template-columns: 1fr;
    }
}

.card {
    background: linear-gradient(150deg, rgba(244, 199, 125, 0.16), rgba(36, 86, 108, 0.86));
    border: 1px solid var(--border-strong);
    border-radius: 1.25rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(9, 24, 34, 0.35);
}

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

.card__muted {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-card--warn {
    border-color: rgba(248, 113, 113, 0.7);
    background: rgba(248, 113, 113, 0.08);
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.overview-card {
    min-height: 220px;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    padding: 1.4rem;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(10, 12, 25, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.overview-card--accent {
    background: radial-gradient(circle at 0% 0%, rgba(249, 115, 22, 0.25), rgba(10, 12, 25, 0.9));
}

.overview-card--flights {
    background: radial-gradient(circle at 80% 0%, rgba(56, 189, 248, 0.2), rgba(10, 12, 25, 0.95));
}

.overview-card__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0;
}

.overview-card h3 {
    margin: 0;
    font-size: 1.7rem;
}

.overview-card__lead {
    margin: 0;
    color: var(--text);
}

.overview-card__muted {
    margin: 0;
    color: var(--muted);
}

.overview-card__badge {
    align-self: flex-start;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    color: #fef3c7;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.overview-stats strong {
    font-size: 2rem;
}

.overview-stats span {
    font-size: 0.8rem;
    color: var(--muted);
}

.countdown-ring {
    display: flex;
    justify-content: flex-start;
}

.countdown-ring--live .countdown-ring__inner {
    box-shadow:
        0 0 0 10px rgba(249, 115, 22, 0.08),
        0 20px 50px rgba(249, 115, 22, 0.25),
        0 0 45px rgba(56, 189, 248, 0.25);
}

.countdown-ring__inner {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), rgba(15, 23, 42, 0.65));
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
}

.countdown-ring--live .countdown-ring__inner::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid rgba(249, 115, 22, 0.35);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.25);
    animation: pulseGlow 2.6s ease-in-out infinite;
}

.countdown-ring__number {
    font-size: 2.8rem;
    font-weight: 700;
}

.countdown-ring--live .countdown-ring__number {
    color: #fff6ea;
    text-shadow: 0 0 18px rgba(249, 115, 22, 0.5);
}

.countdown-ring__label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #e0f2fe;
}

.countdown-ring--live .countdown-ring__label {
    color: var(--sand);
}

.countdown-ring__orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(249, 115, 22, 0.35);
    inset: -8px;
    animation: spin 18s linear infinite;
}

.countdown-ring__orbit--two {
    border-color: rgba(56, 189, 248, 0.35);
    inset: -18px;
    animation-duration: 26s;
}

.countdown-ring--live .countdown-ring__orbit {
    border-color: rgba(249, 115, 22, 0.65);
}

.countdown-ring--live .countdown-ring__orbit--two {
    border-color: rgba(56, 189, 248, 0.55);
}

.countdown-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 0.65rem;
    margin: 0.75rem 0 0.25rem;
}

.countdown-detail--live .countdown-detail__item {
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.08), rgba(56, 189, 248, 0.08));
    border-color: rgba(249, 115, 22, 0.18);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.countdown-detail__item {
    padding: 0.6rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
}

.countdown-detail__label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: var(--muted);
}

.countdown-detail__value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.countdown-inline {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    font-variant-numeric: tabular-nums;
    color: var(--muted);
}

.countdown-inline__value {
    font-weight: 700;
    color: var(--text);
}

.countdown-title--gift {
    color: var(--sand);
}

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

@keyframes pulseGlow {
    0% {
        transform: scale(0.96);
        opacity: 0.65;
    }
    50% {
        transform: scale(1.02);
        opacity: 1;
    }
    100% {
        transform: scale(0.96);
        opacity: 0.65;
    }
}

.countdown-title {
    margin: 0.4rem 0 0;
}

.countdown-note {
    color: var(--muted);
    opacity: 0.95;
}

.flight-timeline {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flight-timeline__stop {
    flex: 1;
}

.flight-timeline__stop strong {
    font-size: 1.3rem;
}

.flight-timeline__stop span {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
}

.flight-timeline__line {
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(56, 189, 248, 0.4));
}

.calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calendar-month {
    display: flex;
    flex-direction: column;
    background: rgba(8, 12, 24, 0.75);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
    width: 100%;
}

.calendar-month__header h3 {
    margin: 0 0 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.4rem;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted);
}

.calendar-day {
    min-height: 120px;
    border-radius: 1rem;
    padding: 0.55rem;
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.7));
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    position: relative;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.calendar-day:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.35);
}

.calendar-day--muted {
    opacity: 0.12;
    border-style: dashed;
}

.calendar-day--trip {
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.25), rgba(15, 23, 42, 0.75));
    border-color: rgba(99, 102, 241, 0.45);
}

.calendar-day--today {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent-soft);
}

.calendar-day--flight {
    background: linear-gradient(165deg, rgba(56, 189, 248, 0.28), rgba(15, 23, 42, 0.8));
    border-color: rgba(56, 189, 248, 0.5);
}

.calendar-day__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calendar-day__number {
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
}

.calendar-day__tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.18);
    color: #e0f2fe;
    border: 1px solid rgba(56, 189, 248, 0.35);
}

.calendar-day__body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.calendar-day__stops {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.calendar-stop {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 12, 24, 0.65);
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.calendar-stop:hover {
    border-color: var(--accent);
    background: rgba(249, 115, 22, 0.12);
    transform: translateX(2px);
}

.calendar-stop__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.8);
    margin-top: 0.4rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.15);
}

.calendar-stop__content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.calendar-stop__row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.calendar-stop__label {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.calendar-stop__badge {
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calendar-stop__hint {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.calendar-stop--start {
    border-color: rgba(249, 115, 22, 0.4);
}

.calendar-stop--start .calendar-stop__dot {
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
}

.calendar-stop--start .calendar-stop__badge {
    border-color: rgba(249, 115, 22, 0.4);
    color: var(--accent);
}

.calendar-stop--end {
    border-color: rgba(56, 189, 248, 0.4);
}

.calendar-stop--end .calendar-stop__dot {
    background: rgba(56, 189, 248, 0.9);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

.calendar-stop--end .calendar-stop__badge {
    border-color: rgba(56, 189, 248, 0.5);
    color: #bae6fd;
}

.calendar-day__flight {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #e0f2fe;
    padding: 0.5rem 0.7rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: rgba(15, 23, 42, 0.6);
}

.calendar-day__flight-icon {
    font-size: 0.95rem;
    margin-top: 0.1rem;
}

.calendar-day__flight-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.calendar-legend {
    color: var(--muted);
    font-size: 0.9rem;
}

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

.budget-card {
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    background: rgba(8, 12, 24, 0.8);
    padding: 1.25rem;
}

.budget-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.budget-card__progress {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin: 0.8rem 0;
}

.budget-card__progress span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #f97316, #fdba74);
}

.budget-card__percent {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.budget-summary {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.budget-summary h3 {
    margin: 0.35rem 0;
    font-size: 2.2rem;
}

.budget-summary__meta {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.budget-summary__list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.budget-summary__list li {
    flex: 1;
    min-width: 130px;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.75rem 1rem;
    background: rgba(148, 163, 184, 0.08);
}

.budget-summary__list span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
}

.budget-summary__list strong {
    font-size: 1.4rem;
}

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

.stay-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.stay-card__image {
    height: 140px;
    border-radius: 0.9rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.35);
}

.stay-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.stay-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.stay-card__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
    text-align: right;
}

.stay-card__price strong {
    font-size: 1.35rem;
}

.stay-card__price span {
    color: var(--muted);
    font-size: 0.9rem;
}

.stay-card__meta {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.stay-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

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

.flight-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.flight-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.flight-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.doc-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.12), rgba(8, 12, 24, 0.9));
}

.doc-card--notes {
    background: radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.15), rgba(8, 12, 24, 0.9));
}

.doc-card__lead {
    margin: 0;
    color: var(--muted);
}

.doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.doc-list li {
    padding: 0.75rem 0.9rem;
    border-radius: 0.9rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.doc-list span {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--muted);
}

.doc-list strong {
    font-size: 1.05rem;
}

.doc-bullet {
    list-style: none;
    margin: 0.4rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.doc-bullet li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--muted);
}

.doc-bullet li::before {
    content: '•';
    position: absolute;
    left: 0.2rem;
    color: var(--accent);
}

.flight-doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

.flight-doc {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    background: linear-gradient(160deg, rgba(8, 12, 24, 0.95), rgba(4, 6, 16, 0.9));
}

.flight-doc__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.flight-doc__status {
    align-self: flex-start;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.45);
    color: #e0f2fe;
    background: rgba(56, 189, 248, 0.1);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.flight-doc__timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 0.75rem;
}

.flight-doc__point {
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.flight-doc__point--arrival {
    justify-content: flex-end;
    text-align: right;
}

.flight-doc__time {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.flight-doc__airport {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.flight-doc__airport strong {
    font-size: 1.1rem;
}

.flight-doc__label {
    font-size: 0.85rem;
    color: var(--muted);
}

.flight-doc__terminal {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.flight-doc__line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.flight-doc__line::before,
.flight-doc__line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.4), rgba(249, 115, 22, 0.5));
    opacity: 0.7;
}

.flight-doc__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.flight-doc__baggage {
    border-radius: 1rem;
    border: 1px dashed var(--border);
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.passenger-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.passenger-card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.passenger-card__fare {
    margin: 0;
    font-weight: 600;
}

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

.timeline__item {
    border-left: 2px solid var(--accent);
    padding-left: 1rem;
    border-radius: 1.1rem;
    background: rgba(8, 12, 24, 0.85);
    border: 1px solid var(--border);
    position: relative;
}

.timeline-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0.9rem;
    margin-bottom: 0.75rem;
}

.timeline__meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.timeline__index {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.tag-list span {
    background: rgba(148, 163, 184, 0.2);
    color: #cbd5f5;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
}

.route-table {
    width: 100%;
    border-collapse: collapse;
}

.route-table th,
.route-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 0.95rem;
}

.route-table th {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
}

.location-hero {
    position: relative;
    margin: 1.5rem 0 2.5rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-strong);
    background:
        radial-gradient(circle at 18% 10%, rgba(140, 219, 231, 0.26), transparent 55%),
        linear-gradient(135deg, rgba(244, 199, 125, 0.2), rgba(26, 72, 94, 0.92));
    overflow: hidden;
}

.location-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 36, 52, 0.65), rgba(14, 36, 52, 0.45)), var(--location-cover, none);
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    filter: saturate(1.1);
}

.location-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 18%, rgba(244, 199, 125, 0.3), transparent 42%);
    pointer-events: none;
}

.location-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 1.5rem;
    z-index: 1;
}

@media (max-width: 900px) {
    .location-hero__inner {
        grid-template-columns: 1fr;
    }
}

.location-hero__text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(243, 199, 140, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.7rem;
    color: #ffe9cc;
    background: rgba(243, 199, 140, 0.12);
    width: fit-content;
}

.location-hero__headline {
    margin: 0;
    font-size: 1.1rem;
    color: #ffe3b3;
}

.location-hero__intro {
    margin: 0;
    color: var(--muted);
    max-width: 70ch;
}

.location-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.2rem;
}

.location-hero__tags span {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.15);
    color: #e0f2fe;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.location-hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.location-hero__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    align-self: start;
}

.meta-card {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid var(--border-strong);
    background: linear-gradient(145deg, rgba(244, 199, 125, 0.2), rgba(30, 78, 98, 0.92));
    box-shadow: 0 25px 40px rgba(9, 24, 34, 0.36);
}

.meta-card__label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: var(--sand);
}

.meta-card h3 {
    margin: 0.3rem 0;
    font-size: 1.25rem;
}

.meta-card__hint {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.location-essentials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.1rem;
}

.location-quick {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-quick h3 {
    margin: 0;
}

.location-quick--accent {
    border-color: rgba(244, 199, 125, 0.65);
    background: linear-gradient(135deg, rgba(244, 199, 125, 0.32), rgba(36, 86, 108, 0.92));
}

.location-quick__list {
    list-style: none;
    padding: 0;
    margin: 0.35rem 0 0;
    display: grid;
    gap: 0.35rem;
}

.location-quick__list li {
    color: var(--text);
}

.location-quick__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.link-stack {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.link-stack a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.55rem 0.75rem;
    border-radius: 0.75rem;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.28);
    color: var(--accent-2);
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.link-stack a:hover {
    border-color: var(--accent-2);
    transform: translateY(-1px);
}

.day-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: stretch;
    gap: 1.75rem;
}

.day-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.day-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.planning-note--inline {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.planning-note__meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    color: #fed7aa;
    font-weight: 600;
}

.location-tools__panel {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.location-tools__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    border-top: 1px dashed var(--border);
    padding-top: 0.75rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.location-gallery {
    align-items: flex-start;
}

.location-gallery .gallery-grid {
    margin-top: 0.65rem;
}

.next-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: linear-gradient(120deg, rgba(244, 199, 125, 0.2), rgba(56, 189, 248, 0.18));
    border-color: rgba(244, 199, 125, 0.6);
}

.next-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 720px) {
    .next-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

.day-card {
    position: relative;
    isolation: isolate;
    border: 1px solid var(--border-strong);
    border-radius: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(244, 199, 125, 0.18), rgba(36, 86, 108, 0.9));
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 22px 45px rgba(9, 24, 34, 0.32);
    overflow: hidden;
}
.day-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 12% 6%, rgba(140, 219, 231, 0.16), transparent 45%),
        radial-gradient(120% 120% at 88% 0%, rgba(244, 199, 125, 0.16), transparent 40%);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}
.day-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    bottom: -1px;
    width: 6px;
    background: linear-gradient(180deg, #38bdf8, #f97316);
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
}
.day-card > * {
    position: relative;
    z-index: 2;
}
.day-card__header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.day-card__date {
    margin: 0.1rem 0 0.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.day-card__timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.15rem;
}

.day-card__slot {
    position: relative;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(120deg, rgba(244, 199, 125, 0.14), rgba(30, 78, 98, 0.9));
    box-shadow: 0 14px 32px rgba(9, 24, 34, 0.26);
    overflow: hidden;
}

.day-card__slot::before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    bottom: -1px;
    width: 4px;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.75), rgba(56, 189, 248, 0.2));
    opacity: 0.9;
    pointer-events: none;
}

.day-card__slot--early {
    border-color: rgba(249, 115, 22, 0.55);
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.2);
    background: linear-gradient(120deg, rgba(249, 115, 22, 0.24), rgba(36, 86, 108, 0.9));
}

.day-card__slot--early::before {
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.9), rgba(249, 115, 22, 0.35));
}

.day-card__time {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    color: var(--muted);
    font-size: 0.95rem;
}

.day-card__time span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 0.38rem 0.7rem;
    border-radius: 0.75rem;
    background: rgba(148, 163, 184, 0.14);
    color: #e2e8f0;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.day-card__early-pill {
    align-self: flex-start;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #ffedd5;
    background: rgba(249, 115, 22, 0.16);
    border: 1px solid rgba(249, 115, 22, 0.6);
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.25);
}

.day-card__body strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.day-card__meta {
    font-size: 0.85rem;
    color: var(--muted);
}

.planning-note {
    margin: 1.5rem 0 1rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(244, 199, 125, 0.55);
    background: rgba(244, 199, 125, 0.18);
    color: #fff6e8;
}

.gallery-grid--remote {
    margin-top: 1.5rem;
}

.gallery-card--remote {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-card--remote figcaption {
    color: var(--muted);
}

.hero-gallery {
    margin-bottom: 1.5rem;
}

.hero-gallery__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
}

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

.gallery-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(5, 8, 18, 0.9);
}

.gallery-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 0.75rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.map-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.map-canvas {
    width: 100%;
    height: 420px;
    border-radius: 1rem;
}

.map-canvas--mini {
    height: 320px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-links {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.map-links a {
    color: var(--accent-2);
    text-decoration: none;
    font-weight: 600;
}

.contact-card address {
    font-style: normal;
    color: var(--text);
    line-height: 1.5;
    margin: 0 0 1rem;
}

.contact-meta a {
    color: var(--accent-2);
    text-decoration: none;
}

footer {
    padding: 2rem clamp(1.5rem, 5vw, 5rem);
    border-top: 1px solid var(--border-strong);
    color: #e8f0f6;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 680px) {
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .flight-timeline {
        flex-direction: column;
        align-items: flex-start;
    }
    .status-pill {
        width: 100%;
        justify-content: center;
    }
    .app-nav__links a::after {
        display: none;
    }
    .flight-doc__timeline {
        grid-template-columns: 1fr;
    }
    .flight-doc__point--arrival {
        justify-content: flex-start;
        text-align: left;
    }
    .doc-list {
        grid-template-columns: 1fr;
    }
}
