/* TrustMeet home — cinematic marketing (scoped to .tm-page--home). */

/* Override light landing.css shell — home uses dark cinematic theme */
body.tm-page--home {
  background: #030712 !important;
  background-image: none !important;
}

body.tm-page--home {
  font-family: "Inter", var(--tm-font-sans, system-ui), sans-serif;
  color: rgba(226, 232, 240, 0.95);
}

body.tm-page--home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(56, 189, 248, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 20%, rgba(167, 139, 250, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 45% at 0% 60%, rgba(244, 114, 182, 0.1), transparent 45%),
    radial-gradient(ellipse 80% 60% at 80% 90%, rgba(59, 130, 246, 0.12), transparent 50%),
    linear-gradient(180deg, #070b18 0%, #050816 35%, #030712 100%);
}

.tm-hp {
  flex: 1;
  width: 100%;
  overflow-x: clip;
}

.tm-hp-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

.tm-hp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(56, 189, 248, 0.95);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.22);
}

.tm-hp-title {
  margin: 0 0 12px;
  font-family: "Poppins", var(--tm-font-sans, system-ui), sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #f8fafc;
}

.tm-hp-sub {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(203, 213, 225, 0.92);
  max-width: 34rem;
}

.tm-hp-btnrow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tm-hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.2s ease, background 0.2s ease;
}

.tm-hp-btn--primary {
  color: #0b1220;
  background: linear-gradient(135deg, #38bdf8, #a78bfa 52%, #f472b6);
  box-shadow: 0 12px 40px rgba(167, 139, 250, 0.35);
}

.tm-hp-btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 16px 48px rgba(56, 189, 248, 0.35);
}

.tm-hp-btn--ghost {
  color: #f1f5f9;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.tm-hp-btn--ghost:hover {
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(30, 41, 59, 0.65);
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */

.tm-hp-hero--cinematic {
  position: relative;
  padding: 0;
  min-height: min(92vh, 920px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tm-hp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tm-hp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
}

.tm-hp-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(3, 7, 18, 0.94) 0%, rgba(3, 7, 18, 0.78) 42%, rgba(3, 7, 18, 0.55) 100%),
    linear-gradient(180deg, rgba(3, 7, 18, 0.35) 0%, rgba(3, 7, 18, 0.88) 100%);
}

.tm-hp-hero--cinematic .tm-hp-hero__grid {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 48px 22px 72px;
}

@media (min-width: 900px) {
  .tm-hp-hero--cinematic .tm-hp-hero__grid {
    padding: 72px 22px 96px;
  }
}

.tm-hp-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tm-hp-hero__stats li {
  flex: 1 1 140px;
  max-width: 200px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(10px);
}

.tm-hp-hero__stats strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 4px;
}

.tm-hp-hero__stats span {
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.95);
  line-height: 1.4;
}

.tm-hp-hero {
  position: relative;
  padding: 28px 0 72px;
}

@media (min-width: 900px) {
  .tm-hp-hero {
    padding: 48px 0 100px;
  }
}

.tm-hp-hero__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 960px) {
  .tm-hp-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 56px;
  }
}

.tm-hp-hero__headline {
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
}

.tm-hp-hero__visual {
  position: relative;
  min-height: 380px;
  isolation: isolate;
}

@media (min-width: 960px) {
  .tm-hp-hero__visual {
    min-height: 440px;
  }
}

.tm-hp-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}

.tm-hp-hero__orb--1 {
  width: 280px;
  height: 280px;
  top: 5%;
  right: 10%;
  background: #a78bfa;
}

.tm-hp-hero__orb--2 {
  width: 220px;
  height: 220px;
  bottom: 10%;
  left: 5%;
  background: #38bdf8;
}

.tm-hp-hero__orb--3 {
  width: 160px;
  height: 160px;
  top: 40%;
  left: 30%;
  background: #f472b6;
  opacity: 0.35;
}

.tm-hp-mock {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 380px;
  padding: 20px 18px 22px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(30, 27, 75, 0.55));
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(56, 189, 248, 0.12);
  backdrop-filter: blur(12px);
}

.tm-hp-mock__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tm-hp-mock__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #f8fafc;
}

.tm-hp-mock__pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.28);
}

.tm-hp-mock__search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.15);
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.95);
}

.tm-hp-float {
  position: absolute;
  z-index: 3;
  width: min(200px, 46vw);
  padding: 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  animation: tm-hp-float 6s ease-in-out infinite;
}

.tm-hp-float--a {
  top: 4%;
  left: 0;
  animation-delay: 0s;
}

.tm-hp-float--b {
  bottom: 12%;
  right: 0;
  animation-delay: -2s;
}

.tm-hp-float--c {
  top: 38%;
  right: -4%;
  width: min(160px, 38vw);
  animation-delay: -4s;
}

@media (max-width: 599px) {
  .tm-hp-float--c {
    display: none;
  }
}

@keyframes tm-hp-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.tm-hp-float__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tm-hp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #38bdf8, #a78bfa);
  flex-shrink: 0;
}

.tm-hp-float__name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #f1f5f9;
}

.tm-hp-float__meta {
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.95);
  margin-top: 2px;
}

.tm-hp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tm-hp-tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  color: rgba(226, 232, 240, 0.9);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

/* ---------- Trust ---------- */

.tm-hp-trust {
  padding: 56px 0 72px;
}

.tm-hp-trust__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.tm-hp-trust__head .tm-hp-sub {
  margin: 0 auto;
}

.tm-hp-trust__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .tm-hp-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .tm-hp-trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tm-hp-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tm-hp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.tm-hp-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 14px;
  font-size: 1.35rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(167, 139, 250, 0.18));
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.tm-hp-card h3 {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f8fafc;
}

.tm-hp-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.9);
}

/* ---------- Steps ---------- */

.tm-hp-steps {
  padding: 56px 0 80px;
  position: relative;
}

.tm-hp-steps::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 120px;
  bottom: 80px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(148, 163, 184, 0.25), transparent);
  transform: translateX(-50%);
  display: none;
}

@media (min-width: 900px) {
  .tm-hp-steps::before {
    display: block;
  }
}

.tm-hp-steps__head {
  text-align: center;
  margin-bottom: 44px;
}

.tm-hp-steps__head .tm-hp-sub {
  margin-left: auto;
  margin-right: auto;
}

.tm-hp-steprow {
  display: grid;
  gap: 22px;
}

@media (min-width: 900px) {
  .tm-hp-steprow {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .tm-hp-steps::before {
    display: none;
  }
}

.tm-hp-step {
  position: relative;
  padding: 26px 22px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.16);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.tm-hp-step:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.3);
}

.tm-hp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #0b1220;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #38bdf8, #c084fc);
}

.tm-hp-step h3 {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.tm-hp-step p {
  margin: 0;
  color: rgba(203, 213, 225, 0.9);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* ---------- Discovery ---------- */

.tm-hp-discover {
  padding: 48px 0 80px;
}

.tm-hp-discover__head {
  margin-bottom: 32px;
}

.tm-hp-discover__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .tm-hp-discover__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tm-hp-profile {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.85), rgba(30, 27, 75, 0.4));
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tm-hp-profile:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.tm-hp-profile__top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.tm-hp-profile__photo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f472b6, #a78bfa);
  flex-shrink: 0;
  position: relative;
}

.tm-hp-profile__photo::after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34d399;
  border: 2px solid #0f172a;
}

.tm-hp-profile__photo--b {
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
}

.tm-hp-profile__photo--c {
  background: linear-gradient(135deg, #fb923c, #f472b6);
}

.tm-hp-profile h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.tm-hp-profile__loc {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: rgba(148, 163, 184, 0.95);
}

.tm-hp-profile__vibes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.tm-hp-vibe {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.28);
  color: #e9d5ff;
}

.tm-hp-vibe--alt {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.25);
  color: #bae6fd;
}

/* ---------- Reviews / testimonials ---------- */

.tm-hp-reviews {
  padding: 56px 0 88px;
}

.tm-hp-reviews__head {
  text-align: center;
  margin-bottom: 40px;
}

.tm-hp-reviews__head .tm-hp-sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

.tm-hp-reviews__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .tm-hp-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .tm-hp-reviews__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.tm-hp-review {
  margin: 0;
  padding: 24px 22px 22px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid rgba(148, 163, 184, 0.16);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tm-hp-review:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.45);
}

.tm-hp-review--spotlight {
  border-color: rgba(167, 139, 250, 0.45);
  background: linear-gradient(155deg, rgba(49, 46, 129, 0.42), rgba(15, 23, 42, 0.72));
  box-shadow:
    0 0 0 1px rgba(244, 114, 182, 0.1),
    0 24px 70px rgba(88, 28, 135, 0.28);
}

.tm-hp-review--spotlight:hover {
  border-color: rgba(244, 114, 182, 0.35);
}

.tm-hp-review__stars {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: #fbbf24;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.35);
}

.tm-hp-review__quote {
  margin: 0 0 20px;
  padding: 0;
  border: none;
  font-size: 0.95rem;
  line-height: 1.58;
  color: rgba(226, 232, 240, 0.94);
  flex: 1;
}

.tm-hp-review__quote::before {
  content: "“";
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 0.85;
  color: rgba(56, 189, 248, 0.45);
  margin-bottom: 4px;
}

.tm-hp-review__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.tm-hp-review__meta > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tm-hp-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(148, 163, 184, 0.25);
}

.tm-hp-review__avatar--a {
  background: linear-gradient(135deg, #a78bfa, #38bdf8);
}

.tm-hp-review__avatar--b {
  background: linear-gradient(135deg, #34d399, #22d3ee);
}

.tm-hp-review__avatar--c {
  background: linear-gradient(135deg, #fb923c, #f472b6);
}

.tm-hp-review__avatar--d {
  background: linear-gradient(135deg, #818cf8, #c084fc);
}

.tm-hp-review__avatar--e {
  background: linear-gradient(135deg, #2dd4bf, #38bdf8);
}

.tm-hp-review__avatar--f {
  background: linear-gradient(135deg, #f472b6, #fb7185);
}

.tm-hp-review__name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #f1f5f9;
}

.tm-hp-review__badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.tm-hp-review__badge--visitor {
  color: #bae6fd;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.28);
}

.tm-hp-review__badge--host {
  color: #e9d5ff;
  background: rgba(167, 139, 250, 0.14);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.tm-hp-reviews__foot {
  margin: 28px auto 0;
  max-width: 520px;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(148, 163, 184, 0.85);
}

.tm-hp-reviews__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

/* ---------- Proof ---------- */

.tm-hp-proof {
  padding: 40px 0 72px;
}

.tm-hp-proof__panel {
  padding: 36px 24px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(12px);
}

.tm-hp-proof__grid {
  display: grid;
  gap: 28px;
  text-align: center;
}

@media (min-width: 720px) {
  .tm-hp-proof__grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
  }
}

.tm-hp-stat {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8, #e879f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tm-hp-stat__lbl {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: rgba(203, 213, 225, 0.88);
  line-height: 1.45;
}

.tm-hp-values {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .tm-hp-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tm-hp-values p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.9);
}

.tm-hp-values strong {
  color: #f8fafc;
}

/* ---------- Final CTA ---------- */

.tm-hp-final {
  padding: 56px 0 88px;
}

/* ---------- Reveal ---------- */

.tm-hp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.tm-hp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tm-hp-reveal--delay-1 {
  transition-delay: 0.08s;
}

.tm-hp-reveal--delay-2 {
  transition-delay: 0.16s;
}

.tm-hp-reveal--delay-3 {
  transition-delay: 0.24s;
}

/* ---------- Premium repositioning sections ---------- */

.tm-hp-title--section {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.tm-hp-sub--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.tm-hp-hero__sub2 {
  margin-top: 10px;
  font-size: 0.98rem;
  opacity: 0.92;
}

.tm-hp-pill {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 6px;
}

.tm-hp-pill--verified {
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.tm-hp-pill--boost {
  color: #e9d5ff;
  background: rgba(167, 139, 250, 0.18);
  border: 1px solid rgba(167, 139, 250, 0.35);
}

.tm-hp-pill--live {
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  flex-shrink: 0;
}

.tm-hp-mock--premium {
  padding: 18px;
}

.tm-hp-mock-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.14);
  margin-top: 10px;
}

.tm-hp-mock-card--dim {
  opacity: 0.85;
}

.tm-hp-mock-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #a78bfa, #38bdf8);
  flex-shrink: 0;
}

.tm-hp-mock-card__avatar--b {
  background: linear-gradient(135deg, #f472b6, #fb923c);
}

.tm-hp-mock-card__body {
  flex: 1;
  min-width: 0;
}

.tm-hp-mock-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #f1f5f9;
}

.tm-hp-mock-card__meta {
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.95);
  margin-top: 2px;
}

.tm-hp-mock-card__tags {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.tm-hp-mock-card__tags span {
  font-size: 0.68rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: #bae6fd;
}

.tm-hp-pillars {
  padding: 56px 0;
}

.tm-hp-pillars__head {
  text-align: center;
  margin-bottom: 36px;
}

.tm-hp-pillars__grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .tm-hp-pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .tm-hp-pillars__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tm-hp-pillar {
  padding: 22px 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.14);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.tm-hp-pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.35);
}

.tm-hp-pillar__icon {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.35), rgba(167, 139, 250, 0.35));
}

.tm-hp-pillar__icon--violet { background: linear-gradient(135deg, #a78bfa, #818cf8); }
.tm-hp-pillar__icon--mint { background: linear-gradient(135deg, #34d399, #2dd4bf); }
.tm-hp-pillar__icon--sky { background: linear-gradient(135deg, #38bdf8, #22d3ee); }
.tm-hp-pillar__icon--rose { background: linear-gradient(135deg, #f472b6, #fb7185); }
.tm-hp-pillar__icon--amber { background: linear-gradient(135deg, #fbbf24, #fb923c); }
.tm-hp-pillar__icon--cyan { background: linear-gradient(135deg, #22d3ee, #38bdf8); }
.tm-hp-pillar__icon--indigo { background: linear-gradient(135deg, #818cf8, #6366f1); }

.tm-hp-pillar h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
}

.tm-hp-pillar p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.88);
}

.tm-hp-meetups {
  padding: 48px 0;
  text-align: center;
}

.tm-hp-meetups__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.tm-hp-chip {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.tm-hp-card__icon--check::after { content: ""; }
.tm-hp-card__icon--check {
  background: linear-gradient(135deg, #34d399, #22d3ee);
  mask: none;
}
.tm-hp-card__icon--chat { background: linear-gradient(135deg, #38bdf8, #818cf8); }
.tm-hp-card__icon--pin { background: linear-gradient(135deg, #fbbf24, #fb923c); }
.tm-hp-card__icon--shield { background: linear-gradient(135deg, #a78bfa, #f472b6); }

.tm-hp-profile__signal {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: rgba(56, 189, 248, 0.95);
  font-weight: 600;
}

.tm-hp-profile--premium {
  border-color: rgba(167, 139, 250, 0.22);
}

.tm-hp-growth {
  padding: 48px 0;
}

.tm-hp-growth__panel {
  display: grid;
  gap: 32px;
  padding: 36px 28px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(14px);
}

@media (min-width: 900px) {
  .tm-hp-growth__panel {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

.tm-hp-growth__list {
  margin: 20px 0 24px;
  padding-left: 1.2rem;
  line-height: 1.7;
  color: rgba(203, 213, 225, 0.92);
}

.tm-hp-growth__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.tm-hp-growth-stat {
  padding: 18px;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.12);
  text-align: center;
}

.tm-hp-growth-stat__val {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8, #e879f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tm-hp-growth-stat__lbl {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.95);
}

.tm-hp-boost {
  padding: 48px 0;
}

.tm-hp-boost__inner {
  padding: 32px 24px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(30, 27, 75, 0.45), rgba(15, 23, 42, 0.85));
  border: 1px solid rgba(167, 139, 250, 0.25);
  text-align: center;
}

.tm-hp-boost__plans {
  display: grid;
  gap: 12px;
  margin: 24px auto;
  max-width: 520px;
}

@media (min-width: 600px) {
  .tm-hp-boost__plans {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tm-hp-boost-plan {
  padding: 16px;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.tm-hp-boost-plan--featured {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.2);
}

.tm-hp-boost-plan strong {
  display: block;
  font-size: 1.05rem;
  color: #f8fafc;
}

.tm-hp-boost-plan span {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.95);
}

.tm-hp-review__badge--profile {
  color: #e9d5ff;
  background: rgba(167, 139, 250, 0.14);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.tm-hp-btnrow--center {
  justify-content: center;
}

/* ---------- Lifestyle photo grid ---------- */

.tm-hp-lifestyle {
  padding: 64px 0 72px;
}

.tm-hp-lifestyle__head {
  text-align: center;
  margin-bottom: 36px;
}

.tm-hp-lifestyle__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .tm-hp-lifestyle__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tm-hp-lifestyle__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.tm-hp-lifestyle-card {
  position: relative;
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tm-hp-lifestyle-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45);
}

.tm-hp-lifestyle-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tm-hp-lifestyle-card:hover img {
  transform: scale(1.06);
}

.tm-hp-lifestyle-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.15) 0%, rgba(3, 7, 18, 0.92) 100%);
}

.tm-hp-lifestyle-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 18px 22px;
  z-index: 1;
}

.tm-hp-lifestyle-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 1.2rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
  margin-bottom: 10px;
}

.tm-hp-lifestyle-card h3 {
  margin: 0 0 6px;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f8fafc;
}

.tm-hp-lifestyle-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(203, 213, 225, 0.9);
}

/* Section bands with subtle texture */
.tm-hp-section--band {
  position: relative;
  padding-top: 56px;
  padding-bottom: 56px;
}

.tm-hp-section--band::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: rgba(15, 23, 42, 0.35);
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  z-index: -1;
}

.tm-hp-profile__photo--img {
  background: var(--tm-photo) center / cover no-repeat;
}

.tm-hp-profile__photo--img::after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34d399;
  border: 2px solid #0f172a;
}

/* Final CTA with photo background */
.tm-hp-final__box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.tm-hp-final__bg {
  position: absolute;
  inset: 0;
}

.tm-hp-final__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tm-hp-final__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(30, 27, 75, 0.88), rgba(3, 7, 18, 0.92)),
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(167, 139, 250, 0.25), transparent 55%);
}

.tm-hp-final__content {
  position: relative;
  z-index: 1;
  padding: 56px 24px;
}

.tm-hp-final__content .tm-hp-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}

.tm-hp-final__content .tm-hp-sub {
  margin: 0 auto 8px;
  max-width: 36rem;
}

.tm-hp-final__content .tm-hp-btnrow {
  justify-content: center;
  margin-top: 28px;
}

.tm-hp-cities {
  padding: 48px 0 24px;
}

.tm-hp-cities .tm-hp-title--sm {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  margin-bottom: 10px;
}

.tm-hp-cities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.tm-hp-cities__link {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.55);
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.tm-hp-cities__link:hover {
  border-color: rgba(129, 140, 248, 0.45);
  background: rgba(99, 102, 241, 0.16);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .tm-hp-float {
    animation: none;
  }

  .tm-hp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
