@charset "UTF-8";
.tk-hero {
  position: relative;
  margin-bottom: var(--space-7);
  padding: var(--space-7) 0 var(--space-6);
  overflow: hidden;
}
.tk-hero__glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 460px;
  background: radial-gradient(45% 60% at 25% 40%, hsl(var(--accent-h) 70% 45% / 22%), transparent 70%), radial-gradient(40% 55% at 75% 30%, rgb(124 92 255 / 20%), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.tk-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: var(--space-6);
}
.tk-hero__kicker {
  display: inline-block;
  margin-bottom: var(--space-3);
  padding: 4px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-size: .82rem;
  color: var(--accent);
  background: var(--accent-soft);
}
.tk-hero__title {
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3.2rem);
  margin-bottom: var(--space-3);
  background: linear-gradient(120deg, var(--text) 30%, var(--accent) 75%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tk-hero__sub {
  max-width: 46ch;
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}
.tk-hero__search {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  max-width: 520px;
  margin-bottom: var(--space-4);
  padding: 6px 6px 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text-subtle);
}
.tk-hero__search:focus-within {
  border-color: var(--accent);
}
.tk-hero__search input {
  flex: 1;
  border: 0;
  background: none;
  padding: 8px 0;
}
.tk-hero__search input:focus {
  box-shadow: none;
  background: none;
}
.tk-hero__search .tk-btn {
  border-radius: var(--radius-pill);
}
.tk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.tk-hero__stats {
  display: flex;
  gap: var(--space-6);
  list-style: none;
  padding: 0;
  margin: 0;
}
.tk-hero__stats strong {
  display: block;
  font-size: 1.4rem;
  font-variant-numeric: tabular-nums;
}
.tk-hero__stats span {
  font-size: .86rem;
  color: var(--text-subtle);
}
.tk-hero__art {
  display: grid;
  place-items: center;
}
.tk-print {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 1;
  display: grid;
  place-items: end center;
  padding-bottom: 18%;
}
.tk-print__bed {
  position: absolute;
  bottom: 16%;
  left: 8%;
  right: 8%;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--surface-3), var(--surface-2));
  box-shadow: 0 12px 40px -14px hsl(var(--accent-h) 70% 45% / 60%);
}
.tk-print__layers {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 3px;
}
.tk-print__layers span {
  display: block;
  height: 11px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  opacity: .9;
  transform-origin: center;
}
.tk-print__layers span:nth-child(1) {
  width: 120px;
}
.tk-print__layers span:nth-child(2) {
  width: 112px;
}
.tk-print__layers span:nth-child(3) {
  width: 100px;
}
.tk-print__layers span:nth-child(4) {
  width: 104px;
}
.tk-print__layers span:nth-child(5) {
  width: 88px;
}
.tk-print__layers span:nth-child(6) {
  width: 72px;
}
.tk-print__layers span:nth-child(7) {
  width: 58px;
}
.tk-print__layers span:nth-child(8) {
  width: 40px;
}
.tk-print__head {
  position: absolute;
  top: 6%;
  left: 50%;
  width: 46px;
  height: 26px;
  margin-left: -23px;
  border-radius: 6px 6px 3px 3px;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
}
.tk-print__head::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 8px;
  height: 9px;
  margin-left: -4px;
  border-radius: 0 0 3px 3px;
  background: var(--accent);
}
.tk-print.is-running .tk-print__layers span {
  animation: tk-layer 3.2s var(--ease) infinite;
}
.tk-print.is-running .tk-print__head {
  animation: tk-head 2.6s ease-in-out infinite alternate;
}
.tk-print__layers span:nth-child(1) {
  animation-delay: 0s;
}
.tk-print__layers span:nth-child(2) {
  animation-delay: .12s;
}
.tk-print__layers span:nth-child(3) {
  animation-delay: .24s;
}
.tk-print__layers span:nth-child(4) {
  animation-delay: .36s;
}
.tk-print__layers span:nth-child(5) {
  animation-delay: .48s;
}
.tk-print__layers span:nth-child(6) {
  animation-delay: .6s;
}
.tk-print__layers span:nth-child(7) {
  animation-delay: .72s;
}
.tk-print__layers span:nth-child(8) {
  animation-delay: .84s;
}
@keyframes tk-layer {
  0%,
  100% {
    opacity: .55;
    filter: none;
  }
  18% {
    opacity: 1;
    filter: brightness(1.35);
  }
  40% {
    opacity: .8;
  }
}
@keyframes tk-head {
  from {
    transform: translateX(-46px);
  }
  to {
    transform: translateX(46px);
  }
}
.tk-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-3);
}
.tk-cat {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  transition: border-color var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.tk-cat:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}
.tk-cat svg {
  color: var(--accent);
}
.tk-cat span {
  font-weight: 540;
  font-size: .94rem;
}
.tk-cat small {
  margin-left: auto;
  color: var(--text-subtle);
}
.tk-tile {
  padding: var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.tk-tile svg {
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.tk-tile h3 {
  margin-bottom: 6px;
}
.tk-tile p {
  margin: 0;
  color: var(--text-muted);
  font-size: .94rem;
}
.tk-cta {
  padding: var(--space-7) var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: radial-gradient(80% 120% at 50% 0%, hsl(var(--accent-h) 60% 40% / 18%), transparent 70%), var(--surface);
  text-align: center;
}
.tk-cta p {
  max-width: 56ch;
  margin: 0 auto var(--space-4);
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .tk-hero__inner {
    grid-template-columns: 1fr;
  }
  .tk-hero__art {
    display: none;
  }
  .tk-hero {
    padding-top: var(--space-5);
  }
}
@media (max-width: 560px) {
  .tk-hero__stats {
    gap: var(--space-4);
  }
  .tk-hero__search {
    flex-wrap: wrap;
    border-radius: var(--radius);
  }
  .tk-hero__search input {
    min-width: 60%;
  }
}
