.tk-popup-studio[hidden]{display:none!important}
.tk-popup-studio{
  --tk-popup-navy:#071a35;
  --tk-popup-navy-soft:#123a63;
  --tk-popup-orange:#ff7627;
  --tk-popup-orange-light:#ffad5b;
  --tk-popup-ink:#f8fbff;
  --tk-popup-muted:#cfdbeb;
  --tk-popup-overlay-opacity:.42;
  --tk-popup-backdrop-blur:2px;
  position:fixed;
  z-index:9999;
  top:0;
  right:0;
  bottom:0;
  left:0;
  inset:0;
  display:grid;
  box-sizing:border-box;
  place-items:center;
  padding:18px;
  padding:max(18px,env(safe-area-inset-top)) max(18px,env(safe-area-inset-right)) max(18px,env(safe-area-inset-bottom)) max(18px,env(safe-area-inset-left));
  font-family:inherit;
  isolation:isolate;
}
.tk-popup-studio *{box-sizing:border-box}
.tk-popup-studio__backdrop{
  position:absolute;
  z-index:0;
  top:0;
  right:0;
  bottom:0;
  left:0;
  inset:0;
  width:100%;
  height:100%;
  margin:0;
  padding:0;
  border:0;
  border-radius:0;
  background:linear-gradient(135deg,rgba(3,14,32,var(--tk-popup-overlay-opacity)),rgba(8,25,52,var(--tk-popup-overlay-opacity)));
  -webkit-backdrop-filter:blur(var(--tk-popup-backdrop-blur)) saturate(.96);
  backdrop-filter:blur(var(--tk-popup-backdrop-blur)) saturate(.96);
  cursor:pointer;
  appearance:none;
}
.tk-popup-studio__dialog{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(230px,40%) minmax(0,1fr);
  width:94vw;
  max-width:880px;
  width:min(880px,94vw);
  max-height:86vh;
  max-height:min(700px,86vh);
  overflow-x:hidden;
  overflow-y:auto;
  overscroll-behavior:contain;
  border:1px solid rgba(255,255,255,.36);
  border-radius:28px;
  background:
    radial-gradient(circle at 95% 8%,rgba(255,118,39,.38),transparent 29%),
    radial-gradient(circle at 8% 100%,rgba(48,137,230,.28),transparent 38%),
    linear-gradient(135deg,var(--tk-popup-navy) 0%,#0b2a52 56%,var(--tk-popup-navy-soft) 100%);
  color:var(--tk-popup-ink);
  box-shadow:
    0 0 0 3px rgba(255,118,39,.72),
    0 0 0 7px rgba(255,255,255,.1),
    0 38px 110px rgba(1,11,29,.48);
  outline:0;
  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.35) transparent;
}
.tk-popup-studio__dialog::before{
  content:"";
  position:absolute;
  z-index:0;
  top:-72px;
  right:-54px;
  width:280px;
  height:280px;
  border:1px solid rgba(255,189,128,.55);
  border-radius:50%;
  box-shadow:
    0 0 0 34px rgba(255,118,39,.09),
    0 0 0 72px rgba(255,255,255,.045);
  pointer-events:none;
}
.tk-popup-studio__dialog::after{
  content:"";
  position:absolute;
  z-index:0;
  right:32px;
  bottom:28px;
  width:126px;
  height:86px;
  opacity:.24;
  background-image:radial-gradient(circle,rgba(255,255,255,.82) 1.4px,transparent 1.6px);
  background-size:13px 13px;
  pointer-events:none;
}
.tk-popup-studio__dialog--text{
  grid-template-columns:1fr;
  max-width:740px;
  width:min(740px,94vw);
  min-height:390px;
}
.tk-popup-studio__media{
  position:relative;
  z-index:1;
  min-height:340px;
  margin:0;
  overflow:hidden;
  border-right:1px solid rgba(255,255,255,.18);
  border-radius:27px 0 0 27px;
  background:linear-gradient(145deg,#10294f,#1f416f);
}
.tk-popup-studio__media::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(4,20,43,.56));
  pointer-events:none;
}
.tk-popup-studio__media img{
  display:block;
  width:100%;
  height:100%;
  min-height:340px;
  max-height:560px;
  object-fit:cover;
}
.tk-popup-studio__content{
  position:relative;
  z-index:1;
  align-self:center;
  min-width:0;
  word-wrap:break-word;
  overflow-wrap:anywhere;
  padding:48px 46px 44px;
}
.tk-popup-studio__dialog--text .tk-popup-studio__content{padding:52px 245px 48px 48px}
.tk-popup-studio__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  min-height:28px;
  margin:0 0 14px;
  padding:6px 11px;
  border:1px solid rgba(255,170,91,.38);
  border-radius:999px;
  background:rgba(255,118,39,.12);
  color:#ffc28c;
  font-size:11px;
  font-weight:900;
  letter-spacing:.15em;
  line-height:1;
  text-transform:uppercase;
}
.tk-popup-studio__eyebrow::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:2px;
  background:linear-gradient(135deg,var(--tk-popup-orange-light),var(--tk-popup-orange));
  box-shadow:0 0 14px rgba(255,118,39,.75);
  transform:rotate(45deg);
}
.tk-popup-studio__content h2{
  max-width:18ch;
  margin:0;
  color:#fff;
  font-size:36px;
  font-weight:880;
  line-height:1.05;
  letter-spacing:-.042em;
  text-wrap:balance;
}
.tk-popup-studio__description{
  max-width:52ch;
  margin:17px 0 0;
  color:var(--tk-popup-muted);
  font-size:16px;
  line-height:1.62;
}
.tk-popup-studio__actions{display:flex;flex-wrap:wrap;gap:11px;margin-top:27px}
.tk-popup-studio__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:11px 19px;
  border:1px solid transparent;
  border-radius:14px;
  font-size:14px;
  font-weight:850;
  line-height:1.2;
  text-decoration:none;
  transition:transform .16s ease,box-shadow .16s ease,background-color .16s ease,border-color .16s ease;
}
.tk-popup-studio__cta--primary{
  background:linear-gradient(135deg,var(--tk-popup-orange),#ff8f32);
  color:#071a35;
  box-shadow:0 13px 30px rgba(255,118,39,.3);
}
.tk-popup-studio__cta--secondary{
  border-color:rgba(255,255,255,.38);
  background:rgba(255,255,255,.1);
  color:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12);
}
.tk-popup-studio__cta:hover{transform:translateY(-2px);box-shadow:0 15px 32px rgba(2,13,31,.28)}
.tk-popup-studio__cta--primary:hover{box-shadow:0 16px 34px rgba(255,118,39,.38)}
.tk-popup-studio__cta--secondary:hover{border-color:rgba(255,255,255,.62);background:rgba(255,255,255,.15)}
.tk-popup-studio__cta:focus-visible,.tk-popup-studio__close:focus-visible,.tk-popup-studio__backdrop:focus-visible{outline:3px solid #78c5ff;outline-offset:3px}
.tk-popup-studio__close{
  position:absolute;
  z-index:3;
  top:16px;
  right:16px;
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  margin:0;
  padding:0;
  border:1px solid rgba(255,255,255,.42);
  border-radius:50%;
  background:rgba(6,25,51,.7);
  color:#fff;
  font:700 27px/1 Arial,sans-serif;
  box-shadow:0 10px 26px rgba(1,12,30,.25);
  backdrop-filter:blur(8px);
  cursor:pointer;
  appearance:none;
  transition:transform .16s ease,background-color .16s ease;
}
.tk-popup-studio__close:hover{background:rgba(255,118,39,.92);transform:rotate(4deg)}
.tk-popup-studio__dialog--countdown{
  grid-template-columns:1fr;
  max-width:940px;
  width:min(940px,94vw);
  min-height:390px;
}
.tk-popup-studio__dialog--countdown .tk-popup-studio__content{
  align-self:stretch;
  padding:58px 48px 46px;
}
.tk-popup-studio .tk-countdown-showcase[hidden],
.tk-popup-studio .tk-countdown-showcase__running[hidden],
.tk-popup-studio .tk-countdown-showcase__final[hidden]{display:none!important}
.tk-popup-studio .tk-countdown-showcase__running{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.9fr);
  align-items:center;
  gap:34px;
  min-height:278px;
}
.tk-popup-studio .tk-countdown-showcase__copy{min-width:0}
.tk-popup-studio .tk-countdown-showcase__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:27px;
  margin:0 0 15px;
  padding:6px 11px;
  border:1px solid rgba(255,174,100,.42);
  border-radius:999px;
  background:rgba(255,118,39,.13);
  color:#ffc28b;
  font-size:10px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.tk-popup-studio .tk-countdown-showcase__eyebrow::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:2px;
  background:var(--tk-popup-orange);
  box-shadow:0 0 14px rgba(255,118,39,.72);
  transform:rotate(45deg);
}
.tk-popup-studio .tk-countdown-showcase__title{
  max-width:16ch;
  margin:0;
  color:#fff;
  font-size:38px;
  font-size:clamp(30px,4vw,46px);
  font-weight:880;
  line-height:1.02;
  letter-spacing:-.045em;
  text-wrap:balance;
}
.tk-popup-studio .tk-countdown-showcase__description{
  max-width:52ch;
  margin:16px 0 0;
  color:var(--tk-popup-muted);
  font-size:15px;
  line-height:1.58;
}
.tk-popup-studio .tk-countdown-showcase__target{
  margin:15px 0 0;
  color:#a9bdd6;
  font-size:11px;
  line-height:1.45;
}
.tk-popup-studio .tk-countdown-showcase__target time{color:#fff;font-weight:800}
.tk-popup-studio .tk-countdown-showcase__clock{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:11px;
  padding:16px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:22px;
  background:rgba(5,24,50,.58);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 20px 55px rgba(0,10,27,.24);
  backdrop-filter:blur(10px);
}
.tk-popup-studio .tk-countdown-showcase__unit{
  display:grid;
  place-items:center;
  min-height:106px;
  padding:12px 8px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:16px;
  background:linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.04));
}
.tk-popup-studio .tk-countdown-showcase__unit strong{
  color:#fff;
  font-size:36px;
  font-weight:900;
  line-height:1;
  letter-spacing:-.04em;
  font-variant-numeric:tabular-nums;
}
.tk-popup-studio .tk-countdown-showcase__unit:last-of-type strong{color:#ff9b55}
.tk-popup-studio .tk-countdown-showcase__unit small{
  margin-top:7px;
  color:#b9c9dc;
  font-size:9px;
  font-weight:850;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.tk-popup-studio .tk-countdown-showcase__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:47px;
  margin-top:22px;
  padding:11px 18px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:14px;
  background:linear-gradient(135deg,var(--tk-popup-orange),#ff943e);
  color:#071a35;
  font-size:13px;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 13px 30px rgba(255,118,39,.27);
}
.tk-popup-studio .tk-countdown-showcase__cta>span[aria-hidden="true"]{display:none}
.tk-popup-studio .tk-countdown-showcase__final{
  display:grid;
  align-content:center;
  justify-items:start;
  min-height:278px;
  padding:38px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:22px;
  background:rgba(8,31,62,.62);
}
.tk-popup-studio .tk-countdown-showcase__final p{max-width:24ch;margin:0;color:#fff;font-size:32px;font-weight:880;line-height:1.1;letter-spacing:-.035em}
@media (min-width:1025px){
  .tk-popup-studio[data-show-desktop="0"]{display:none!important}
}
@media (min-width:601px) and (max-width:1024px){
  .tk-popup-studio[data-show-tablet="0"]{display:none!important}
  .tk-popup-studio__dialog{max-width:760px;width:min(760px,94vw)}
  .tk-popup-studio__dialog--text{min-height:360px}
  .tk-popup-studio__dialog--text .tk-popup-studio__content{padding:44px 195px 42px 40px}
  .tk-popup-studio__content{padding:40px 36px 36px}
  .tk-popup-studio__content h2{font-size:32px}
  .tk-popup-studio .tk-countdown-showcase__running{grid-template-columns:1fr;gap:22px}
  .tk-popup-studio .tk-countdown-showcase__clock{grid-template-columns:repeat(4,minmax(0,1fr))}
  .tk-popup-studio .tk-countdown-showcase__unit{min-height:86px}
  .tk-popup-studio .tk-countdown-showcase__unit strong{font-size:30px}
}
@media (max-width:600px){
  .tk-popup-studio[data-show-mobile="0"]{display:none!important}
  .tk-popup-studio{place-items:center;padding:16px;padding:max(16px,env(safe-area-inset-top)) max(16px,env(safe-area-inset-right)) max(16px,env(safe-area-inset-bottom)) max(16px,env(safe-area-inset-left))}
  .tk-popup-studio__backdrop{background:linear-gradient(180deg,rgba(3,14,32,var(--tk-popup-overlay-opacity)),rgba(3,14,32,var(--tk-popup-overlay-opacity)));-webkit-backdrop-filter:blur(var(--tk-popup-backdrop-blur)) saturate(.96);backdrop-filter:blur(var(--tk-popup-backdrop-blur)) saturate(.96)}
  .tk-popup-studio__dialog{
    grid-template-columns:1fr;
    width:100%;
    max-width:420px;
    min-height:0;
    max-height:78vh;
    max-height:min(78vh,560px);
    max-height:min(78dvh,560px);
    border-radius:20px;
    box-shadow:0 0 0 1px rgba(255,118,39,.78),0 24px 70px rgba(1,11,29,.45);
  }
  .tk-popup-studio__dialog::before{top:-100px;right:-100px;width:240px;height:240px}
  .tk-popup-studio__dialog::after{right:20px;bottom:18px;width:92px;height:66px}
  .tk-popup-studio__media{min-height:0;height:20vh;max-height:136px;height:min(20vh,136px);border-right:0;border-bottom:1px solid rgba(255,255,255,.18);border-radius:19px 19px 0 0}
  .tk-popup-studio__media img{min-height:0;height:100%;max-height:none}
  .tk-popup-studio__content,.tk-popup-studio__dialog--text .tk-popup-studio__content{padding:24px 20px 21px}
  .tk-popup-studio__dialog--text .tk-popup-studio__content{padding-top:27px}
  .tk-popup-studio__eyebrow{margin:0 44px 10px 0;font-size:9px;letter-spacing:.12em}
  .tk-popup-studio__content h2{max-width:19ch;font-size:25px;line-height:1.1}
  .tk-popup-studio__description{margin-top:11px;font-size:13px;line-height:1.5}
  .tk-popup-studio__actions{display:grid;grid-template-columns:1fr;gap:8px;margin-top:17px}
  .tk-popup-studio__cta{width:100%;min-height:44px;padding:10px 14px;border-radius:12px;font-size:13px}
  .tk-popup-studio__close{top:8px;right:8px;width:44px;height:44px;background:#0b2547}
  .tk-popup-studio__dialog--countdown{min-height:0}
  .tk-popup-studio__dialog--countdown .tk-popup-studio__content{padding:27px 18px 20px}
  .tk-popup-studio .tk-countdown-showcase__running{grid-template-columns:1fr;gap:16px;min-height:0}
  .tk-popup-studio .tk-countdown-showcase__eyebrow{margin:0 40px 11px 0;font-size:9px;letter-spacing:.12em}
  .tk-popup-studio .tk-countdown-showcase__title{max-width:19ch;padding-right:20px;font-size:26px;line-height:1.08}
  .tk-popup-studio .tk-countdown-showcase__description{margin-top:11px;font-size:13px;line-height:1.5}
  .tk-popup-studio .tk-countdown-showcase__target{margin-top:10px;font-size:10px}
  .tk-popup-studio .tk-countdown-showcase__clock{grid-template-columns:repeat(4,minmax(0,1fr));gap:6px;padding:8px;border-radius:15px}
  .tk-popup-studio .tk-countdown-showcase__unit{min-width:0;min-height:66px;padding:9px 3px;border-radius:10px}
  .tk-popup-studio .tk-countdown-showcase__unit strong{font-size:23px;letter-spacing:-.045em}
  .tk-popup-studio .tk-countdown-showcase__unit small{margin-top:5px;font-size:8px;letter-spacing:.03em}
  .tk-popup-studio .tk-countdown-showcase__cta{width:100%;min-height:44px;margin-top:15px;padding:10px 14px;border-radius:12px}
  .tk-popup-studio .tk-countdown-showcase__final{min-height:180px;margin-top:24px;padding:20px;border-radius:16px}
  .tk-popup-studio .tk-countdown-showcase__final p{font-size:25px}
}
@media (max-width:359px){
  .tk-popup-studio__content,.tk-popup-studio__dialog--text .tk-popup-studio__content{padding-right:16px;padding-left:16px}
  .tk-popup-studio .tk-countdown-showcase__unit strong{font-size:20px}
}
@media (prefers-reduced-motion:reduce){
  .tk-popup-studio__cta,.tk-popup-studio__close{transition:none}
}
