/* Standalone signup page. This intentionally follows the existing dark tarrific.tv site shell. */
:root {
  --signup-bg: #191f41;
  --signup-bg-deep: #0e132c;
  --signup-panel: #20284f;
  --signup-cyan: #1ee0ff;
  --signup-text: #eef1fb;
  --signup-muted: #9098ba;
  --signup-line: rgba(255, 255, 255, 0.09);
}

* {
  box-sizing: border-box;
}

body.ttv-signup-page {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--signup-bg);
  color: var(--signup-text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.ttv-signup-page::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(650px 440px at 8% 20%, rgba(0, 133, 254, 0.14), transparent 70%),
    radial-gradient(620px 430px at 92% 10%, rgba(93, 68, 223, 0.17), transparent 70%),
    radial-gradient(560px 420px at 83% 90%, rgba(255, 24, 185, 0.055), transparent 72%),
    radial-gradient(500px 400px at 5% 88%, rgba(0, 207, 235, 0.075), transparent 72%);
}

body.ttv-signup-page::after {
  display: none;
}

.ttv-signup-page a {
  color: inherit;
  text-decoration: none;
}

.ttv-signup-page .signup-site-nav,
.ttv-signup-page .signup-main,
.ttv-signup-page .signup-footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 56px));
  margin-right: auto;
  margin-left: auto;
}

.ttv-signup-page .signup-site-nav {
  z-index: 50;
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
  border-bottom: 1px solid var(--signup-line);
}

.ttv-signup-page .signup-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.ttv-signup-page .signup-logo img {
  display: block;
  width: auto;
  height: 34px;
}

.ttv-signup-page .signup-site-links,
.ttv-signup-page .signup-site-actions {
  display: flex;
  align-items: center;
}

.ttv-signup-page .signup-site-links {
  gap: 30px;
  margin-right: 34px;
  margin-left: auto;
}

.ttv-signup-page .signup-nav-group {
  position: relative;
  display: flex;
  height: 70px;
  align-items: center;
}

.ttv-signup-page .signup-nav-group > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ttv-signup-page .signup-nav-group > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.ttv-signup-page .signup-nav-group:hover > a::after,
.ttv-signup-page .signup-nav-group:focus-within > a::after {
  transform: rotate(225deg) translateY(-2px);
}

.ttv-signup-page .signup-nav-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  display: grid;
  min-width: 194px;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--signup-line);
  border-radius: 14px;
  background: rgba(10, 12, 24, 0.98);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.ttv-signup-page .signup-nav-group:hover .signup-nav-menu,
.ttv-signup-page .signup-nav-group:focus-within .signup-nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.ttv-signup-page .signup-nav-menu a {
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--signup-muted);
  font-size: 13px;
}

.ttv-signup-page .signup-nav-menu a:hover {
  color: #fff;
  background: rgba(0, 207, 235, 0.11);
}

.ttv-signup-page .signup-site-links a,
.ttv-signup-page .signup-lang {
  color: var(--signup-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.ttv-signup-page .signup-site-links a:hover,
.ttv-signup-page .signup-lang:hover {
  color: #fff;
}

.ttv-signup-page .signup-site-actions {
  gap: 14px;
}

.ttv-signup-page .signup-lang-select {
  position: relative;
  display: flex;
  height: 70px;
  align-items: center;
}

.ttv-signup-page .signup-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.ttv-signup-page .signup-lang span {
  font-size: 15px;
}

.ttv-signup-page .signup-lang-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% - 5px);
  left: 50%;
  display: grid;
  min-width: 160px;
  gap: 2px;
  padding: 9px;
  border: 1px solid var(--signup-line);
  border-radius: 13px;
  background: rgba(10, 12, 24, 0.98);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.ttv-signup-page .signup-lang-select.is-open .signup-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.ttv-signup-page .signup-lang-menu button {
  padding: 9px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--signup-muted);
  cursor: pointer;
  font: 500 13px/1.3 "Inter", sans-serif;
  text-align: left;
}

.ttv-signup-page .signup-lang-menu button:hover,
.ttv-signup-page .signup-lang-menu button:focus-visible {
  background: rgba(0, 207, 235, 0.11);
  color: #fff;
}

.ttv-signup-page .signup-demo-current,
.ttv-signup-page .signup-get-started {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ttv-signup-page .signup-demo-current {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(6, 8, 16, 0.42);
  color: #fff;
}

.ttv-signup-page .signup-demo-current:hover {
  border-color: var(--signup-cyan);
  color: var(--signup-cyan);
}

.ttv-signup-page .signup-get-started {
  border: 1px solid var(--signup-cyan);
  background: var(--signup-cyan);
  color: #04121f;
}

.ttv-signup-page .signup-demo-current:hover,
.ttv-signup-page .signup-get-started:hover {
  transform: translateY(-1px);
}

.ttv-signup-page .signup-main {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.82fr);
  gap: clamp(60px, 7vw, 96px);
  align-items: start;
  min-height: calc(100vh - 126px);
  padding: 82px 0 56px;
}

.ttv-signup-page .signup-intro {
  max-width: 600px;
  min-width: 0;
  padding: 40px 0 0;
}

.ttv-signup-page .signup-eyebrow {
  margin: 0 0 22px;
  color: var(--signup-cyan);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.ttv-signup-page .signup-eyebrow::before {
  display: none;
}

.ttv-signup-page .signup-intro h1 {
  max-width: 600px;
  margin: 0;
  color: #fff;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(46px, 4.6vw, 62px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.ttv-signup-page .signup-intro h1 span {
  color: var(--signup-cyan);
}

.ttv-signup-page .signup-lede {
  max-width: 500px;
  margin: 25px 0 0;
  color: #c4cae0;
  font-size: 16px;
  line-height: 1.68;
}

.ttv-signup-page .signup-response {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  margin: 31px 0 0;
  padding: 10px 15px 10px 13px;
  border: 1px solid rgba(57, 221, 177, 0.15);
  border-radius: 999px;
  background: rgba(57, 221, 177, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025), 0 10px 30px rgba(5, 12, 30, 0.11);
  color: rgba(207, 215, 237, 0.78);
  font-size: 12.5px;
  line-height: 1.4;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ttv-signup-page .signup-response-dot {
  position: relative;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #45e0b8;
  box-shadow: 0 0 0 4px rgba(69, 224, 184, 0.09), 0 0 14px rgba(69, 224, 184, 0.42);
}

.ttv-signup-page .signup-response-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(69, 224, 184, 0.34);
  border-radius: 50%;
  animation: signup-response-pulse 2.8s ease-out infinite;
}

.ttv-signup-page .signup-response-copy {
  display: inline;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

@keyframes signup-response-pulse {
  0%, 22% {
    opacity: 0;
    transform: scale(0.72);
  }
  36% {
    opacity: 0.72;
  }
  78%, 100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

.ttv-signup-page .signup-proof {
  max-width: 560px;
  margin-top: 52px;
}

.ttv-signup-page .signup-proof-label {
  margin: 0 0 15px;
  color: rgba(190, 199, 225, 0.68);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ttv-signup-page .signup-proof-marquee {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  border-left: 0 !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%) !important;
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%) !important;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.ttv-signup-page .signup-proof-track {
  display: flex;
  width: max-content;
  border-left: 0 !important;
  animation: signup-proof-scroll 28s linear infinite;
}

.ttv-signup-page .signup-proof-marquee::before,
.ttv-signup-page .signup-proof-marquee::after,
.ttv-signup-page .signup-proof-track::before,
.ttv-signup-page .signup-proof-track::after,
.ttv-signup-page .signup-proof-set::before,
.ttv-signup-page .signup-proof-set::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
}

.ttv-signup-page .signup-proof-marquee:hover .signup-proof-track,
.ttv-signup-page .signup-proof-marquee:focus-within .signup-proof-track {
  animation-play-state: paused;
}

.ttv-signup-page .signup-proof-set {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  border-left: 0 !important;
}

.ttv-signup-page .signup-proof-set img {
  display: block;
  height: 24px;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

.ttv-signup-page .signup-proof-set img.signup-proof-logo--square {
  height: 34px;
}

.ttv-signup-page .signup-proof-set img.signup-proof-logo--detail {
  height: 30px;
  opacity: 0.85;
  filter: grayscale(1) brightness(1.8) contrast(0.9);
}

.ttv-signup-page .signup-proof-set img:hover {
  opacity: 1;
  filter: none;
}

@keyframes signup-proof-scroll {
  to {
    transform: translateX(-50%);
  }
}

.ttv-signup-page .signup-form-wrap {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ttv-signup-page .signup-form-wrap::before {
  display: none;
}

.ttv-signup-page .ttv-trial {
  position: relative;
  inset: auto;
  z-index: 1;
  display: block;
  min-height: 0;
  padding: 0;
}

.ttv-signup-page .ttv-trial__backdrop,
.ttv-signup-page .ttv-trial__close {
  display: none;
}

.ttv-signup-page .ttv-trial__dialog {
  width: 100%;
  max-height: none;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(32, 40, 79, 0.78);
  box-shadow: 0 28px 72px rgba(5, 8, 22, 0.32);
  opacity: 1;
  transform: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ttv-signup-page .ttv-trial__dialog::before {
  display: none;
}

.ttv-signup-page .ttv-trial__grid,
.ttv-signup-page .ttv-trial__grid--standalone {
  display: block;
  min-height: 0;
}

.ttv-signup-page .ttv-trial__panel {
  display: block;
  min-height: 0;
  padding: 40px;
  border-radius: 20px;
  background: transparent;
}

.ttv-signup-page .ttv-trial__panel-head {
  margin-bottom: 27px;
  padding-right: 0;
}

.ttv-signup-page .ttv-trial__panel h3 {
  margin: 0;
  color: #fff;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.ttv-signup-page .ttv-trial__panel-head p {
  margin: 9px 0 0;
  color: var(--signup-muted);
  font-size: 13px;
  line-height: 1.65;
}

.ttv-signup-page .ttv-trial__form {
  gap: 16px;
}

.ttv-signup-page .ttv-trial__field {
  gap: 7px;
}

.ttv-signup-page .ttv-trial__field label {
  color: #d8dced;
  font-size: 12px;
  font-weight: 600;
}

.ttv-signup-page .ttv-trial__field input {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(8, 12, 30, 0.55);
  color: #fff;
  font: 500 14px/1.2 "Inter", sans-serif;
}

.ttv-signup-page .ttv-trial__field input:focus {
  border-color: rgba(30, 224, 255, 0.72);
  background: rgba(8, 12, 30, 0.72);
  box-shadow: 0 0 0 3px rgba(30, 224, 255, 0.08);
}

.ttv-signup-page .ttv-trial__submit,
.ttv-signup-page .ttv-trial__done {
  min-height: 52px;
  margin-top: 3px;
  border-radius: 10px;
  background: var(--signup-cyan);
  box-shadow: 0 8px 26px rgba(0, 207, 235, 0.22);
  color: #04121f;
  font: 700 14px/1 "Inter", sans-serif;
}

.ttv-signup-page .ttv-trial__fineprint {
  color: rgba(169, 178, 204, 0.65);
  font-size: 10.5px;
  overflow-wrap: anywhere;
}

.ttv-signup-page .ttv-trial__privacy {
  color: var(--signup-cyan);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.ttv-signup-page .ttv-trial__privacy:hover,
.ttv-signup-page .ttv-trial__privacy:focus-visible {
  color: #fff;
}

.ttv-signup-page .ttv-trial__success {
  min-height: 400px;
}

.ttv-signup-page .signup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 24px;
  color: rgba(144, 152, 186, 0.7);
  font-size: 12px;
}

.ttv-signup-page .signup-footer a:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .ttv-signup-page .signup-site-links {
    display: none;
  }

  .ttv-signup-page .signup-main {
    grid-template-columns: minmax(0, 0.88fr) minmax(390px, 1fr);
    gap: 46px;
    padding-top: 66px;
  }

  .ttv-signup-page .signup-intro {
    padding-top: 32px;
  }

  .ttv-signup-page .signup-intro h1 {
    font-size: clamp(44px, 5.5vw, 58px);
  }

  .ttv-signup-page .signup-lede {
    font-size: 16px;
  }
}

@media (max-width: 800px) {
  .ttv-signup-page .signup-demo-current {
    display: none;
  }

  .ttv-signup-page .signup-main {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: 0;
    padding: 58px 0 48px;
  }

  .ttv-signup-page .signup-intro,
  .ttv-signup-page .signup-form-wrap {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .ttv-signup-page .signup-proof {
    max-width: 620px;
    margin-top: 40px;
  }

  .ttv-signup-page .signup-intro {
    padding-top: 0;
  }

  .ttv-signup-page .signup-intro h1 {
    max-width: 580px;
  }
}

@media (max-width: 560px) {
  .ttv-signup-page .signup-site-nav,
  .ttv-signup-page .signup-main,
  .ttv-signup-page .signup-footer {
    width: calc(100% - 36px);
  }

  .ttv-signup-page .signup-site-nav {
    height: 66px;
  }

  .ttv-signup-page .signup-logo img {
    height: 28px;
  }

  .ttv-signup-page .signup-get-started {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .ttv-signup-page .signup-main {
    gap: 34px;
    padding: 42px 0 38px;
  }

  .ttv-signup-page .signup-eyebrow {
    margin-bottom: 17px;
    font-size: 13px;
  }

  .ttv-signup-page .signup-intro h1 {
    font-size: clamp(42px, 12vw, 55px);
  }

  .ttv-signup-page .signup-lede {
    margin-top: 21px;
    font-size: 15px;
  }

  .ttv-signup-page .signup-response {
    margin-top: 25px;
    font-size: 12px;
  }

  .ttv-signup-page .signup-proof {
    margin-top: 36px;
  }

  .ttv-signup-page .ttv-trial__panel {
    padding: 30px 22px 28px;
  }

  .ttv-signup-page .ttv-trial__panel h3 {
    font-size: 25px;
  }

  .ttv-signup-page .signup-footer {
    padding-bottom: 20px;
  }
}

@media (max-width: 380px) {
  .ttv-signup-page .signup-site-nav,
  .ttv-signup-page .signup-main,
  .ttv-signup-page .signup-footer {
    width: calc(100% - 28px);
  }

  .ttv-signup-page .signup-logo img {
    height: 25px;
  }

  .ttv-signup-page .signup-get-started {
    min-height: 36px;
    padding: 0 11px;
    font-size: 11px;
  }

  .ttv-signup-page .signup-main {
    padding-top: 36px;
  }

  .ttv-signup-page .signup-intro h1 {
    font-size: 39px;
  }

  .ttv-signup-page .signup-lede {
    font-size: 14px;
    line-height: 1.65;
  }

  .ttv-signup-page .signup-response {
    align-items: flex-start;
    padding-right: 13px;
    line-height: 1.5;
  }

  .ttv-signup-page .signup-response-dot {
    flex: 0 0 auto;
    margin-top: 5px;
  }

  .ttv-signup-page .ttv-trial__panel {
    padding: 27px 18px 25px;
  }

  .ttv-signup-page .ttv-trial__panel h3 {
    font-size: 23px;
  }

  .ttv-signup-page .ttv-trial__panel-head p {
    font-size: 12px;
  }

  .ttv-signup-page .ttv-trial__field input,
  .ttv-signup-page .ttv-trial__submit,
  .ttv-signup-page .ttv-trial__done {
    min-height: 48px;
  }

  .ttv-signup-page .signup-footer {
    gap: 14px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ttv-signup-page .signup-response-dot::after {
    animation: none;
    opacity: 0;
  }

  .ttv-signup-page .signup-proof-track {
    animation: none;
    transform: none;
  }
}

/* Cookie consent banner */
.cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(12, 15, 32, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
  padding: 18px 0;
  display: none;
}

body.show-cookies .cookiebar { display: block; }

.cookiebar .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.cookiebar p {
  flex: 1;
  min-width: 260px;
  font-size: 13px;
  line-height: 1.6;
  color: #b9bfd8;
  margin: 0;
}

.cookiebar p a { color: #1ee0ff; text-decoration: underline; }

.cookiebar .btn-accept {
  flex: 0 0 auto;
  background: #1ee0ff;
  color: #04121f;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 28px;
  border-radius: 9px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.cookiebar .btn-accept:hover { transform: translateY(-1px); }
