.tp-landing {
  --landing-green: #079879;
  --landing-green-hover: #067d65;
  --landing-ink: #111827;
  --landing-muted: #667085;
  --landing-border: #e7eceb;
  --landing-mint: #eaf8f4;
  --landing-soft: #f7faf9;
  --landing-white: #ffffff;
  --landing-shadow: 0 24px 60px rgba(19, 54, 45, 0.1);
  position: relative;
  z-index: 100;
  min-height: 100vh;
  overflow: clip;
  background: var(--landing-white);
  color: var(--landing-ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

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

.tp-landing a { color: inherit; text-decoration: none; }
.tp-landing button,
.tp-landing input,
.tp-landing textarea { font: inherit; }
.tp-landing button { color: inherit; }
.tp-landing svg { width: 20px; height: 20px; flex: 0 0 auto; }

body.tp-landing-active {
  margin: 0;
  background: #ffffff;
}

body.tp-landing-active > .page-noise,
body.tp-landing-active > .ambient,
body.tp-landing-active > .site-header,
body.tp-landing-active > main#top,
body.tp-landing-active > .profile-panel,
body.tp-landing-active > .my-trippulse-panel,
body.tp-landing-active > .modal-backdrop,
body.tp-landing-active > footer:not(.tp-landing-footer) {
  display: none !important;
}

body.tp-landing-active > #landingRoot ~ .site-header,
body.tp-landing-active > #landingRoot ~ main#top {
  display: none !important;
}

.tp-landing-container {
  width: min(100% - 48px, var(--tp-content-max, 1180px));
  margin-inline: auto;
}

.tp-landing-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 82px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  transition: border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.tp-landing-header.is-scrolled {
  border-color: rgba(231, 236, 235, 0.9);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.045);
  backdrop-filter: blur(16px);
}

.tp-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.tp-landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  letter-spacing: -0.045em;
}

.tp-landing-brand-name {
  color: var(--landing-ink);
  font-size: 23px;
  font-weight: 800;
}

.tp-landing-brand-ai {
  display: inline-grid;
  min-width: 34px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  background: var(--landing-green);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.tp-landing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 32px);
  margin-inline: auto;
}

.tp-landing-nav a {
  position: relative;
  padding-block: 10px;
  color: #344054;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.tp-landing-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 4px;
  left: 50%;
  height: 2px;
  border-radius: 2px;
  background: var(--landing-green);
  transition: right 200ms ease, left 200ms ease;
}

.tp-landing-nav a:hover::after,
.tp-landing-nav a:focus-visible::after { right: 0; left: 0; }

.tp-header-actions { display: flex; align-items: center; gap: 8px; }

.tp-language,
.tp-header-icon,
.tp-menu-button {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.tp-language { gap: 4px; padding: 0 8px; font-size: 12px; font-weight: 750; }
.tp-language svg { width: 14px; height: 14px; }
.tp-header-icon:hover,
.tp-language:hover,
.tp-menu-button:hover { background: var(--landing-soft); color: var(--landing-green); }

.tp-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}

.tp-button:hover { transform: translateY(-2px); }
.tp-landing .tp-button-primary { background: var(--landing-green); color: #ffffff; box-shadow: 0 10px 24px rgba(7, 152, 121, 0.2); }
.tp-landing .tp-button-primary:hover { background: var(--landing-green-hover); color: #ffffff; box-shadow: 0 14px 30px rgba(7, 152, 121, 0.25); }
.tp-button-secondary { border-color: var(--landing-border); background: #ffffff; color: #344054; }
.tp-button-secondary:hover { border-color: #badbd2; background: var(--landing-soft); }
.tp-landing .tp-button-dark { min-height: 52px; padding-inline: 22px; background: var(--landing-ink); color: #ffffff; }
.tp-landing .tp-button-dark:hover { background: #263246; color: #ffffff; }
.tp-menu-button { display: none; min-width: 44px; min-height: 44px; margin-left: auto; border: 1px solid var(--landing-border); background: #ffffff; }

.tp-landing :where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 3px solid rgba(7, 152, 121, 0.22);
  outline-offset: 3px;
}

.tp-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(760px, calc(100svh - 82px));
  align-items: center;
  overflow: hidden;
  padding: 30px 0 34px;
  background: #f7faf9;
}

.tp-hero-background,
.tp-hero-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tp-hero-background {
  z-index: -2;
  overflow: hidden;
  background: #dce8e4 url("../../assets/landing/hero-mediterranean.webp") 50% 57% / cover no-repeat;
}

.tp-hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 58%;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 900ms ease;
}

.tp-hero-background.is-video-ready .tp-hero-video { opacity: 1; }

.tp-hero-wash {
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 24%, rgba(255,255,255,.58) 0%, rgba(255,255,255,.38) 42%, rgba(246,251,249,.16) 74%),
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(248,252,251,.42));
}

.tp-hero-grid {
  position: relative;
  z-index: 1;
}

.tp-hero-copy { width: min(100%, 1060px); margin-inline: auto; }
.tp-hero-intro { max-width: 760px; margin-inline: auto; text-align: center; }
.tp-eyebrow {
  margin: 0 0 18px;
  color: var(--landing-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tp-hero h1,
.tp-landing h2,
.tp-landing h3,
.tp-landing p { margin-top: 0; }

.tp-hero h1 {
  max-width: 780px;
  margin: 0 auto 12px;
  font-size: clamp(40px, 3.25vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.058em;
  font-weight: 800;
  word-spacing: 0.04em;
}

.tp-hero h1 em,
.tp-decision-heading h2 em { color: var(--landing-green); font-style: normal; }

.tp-hero-lead {
  max-width: 660px;
  margin: 0 auto 13px;
  color: #4e615b;
  font-size: 15px;
  line-height: 1.6;
}

.tp-hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.tp-hero-trust span { display: inline-flex; align-items: center; gap: 7px; color: #475467; font-size: 12px; font-weight: 650; }
.tp-hero-trust svg { width: 17px; height: 17px; color: var(--landing-green); }

.tp-visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.tp-start-conversation {
  position: relative;
  z-index: 5;
  width: min(100%, 980px);
  margin: 20px auto 0;
  padding: 18px;
  border: 1px solid rgba(214, 231, 226, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(19, 54, 45, 0.16);
  backdrop-filter: blur(18px);
}

.tp-conversation-heading { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.tp-ai-avatar { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 12px; background: var(--landing-green); color: #ffffff; box-shadow: 0 8px 20px rgba(7, 152, 121, .2); }
.tp-ai-avatar svg { width: 18px; height: 18px; }
.tp-conversation-heading strong { display: block; margin-bottom: 2px; font-size: 13px; }
.tp-conversation-heading div > span { display: flex; align-items: center; gap: 6px; color: #7a8985; font-size: 10px; font-weight: 650; }
.tp-conversation-heading i { width: 7px; height: 7px; border-radius: 50%; background: #28b990; box-shadow: 0 0 0 4px rgba(40, 185, 144, .11); }

.tp-ai-first-message { padding: 14px 16px; border: 1px solid #dcefe9; border-radius: 6px 18px 18px 18px; background: linear-gradient(135deg, #effaf7, #f8fcfb); }
.tp-ai-first-message p { margin: 0; color: #304942; font-size: 12.5px; font-weight: 560; line-height: 1.62; }

.tp-profile-progress { margin: 12px 2px 11px; }
.tp-profile-progress > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 7px; }
.tp-profile-progress strong { color: #34473f; font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
.tp-profile-progress div span { color: #8a9793; font-size: 9px; }
.tp-progress-track { display: block; height: 4px; overflow: hidden; border-radius: 99px; background: #edf2f0; }
.tp-progress-track i { display: block; width: 9%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #079879, #52c8a9); }

.tp-conversation-composer { padding: 5px; border: 1px solid #dce5e2; border-radius: 17px; background: #ffffff; box-shadow: inset 0 1px 0 rgba(17, 24, 39, .02); transition: border-color 180ms ease, box-shadow 180ms ease; }
.tp-conversation-composer:focus-within { border-color: #8fd1c0; box-shadow: 0 0 0 4px rgba(7, 152, 121, .08); }
.tp-conversation-composer textarea { display: block; width: 100%; min-height: 72px; resize: vertical; padding: 11px 13px 5px; border: 0; outline: 0; background: transparent; color: var(--landing-ink); font-size: 12px; font-weight: 570; line-height: 1.55; }
.tp-conversation-composer textarea::placeholder { color: #94a09c; opacity: 1; }
.tp-composer-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 6px; }
.tp-composer-actions > span { padding-left: 6px; color: #9aa5a1; font-size: 8.5px; }
.tp-composer-actions .tp-button { min-height: 42px; padding: 0 17px; border-radius: 11px; font-size: 11px; }
.tp-composer-actions svg { width: 15px; height: 15px; }

.tp-conversation-chips { display: flex; gap: 7px; margin-top: 11px; padding: 1px 1px 0; overflow-x: auto; scrollbar-width: none; }
.tp-conversation-chips::-webkit-scrollbar,
.tp-destination-grid::-webkit-scrollbar { display: none; }
.tp-conversation-chips button { min-height: 29px; flex: 0 0 auto; padding: 0 11px; border: 1px solid var(--landing-border); border-radius: 999px; background: #ffffff; color: #5a6864; cursor: pointer; font-size: 9px; font-weight: 650; transition: background 200ms ease, border-color 200ms ease, color 200ms ease; }
.tp-conversation-chips button:hover,
.tp-conversation-chips button[aria-pressed="true"] { border-color: #a5d9cb; background: var(--landing-mint); color: var(--landing-green-hover); }

.tp-benefits { padding: 54px 0; border-bottom: 1px solid #f0f3f2; }
.tp-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.tp-benefit { display: flex; min-width: 0; align-items: flex-start; gap: 14px; padding: 6px 26px; border-right: 1px solid var(--landing-border); }
.tp-benefit:first-child { padding-left: 0; }
.tp-benefit:last-child { padding-right: 0; border-right: 0; }
.tp-icon-box { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 13px; background: var(--landing-mint); color: var(--landing-green); }
.tp-icon-box svg { width: 21px; height: 21px; }
.tp-benefit h3 { margin-bottom: 5px; font-size: 13px; line-height: 1.35; }
.tp-benefit p { margin-bottom: 0; color: var(--landing-muted); font-size: 11px; line-height: 1.55; }

.tp-section { padding: 112px 0; }
.tp-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 42px; }
.tp-section h2 { margin-bottom: 0; font-size: clamp(38px, 3.4vw, 48px); line-height: 1.12; letter-spacing: -0.045em; word-spacing: 0.04em; }
.tp-text-link { display: inline-flex; align-items: center; gap: 8px; padding: 8px 0; border: 0; background: transparent; color: var(--landing-green); cursor: pointer; font-size: 13px; font-weight: 750; }
.tp-text-link svg { width: 17px; transition: transform 200ms ease; }
.tp-text-link:hover svg { transform: translateX(4px); }

.tp-destination-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.tp-destination-card { overflow: hidden; min-width: 0; border: 1px solid var(--landing-border); border-radius: 20px; background: #ffffff; cursor: pointer; transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease; }
.tp-destination-card:hover { transform: translateY(-2px); border-color: #cee0db; box-shadow: 0 18px 36px rgba(28, 56, 49, 0.09); }
.tp-destination-image { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--landing-soft); }
.tp-destination-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 400ms ease; }
.tp-destination-card:hover .tp-destination-image img { transform: scale(1.02); }
.tp-heart-button { position: absolute; top: 12px; right: 12px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 50%; background: rgba(255, 255, 255, 0.9); cursor: pointer; box-shadow: 0 6px 14px rgba(17, 24, 39, 0.1); backdrop-filter: blur(8px); transition: color 200ms ease, transform 200ms ease; }
.tp-heart-button:hover { color: var(--landing-green); transform: scale(1.05); }
.tp-heart-button svg { width: 17px; height: 17px; }
.tp-destination-copy { padding: 18px; }
.tp-destination-copy h3 { margin-bottom: 4px; font-size: 17px; letter-spacing: -0.02em; }
.tp-destination-copy p { margin-bottom: 15px; color: var(--landing-muted); font-size: 11px; }
.tp-destination-copy span { display: inline-flex; align-items: center; gap: 6px; color: var(--landing-green); font-size: 10px; font-weight: 750; }
.tp-destination-copy span svg { width: 13px; height: 13px; }
.tp-demo-note { margin: 16px 0 0; color: #98a2b3; font-size: 10px; text-align: right; }

.tp-ai-section { padding-top: 0; }
.tp-ai-panel { position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 82px; overflow: hidden; padding: 76px 80px; border-radius: 28px; background: var(--landing-mint); }
.tp-ai-panel::before { content: ""; position: absolute; width: 360px; height: 360px; right: -100px; bottom: -180px; border: 1px solid rgba(7, 152, 121, 0.14); border-radius: 50%; box-shadow: 0 0 0 48px rgba(255,255,255,.2), 0 0 0 96px rgba(255,255,255,.12); pointer-events: none; }
.tp-ai-copy { position: relative; z-index: 1; }
.tp-ai-copy h2 { margin-bottom: 24px; }
.tp-ai-copy > p:not(.tp-eyebrow) { max-width: 510px; margin-bottom: 30px; color: #50615c; font-size: 15px; line-height: 1.75; }
.tp-ai-features { position: relative; z-index: 1; display: grid; gap: 12px; }
.tp-ai-feature { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: center; padding: 21px 22px; border: 1px solid rgba(255, 255, 255, 0.76); border-radius: 17px; background: rgba(255, 255, 255, 0.75); box-shadow: 0 9px 26px rgba(30, 74, 62, 0.05); backdrop-filter: blur(10px); transition: transform 200ms ease, background 200ms ease; }
.tp-ai-feature:hover { transform: translateX(4px); background: #ffffff; }
.tp-ai-feature > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; background: var(--landing-green); color: #ffffff; font-size: 11px; font-weight: 800; }
.tp-ai-feature h3 { margin-bottom: 5px; font-size: 15px; }
.tp-ai-feature p { margin-bottom: 0; color: var(--landing-muted); font-size: 12px; line-height: 1.55; }

.tp-decision { background: var(--landing-soft); }
.tp-decision-heading { max-width: 870px; margin: 0 auto 48px; text-align: center; }
.tp-decision-heading h2 { margin-bottom: 22px; }
.tp-decision-heading > p:last-child { max-width: 690px; margin-inline: auto; color: var(--landing-muted); font-size: 15px; line-height: 1.7; }
.tp-decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tp-decision-card { min-height: 300px; padding: 34px; border: 1px solid var(--landing-border); border-radius: 22px; background: #ffffff; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.tp-decision-card:hover { transform: translateY(-2px); border-color: #cee0db; box-shadow: 0 18px 36px rgba(28, 56, 49, 0.07); }
.tp-decision-icon { display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 30px; border-radius: 15px; background: var(--landing-mint); color: var(--landing-green); }
.tp-decision-icon svg { width: 23px; height: 23px; }
.tp-card-eyebrow { margin-bottom: 10px; color: var(--landing-green); font-size: 10px; font-weight: 800; letter-spacing: 0.15em; }
.tp-decision-card h3 { max-width: 290px; margin-bottom: 12px; font-size: 21px; line-height: 1.3; letter-spacing: -0.025em; }
.tp-decision-card > p:last-child { margin-bottom: 0; color: var(--landing-muted); font-size: 12px; line-height: 1.65; }
.tp-decision-proof { display: flex; justify-content: center; gap: 20px 34px; margin-top: 30px; color: #50615c; font-size: 11px; font-weight: 650; }
.tp-decision-proof span { display: inline-flex; align-items: center; gap: 7px; }
.tp-decision-proof svg { width: 16px; height: 16px; color: var(--landing-green); }

.tp-mobile-grid { display: grid; grid-template-columns: 0.9fr 1fr; align-items: center; gap: 100px; }
.tp-phone-stage { position: relative; display: grid; min-height: 570px; place-items: center; overflow: hidden; border-radius: 28px; background: linear-gradient(145deg, #effaf7, #f9fcfb); }
.tp-phone-orbit { position: absolute; border: 1px solid rgba(7, 152, 121, 0.12); border-radius: 50%; }
.tp-phone-orbit-one { width: 420px; height: 420px; }
.tp-phone-orbit-two { width: 540px; height: 540px; }
.tp-phone { position: relative; z-index: 2; width: 260px; padding: 8px; border: 1px solid #2c3734; border-radius: 38px; background: #202a27; box-shadow: 0 32px 60px rgba(23, 55, 46, 0.2); transform: rotate(-2.2deg); transition: transform 350ms ease; }
.tp-phone-stage:hover .tp-phone { transform: rotate(0deg) translateY(-3px); }
.tp-phone-top { position: absolute; z-index: 3; top: 14px; left: 50%; width: 76px; height: 20px; transform: translateX(-50%); border-radius: 12px; background: #202a27; }
.tp-phone-screen { position: relative; overflow: hidden; min-height: 500px; padding: 34px 16px 68px; border-radius: 31px; background: #ffffff; }
.tp-phone-brand { display: flex; align-items: center; gap: 4px; margin-bottom: 34px; }
.tp-phone-brand .tp-landing-brand-name { font-size: 15px; }
.tp-phone-brand .tp-landing-brand-ai { min-width: 25px; height: 18px; border-radius: 5px; font-size: 8px; }
.tp-phone-screen > p { margin-bottom: 4px; color: var(--landing-muted); font-size: 9px; }
.tp-phone-screen > h3 { margin-bottom: 16px; font-size: 18px; letter-spacing: -0.04em; }
.tp-phone-trip { position: relative; overflow: hidden; height: 150px; margin-bottom: 11px; border-radius: 17px; }
.tp-phone-trip::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(15, 35, 30, .58)); }
.tp-phone-trip img { width: 100%; height: 100%; object-fit: cover; }
.tp-phone-trip div { position: absolute; z-index: 2; right: 13px; bottom: 12px; left: 13px; color: #ffffff; }
.tp-phone-trip small,
.tp-phone-trip strong,
.tp-phone-trip span { display: block; }
.tp-phone-trip small { margin-bottom: 3px; font-size: 7px; font-weight: 800; letter-spacing: .1em; }
.tp-phone-trip strong { font-size: 17px; }
.tp-phone-trip span { margin-top: 2px; color: rgba(255,255,255,.78); font-size: 8px; }
.tp-phone-card { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 9px; padding: 12px; border: 1px solid var(--landing-border); border-radius: 14px; background: var(--landing-soft); }
.tp-phone-card > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; background: var(--landing-mint); color: var(--landing-green); }
.tp-phone-card svg { width: 13px; height: 13px; }
.tp-phone-card small,
.tp-phone-card strong { display: block; }
.tp-phone-card small { margin-bottom: 2px; color: var(--landing-green); font-size: 6px; font-weight: 800; letter-spacing: .09em; }
.tp-phone-card strong { font-size: 8px; }
.tp-phone-nav { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); padding: 9px 16px 14px; border-top: 1px solid var(--landing-border); background: #ffffff; }
.tp-phone-nav span { display: flex; flex-direction: column; align-items: center; gap: 3px; color: #98a2b3; }
.tp-phone-nav span.is-active { color: var(--landing-green); }
.tp-phone-nav svg { width: 14px; height: 14px; }
.tp-phone-nav small { font-size: 6px; font-weight: 700; }
.tp-coming-soon { position: absolute; z-index: 3; right: 50px; top: 68px; padding: 9px 14px; border: 1px solid #cbe9e1; border-radius: 999px; background: #ffffff; color: var(--landing-green); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 10px 26px rgba(20, 71, 57, .09); }
.tp-mobile-copy { max-width: 540px; }
.tp-mobile-copy h2 { margin-bottom: 24px; }
.tp-mobile-copy > p:not(.tp-eyebrow) { margin-bottom: 28px; color: var(--landing-muted); font-size: 15px; line-height: 1.75; }
.tp-mobile-copy ul { display: grid; gap: 13px; margin: 0 0 28px; padding: 0; list-style: none; }
.tp-mobile-copy li { display: flex; align-items: center; gap: 10px; color: #344054; font-size: 13px; font-weight: 650; }
.tp-mobile-copy li svg { width: 18px; height: 18px; padding: 3px; border-radius: 50%; background: var(--landing-mint); color: var(--landing-green); }
.tp-future-label { display: inline-flex; padding: 10px 14px; border-radius: 999px; background: var(--landing-soft); color: var(--landing-green-hover); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.tp-proof { padding-top: 0; }
.tp-proof-inner { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 80px; padding: 68px 72px; border-radius: 26px; background: var(--landing-ink); color: #ffffff; }
.tp-proof .tp-eyebrow { color: #74d5bd; }
.tp-proof h2 { font-size: clamp(34px, 3vw, 44px); }
.tp-proof-inner > p { margin-bottom: 0; color: #c4cdc9; font-size: 15px; line-height: 1.8; }

.tp-landing-footer { padding: 70px 0 26px; border-top: 1px solid var(--landing-border); background: #ffffff; }
.tp-footer-top { display: grid; grid-template-columns: 1.35fr .75fr .75fr 1.15fr; gap: 46px; padding-bottom: 52px; }
.tp-footer-top > div { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.tp-footer-top > div:first-child p { max-width: 220px; margin: 3px 0 0; color: var(--landing-muted); font-size: 12px; line-height: 1.6; }
.tp-footer-top strong { font-size: 12px; }
.tp-footer-top a:not(.tp-landing-brand),
.tp-footer-top button:not(.tp-button) { padding: 0; border: 0; background: transparent; color: var(--landing-muted); cursor: pointer; font-size: 11px; }
.tp-footer-top a:hover,
.tp-footer-top button:not(.tp-button):hover { color: var(--landing-green); }
.tp-footer-cta { padding: 20px; border-radius: 17px; background: var(--landing-soft); }
.tp-footer-cta .tp-button { width: 100%; min-height: 46px; margin-top: 2px; padding-inline: 16px; font-size: 11px; }
.tp-footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--landing-border); color: #98a2b3; font-size: 10px; }

.tp-landing-toast {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 14px 18px;
  border: 1px solid #cae7df;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  color: #344054;
  box-shadow: 0 18px 44px rgba(17, 24, 39, .14);
  font-size: 12px;
  font-weight: 650;
  backdrop-filter: blur(14px);
}

@media (max-width: 1180px) {
  .tp-landing-nav { gap: 17px; }
  .tp-landing-nav a { font-size: 11px; }
  .tp-header-icon,
  .tp-language { display: none; }
  .tp-start-conversation { padding: 18px; }
  .tp-benefit { padding-inline: 16px; }
  .tp-destination-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 1px 16px; scrollbar-width: none; }
  .tp-destination-card { min-width: 236px; scroll-snap-align: start; }
  .tp-ai-panel { gap: 52px; padding: 64px; }
}

@media (max-width: 940px) {
  .tp-landing-header { height: 72px; }
  .tp-landing-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    left: 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--landing-border);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--landing-shadow);
    backdrop-filter: blur(16px);
  }
  .tp-landing-nav.is-open { display: flex; }
  .tp-landing-nav a { padding: 12px; border-radius: 10px; font-size: 13px; }
  .tp-landing-nav a:hover { background: var(--landing-soft); }
  .tp-landing-nav a::after { display: none; }
  .tp-header-actions .tp-login-button,
  .tp-header-actions .tp-button-primary { display: none; }
  .tp-menu-button { display: inline-flex; }
  .tp-hero { min-height: min(740px, calc(100svh - 72px)); padding: 28px 0 32px; }
  .tp-hero-copy { width: min(100%, 820px); }
  .tp-start-conversation { max-width: 780px; }
  .tp-benefits-grid { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .tp-benefit:nth-child(2) { border-right: 0; }
  .tp-ai-panel,
  .tp-mobile-grid { grid-template-columns: 1fr; }
  .tp-ai-panel { gap: 42px; }
  .tp-mobile-grid { gap: 62px; }
  .tp-phone-stage { max-width: 680px; width: 100%; margin-inline: auto; }
  .tp-mobile-copy { max-width: 680px; margin-inline: auto; }
  .tp-decision-proof { flex-wrap: wrap; }
  .tp-proof-inner { grid-template-columns: 1fr; gap: 26px; }
  .tp-footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .tp-footer-cta { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .tp-footer-cta .tp-button { width: auto; margin: 0; }
}

@media (max-width: 680px) {
  .tp-landing-container { width: min(100% - 32px, 1320px); }
  .tp-landing-header { height: 66px; }
  .tp-landing-brand-name { font-size: 20px; }
  .tp-hero { min-height: 0; padding: 18px 0 22px; }
  .tp-hero-background { background-position: 64% center; }
  .tp-hero-video { display: none; }
  .tp-hero .tp-eyebrow { margin-bottom: 9px; font-size: 9px; }
  .tp-hero h1 { margin-bottom: 10px; font-size: clamp(32px, 9.2vw, 38px); }
  .tp-hero h1 br { display: none; }
  .tp-hero-lead { max-width: 340px; margin-bottom: 10px; font-size: 12.5px; line-height: 1.5; }
  .tp-hero-trust { display: none; }
  .tp-start-conversation { margin-top: 13px; padding: 12px; border-radius: 20px; }
  .tp-conversation-heading { margin-bottom: 10px; }
  .tp-ai-first-message { padding: 11px 12px; }
  .tp-ai-first-message p { font-size: 10.5px; line-height: 1.48; }
  .tp-profile-progress { margin-block: 9px 8px; }
  .tp-profile-progress > div { align-items: flex-start; flex-direction: column; gap: 2px; }
  .tp-conversation-composer textarea { min-height: 76px; padding-top: 9px; font-size: 12px; }
  .tp-composer-actions > span { display: none; }
  .tp-composer-actions { justify-content: flex-end; }
  .tp-composer-actions .tp-button { min-width: 106px; min-height: 44px; }
  .tp-conversation-chips { margin-top: 8px; }
  .tp-benefits { padding: 44px 0; }
  .tp-benefits-grid { grid-template-columns: 1fr; gap: 0; }
  .tp-benefit { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--landing-border); }
  .tp-benefit:first-child { padding-top: 0; }
  .tp-benefit:last-child { padding-bottom: 0; border-bottom: 0; }
  .tp-section { padding: 82px 0; }
  .tp-section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .tp-section h2 { font-size: 36px; }
  .tp-section h2 br { display: none; }
  .tp-destination-card { min-width: 82vw; }
  .tp-destination-image { aspect-ratio: 6 / 5; }
  .tp-demo-note { text-align: left; line-height: 1.5; }
  .tp-ai-section { padding-top: 0; }
  .tp-ai-panel { gap: 34px; padding: 40px 24px; border-radius: 22px; }
  .tp-ai-feature { grid-template-columns: 38px 1fr; gap: 13px; padding: 17px; }
  .tp-ai-feature > span { width: 36px; height: 36px; }
  .tp-decision-heading { text-align: left; }
  .tp-decision-grid { grid-template-columns: 1fr; }
  .tp-decision-card { min-height: 0; padding: 26px; }
  .tp-decision-icon { margin-bottom: 22px; }
  .tp-decision-proof { align-items: flex-start; flex-direction: column; }
  .tp-mobile-grid { gap: 48px; }
  .tp-phone-stage { min-height: 510px; border-radius: 22px; }
  .tp-phone { width: 230px; }
  .tp-phone-screen { min-height: 446px; }
  .tp-coming-soon { top: 30px; right: 24px; }
  .tp-proof-inner { padding: 42px 26px; border-radius: 22px; }
  .tp-proof h2 { font-size: 34px; }
  .tp-footer-top { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .tp-footer-top > div:first-child { grid-column: 1 / -1; }
  .tp-footer-cta { grid-column: 1 / -1; align-items: stretch; flex-direction: column; }
  .tp-footer-cta .tp-button { width: 100%; }
  .tp-landing-toast { right: 16px; bottom: 16px; left: 16px; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .tp-hero-video { display: none; }
  .tp-landing *,
  .tp-landing *::before,
  .tp-landing *::after { scroll-behavior: auto; transition-duration: 0.01ms; }
}
