/* TIGGO V – pre-launch teaser page, scoped vendor CSS
   Follows the --hr: calc(100vw / 19.2) convention used by the other model packs. */

.tiggov-int-page {
  --hr: calc(100vw / 19.2);
  color: #fff;
  background: #04100f;
}

/* ── Teaser poster ───────────────────────────────────────────────── */

.tiggov-hero {
  position: relative;
  width: 100%;
  line-height: 0;
}

.tiggov-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.tiggov-back {
  position: absolute;
  top: calc(0.5 * var(--hr));
  inset-inline-start: calc(0.6 * var(--hr));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.tiggov-back:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.6);
}

.tiggov-back svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

[dir="rtl"] .tiggov-back svg {
  transform: scaleX(-1);
}

/* The page heading exists for assistive tech and search engines only; the
   visible headline is part of the poster artwork. */
.tiggov-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
}

/* ── Light theme ─────────────────────────────────────────────────── */

html.theme-light .tiggov-int-page {
  background: #ffffff;
}

/* ── Small screens ───────────────────────────────────────────────── */

@media (max-width: 767px) {
  .tiggov-int-page {
    --hr: calc(100vw / 7.5);
  }

  .tiggov-back {
    top: 14px;
    inset-inline-start: 14px;
    padding: 8px 12px;
    font-size: 11px;
  }
}
