@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --ttv-form-navy: #11172f;
  --ttv-form-navy-deep: #090d1d;
  --ttv-form-cyan: #1ee0ff;
  --ttv-form-text: #f5f8ff;
  --ttv-form-muted: #a9b2cc;
}

body.ttv-trial-open {
  overflow: hidden;
}

.btn-demo {
  border: 1px solid rgba(160, 144, 255, 0.52) !important;
  background: rgba(112, 88, 220, 0.09) !important;
  box-shadow: none !important;
  color: #f4f1ff !important;
  white-space: nowrap;
}

.btn-demo:hover {
  border-color: rgba(188, 176, 255, 0.88) !important;
  background: rgba(124, 99, 230, 0.17) !important;
  box-shadow: 0 10px 26px rgba(92, 68, 190, 0.18) !important;
  transform: translateY(-1px);
}

.m-nav .btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 4px;
  border-bottom: 1px solid rgba(160, 144, 255, 0.52);
  border-radius: 9px;
  font-weight: 600;
}

.ttv-trial[hidden] {
  display: none;
}

.ttv-trial {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ttv-trial__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 17, 0.76);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.ttv-trial__dialog {
  position: relative;
  width: min(930px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(58% 80% at -2% 102%, rgba(0, 207, 235, 0.19), transparent 68%),
    radial-gradient(52% 70% at 103% -8%, rgba(93, 68, 223, 0.22), transparent 68%),
    linear-gradient(135deg, rgba(29, 37, 75, 0.98), rgba(10, 14, 31, 0.99) 64%);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.62), 0 0 70px rgba(0, 207, 235, 0.08);
  color: var(--ttv-form-text);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  isolation: isolate;
}

.ttv-trial__dialog::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 210px;
  left: -150px;
  top: -112px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(0, 207, 235, 0.34), rgba(0, 133, 254, 0.18) 48%, rgba(205, 68, 223, 0.2));
  filter: blur(55px);
  transform: rotate(-9deg);
  opacity: 0.72;
  pointer-events: none;
}

.ttv-trial.is-open .ttv-trial__backdrop,
.ttv-trial.is-open .ttv-trial__dialog {
  opacity: 1;
}

.ttv-trial.is-open .ttv-trial__dialog {
  transform: translateY(0) scale(1);
}

.ttv-trial__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(7, 11, 25, 0.36);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.ttv-trial__close:hover {
  border-color: rgba(30, 224, 255, 0.6);
  background: rgba(30, 224, 255, 0.08);
  color: #fff;
}

.ttv-trial__close:focus-visible,
.ttv-trial__form input:focus-visible,
.ttv-trial__submit:focus-visible,
.ttv-trial__done:focus-visible {
  outline: 3px solid rgba(30, 224, 255, 0.34);
  outline-offset: 3px;
}

.ttv-trial__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(400px, 1.12fr);
  min-height: 570px;
}

.ttv-trial__brand,
.ttv-trial__panel {
  position: relative;
  padding: 64px 54px 54px;
}

.ttv-trial__brand {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ttv-trial__logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: 185px;
  object-fit: contain;
  object-position: left center;
}

.ttv-trial__brand-copy {
  max-width: 320px;
  margin: auto 0;
}

.ttv-trial__brand h2 {
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(29px, 3.4vw, 43px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.ttv-trial__brand h2 span {
  color: var(--ttv-form-cyan);
}

.ttv-trial__brand p {
  margin: 22px 0 0;
  color: var(--ttv-form-muted);
  font-size: 14px;
  line-height: 1.75;
}

.ttv-trial__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(5, 8, 19, 0.2);
}

.ttv-trial__panel-head {
  margin-bottom: 28px;
  padding-right: 34px;
}

.ttv-trial__panel h3 {
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

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

.ttv-trial__form {
  display: grid;
  gap: 17px;
}

.ttv-trial__field {
  display: grid;
  gap: 8px;
}

.ttv-trial__field label {
  color: rgba(238, 242, 252, 0.88);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.ttv-trial__field input {
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 11px;
  background: rgba(7, 11, 27, 0.48);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  color: #fff;
  font: 500 14px/1.2 "Poppins", sans-serif;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.ttv-trial__field input::placeholder {
  color: rgba(169, 178, 204, 0.56);
}

.ttv-trial__field input:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

.ttv-trial__field input:focus {
  border-color: rgba(30, 224, 255, 0.78);
  background: rgba(7, 11, 27, 0.7);
  box-shadow: 0 0 0 3px rgba(30, 224, 255, 0.09), 0 0 28px rgba(30, 224, 255, 0.05);
  outline: 0;
}

.ttv-trial__submit,
.ttv-trial__done {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 11px;
  background: var(--ttv-form-cyan);
  box-shadow: 0 13px 34px rgba(0, 207, 235, 0.21);
  color: #07121e;
  cursor: pointer;
  font: 600 14px/1 "Poppins", sans-serif;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.ttv-trial__submit:hover,
.ttv-trial__done:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(0, 207, 235, 0.31);
}

.ttv-trial__submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.ttv-trial__submit svg {
  transition: transform 160ms ease;
}

.ttv-trial__submit:hover svg {
  transform: translateX(2px);
}

.ttv-trial__fineprint {
  margin: -3px 0 0;
  color: rgba(169, 178, 204, 0.62);
  font-size: 10.5px;
  line-height: 1.55;
}

.ttv-trial__privacy {
  color: #21d3ee;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.ttv-trial__privacy:hover,
.ttv-trial__privacy:focus-visible {
  color: #ffffff;
}

.ttv-trial__status {
  min-height: 0;
  margin: 0;
  color: #ffb7be;
  font-size: 12px;
  line-height: 1.5;
}

.ttv-trial__success {
  display: grid;
  min-height: 390px;
  align-content: center;
  justify-items: start;
}

.ttv-trial__success[hidden] {
  display: none;
}

.ttv-trial__success-mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid rgba(30, 224, 255, 0.42);
  border-radius: 50%;
  background: rgba(30, 224, 255, 0.1);
  box-shadow: 0 0 30px rgba(30, 224, 255, 0.11);
  color: var(--ttv-form-cyan);
}

.ttv-trial__success h3 {
  max-width: 350px;
  font-size: 31px;
}

.ttv-trial__success p {
  max-width: 370px;
  margin: 13px 0 28px;
  color: var(--ttv-form-muted);
  font-size: 14px;
  line-height: 1.7;
}

.ttv-trial__done {
  min-width: 132px;
  padding: 0 22px;
}

@media (max-width: 760px) {
  .ttv-trial {
    align-items: end;
    padding: 12px;
  }

  .ttv-trial__dialog {
    width: 100%;
    max-height: calc(100dvh - 24px);
    border-radius: 23px;
  }

  .ttv-trial__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ttv-trial__brand,
  .ttv-trial__panel {
    padding: 34px 27px;
  }

  .ttv-trial__brand {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ttv-trial__logo {
    height: 28px;
  }

  .ttv-trial__brand-copy {
    margin: 38px 0 0;
  }

  .ttv-trial__brand h2 {
    max-width: 310px;
    font-size: 29px;
  }

  .ttv-trial__brand p {
    display: none;
  }

  .ttv-trial__panel {
    padding-top: 31px;
  }

  .ttv-trial__panel-head {
    margin-bottom: 22px;
  }

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

  .ttv-trial__success {
    min-height: 330px;
  }
}

@media (max-width: 900px) {
  header.nav .btn-demo {
    display: none;
  }
}

@media (max-width: 420px) {
  .ttv-trial__brand {
    min-height: 184px;
  }

  .ttv-trial__brand-copy {
    margin: 28px 0 0;
  }

  .ttv-trial__panel {
    padding-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ttv-trial__backdrop,
  .ttv-trial__dialog,
  .ttv-trial__close,
  .ttv-trial__submit,
  .ttv-trial__done {
    transition: none;
  }
}

/* Standalone demo request page */
body.ttv-signup-page {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: #070b19;
  color: var(--ttv-form-text);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ttv-signup-page::before {
  content: "";
  position: fixed;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(750px 580px at -4% 26%, rgba(0, 133, 254, 0.24), transparent 68%),
    radial-gradient(700px 560px at 102% 12%, rgba(131, 65, 214, 0.22), transparent 65%),
    radial-gradient(650px 520px at 60% 112%, rgba(0, 207, 235, 0.12), transparent 70%),
    linear-gradient(135deg, #090e22 0%, #090b1a 46%, #0d1025 100%);
}

.ttv-signup-page::after {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 80%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 80%);
}

.ttv-signup-page .signup-atmosphere {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ttv-signup-page .signup-orbit {
  position: absolute;
  display: block;
  border: 1px solid rgba(88, 211, 255, 0.14);
  border-radius: 50%;
  transform: rotate(-26deg);
}

.ttv-signup-page .signup-orbit--one {
  width: 820px;
  height: 260px;
  top: 6%;
  right: -310px;
  box-shadow: 0 0 120px rgba(96, 72, 212, 0.12);
}

.ttv-signup-page .signup-orbit--two {
  width: 660px;
  height: 240px;
  bottom: -135px;
  left: -240px;
  border-color: rgba(30, 224, 255, 0.13);
}

.ttv-signup-page .signup-header,
.ttv-signup-page .signup-main,
.ttv-signup-page .signup-footer {
  position: relative;
  width: min(1260px, calc(100% - 72px));
  margin-right: auto;
  margin-left: auto;
}

.ttv-signup-page .signup-header {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.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: 37px;
}

.ttv-signup-page .signup-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ttv-signup-page .signup-nav a {
  color: rgba(229, 234, 251, 0.62);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease;
}

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

.ttv-signup-page .signup-home {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(126, 216, 255, 0.32);
  border-radius: 999px;
  background: rgba(33, 48, 83, 0.36);
  color: rgba(247, 250, 255, 0.91) !important;
}

.ttv-signup-page .signup-home:hover {
  border-color: rgba(30, 224, 255, 0.62);
  background: rgba(30, 224, 255, 0.1);
}

.ttv-signup-page .signup-home span {
  color: var(--ttv-form-cyan);
  font-size: 16px;
  line-height: 1;
}

.ttv-signup-page .signup-main {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.9fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
  min-height: calc(100vh - 176px);
  padding: 70px 0 60px;
}

.ttv-signup-page .signup-intro {
  max-width: 560px;
  padding: 30px 0;
}

.ttv-signup-page .signup-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 25px;
  color: var(--ttv-form-cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: none;
}

.ttv-signup-page .signup-eyebrow::before {
  width: 31px;
  height: 2px;
  border-radius: 99px;
  background: var(--ttv-form-cyan);
  box-shadow: 0 0 14px rgba(30, 224, 255, 0.58);
  content: "";
}

.ttv-signup-page .signup-intro h1 {
  max-width: 600px;
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.04;
}

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

.ttv-signup-page .signup-lede {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(192, 202, 229, 0.86);
  font-size: 15px;
  line-height: 1.75;
}

.ttv-signup-page .signup-value-list {
  display: grid;
  gap: 0;
  max-width: 525px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.ttv-signup-page .signup-value {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.ttv-signup-page .signup-value__number {
  color: var(--ttv-form-cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.ttv-signup-page .signup-value h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ttv-signup-page .signup-value p {
  margin: 6px 0 0;
  color: rgba(169, 178, 204, 0.86);
  font-size: 12px;
  line-height: 1.65;
}

.ttv-signup-page .signup-response {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 25px 0 0;
  color: rgba(210, 219, 240, 0.66);
  font-size: 11px;
}

.ttv-signup-page .signup-response-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ae4ae;
  box-shadow: 0 0 0 4px rgba(42, 228, 174, 0.09), 0 0 12px rgba(42, 228, 174, 0.75);
}

.ttv-signup-page .signup-form-wrap {
  position: relative;
  padding: 1px;
  border-radius: 25px;
  background: linear-gradient(140deg, rgba(134, 229, 255, 0.48), rgba(126, 97, 235, 0.35) 43%, rgba(255, 255, 255, 0.1) 78%);
  box-shadow: 0 38px 95px rgba(0, 0, 0, 0.33), 0 0 68px rgba(0, 207, 235, 0.08);
}

.ttv-signup-page .signup-form-wrap::before {
  position: absolute;
  z-index: -1;
  width: 72%;
  height: 68%;
  top: 17%;
  right: -10%;
  border-radius: 50%;
  background: rgba(81, 62, 214, 0.32);
  filter: blur(64px);
  content: "";
}

.ttv-signup-page .signup-form-topline {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px 14px;
  border-radius: 24px 24px 0 0;
  background: rgba(12, 17, 40, 0.94);
  color: rgba(211, 220, 244, 0.62);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: 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: 0;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(145deg, rgba(21, 29, 63, 0.98), rgba(7, 11, 27, 0.99) 70%);
  box-shadow: none;
  opacity: 1;
  transform: none;
}

.ttv-signup-page .ttv-trial__dialog::before {
  width: 420px;
  height: 180px;
  top: -90px;
  left: -160px;
  opacity: 0.42;
}

.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: 36px 42px 39px;
  border-radius: 0 0 24px 24px;
  background: transparent;
}

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

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

.ttv-signup-page .ttv-trial__panel-head p {
  max-width: 430px;
  margin-top: 10px;
  font-size: 13px;
}

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

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

.ttv-signup-page .ttv-trial__field label {
  font-size: 11px;
  letter-spacing: 0.02em;
}

.ttv-signup-page .ttv-trial__field input {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(5, 9, 24, 0.5);
}

.ttv-signup-page .ttv-trial__submit {
  min-height: 55px;
  margin-top: 4px;
  border-radius: 12px;
}

.ttv-signup-page .ttv-trial__fineprint {
  max-width: 410px;
  margin-top: -1px;
}

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

.ttv-signup-page .signup-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 33px;
  color: rgba(183, 194, 224, 0.46);
  font-size: 10px;
}

@media (max-width: 960px) {
  .ttv-signup-page .signup-main {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 58px;
  }

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

  .ttv-signup-page .signup-form-wrap {
    width: min(600px, 100%);
  }
}

@media (max-width: 650px) {
  .ttv-signup-page .signup-header,
  .ttv-signup-page .signup-main,
  .ttv-signup-page .signup-footer {
    width: min(100% - 40px, 1260px);
  }

  .ttv-signup-page .signup-header {
    min-height: 78px;
  }

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

  .ttv-signup-page .signup-nav {
    gap: 0;
  }

  .ttv-signup-page .signup-nav > a:not(.signup-home) {
    display: none;
  }

  .ttv-signup-page .signup-home {
    min-height: 35px;
    padding: 0 12px;
    font-size: 11px !important;
  }

  .ttv-signup-page .signup-main {
    min-height: 0;
    gap: 37px;
    padding: 44px 0 44px;
  }

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

  .ttv-signup-page .signup-eyebrow {
    margin-bottom: 18px;
  }

  .ttv-signup-page .signup-intro h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .ttv-signup-page .signup-lede {
    margin-top: 22px;
    font-size: 14px;
  }

  .ttv-signup-page .signup-value-list {
    margin-top: 32px;
  }

  .ttv-signup-page .signup-value {
    grid-template-columns: 34px 1fr;
    gap: 11px;
    padding: 18px 0;
  }

  .ttv-signup-page .signup-form-topline {
    padding: 14px 20px 12px;
  }

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

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

  .ttv-signup-page .ttv-trial__panel-head {
    margin-bottom: 23px;
  }

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

  .ttv-signup-page .signup-footer {
    display: grid;
    gap: 7px;
    padding-bottom: 24px;
  }
}

/* Align the standalone page with the existing tarrific.tv site shell. */
body.ttv-signup-page {
  background: #0b1024;
}

.ttv-signup-page::before {
  z-index: -1;
  background:
    radial-gradient(680px 480px at 8% 18%, rgba(0, 133, 254, 0.15), transparent 70%),
    radial-gradient(560px 420px at 94% 6%, rgba(93, 68, 223, 0.16), transparent 70%),
    radial-gradient(520px 420px at 87% 90%, rgba(255, 24, 185, 0.06), transparent 70%),
    linear-gradient(135deg, #0d1229 0%, #0a0f22 58%, #10132b 100%);
}

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

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

.ttv-signup-page .signup-site-nav {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.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: 29px;
  margin-left: auto;
  margin-right: 35px;
}

.ttv-signup-page .signup-site-links a,
.ttv-signup-page .signup-lang {
  color: rgba(192, 201, 229, 0.82);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease;
}

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

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

.ttv-signup-page .signup-lang {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 3px;
  font-weight: 600;
}

.ttv-signup-page .signup-lang span {
  color: rgba(192, 201, 229, 0.7);
  font-size: 16px;
  line-height: 1;
}

.ttv-signup-page .signup-demo-current,
.ttv-signup-page .signup-get-started {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.ttv-signup-page .signup-demo-current {
  border: 1px solid rgba(160, 144, 255, 0.52);
  background: rgba(112, 88, 220, 0.09);
  color: #f4f1ff;
}

.ttv-signup-page .signup-demo-current:hover {
  border-color: rgba(188, 176, 255, 0.88);
  background: rgba(124, 99, 230, 0.17);
}

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

.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, 0.9fr) minmax(420px, 0.92fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: center;
  min-height: calc(100vh - 139px);
  padding: 52px 0 38px;
}

.ttv-signup-page .signup-intro {
  max-width: 505px;
  padding: 0;
}

.ttv-signup-page .signup-eyebrow {
  margin: 0 0 19px;
  color: var(--ttv-form-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

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

.ttv-signup-page .signup-intro h1 {
  max-width: 520px;
  font-size: clamp(42px, 4.65vw, 64px);
  font-weight: 600;
  letter-spacing: -0.058em;
  line-height: 1.06;
}

.ttv-signup-page .signup-lede {
  max-width: 450px;
  margin-top: 23px;
  color: var(--ttv-form-muted);
  font-size: 15px;
  line-height: 1.72;
}

.ttv-signup-page .signup-proof {
  display: grid;
  gap: 15px;
  max-width: 460px;
  margin-top: 37px;
}

.ttv-signup-page .signup-proof div {
  padding-left: 16px;
  border-left: 2px solid rgba(30, 224, 255, 0.72);
}

.ttv-signup-page .signup-proof strong,
.ttv-signup-page .signup-proof span {
  display: block;
}

.ttv-signup-page .signup-proof strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 600;
}

.ttv-signup-page .signup-proof span {
  margin-top: 4px;
  color: rgba(169, 178, 204, 0.88);
  font-size: 12px;
  line-height: 1.55;
}

.ttv-signup-page .signup-response {
  margin-top: 25px;
  color: rgba(187, 198, 228, 0.56);
  font-size: 11px;
}

.ttv-signup-page .signup-form-wrap {
  width: 100%;
  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;
  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.13);
  border-radius: 24px;
  background:
    radial-gradient(58% 80% at -2% 102%, rgba(0, 207, 235, 0.17), transparent 68%),
    radial-gradient(52% 70% at 103% -8%, rgba(93, 68, 223, 0.2), transparent 68%),
    linear-gradient(135deg, rgba(29, 37, 75, 0.98), rgba(10, 14, 31, 0.99) 64%);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.34), 0 0 54px rgba(0, 207, 235, 0.05);
  opacity: 1;
  transform: none;
}

.ttv-signup-page .ttv-trial__dialog::before {
  width: 440px;
  height: 180px;
  top: -115px;
  left: -175px;
  opacity: 0.46;
}

.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: 43px 45px 41px;
  border-radius: 24px;
  background: transparent;
}

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

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

.ttv-signup-page .ttv-trial__panel-head p {
  margin-top: 10px;
}

.ttv-signup-page .ttv-trial__field input {
  min-height: 51px;
}

.ttv-signup-page .ttv-trial__submit {
  min-height: 53px;
  margin-top: 3px;
}

.ttv-signup-page .ttv-trial__submit:focus-visible,
.ttv-signup-page .ttv-trial__done:focus-visible {
  outline-color: rgba(255, 255, 255, 0.56);
}

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

.ttv-signup-page .signup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 26px;
  color: rgba(169, 178, 204, 0.5);
  font-size: 11px;
}

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

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

@media (max-width: 1040px) {
  .ttv-signup-page .signup-site-links {
    gap: 19px;
    margin-right: 22px;
  }

  .ttv-signup-page .signup-main {
    grid-template-columns: minmax(0, 0.85fr) minmax(390px, 0.95fr);
    gap: 44px;
  }
}

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

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

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

  .ttv-signup-page .signup-form-wrap {
    max-width: 610px;
  }
}

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

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

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

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

  .ttv-signup-page .signup-demo-current,
  .ttv-signup-page .signup-get-started {
    min-height: 37px;
    padding: 0 10px;
    border-radius: 9px;
    font-size: 11px;
  }

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

  .ttv-signup-page .signup-intro h1 {
    font-size: clamp(40px, 11.5vw, 53px);
  }

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

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

  .ttv-signup-page .ttv-trial__panel {
    padding: 31px 23px 29px;
  }

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

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