
#tb-auth :where(h2, p, a, label, input, button) {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  text-transform: none;
  letter-spacing: normal;
}
#tb-auth,
#tb-auth *,
#tb-auth *::before,
#tb-auth *::after { box-sizing: border-box; }
#tb-auth {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: #080b14;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;              
  padding: 32px 24px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
#tb-auth.tb-auth-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#tb-auth-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  width: 100%;
  max-width: 380px;
  margin: auto;                  
  animation: tb-auth-rise 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) 0.45s both;
}
#tb-auth.tb-auth-done #tb-auth-card { animation-play-state: paused; }
@keyframes tb-auth-rise {
  from { opacity: 0; transform: translateY(10px) scale(0.965); }
  to   { opacity: 1; transform: none; }
}
@keyframes tb-auth-appear {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#tb-auth #tb-auth-logo {
  height: 58px;
  filter:
    drop-shadow(0 0 14px rgba(245, 158, 11, 0.45))
    drop-shadow(0 0 5px rgba(245, 158, 11, 0.3));
}
#tb-auth #tb-auth-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 158, 11, 0.85);
}
#tb-auth #tb-auth-body {
  --tb-gate-gap: 14px;
  display: flex;
  flex-direction: column;
  gap: var(--tb-gate-gap);
  width: 100%;
}
#tb-auth #tb-auth-body.tb-body-swap {
  animation: tb-body-swap 260ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes tb-body-swap {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: none; }
}
#tb-auth .tb-auth-sub {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}
#tb-auth .tb-auth-note {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}
#tb-auth .tb-price-row-two .tb-price-amt,
#tb-auth .tb-price-alt-amt {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fbbf24;
  font-variant-numeric: tabular-nums;
}
#tb-auth .tb-price-annual {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
#tb-auth .tb-price-save {
  position: absolute;
  top: -12px;
  right: -14px;
  transform: rotate(9deg);
  transform-origin: 50% 100%;
  padding: 2px 7px;
  border-radius: 5px;
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
  white-space: nowrap;
  color: #1c1204;
  pointer-events: none;
  
  overflow: hidden;
  animation: tb-price-save-shake 4.5s ease-in-out infinite;
}
#tb-auth .tb-price-save::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 55%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: tb-price-save-shine 4.5s ease-in-out infinite;
}
@keyframes tb-price-save-shake {
  0%   { transform: rotate(9deg)    translateX(0); }
  2%   { transform: rotate(12.5deg) translateX(-1.5px); }
  4%   { transform: rotate(5.5deg)  translateX(1.5px); }
  6%   { transform: rotate(11.5deg) translateX(-1px); }
  8%   { transform: rotate(6.5deg)  translateX(1px); }
  10%  { transform: rotate(9deg)    translateX(0); }
  100% { transform: rotate(9deg)    translateX(0); }
}
@keyframes tb-price-save-shine {
  0%, 9%     { transform: translateX(0) skewX(-18deg); }
  24%, 100%  { transform: translateX(320%) skewX(-18deg); }
}
#tb-auth .tb-plan-choice {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
#tb-auth .tb-plan-opt {
  flex: 1 1 0;
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease;
}
#tb-auth .tb-plan-opt:hover { border-color: rgba(245, 158, 11, 0.45); }
#tb-auth .tb-plan-radio {
  position: absolute;
  width: 1px; height: 1px;
  margin: 0; padding: 0;
  opacity: 0;
  pointer-events: none;
}
#tb-auth .tb-plan-opt:has(.tb-plan-radio:checked) {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}
#tb-auth .tb-plan-opt:has(.tb-plan-radio:focus-visible) {
  outline: 2px solid rgba(245, 158, 11, 0.75);
  outline-offset: 2px;
}
#tb-auth .tb-plan-radio:checked ~ .tb-plan-face { opacity: 1; }
#tb-auth .tb-plan-face {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  opacity: 0.72;
  transition: opacity 140ms ease;
}
#tb-auth .tb-plan-opt .tb-price-amt,
#tb-auth .tb-plan-opt .tb-price-alt-amt {
  font-size: 21px;
}
#tb-auth .tb-price-sep {
  margin: 0 2px;
  font-size: 19px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
}
#tb-auth .tb-status {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
#tb-auth .tb-status::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}
#tb-auth .tb-dots { display: inline-block; }
#tb-auth .tb-dot  { opacity: 1; }
#tb-auth .tb-dot:nth-child(2) { animation: tb-dot-2 1.2s linear infinite; }
#tb-auth .tb-dot:nth-child(3) { animation: tb-dot-3 1.2s linear infinite; }
@keyframes tb-dot-2 { 0%, 33.32% { opacity: 0 } 33.33%, 100% { opacity: 1 } }
@keyframes tb-dot-3 { 0%, 66.65% { opacity: 0 } 66.66%, 100% { opacity: 1 } }
#tb-auth #tb-auth-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
  margin-top: 10px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.55);
}
#tb-auth .tb-auth-prop {
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
#tb-auth .tb-auth-colophon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px 10px;                 
}
#tb-auth .tb-auth-vet {
  font-weight: 700;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.75);
}
#tb-auth .tb-auth-flag {
  vertical-align: -1px;
  margin-left: 2px;
  border-radius: 1px;
}
#tb-auth .tb-auth-sep { color: rgba(255, 255, 255, 0.25); }
#tb-auth .tb-auth-copy { white-space: nowrap; }
@media (max-width: 430px) {
  #tb-auth .tb-auth-colophon { flex-direction: column; gap: 3px; }
  #tb-auth .tb-auth-sep { display: none; }
}
#tb-auth .tb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;              
  padding: 12px 20px;
  border: 1px solid transparent; 
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
#tb-auth .tb-btn:active { transform: scale(0.99); }
#tb-auth .tb-btn:disabled { opacity: 0.55; cursor: default; transform: none; }
#tb-auth .tb-btn-primary {
  background: linear-gradient(180deg, #f59e0b, #d97706);
  color: #1a1206;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 6px 18px rgba(245, 158, 11, 0.22);
}
#tb-auth .tb-btn-primary:hover:not(:disabled) {
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
}
#tb-auth .tb-btn-google {
  background: #fff;
  color: #1f1f1f;
  border-color: rgba(255, 255, 255, 0.18);
}
#tb-auth .tb-btn-google:hover:not(:disabled) { background: #f1f3f4; }
#tb-auth .tb-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.16);
}
#tb-auth .tb-btn-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}
#tb-auth .tb-btn-icon { display: inline-flex; }
#tb-auth .tb-btn:focus-visible,
#tb-auth .tb-link:focus-visible,
#tb-auth .tb-eye:focus-visible,
#tb-auth input:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
#tb-auth .tb-link {
  color: rgba(245, 158, 11, 0.9);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}
#tb-auth .tb-link:hover:not(:disabled) { color: #fbbf24; text-decoration: underline; }
#tb-auth .tb-link:disabled { opacity: 0.5; cursor: default; }
#tb-auth .tb-or {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
#tb-auth .tb-or::before,
#tb-auth .tb-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}
#tb-auth .tb-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  text-align: left;
}
#tb-auth .tb-field { display: flex; flex-direction: column; gap: 5px; }
#tb-auth .tb-field-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 10px;                
}
#tb-auth .tb-field-pair > .tb-field { flex: 1 1 130px; min-width: 0; }
#tb-auth .tb-field > label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
#tb-auth input[type="text"],
#tb-auth input[type="email"],
#tb-auth input[type="password"] {
  width: 100%;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  color: #f3f4f6;
  font-size: 15px;               
  transition: border-color 0.15s ease, background 0.15s ease;
}
#tb-auth input::placeholder { color: rgba(255, 255, 255, 0.4); }
#tb-auth input:hover:not(:disabled) { border-color: rgba(255, 255, 255, 0.26); }
#tb-auth input:focus {
  outline: none;
  border-color: rgba(245, 158, 11, 0.75);
  background: rgba(255, 255, 255, 0.07);
}
#tb-auth input[aria-invalid="true"] { border-color: #ef4444; }
#tb-auth input:disabled { opacity: 0.6; }
#tb-auth input:-webkit-autofill,
#tb-auth input:-webkit-autofill:hover,
#tb-auth input:-webkit-autofill:focus {
  -webkit-text-fill-color: #f3f4f6;
  -webkit-box-shadow: 0 0 0 40px #131722 inset;
  caret-color: #f3f4f6;
}
#tb-auth .tb-input-wrap { position: relative; display: flex; }
#tb-auth .tb-input-wrap input { padding-right: 44px; }
#tb-auth .tb-eye {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
#tb-auth .tb-eye:hover:not(:disabled) { color: rgba(255, 255, 255, 0.85); }
#tb-auth .tb-eye:disabled { opacity: 0.4; cursor: default; }
#tb-auth .tb-eye-icon { display: inline-flex; }
#tb-auth .tb-field-err {
  font-size: 11.5px;
  line-height: 1.45;
  color: #fca5a5;
}
#tb-auth .tb-field-err:empty { display: none; }
#tb-auth .tb-reqs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 1px 0 0;
  padding: 0;
  list-style: none;
}
#tb-auth .tb-req {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s ease;
}
#tb-auth .tb-req-mark {
  display: inline-flex;
  flex: none;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
#tb-auth .tb-req[data-state="met"] { color: #6ee7b7; }
#tb-auth .tb-req[data-state="met"] .tb-req-mark { opacity: 1; }
#tb-auth .tb-req[data-state="missing"] { color: #fca5a5; }
#tb-auth .tb-req[data-state="missing"] .tb-req-mark { opacity: 0.9; }
#tb-auth .tb-match {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}
#tb-auth .tb-match:empty { display: none; }
#tb-auth .tb-match[data-state="ok"]  { color: #6ee7b7; }
#tb-auth .tb-match[data-state="bad"] { color: #fca5a5; }
#tb-auth .tb-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
#tb-auth .tb-caps {
  font-size: 11.5px;
  font-weight: 600;
  color: #fbbf24;
}
#tb-auth .tb-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
#tb-auth .tb-check {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}
#tb-auth input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #f59e0b;
  cursor: pointer;
}
#tb-auth .tb-msg {
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  text-align: center;
}
#tb-auth .tb-msg:empty { display: none; }
#tb-auth .tb-msg-in {
  overflow: hidden;
  animation: tb-msg-in 320ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
#tb-auth .tb-msg-out {
  overflow: hidden;
  animation: tb-msg-out 300ms cubic-bezier(0.55, 0, 0.55, 0.2) both;
}
@keyframes tb-msg-in {
  from {
    opacity: 0;
    transform: translateY(4px);
    max-height: 0;
    margin-top: calc(-1 * var(--tb-gate-gap, 14px));
    padding-top: 0;
    padding-bottom: 0;
    border-top-width: 0;
    border-bottom-width: 0;
  }
  to {
    opacity: 1;
    transform: none;
    max-height: var(--tb-msg-h, none);
    margin-top: 0;
    padding-top: 9px;
    padding-bottom: 9px;
    border-top-width: 1px;
    border-bottom-width: 1px;
  }
}
@keyframes tb-msg-out {
  from {
    opacity: 1;
    transform: none;
    max-height: var(--tb-msg-h, none);
    margin-top: 0;
    padding-top: 9px;
    padding-bottom: 9px;
    border-top-width: 1px;
    border-bottom-width: 1px;
  }
  to {
    opacity: 0;
    transform: translateY(-4px);
    max-height: 0;
    margin-top: calc(-1 * var(--tb-gate-gap, 14px));
    padding-top: 0;
    padding-bottom: 0;
    border-top-width: 0;
    border-bottom-width: 0;
  }
}
#tb-auth .tb-msg-err {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.28);
}
#tb-auth .tb-msg-ok {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.28);
}
#tb-auth .tb-foot {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
}
#tb-auth .tb-schools {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.42);
}
#tb-auth a.tb-link {
  text-decoration: none;
  font-size: inherit;
}
#tb-auth .tb-offer {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.07);
}
#tb-auth .tb-offer-lead {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #fbbf24;
}
#tb-auth .tb-offer-terms {
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px solid rgba(245, 158, 11, 0.22);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  text-wrap: balance;
}
#tb-auth .tb-pay-element {
  width: 100%;
  min-height: 210px;
  text-align: left;
}
#tb-auth .tb-pay-terms {
  width: 100%;
  text-align: left;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  padding: 10px 12px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}
#tb-auth .tb-pay-terms strong {
  color: #fbbf24;
  font-weight: 600;
}
#tb-auth .tb-pay-refund {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.52);
}
#tb-auth .tb-price {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#tb-auth .tb-price-plans {
  padding-top: 22px;
}
#tb-auth .tb-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
#tb-auth .tb-price-terms {
  margin-top: 9px;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}
#tb-auth .tb-price-terms::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  margin: 0 auto 9px;
  background: rgba(255, 255, 255, 0.1);
}
#tb-auth .tb-price-amt {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fbbf24;
  font-variant-numeric: tabular-nums;
}
#tb-auth .tb-price-per {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
#tb-account {
  padding: 4px 12px 6px;
  font-size: 11.5px;
  color: #777;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
html.tb-gated, html.tb-gated body { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  #tb-auth, #tb-auth .tb-btn { transition: none; }
  #tb-auth #tb-auth-body.tb-body-swap { animation: none; }
  #tb-auth #tb-auth-card {
    animation-name: tb-auth-appear;
    animation-duration: 0.01s;
  }
  #tb-auth .tb-dot { animation: none; opacity: 1; }
  #tb-auth .tb-msg-in, #tb-auth .tb-msg-out { animation: none; }
  #tb-auth .tb-price-save { animation: none; }
  #tb-auth .tb-price-save::after { animation: none; opacity: 0; }
}
