.tp-journey *, .tp-journey *::before, .tp-journey *::after { box-sizing: border-box; }
.tp-journey { margin: 0; padding: 0!important; color: var(--tp-text); background: var(--tp-canvas); color-scheme: light; font-family: var(--tp-font-ui); font-size: 16px; line-height: 1.5; }
.tp-journey h1, .tp-journey h2, .tp-journey h3 { margin-block: 0; color: var(--tp-navy-950); font-family: var(--tp-font-display); line-height: 1.18; }
.tp-journey a { color: inherit; text-decoration: none; }
.tp-journey button, .tp-journey input, .tp-journey select, .tp-journey textarea { font: inherit; }
.tp-journey button, .tp-journey a { -webkit-tap-highlight-color: transparent; }
.tp-journey :focus-visible { outline: 3px solid color-mix(in srgb, var(--tp-brand-500) 45%, transparent); outline-offset: 3px; }
.tp-container { width: min(100% - 32px, var(--tp-content-max)); margin-inline: auto; }
.tp-sr-only { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
.tp-skip-link { position: fixed; inset-block-start: 8px; inset-inline-start: 8px; z-index: 1000; translate: 0 -150%; padding: 10px 14px; border-radius: var(--tp-radius-control); color: #fff!important; background: var(--tp-brand-700); }
.tp-skip-link:focus { translate: 0; }

.tp-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; padding: 0 20px; border: 1px solid transparent; border-radius: var(--tp-radius-control); font-weight: 700; cursor: pointer; transition: background-color .18s ease, border-color .18s ease, transform .18s ease; }
.tp-button:active { transform: translateY(1px); }
.tp-button--primary { color: #fff!important; background: var(--tp-brand-600); }
.tp-button--primary:hover { background: var(--tp-brand-700); }
.tp-button--secondary { color: var(--tp-brand-600)!important; border-color: var(--tp-brand-500); background: var(--tp-surface); }
.tp-button--small { min-height: 42px; padding-inline: 16px; }
.tp-icon-button { display: inline-grid; width: 46px; height: 46px; place-items: center; padding: 0; border: 0; border-radius: var(--tp-radius-pill); color: var(--tp-text); background: transparent; cursor: pointer; }
.tp-icon-button:hover { background: var(--tp-surface-subtle); }

.tp-card { border: 1px solid var(--tp-border); border-radius: var(--tp-radius-card); background: var(--tp-surface); box-shadow: var(--tp-shadow-sm); }
.tp-chip { display: inline-flex; min-height: 32px; align-items: center; gap: 6px; padding-inline: 12px; border: 1px solid var(--tp-border); border-radius: var(--tp-radius-pill); color: var(--tp-text-secondary); background: var(--tp-surface); font-size: 14px; font-weight: 600; }
.tp-status { display: inline-flex; min-height: 30px; align-items: center; gap: 6px; padding-inline: 10px; border-radius: var(--tp-radius-pill); font-size: 13px; font-weight: 700; }
.tp-status--pending { color: var(--tp-warning); background: #fef3c7; }
.tp-status--success { color: var(--tp-success); background: #dcfce7; }
.tp-status--danger { color: var(--tp-danger); background: #fee2e2; }
.tp-status--info { color: var(--tp-info); background: var(--tp-brand-100); }

.tp-field { display: grid; gap: 7px; }
.tp-field > label { color: var(--tp-text); font-size: 14px; font-weight: 700; }
.tp-field input, .tp-field select, .tp-field textarea, .tp-destination-search input { width: 100%; min-height: 50px; border: 1px solid var(--tp-border); border-radius: var(--tp-radius-control); color: var(--tp-text); background: var(--tp-surface); }
.tp-field input, .tp-field select, .tp-field textarea { padding: 12px 14px; }
.tp-field small { color: var(--tp-text-muted); font-size: 13px; }
.tp-field [aria-invalid="true"] { border-color: var(--tp-danger); }

.tp-notice { display: grid; grid-template-columns: 40px minmax(0,1fr); gap: 12px; padding: 16px; border: 1px solid var(--tp-border); border-radius: var(--tp-radius-card); background: var(--tp-surface); }
.tp-notice__icon { display: grid; width: 40px; height: 40px; place-items: center; border-radius: var(--tp-radius-pill); color: var(--tp-brand-700); background: var(--tp-brand-100); }
.tp-notice strong { display: block; margin-block-end: 3px; }
.tp-notice p { margin: 0; color: var(--tp-text-secondary); }

.tp-skeleton { position: relative; overflow: hidden; background: var(--tp-surface-subtle); }
.tp-skeleton::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent); animation: tp-shimmer 1.4s infinite; translate: -100% 0; }
@keyframes tp-shimmer { to { translate: 100% 0; } }
@media (prefers-reduced-motion: reduce) { .tp-journey *, .tp-journey *::before, .tp-journey *::after { scroll-behavior: auto!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; } }
