/* Trip-Ledger public website styles. */
*, *::before, *::after { box-sizing: border-box; }
:root {
  --tl-navy-900: #001D5B;
  --tl-navy-950: #02174C;
  --tl-navy-700: #143C99;
  --tl-blue-600: #0A6CFF;
  --tl-blue-500: #0C66FF;
  --tl-sky-400: #1EA0FF;
  --tl-sky-300: #2AA7FF;
  --tl-canvas: #F6F7FB;
  --tl-surface: #F5F5F7;
  --tl-text: #1D1D1F;
  --tl-mid: #6E6E73;
  --tl-mid-2: #98989D;
  --tl-line: #E6E7EC;
  --tl-line-soft: #EFF0F4;
  --tl-warm: #F5F0E8;
  --tl-warm-line: #EADFCC;
  --tl-radius: 8px;
  --tl-radius-lg: 12px;
  --tl-max: 1160px;
  --tl-h-pad: clamp(20px, 5vw, 56px);
  --tl-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--tl-sans);
  color: var(--tl-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
a { color: var(--tl-blue-600); text-decoration: none; }
a:hover { color: var(--tl-navy-900); }
.skip-link {
  position: absolute;
  top: -44px;
  left: 0;
  z-index: 1000;
  background: var(--tl-navy-900);
  color: #fff;
  padding: 10px 16px;
}
.skip-link:focus { top: 0; }
.tl-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 16px var(--tl-h-pad);
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--tl-line);
  backdrop-filter: blur(16px);
}
.tl-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tl-logo { width: 30px; height: 30px; border-radius: 6px; display: block; }
.tl-wordmark { height: 20px; width: auto; display: block; }
.tl-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}
.tl-nav a { color: var(--tl-text); padding: 7px 0 5px; border-bottom: 2px solid transparent; }
.tl-nav a:hover, .tl-nav a[aria-current="page"] { color: var(--tl-navy-900); border-bottom-color: var(--tl-navy-900); }
.tl-header-actions { display: flex; align-items: center; gap: 14px; }
.tl-signin { color: var(--tl-navy-900); font-size: 14px; font-weight: 600; }
.tl-staff-link { color: var(--tl-mid); font-size: 11px; font-weight: 400; text-decoration: underline; }
.tl-staff-link:hover { color: var(--tl-navy-900); }
.tl-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  background: #fff;
}
.tl-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--tl-navy-900);
  border-radius: 2px;
}
.tl-mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 45;
  padding: 16px var(--tl-h-pad) 24px;
  background: #fff;
  border-bottom: 1px solid var(--tl-line);
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}
.tl-mobile-nav.open { display: grid; gap: 12px; }
.tl-mobile-nav a { color: var(--tl-text); font-weight: 700; padding: 10px 0; }
.tl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--tl-radius);
  font-family: var(--tl-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.16s, color 0.16s, border-color 0.16s, transform 0.16s;
}
.tl-btn:hover { transform: translateY(-1px); }
.tl-btn-primary { background: var(--tl-navy-900); color: #fff; }
.tl-btn-primary:hover { background: var(--tl-navy-950); color: #fff; }
.tl-btn-blue { background: var(--tl-blue-600); color: #fff; }
.tl-btn-blue:hover { background: var(--tl-navy-900); color: #fff; }
.tl-btn-secondary { background: #fff; color: var(--tl-navy-900); border-color: var(--tl-navy-900); }
.tl-btn-secondary:hover { background: var(--tl-navy-900); color: #fff; }
.tl-btn-lg { min-height: 46px; padding: 0 22px; font-size: 15px; }
.tl-main { min-height: 60vh; }
.tl-section { padding: 56px var(--tl-h-pad); }
.tl-section-tight { padding: 40px var(--tl-h-pad); }
.tl-container { max-width: var(--tl-max); margin: 0 auto; }
.tl-kicker {
  margin-bottom: 14px;
  color: var(--tl-blue-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tl-heading {
  margin: 0;
  color: var(--tl-navy-900);
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}
.tl-heading-md {
  margin: 0;
  color: var(--tl-navy-900);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.14;
  font-weight: 800;
  text-wrap: balance;
}
.tl-copy {
  margin: 0;
  color: var(--tl-text);
  font-size: 15px;
  line-height: 1.65;
}
.tl-muted { color: var(--tl-mid); }
.tl-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--tl-navy-900);
}
.tl-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tl-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,15,45,0.94) 0%, rgba(0,29,91,0.82) 42%, rgba(0,29,91,0.24) 76%, rgba(0,29,91,0) 100%);
}
.tl-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 560px;
  max-width: 760px;
  flex-direction: column;
  justify-content: center;
  padding: 72px var(--tl-h-pad) 56px;
}
.tl-hero h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}
.tl-hero p {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  line-height: 1.55;
}
.tl-geo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 560px;
  margin-top: 26px;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  line-height: 1.5;
}
.tl-geo svg { flex: 0 0 auto; margin-top: 2px; }
.tl-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: 56px;
  align-items: start;
}
.tl-tile-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--tl-line);
}
.tl-tile {
  min-height: 170px;
  padding: 8px 22px;
  border-right: 1px solid var(--tl-line);
}
.tl-tile svg { color: var(--tl-blue-600); }
.tl-tile h3 {
  margin: 16px 0 8px;
  color: var(--tl-navy-900);
  font-size: 15px;
  line-height: 1.25;
}
.tl-tile p { margin: 0; color: var(--tl-mid); font-size: 13px; line-height: 1.5; }
.tl-service {
  background: var(--tl-canvas);
}
.tl-services-index {
  background: #fff;
  border-top: 1px solid var(--tl-line-soft);
}
.tl-guides-index {
  background: var(--tl-canvas);
  border-top: 1px solid var(--tl-line-soft);
}
.tl-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.tl-guide-card {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  background: #fff;
  color: var(--tl-text);
}
.tl-guide-card:hover {
  border-color: #C4D4F5;
  background: #F7FAFF;
  color: var(--tl-text);
}
.tl-guide-card span {
  color: var(--tl-navy-900);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}
.tl-guide-card small {
  color: var(--tl-mid);
  font-size: 12.5px;
  line-height: 1.5;
}
.tl-article-shell {
  background: #fff;
}
.tl-article {
  max-width: 820px;
  margin: 0 auto;
}
.tl-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--tl-mid);
  font-size: 13px;
  font-weight: 700;
}
.tl-article-body {
  margin-top: 34px;
  color: var(--tl-text);
}
.tl-article-body h2 {
  margin: 34px 0 12px;
  color: var(--tl-navy-900);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: 0;
}
.tl-article-body p {
  margin: 14px 0;
  color: var(--tl-muted);
  font-size: 18px;
  line-height: 1.72;
}
.tl-article-body ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 22px;
  color: var(--tl-muted);
  font-size: 17px;
  line-height: 1.62;
}
.tl-article-body li::marker {
  color: var(--tl-blue-600);
}
.tl-article-callout {
  margin: 34px 0;
  padding: 22px;
  border: 1px solid #C4D4F5;
  border-radius: var(--tl-radius);
  background: #F7FAFF;
}
.tl-article-callout p {
  margin: 0 0 18px;
  color: var(--tl-text);
  font-size: 17px;
}
.tl-service-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.tl-service-link {
  display: flex;
  min-height: 154px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  background: #fff;
  color: var(--tl-text);
}
.tl-service-link:hover {
  border-color: #C4D4F5;
  background: #F7FAFF;
  color: var(--tl-text);
}
.tl-service-link span {
  color: var(--tl-navy-900);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}
.tl-service-link small {
  color: var(--tl-mid);
  font-size: 12.5px;
  line-height: 1.5;
}
.tl-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: center;
}
.tl-map-img {
  display: block;
  width: 100%;
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius-lg);
}
.tl-contact-strip {
  background: var(--tl-navy-900);
  color: #fff;
  padding: 36px var(--tl-h-pad);
}
.tl-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.tl-contact-item { display: flex; gap: 14px; align-items: flex-start; }
.tl-contact-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: var(--tl-sky-300);
}
.tl-contact-item strong { display: block; margin-bottom: 4px; color: #fff; font-size: 15px; }
.tl-contact-item span, .tl-contact-item a { color: rgba(255,255,255,0.72); font-size: 13.5px; line-height: 1.55; }
.tl-provider-band {
  background: var(--tl-warm);
  border-top: 1px solid var(--tl-warm-line);
  border-bottom: 1px solid var(--tl-warm-line);
  padding: 28px var(--tl-h-pad);
}
.tl-provider-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.tl-provider-copy { display: flex; align-items: center; gap: 18px; }
.tl-provider-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  color: var(--tl-navy-900);
}
.tl-card {
  background: #fff;
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius-lg);
}
.tl-card-pad { padding: 24px; }
.tl-promise-grid, .tl-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.tl-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.tl-process-card {
  padding: 22px 16px 24px;
  text-align: center;
}
.tl-step-num {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--tl-navy-900);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.tl-callout {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 16px 22px;
  border: 1px solid #CFDDF7;
  border-radius: var(--tl-radius-lg);
  background: #EAF1FF;
  color: var(--tl-navy-900);
  font-size: 14px;
  font-weight: 600;
}
.tl-dark-band {
  background: var(--tl-navy-900);
  color: #fff;
}
.tl-dark-band .tl-copy { color: rgba(255,255,255,0.78); }
.tl-form-shell {
  max-width: 860px;
  margin: 0 auto;
}
.tl-aud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.tl-aud-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 15px;
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  background: #fff;
  color: var(--tl-text);
  font-family: var(--tl-sans);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.tl-aud-opt.is-active {
  background: var(--tl-navy-900);
  color: #fff;
  border-color: var(--tl-navy-900);
}
.tl-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.tl-form-grid.hidden { display: none; }
.tl-field { display: flex; flex-direction: column; gap: 6px; }
.tl-field.full { grid-column: 1 / -1; }
.tl-field label { color: var(--tl-text); font-size: 13px; font-weight: 700; }
.tl-field .req { color: var(--tl-blue-600); }
.tl-field input, .tl-field select, .tl-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  background: #fff;
  color: var(--tl-text);
  font: 14px var(--tl-sans);
  outline: none;
}
.tl-field textarea { min-height: 108px; resize: vertical; }
.tl-field input:focus, .tl-field select:focus, .tl-field textarea:focus {
  border-color: var(--tl-blue-600);
  box-shadow: 0 0 0 3px rgba(10,108,255,0.12);
}
.tl-check-row { display: flex; flex-wrap: wrap; gap: 14px 18px; padding: 8px 0; font-size: 14px; }
.tl-check-row label { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--tl-text); }
.tl-check-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--tl-blue-600);
}
.tl-form-note { margin-top: 14px; color: var(--tl-mid); font-size: 12.5px; line-height: 1.5; text-align: center; }
.tl-form-status { min-height: 20px; margin-top: 14px; font-size: 14px; text-align: center; }
.tl-form-status.ok { color: #0F7A45; }
.tl-form-status.err { color: #B42318; }
.tl-honeypot { position: absolute; left: -9999px; opacity: 0; }
.tl-legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
}
.tl-legal-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  align-self: start;
}
.tl-legal-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  color: var(--tl-text);
  font-weight: 700;
}
.tl-legal-nav a.is-active { background: #E8EEFC; border-color: #C4D4F5; color: var(--tl-navy-900); }
.tl-legal-doc { max-width: 760px; }
.tl-legal-doc h2 { margin: 0 0 8px; color: var(--tl-navy-900); font-size: 30px; }
.tl-legal-doc h3 { margin: 28px 0 10px; color: var(--tl-navy-900); font-size: 17px; }
.tl-legal-doc p, .tl-legal-doc li { color: var(--tl-text); font-size: 15px; line-height: 1.7; }
.tl-legal-doc ul { padding-left: 20px; }
.tl-footer {
  background: var(--tl-navy-950);
  color: rgba(255,255,255,0.7);
  padding: 40px var(--tl-h-pad) 24px;
  font-size: 13px;
}
.tl-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 0.8fr 1.15fr;
  gap: 34px;
  max-width: var(--tl-max);
  margin: 0 auto 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tl-footer h4 { margin: 0 0 14px; color: #fff; font-size: 13px; }
.tl-footer ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.tl-footer a { color: rgba(255,255,255,0.7); }
.tl-footer a:hover { color: #fff; }
.tl-footer-meta { max-width: var(--tl-max); margin: 0 auto; text-align: center; color: rgba(255,255,255,0.55); font-size: 12px; }
.tl-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.tl-footer-logo img:first-child { width: 28px; height: 28px; border-radius: 6px; }
.tl-footer-logo .tl-wordmark { filter: brightness(0) invert(1); }
.tl-simple-page {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  padding: 80px var(--tl-h-pad);
  text-align: center;
}
@media (max-width: 920px) {
  .tl-nav, .tl-header-actions { display: none; }
  .tl-menu-button { display: block; }
  .tl-split, .tl-service-grid, .tl-legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .tl-tile-row, .tl-contact-grid, .tl-promise-grid, .tl-trust-grid, .tl-process, .tl-service-link-grid, .tl-guide-grid, .tl-footer-grid { grid-template-columns: 1fr !important; }
  .tl-tile-row { border-left: 0; gap: 14px; }
  .tl-tile { border: 1px solid var(--tl-line); border-radius: var(--tl-radius-lg); }
  .tl-contact-grid { gap: 24px; }
  .tl-provider-inner, .tl-provider-copy { align-items: flex-start; flex-direction: column; }
  .tl-aud { grid-template-columns: 1fr; }
  .tl-legal-nav { position: static; }
}
@media (max-width: 640px) {
  .tl-header { min-height: 64px; }
  .tl-mobile-nav { top: 64px; }
  .tl-hero, .tl-hero-content { min-height: 560px; }
  .tl-hero::after { background: linear-gradient(180deg, rgba(2,15,45,0.94), rgba(0,29,91,0.78)); }
  .tl-form-grid { grid-template-columns: 1fr; }
  .tl-callout { flex-direction: column; }
  .tl-heading { font-size: 36px; }
  .tl-contact-strip, .tl-section, .tl-section-tight { padding-top: 40px; padding-bottom: 40px; }
}
