:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5b6472;
  --line: rgba(17, 24, 39, 0.12);
  --paper: #fbfaf7;
  --panel: #ffffff;
  --mint: #14b8a6;
  --blue: #2563eb;
  --rose: #f43f5e;
  --amber: #f59e0b;
  --violet: #7c3aed;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(20, 184, 166, 0.18), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(244, 63, 94, 0.14), transparent 24%),
    linear-gradient(180deg, #fffdfa 0%, #f4f7fb 46%, #fffdfa 100%);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 253, 250, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(255, 255, 255, 0.72));
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.28);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand > span:last-child {
  background: linear-gradient(135deg, #0f172a 0%, #0f766e 62%, #111827 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #374151;
  font-size: 15px;
  font-weight: 650;
}

.topbar-actions {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.login-trigger {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.login-trigger span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 36%, #ffffff 0 17%, transparent 18%),
    radial-gradient(circle at 50% 73%, #ffffff 0 27%, transparent 28%),
    linear-gradient(135deg, #0f766e, #14b8a6);
  font-size: 0;
}

.login-trigger:hover,
.login-trigger:focus-visible {
  border-color: rgba(15, 118, 110, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(15, 118, 110, 0.18);
}

.login-trigger.is-authenticated {
  border-color: rgba(15, 118, 110, 0.26);
  color: #062f2b;
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.94), rgba(255, 255, 255, 0.92));
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.18);
}

.login-trigger.is-authenticated span {
  background:
    radial-gradient(circle at 50% 36%, #ffffff 0 17%, transparent 18%),
    radial-gradient(circle at 50% 73%, #ffffff 0 27%, transparent 28%),
    linear-gradient(135deg, #0f766e, #16a34a);
}

.auth-toast {
  position: fixed;
  top: 92px;
  right: clamp(16px, 4vw, 48px);
  z-index: 120;
  max-width: min(420px, calc(100vw - 32px));
  padding: 15px 18px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 18px;
  color: #063f38;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 253, 245, 0.96));
  box-shadow: 0 22px 56px rgba(15, 118, 110, 0.22);
  font-weight: 850;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.auth-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.account-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 126px;
  z-index: 60;
  width: min(300px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.account-menu[hidden] {
  display: none;
}

.account-menu p,
.account-menu small {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 750;
}

.account-menu strong {
  display: block;
  margin-top: 6px;
  color: #0f172a;
  font-size: 17px;
  font-weight: 950;
}

.account-menu small {
  display: block;
  margin-top: 3px;
  overflow-wrap: anywhere;
}

.account-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.account-stats span {
  display: grid;
  gap: 2px;
  padding: 10px;
  border-radius: 12px;
  color: #0f766e;
  background: #ecfdf5;
  font-size: 12px;
  font-weight: 850;
}

.account-stats b {
  color: #0f172a;
  font-size: 18px;
  line-height: 1;
}

.account-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 14px;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  font-weight: 950;
}

.account-menu-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.account-menu-links a {
  min-height: 38px;
  margin-top: 0;
  border: 1px solid rgba(15, 118, 110, 0.16);
  color: #0f766e;
  background: #ecfdf5;
  font-size: 12px;
}

.region-trigger {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(15, 118, 110, 0.3);
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #0f766e 0%, #14b8a6 48%, #16a34a 100%);
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.26);
  cursor: pointer;
  font: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.region-trigger span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  color: #0f766e;
  background: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.region-trigger strong,
.region-trigger small {
  font-size: 13px;
  line-height: 1;
}

.region-trigger strong {
  letter-spacing: 0.02em;
}

.region-trigger small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.region-trigger:hover,
.region-trigger:focus-visible {
  filter: saturate(1.08);
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(15, 118, 110, 0.32);
}

.nav-cta,
.primary-button,
.secondary-button,
.search-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.primary-button,
.search-panel button {
  color: white;
  background: #111827;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.22);
}

.nav-cta {
  padding: 0 22px;
}

.login-modal[hidden],
.region-modal[hidden] {
  display: none;
}

.login-modal,
.region-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-backdrop,
.region-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
}

.login-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.84fr);
  gap: clamp(26px, 5vw, 64px);
  width: min(1180px, 100%);
  max-height: min(700px, calc(100vh - 40px));
  overflow-y: auto;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 20%, rgba(20, 184, 166, 0.12), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f7fffb 58%, #eefdf6 100%);
  box-shadow: 0 36px 100px rgba(2, 44, 34, 0.34);
}

.login-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  color: #0f172a;
  background: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.login-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.login-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0f766e;
  font-size: 28px;
  font-weight: 950;
}

.login-brand img {
  width: 46px;
  height: 46px;
}

.login-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

.login-copy p {
  max-width: 560px;
  margin: 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}

.login-form {
  display: grid;
  gap: 11px;
  max-width: 520px;
  margin-top: 8px;
}

.login-form label {
  display: grid;
  gap: 8px;
  color: #0f172a;
  font-weight: 900;
}

.login-form input {
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 15px;
  color: #0f172a;
  background: #ffffff;
  font: inherit;
}

.login-form button {
  min-height: 58px;
  border: 0;
  border-radius: 15px;
  color: white;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  box-shadow: 0 18px 38px rgba(15, 118, 110, 0.26);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.login-divider {
  display: grid;
  max-width: 520px;
  place-items: center;
  color: #64748b;
  font-weight: 800;
}

.login-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
}

.login-socials button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 14px;
  color: #0f172a;
  background: #e8f3ef;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.login-socials button:hover,
.login-socials button:focus-visible {
  border-color: rgba(15, 118, 110, 0.32);
  background: #f8fffc;
  transform: translateY(-1px);
}

.login-socials button span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #0f172a;
  font-size: 14px;
  font-weight: 950;
}

.login-socials button:first-child span {
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.login-socials button:nth-child(2) span {
  background: #0f172a;
}

.login-socials button:nth-child(3) span {
  background: #1877f2;
}

.provider-status[hidden] {
  display: none;
}

.provider-status {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  max-width: 520px;
  padding: 14px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.95), rgba(255, 255, 255, 0.9));
}

.provider-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  font-weight: 950;
}

.provider-status strong {
  display: block;
  color: #0f172a;
  font-size: 16px;
}

.provider-status p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.remember-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
  font-weight: 800;
}

.remember-row input {
  width: 22px;
  height: 22px;
  accent-color: #0f766e;
}

.login-copy .login-note {
  max-width: 560px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}

.login-copy .login-note a {
  color: #0f766e;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.login-visual {
  display: grid;
  align-items: center;
}

.login-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), transparent 34%),
    radial-gradient(circle at 78% 24%, rgba(20, 184, 166, 0.32), transparent 18%),
    linear-gradient(145deg, #0f172a 0%, #0f766e 54%, #dffcf1 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 24px 70px rgba(15, 23, 42, 0.22);
}

.login-map::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.map-route {
  position: absolute;
  inset: 84px 54px 120px;
  border: 3px solid rgba(255, 255, 255, 0.42);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
}

.map-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 4px solid #ffffff;
  border-radius: 999px;
  background: #f43f5e;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.16);
}

.dot-one {
  left: 82px;
  top: 122px;
}

.dot-two {
  right: 92px;
  top: 204px;
  background: #14b8a6;
}

.dot-three {
  left: 45%;
  bottom: 118px;
  background: #f59e0b;
}

.saved-card,
.alert-card {
  position: absolute;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
}

.saved-card {
  left: 28px;
  bottom: 32px;
  width: 220px;
}

.alert-card {
  top: 42px;
  right: 28px;
  width: 170px;
}

.saved-card small,
.alert-card small {
  display: block;
  color: #0f766e;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.saved-card strong,
.alert-card strong {
  display: block;
  margin-top: 5px;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.1;
}

.saved-card span {
  display: block;
  margin-top: 7px;
  color: #64748b;
  font-weight: 800;
}

.region-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow-y: auto;
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 0%, rgba(20, 184, 166, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fffc);
  box-shadow: 0 34px 90px rgba(2, 44, 34, 0.32);
}

.region-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 28px 16px;
}

.region-head span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-head h2 {
  margin: 7px 0 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.03;
  letter-spacing: 0;
}

.region-close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  color: #0f172a;
  background: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.region-form {
  display: grid;
  gap: 16px;
  padding: 0 28px 28px;
}

.region-field {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.region-field span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #10201d;
  font-weight: 900;
}

.region-field i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, #0f766e, #22c55e);
  font-style: normal;
  font-size: 13px;
}

.region-field small {
  color: #5b6472;
  font-size: 14px;
  line-height: 1.55;
}

.region-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 14px;
  color: #111827;
  background: #ffffff;
  font: inherit;
  font-weight: 750;
}

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

.region-actions button {
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.region-actions button:first-child {
  color: #ffffff;
  background: #0f172a;
}

.region-actions button:last-child {
  color: #0f172a;
  background: #e8f3ef;
}

.main-shell {
  display: block;
  width: 100%;
}

.content-flow {
  width: 100%;
  min-width: 0;
}

.side-categories {
  position: sticky;
  top: 75px;
  z-index: 8;
  display: grid;
  gap: 8px;
  max-height: calc(100vh - 75px);
  padding: 18px 14px 20px clamp(18px, 2.2vw, 28px);
  overflow-y: auto;
  border-right: 1px solid rgba(20, 184, 166, 0.16);
  background:
    linear-gradient(180deg, rgba(240, 253, 244, 0.96), rgba(255, 255, 255, 0.96));
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 118, 110, 0.24) transparent;
}

.side-categories .eyebrow {
  margin: 0 0 4px;
}

.side-categories::-webkit-scrollbar {
  width: 6px;
}

.side-categories::-webkit-scrollbar-track {
  background: transparent;
}

.side-categories::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.22);
}

.side-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 62px;
  padding: 10px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 8px;
  color: #0f2f29;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.side-card:hover {
  border-color: rgba(20, 184, 166, 0.38);
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.12);
  transform: translateY(-1px);
}

.side-card .hub-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 18px;
}

.side-card strong {
  display: block;
  font-size: 14px;
}

.side-card small {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.3;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(26px, 4vw, 48px) clamp(18px, 3vw, 44px) 36px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(46px, 5.8vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-button,
.secondary-button {
  padding: 0 26px;
}

.secondary-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #374151;
  background: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 750;
}

.hero-visual {
  min-height: 500px;
  perspective: 1200px;
}

.orbit-scene {
  position: relative;
  width: 100%;
  height: min(56vw, 560px);
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36)),
    radial-gradient(circle at 50% 46%, rgba(37, 99, 235, 0.18), transparent 38%);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotateX(8deg) rotateY(-10deg);
  transform-style: preserve-3d;
}

.orbit-scene::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 999px;
  background:
    conic-gradient(from 210deg, rgba(20, 184, 166, 0.18), rgba(37, 99, 235, 0.12), rgba(244, 63, 94, 0.14), rgba(20, 184, 166, 0.18));
  filter: blur(18px);
}

.globe {
  position: absolute;
  inset: 18% 16%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.98), transparent 20%),
    radial-gradient(circle at 54% 50%, #38bdf8 0%, #2563eb 38%, #0f172a 100%);
  box-shadow:
    inset -36px -44px 70px rgba(15, 23, 42, 0.48),
    0 34px 90px rgba(37, 99, 235, 0.32);
  transform: translateZ(44px);
}

.globe::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 42% 58% 48% 52%;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.84), rgba(245, 158, 11, 0.8)),
    radial-gradient(circle, rgba(255, 255, 255, 0.38), transparent 62%);
  opacity: 0.92;
  clip-path: polygon(8% 28%, 34% 14%, 57% 20%, 78% 40%, 63% 52%, 82% 74%, 42% 84%, 18% 64%);
}

.globe-line {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.line-a {
  transform: rotate(18deg);
}

.line-b {
  transform: rotate(78deg) scaleX(0.52);
}

.line-c {
  transform: rotate(-32deg) scaleY(0.62);
}

.route-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 10px rgba(244, 63, 94, 0.22);
}

.dot-a {
  top: 28%;
  left: 62%;
}

.dot-b {
  top: 58%;
  left: 35%;
  background: var(--amber);
}

.dot-c {
  top: 42%;
  left: 74%;
  background: var(--mint);
}

.orbit-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 3px;
  min-width: 154px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.18);
  backdrop-filter: blur(14px);
  transform: translateZ(90px);
}

.orbit-card span,
.orbit-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.orbit-card strong {
  font-size: 20px;
}

.card-flight {
  top: 14%;
  left: 8%;
}

.card-hotel {
  right: 8%;
  top: 24%;
}

.card-news {
  left: 16%;
  bottom: 12%;
}

.orbit-ring {
  position: absolute;
  border: 1px dashed rgba(17, 24, 39, 0.18);
  border-radius: 50%;
}

.ring-one {
  inset: 13% 8%;
  transform: rotate(-16deg);
}

.ring-two {
  inset: 26% 14%;
  transform: rotate(28deg);
}

.search-band,
.category-section,
.hub-section,
.live-section,
.deals-section,
.insight-section,
.model-section {
  padding: clamp(54px, 7vw, 86px) clamp(18px, 4vw, 56px);
}

.search-band {
  background: #101827;
  color: white;
}

.ad-board {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0;
  padding: 22px 24px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.95), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at right, rgba(20, 184, 166, 0.16), transparent 34%);
  box-shadow: 0 18px 44px rgba(15, 118, 110, 0.08);
}

.ad-board span {
  color: #ff3f6c;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ad-board strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.12;
}

.ad-board p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.ad-board a {
  flex: 0 0 auto;
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  background: #111827;
  font-weight: 950;
}

.home-ad-board {
  margin: 0 clamp(18px, 6vw, 104px) 28px;
}

.member-dashboard {
  margin: 0 clamp(18px, 6vw, 104px) 34px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 18%, rgba(20, 184, 166, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 253, 245, 0.86));
  box-shadow: 0 24px 70px rgba(15, 118, 110, 0.1);
}

.member-dashboard[hidden] {
  display: none;
}

.member-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.member-head h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.member-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 650;
}

.member-head > a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background: #111827;
  font-weight: 950;
}

.member-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.member-summary-grid article {
  padding: 16px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.member-summary-grid span {
  display: block;
  color: #0f766e;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  font-weight: 950;
}

.member-summary-grid small {
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-weight: 850;
}

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

.member-card {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.member-card span {
  color: #0f766e;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.member-card strong {
  margin-top: 12px;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.18;
}

.member-card p {
  margin: 10px 0 16px;
  color: #64748b;
  line-height: 1.5;
  font-weight: 700;
}

.member-card button {
  align-self: end;
  min-height: 42px;
  margin-top: auto;
  border: 0;
  border-radius: 12px;
  color: #063f38;
  background: #ccfbf1;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.member-card button.is-saved {
  color: #ffffff;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.18);
}

.member-activity {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.member-activity > div span {
  color: #ff3f6c;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.member-activity > div strong {
  display: block;
  margin-top: 8px;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.16;
}

.member-activity > div button {
  min-height: 38px;
  margin-top: 14px;
  padding: 0 12px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 12px;
  color: #0f766e;
  background: #ecfdf5;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.member-activity > div button:disabled {
  color: #94a3b8;
  background: #f1f5f9;
  cursor: not-allowed;
}

.member-activity ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.member-activity li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  color: #64748b;
  background: #f8fffc;
  font-weight: 750;
}

.member-activity li:only-child {
  justify-content: flex-start;
  color: #64748b;
  border: 1px dashed rgba(15, 118, 110, 0.18);
  background: rgba(236, 253, 245, 0.58);
}

.member-activity li strong {
  color: #0f172a;
}

.member-activity li span {
  text-align: right;
  font-size: 13px;
}

.combo-section {
  padding: 10px clamp(18px, 4vw, 56px) 54px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(236, 253, 245, 0.72)),
    #f8fffc;
}

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

.combo-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(15, 118, 110, 0.08);
}

.combo-card > div:first-child span {
  color: #ff3f6c;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.combo-card > div:first-child strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.1;
}

.combo-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.combo-links a {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 132px;
  padding: 14px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fffb);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.combo-links a:hover {
  border-color: rgba(20, 184, 166, 0.42);
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.12);
  transform: translateY(-2px);
}

.combo-links span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, #0f766e, #2dd4bf);
  font-size: 16px;
  font-weight: 900;
}

.combo-links strong {
  color: #0f2f29;
  font-size: 15px;
  line-height: 1.15;
}

.combo-links small {
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.live-section {
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.94), rgba(255, 255, 255, 0.98)),
    #f7fffb;
}

.live-intro {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.source-status-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(15, 118, 110, 0.08);
}

.source-status-panel h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.source-status-panel p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.source-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.source-status-grid span {
  padding: 12px 13px;
  border: 1px solid rgba(20, 184, 166, 0.14);
  border-radius: 8px;
  color: #134e4a;
  background: #ecfdf5;
  font-weight: 850;
}

.source-status-grid span.waiting {
  color: #92400e;
  background: #fffbeb;
}

.live-card {
  display: grid;
  gap: 18px;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(15, 118, 110, 0.08);
}

.live-card-head {
  display: flex;
  gap: 14px;
  align-items: center;
}

.live-card-head h3 {
  margin: 0 0 4px;
  font-size: 21px;
}

.live-card-head p,
.live-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.live-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  color: white;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #0f766e, #34d399);
  font-size: 23px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(20, 184, 166, 0.22);
}

.weather-card > strong {
  display: block;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
}

.rate-list {
  display: grid;
  gap: 10px;
}

.rate-list span,
.news-list a {
  display: block;
  padding: 11px 13px;
  border: 1px solid rgba(20, 184, 166, 0.13);
  border-radius: 8px;
  color: #134e4a;
  background: #ecfdf5;
  font-weight: 850;
  line-height: 1.35;
}

.news-list {
  display: grid;
  gap: 9px;
}

.news-list a {
  color: #0f2f29;
}

.search-band .eyebrow {
  color: #2dd4bf;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-copy {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.search-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr)) auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
}

.search-panel label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 850;
}

.search-panel input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 0;
  border-radius: 16px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  outline: none;
}

.search-panel input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-panel button {
  align-self: end;
  min-height: 54px;
  padding: 0 22px;
  color: #111827;
  background: #f8fafc;
  box-shadow: none;
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.quick-filters button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.result-shell {
  margin-top: 20px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.result-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.result-tabs button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.result-tabs button.active {
  color: #111827;
  background: #f8fafc;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.result-card {
  display: grid;
  gap: 14px;
  min-height: 230px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.result-card span,
.result-card small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
}

.result-card h3 {
  margin: 8px 0 6px;
  color: white;
  font-size: 24px;
}

.result-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.result-card strong {
  color: #ccfbf1;
}

.result-card a {
  align-self: end;
  justify-self: start;
  padding: 9px 12px;
  border-radius: 999px;
  color: #111827;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 900;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 224px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.08);
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  font-size: 21px;
  font-weight: 900;
}

.service-card h3,
.deal-card h3,
.timeline h3 {
  margin: 18px 0 8px;
  font-size: 22px;
}

.service-card p,
.deal-card p,
.timeline p,
.insight-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.hub-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.94), rgba(255, 255, 255, 0.98)),
    #f0fdf4;
}

.hub-sidebar {
  position: sticky;
  top: 96px;
  padding: 28px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.hub-sidebar p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.hub-card-list {
  display: grid;
  gap: 14px;
}

.hub-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 18px 22px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  color: #0f2f29;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 253, 245, 0.88));
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hub-card:hover {
  border-color: rgba(20, 184, 166, 0.42);
  box-shadow: 0 20px 48px rgba(15, 118, 110, 0.14);
  transform: translateY(-2px);
}

.hub-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  color: white;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #0f766e, #34d399);
  font-size: 25px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(20, 184, 166, 0.24);
}

.hub-card strong {
  display: block;
  font-size: 20px;
}

.hub-card small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-weight: 700;
  line-height: 1.4;
}

.deal-board {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(210px, auto);
  gap: 16px;
}

.deal-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.08);
}

.deal-card.featured {
  grid-row: span 2;
  color: white;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.72), rgba(15, 23, 42, 0.92)),
    radial-gradient(circle at 24% 18%, rgba(20, 184, 166, 0.8), transparent 34%),
    radial-gradient(circle at 86% 72%, rgba(244, 63, 94, 0.68), transparent 30%),
    #111827;
}

.deal-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.deal-tag {
  align-self: flex-start;
  padding: 7px 11px;
  border-radius: 999px;
  color: #0f766e;
  background: #ccfbf1;
  font-size: 12px;
  font-weight: 900;
}

.insight-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  background: #eef6f4;
}

.partner-section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 78px);
  background: #fffdfa;
}

.guide-section,
.guides-layout,
.guide-detail-layout {
  padding: clamp(54px, 7vw, 86px) clamp(18px, 5vw, 78px);
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.94), rgba(255, 255, 255, 0.98)),
    #f7fffb;
}

.guide-strip,
.guides-grid,
.guide-detail-grid {
  display: grid;
  gap: 16px;
}

.guide-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-strip a,
.guide-card {
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(15, 118, 110, 0.08);
}

.guide-strip a {
  min-height: 96px;
  padding: 22px;
  color: #0f2f29;
  font-size: 20px;
  font-weight: 900;
}

.guides-hero,
.guide-detail-hero {
  max-width: 920px;
  margin-bottom: 28px;
}

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

.guide-card {
  display: grid;
  gap: 16px;
  min-height: 330px;
  padding: 24px;
}

.guide-card h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.guide-card p {
  color: var(--muted);
  line-height: 1.62;
}

.guide-card > a {
  align-self: end;
  justify-self: start;
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  background: #111827;
  font-weight: 900;
}

.guide-intents {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.guide-intents span {
  padding: 9px 11px;
  border-radius: 999px;
  color: #134e4a;
  background: #ecfdf5;
  font-size: 13px;
  font-weight: 850;
}

.guide-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-step-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.partner-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.08);
}

.partner-grid span {
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
}

.partner-grid strong {
  display: block;
  margin-top: 14px;
  font-size: 22px;
  line-height: 1.18;
}

.partner-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.insight-stack {
  display: grid;
  gap: 14px;
  perspective: 900px;
}

.mini-panel {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.09);
  transform: rotateY(-8deg);
}

.mini-panel:nth-child(2) {
  transform: translateX(24px) rotateY(-8deg);
}

.mini-panel:nth-child(3) {
  transform: translateX(48px) rotateY(-8deg);
}

.mini-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.mini-panel strong {
  font-size: 24px;
}

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

.timeline article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.timeline span {
  color: var(--rose);
  font-weight: 950;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 78px);
  color: white;
  background: #111827;
}

.footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.legal-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(52, 211, 153, 0.16), transparent 26%),
    linear-gradient(180deg, #f7fffb 0%, #ffffff 48%, #effdf5 100%);
}

.legal-layout {
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 78px);
}

.legal-layout h1 {
  font-size: clamp(44px, 5vw, 72px);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.legal-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(15, 118, 110, 0.08);
}

.legal-grid h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.legal-grid p {
  color: var(--muted);
  line-height: 1.66;
}

.category-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(52, 211, 153, 0.18), transparent 26%),
    linear-gradient(180deg, #f7fffb 0%, #ffffff 48%, #effdf5 100%);
}

.category-detail {
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 78px) 72px;
}

.category-hero-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
}

.category-hero-detail h1 {
  font-size: clamp(48px, 6vw, 86px);
}

.category-visual-card {
  display: grid;
  gap: 12px;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(220, 252, 231, 0.88));
  box-shadow: var(--shadow);
}

.category-big-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 28px;
  color: white;
  background: linear-gradient(135deg, #0f766e, #34d399);
  font-size: 44px;
  box-shadow: 0 20px 42px rgba(20, 184, 166, 0.28);
}

.category-visual-card strong {
  margin-top: auto;
  font-size: 28px;
}

.category-visual-card small {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
}

.category-workspace {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.category-menu {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.category-menu a {
  padding: 12px 14px;
  border-radius: 8px;
  color: #134e4a;
  font-weight: 850;
}

.category-menu a.active,
.category-menu a:hover {
  color: white;
  background: #0f766e;
}

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

.detail-panel {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(15, 118, 110, 0.08);
}

.detail-panel.wide {
  grid-column: 1 / -1;
}

.detail-panel h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.detail-panel p,
.detail-panel li {
  color: var(--muted);
  line-height: 1.65;
}

.detail-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.step-list div {
  min-height: 138px;
  padding: 18px;
  border-radius: 8px;
  background: #ecfdf5;
}

.step-list span {
  color: var(--rose);
  font-weight: 950;
}

.step-list strong {
  display: block;
  margin-top: 12px;
  line-height: 1.3;
}

@media (max-width: 1080px) {
  .login-panel {
    grid-template-columns: 1fr;
  }

  .login-visual {
    display: none;
  }

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

  .member-head {
    align-items: start;
    flex-direction: column;
  }

  .member-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .member-activity {
    grid-template-columns: 1fr;
  }

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

  .side-categories {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 184, 166, 0.16);
  }

  .side-categories .eyebrow {
    grid-column: 1 / -1;
  }

  .hero,
  .hub-section,
  .insight-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .source-status-panel {
    grid-template-columns: 1fr;
  }

  .hub-sidebar {
    position: static;
  }

  .search-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-panel button {
    grid-column: span 2;
  }

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

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

  .guide-strip,
  .guides-grid,
  .guide-detail-grid {
    grid-template-columns: 1fr;
  }

  .category-hero-detail,
  .category-workspace,
  .detail-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .category-menu {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: center;
    gap: 12px;
  }

  .topbar-actions {
    gap: 8px;
  }

  .account-menu {
    right: 0;
  }

  .member-summary-grid {
    grid-template-columns: 1fr;
  }

  .member-activity li {
    align-items: start;
    flex-direction: column;
  }

  .member-activity li span {
    text-align: left;
  }

  .login-trigger {
    width: 46px;
    padding: 0;
    justify-content: center;
  }

  .login-trigger strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .region-trigger {
    min-height: 42px;
    padding: 0 11px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .login-modal,
  .region-modal {
    padding: 12px;
  }

  .login-panel {
    padding: 26px 18px;
    border-radius: 20px;
  }

  .login-copy h2 {
    font-size: 34px;
  }

  .login-copy p {
    font-size: 16px;
  }

  .login-socials {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
    overflow: hidden;
    width: 100%;
  }

  .side-categories {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .side-card {
    min-height: 64px;
  }

  .ad-board {
    display: grid;
    padding: 18px;
  }

  .ad-board a {
    justify-self: start;
  }

  .combo-section {
    padding: 12px 16px 42px;
  }

  .combo-card {
    padding: 16px;
  }

  .combo-card > div:first-child strong {
    font-size: 22px;
  }

  .combo-links {
    grid-template-columns: repeat(3, minmax(142px, 1fr));
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .combo-links a {
    min-width: 142px;
    min-height: 112px;
    grid-template-columns: 1fr;
    align-items: start;
    scroll-snap-align: start;
  }

  .combo-links small {
    grid-column: auto;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 48px);
    min-width: 0;
  }

  h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .hero-text {
    width: 100%;
    max-width: 330px;
    font-size: 16px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .orbit-scene {
    height: 430px;
    min-height: 430px;
    border-radius: 24px;
    transform: rotateX(5deg) rotateY(-5deg);
  }

  .orbit-card {
    min-width: 116px;
    padding: 13px;
  }

  .orbit-card strong {
    font-size: 17px;
  }

  .card-flight {
    left: 6%;
  }

  .card-hotel {
    right: 12%;
  }

  .card-news {
    left: 10%;
  }

  .search-panel,
  .result-grid,
  .category-grid,
  .partner-grid,
  .guide-strip,
  .guides-grid,
  .live-grid,
  .deal-board,
  .timeline {
    grid-template-columns: 1fr;
  }

  .search-panel button {
    grid-column: auto;
  }

  .deal-card.featured {
    grid-row: auto;
  }

  .mini-panel,
  .mini-panel:nth-child(2),
  .mini-panel:nth-child(3) {
    transform: none;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

@media (prefers-reduced-motion: no-preference) {
  .globe {
    animation: floatGlobe 7s ease-in-out infinite;
  }

  .orbit-card {
    animation: floatCard 6s ease-in-out infinite;
  }

  .card-hotel {
    animation-delay: -1.6s;
  }

  .card-news {
    animation-delay: -3s;
  }
}

@keyframes floatGlobe {
  0%,
  100% {
    transform: translateZ(44px) translateY(0);
  }

  50% {
    transform: translateZ(54px) translateY(-12px);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateZ(90px) translateY(0);
  }

  50% {
    transform: translateZ(100px) translateY(-10px);
  }
}

.universal-search {
  display: grid;
  grid-template-columns: minmax(140px, 0.82fr) minmax(180px, 1.18fr);
  gap: 10px;
  max-width: 600px;
  margin-top: 24px;
  padding: 10px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.1);
}

.universal-search label,
.category-search-form label {
  display: grid;
  gap: 7px;
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
}

.universal-search input,
.universal-search select,
.category-search-form input,
.results-search input,
.results-search select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 14px;
  color: var(--ink);
  background: white;
  font: inherit;
  outline: none;
}

.universal-search button,
.category-search-form button,
.results-search button {
  align-self: end;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  color: white;
  background: #111827;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.universal-search button {
  align-self: end;
}

.category-search-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
  max-width: 560px;
  margin-top: 28px;
  padding: 10px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.results-page {
  background:
    radial-gradient(circle at 16% 8%, rgba(52, 211, 153, 0.16), transparent 26%),
    linear-gradient(180deg, #f7fffb 0%, #ffffff 45%, #effdf5 100%);
}

.results-layout {
  padding: clamp(34px, 5vw, 70px) clamp(18px, 5vw, 78px) 76px;
}

.results-head {
  max-width: 980px;
  margin-bottom: 28px;
}

.results-search {
  display: grid;
  grid-template-columns: 200px minmax(220px, 1fr) auto;
  gap: 10px;
  max-width: 820px;
  margin-top: 28px;
  padding: 10px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
}

.results-body {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.results-live-panel {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 0 22px;
  padding: 22px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(236, 253, 245, 0.9));
  box-shadow: 0 18px 48px rgba(15, 118, 110, 0.1);
}

.results-live-panel h2 {
  margin: 0 0 4px;
  font-size: clamp(24px, 3vw, 36px);
}

.results-live-panel p {
  margin: 0;
  color: var(--muted);
}

.filter-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 13px;
  padding: 20px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.filter-panel h2 {
  font-size: 26px;
}

.filter-panel label {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #334155;
  font-weight: 750;
}

.trust-note {
  margin-top: 8px;
  padding: 14px;
  border-radius: 8px;
  color: #134e4a;
  background: #ecfdf5;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

.secondary-note {
  color: #475569;
  background: #f8fafc;
}

.results-list {
  display: grid;
  gap: 14px;
}

.search-result-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(15, 118, 110, 0.08);
}

.result-rank {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, #0f766e, #34d399);
  font-weight: 950;
}

.search-result-card h2 {
  margin: 12px 0 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.search-result-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.result-meta span {
  padding: 8px 11px;
  border-radius: 999px;
  color: #134e4a;
  background: #ecfdf5;
  font-size: 13px;
  font-weight: 850;
}

.search-result-card a {
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  background: #111827;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .universal-search,
  .results-search {
    grid-template-columns: 1fr 1fr;
  }

  .universal-search button,
  .results-search button {
    grid-column: 1 / -1;
  }

  .results-body {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .universal-search,
  .category-search-form,
  .results-search,
  .search-result-card {
    grid-template-columns: 1fr;
  }

.category-search-form button,
.search-result-card a {
    width: 100%;
  }
}

.category-live-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 16px;
  padding: 24px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(236, 253, 245, 0.9));
  box-shadow: 0 18px 48px rgba(15, 118, 110, 0.1);
}

.category-live-panel h2 {
  margin: 0 0 4px;
  font-size: clamp(24px, 3vw, 38px);
}

.category-live-panel p {
  margin: 0;
  color: var(--muted);
}

.category-live-body {
  display: grid;
  gap: 12px;
  color: #134e4a;
  font-weight: 800;
}

.category-live-number {
  display: block;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
}

.category-live-rates {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-live-rates span,
.category-live-body > span,
.category-live-news a {
  display: block;
  padding: 11px 13px;
  border: 1px solid rgba(20, 184, 166, 0.13);
  border-radius: 8px;
  color: #134e4a;
  background: #ecfdf5;
  line-height: 1.4;
}

.category-live-news {
  display: grid;
  gap: 9px;
}

.category-live-body > a {
  justify-self: start;
  padding: 11px 15px;
  border-radius: 999px;
  color: white;
  background: #111827;
  font-weight: 900;
}

.partner-action-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 16px;
  padding: 24px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 244, 0.92));
  box-shadow: 0 18px 48px rgba(15, 118, 110, 0.08);
}

.partner-action-panel h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
}

.partner-action-panel p:not(.eyebrow) {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.partner-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.partner-link-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(20, 184, 166, 0.17);
  border-radius: 8px;
  color: #0f2f29;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-link-card:hover {
  border-color: rgba(20, 184, 166, 0.42);
  box-shadow: 0 18px 42px rgba(15, 118, 110, 0.13);
  transform: translateY(-2px);
}

.partner-link-card span,
.partner-link-card small {
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
}

.partner-link-card strong {
  font-size: 22px;
  line-height: 1.15;
}

.travel-hub,
.source-hub,
.newspaper-hub {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
  padding: 24px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 253, 245, 0.92));
  box-shadow: 0 18px 48px rgba(15, 118, 110, 0.08);
}

.travel-hub[hidden],
.source-hub[hidden],
.newspaper-hub[hidden] {
  display: none;
}

.travel-head,
.source-head,
.newspaper-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 18px;
  align-items: end;
}

.travel-head h2,
.source-head h2,
.newspaper-head h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.travel-head p:not(.eyebrow),
.travel-summary p,
.source-head p:not(.eyebrow),
.source-summary p,
.newspaper-head p:not(.eyebrow),
.newspaper-summary p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.travel-search,
.source-search,
.newspaper-search {
  display: grid;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
}

.travel-search input,
.source-search input,
.newspaper-search input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 14px;
  color: var(--ink);
  background: white;
  font: inherit;
  outline: none;
}

.travel-tabs,
.source-tabs,
.newspaper-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.newspaper-tabs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.source-tabs[hidden] {
  display: none;
}

.travel-tabs button,
.source-tabs button,
.newspaper-tabs button {
  min-height: 48px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 8px;
  color: #134e4a;
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.travel-tabs button.active,
.travel-tabs button:hover,
.source-tabs button.active,
.source-tabs button:hover,
.newspaper-tabs button.active,
.newspaper-tabs button:hover {
  color: white;
  border-color: #0f766e;
  background: #0f766e;
}

.travel-summary,
.source-summary,
.newspaper-summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(20, 184, 166, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.travel-summary-actions,
.source-summary-actions,
.newspaper-summary-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
  align-self: start;
}

.travel-summary span,
.travel-summary small,
.travel-card span,
.travel-card small,
.source-summary span,
.source-summary small,
.source-card span,
.source-card small,
.newspaper-summary span,
.newspaper-summary small,
.newspaper-card span,
.newspaper-card small {
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
}

.travel-summary strong,
.source-summary strong,
.newspaper-summary strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.travel-summary small,
.source-summary small,
.newspaper-summary small {
  padding: 8px 10px;
  border-radius: 999px;
  color: #0f766e;
  background: #ccfbf1;
  white-space: nowrap;
}

.travel-grid,
.source-grid,
.newspaper-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.travel-card,
.source-card,
.newspaper-card {
  display: grid;
  gap: 8px;
  min-height: 152px;
  padding: 18px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 8px;
  color: #0f2f29;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.travel-card:hover,
.source-card:hover,
.newspaper-card:hover {
  border-color: rgba(20, 184, 166, 0.42);
  box-shadow: 0 18px 42px rgba(15, 118, 110, 0.13);
  transform: translateY(-2px);
}

.travel-card strong,
.source-card strong,
.newspaper-card strong {
  font-size: 21px;
  line-height: 1.16;
}

.travel-card em,
.source-card em,
.newspaper-card em {
  align-self: end;
  justify-self: start;
  padding: 8px 10px;
  border-radius: 999px;
  color: white;
  background: #111827;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.source-city-card,
.newspaper-city-card {
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.source-city-card em,
.newspaper-city-card em {
  background: #0f766e;
}

.source-back,
.newspaper-back {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 999px;
  color: #134e4a;
  background: white;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.source-back:hover,
.newspaper-back:hover {
  color: white;
  border-color: #0f766e;
  background: #0f766e;
}

.travel-empty,
.source-empty,
.newspaper-empty {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px dashed rgba(20, 184, 166, 0.28);
  border-radius: 8px;
  color: #134e4a;
  background: #ecfdf5;
  font-weight: 850;
}

@media (max-width: 1080px) {
  .partner-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .travel-head,
  .travel-grid,
  .source-head,
  .source-grid,
  .newspaper-head,
  .newspaper-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .partner-link-grid {
    grid-template-columns: 1fr;
  }

  .travel-head,
  .travel-tabs,
  .travel-summary,
  .travel-grid,
  .source-head,
  .source-tabs,
  .source-summary,
  .source-grid,
  .newspaper-head,
  .newspaper-tabs,
  .newspaper-summary,
  .newspaper-grid {
    grid-template-columns: 1fr;
  }

  .travel-summary,
  .source-summary,
  .newspaper-summary {
    display: grid;
  }

  .travel-summary-actions,
  .source-summary-actions,
  .newspaper-summary-actions {
    justify-items: start;
  }
}
